diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index 1bd16e320..ae0f7769f 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -176,14 +176,10 @@ Singleton { property int niriLayoutGapsOverride: -1 property int niriLayoutRadiusOverride: -1 property int niriLayoutBorderSize: -1 - property bool niriLayoutXrayEnabled: false - property bool niriLayoutBarXrayEnabled: true property int hyprlandLayoutGapsOverride: -1 property int hyprlandLayoutRadiusOverride: -1 property int hyprlandLayoutBorderSize: -1 property bool hyprlandResizeOnBorder: false - property bool hyprlandLayoutXrayEnabled: false - property bool hyprlandLayoutBarXrayEnabled: true property int mangoLayoutGapsOverride: -1 property int mangoLayoutRadiusOverride: -1 property int mangoLayoutBorderSize: -1 @@ -1020,9 +1016,14 @@ Singleton { } ] + // Bar xray is only safe when no window can end up underneath: auto-hide and overlay-layer + // bars float over windows, and negative spacing pulls windows under the strip function _standaloneBarXrayAvailable(configs) { - const activeBars = (configs || []).filter(c => c && c.enabled && (c.visible ?? true)); - return activeBars.every(c => !c.autoHide); + const list = configs || []; + const activeBars = list.filter(c => c && c.enabled && (c.visible ?? true)); + const gapsOverride = (typeof CompositorService !== "undefined" && CompositorService.isHyprland) ? hyprlandLayoutGapsOverride : niriLayoutGapsOverride; + const layoutGaps = gapsOverride >= 0 ? gapsOverride : Math.max(4, (list[0]?.spacing ?? 4)); + return activeBars.every(c => !c.autoHide && !(c.useOverlayLayer ?? false) && (c.spacing ?? 4) + (c.bottomGap ?? 0) + layoutGaps >= 0); } readonly property bool standaloneBarXrayAvailable: _standaloneBarXrayAvailable(barConfigs) diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index af5568602..fe09468fb 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -28,14 +28,10 @@ var SPEC = { niriLayoutGapsOverride: { def: -1, onChange: "updateCompositorLayout" }, niriLayoutRadiusOverride: { def: -1, onChange: "updateCompositorLayout" }, niriLayoutBorderSize: { def: -1, onChange: "updateCompositorLayout" }, - niriLayoutXrayEnabled: { def: false, onChange: "updateCompositorLayout" }, - niriLayoutBarXrayEnabled: { def: true, onChange: "updateCompositorLayout" }, hyprlandLayoutGapsOverride: { def: -1, onChange: "updateCompositorLayout" }, hyprlandLayoutRadiusOverride: { def: -1, onChange: "updateCompositorLayout" }, hyprlandLayoutBorderSize: { def: -1, onChange: "updateCompositorLayout" }, hyprlandResizeOnBorder: { def: false, onChange: "updateCompositorLayout" }, - hyprlandLayoutXrayEnabled: { def: false, onChange: "updateCompositorLayout" }, - hyprlandLayoutBarXrayEnabled: { def: true, onChange: "updateCompositorLayout" }, mangoLayoutGapsOverride: { def: -1, onChange: "updateCompositorLayout" }, mangoLayoutRadiusOverride: { def: -1, onChange: "updateCompositorLayout" }, mangoLayoutBorderSize: { def: -1, onChange: "updateCompositorLayout" }, diff --git a/quickshell/Modules/Settings/CompositorLayoutTab.qml b/quickshell/Modules/Settings/CompositorLayoutTab.qml index 7c6b490ad..4a7668b10 100644 --- a/quickshell/Modules/Settings/CompositorLayoutTab.qml +++ b/quickshell/Modules/Settings/CompositorLayoutTab.qml @@ -1,6 +1,5 @@ import QtCore import QtQuick -import Quickshell import qs.Common import qs.Services import qs.Widgets @@ -22,6 +21,7 @@ Item { readonly property bool readOnly: CompositorService.isHyprland && layoutIncludeStatus.readOnly === true property bool checkingInclude: false property bool fixingInclude: false + property string xrayConflictSource: "" function getLayoutConfigPaths() { const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); @@ -120,9 +120,28 @@ Item { }); } + function checkXrayConflicts() { + if (!CompositorService.isNiri) + return; + const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); + const script = `cd "${configDir}/niri" 2>/dev/null || exit 0 +files="config.kdl" +for f in $(sed -nE 's/^[[:space:]]*include[[:space:]]+"([^"]+)".*/\\1/p' config.kdl 2>/dev/null); do + case "$f" in dms/*|/*dms/*) continue ;; esac + [ -f "$f" ] && files="$files $f" +done +awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; + + Proc.runCommand("check-xray-conflict", ["sh", "-c", script], (output, exitCode) => { + xrayConflictSource = exitCode === 0 ? output.trim() : ""; + }); + } + Component.onCompleted: { - if (CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isMango) + if (CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isMango) { checkLayoutIncludeStatus(); + checkXrayConflicts(); + } } DankFlickable { @@ -215,6 +234,39 @@ Item { } } + StyledRect { + width: parent.width + height: xrayConflictRow.implicitHeight + Theme.spacingL * 2 + radius: Theme.cornerRadius + color: Theme.withAlpha(Theme.primary, 0.15) + border.color: Theme.withAlpha(Theme.primary, 0.3) + border.width: 1 + visible: root.xrayConflictSource !== "" + + Row { + id: xrayConflictRow + anchors.fill: parent + anchors.margins: Theme.spacingL + spacing: Theme.spacingM + + DankIcon { + name: "warning" + size: Theme.iconSize + color: Theme.primary + anchors.verticalCenter: parent.verticalCenter + } + + StyledText { + width: parent.width - Theme.iconSize - Theme.spacingM + anchors.verticalCenter: parent.verticalCenter + text: I18n.tr("An xray rule at %1 may conflict with the Xray settings below").arg(root.xrayConflictSource) + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + wrapMode: Text.WordWrap + } + } + } + SettingsCard { width: parent.width tags: ["niri", "layout", "gaps", "radius", "window", "border"] @@ -312,25 +364,13 @@ Item { } SettingsToggleRow { + visible: CompositorService.isNiri tags: ["niri", "xray", "blur", "background-effect", "performance"] settingKey: "niriLayoutXrayEnabled" text: I18n.tr("Xray Blur Effect") - description: SettingsData.niriLayoutXrayEnabled ? I18n.tr("Xray on makes the windows background visible through to the wallpaper") : I18n.tr("Xray off shows the real background beneath the blurred surfaces") - checked: SettingsData.niriLayoutXrayEnabled - onToggled: checked => SettingsData.set("niriLayoutXrayEnabled", checked) - } - - SettingsToggleRow { - // Hidden in Frame Connected mode, where it has no target - visible: !(SettingsData.frameEnabled && SettingsData.frameMode === "connected") - enabled: SettingsData.frameEnabled || SettingsData.standaloneBarXrayAvailable - opacity: enabled ? 1 : 0.5 - tags: ["niri", "xray", "bar", "frame", "performance"] - settingKey: "niriLayoutBarXrayEnabled" - text: SettingsData.frameEnabled ? I18n.tr("Frame Xray") : I18n.tr("Dank Bar Xray") - description: !SettingsData.frameEnabled && !SettingsData.standaloneBarXrayAvailable ? I18n.tr("Unavailable while using Auto Hide as Xray would reveal the wallpaper through windows") : (SettingsData.niriLayoutBarXrayEnabled ? (SettingsData.frameEnabled ? I18n.tr("Xray on makes the Frame's border visible through to the wallpaper; more efficient") : I18n.tr("Xray on makes the Dank Bar visible through to the wallpaper; more efficient")) : (SettingsData.frameEnabled ? I18n.tr("Xray off shows the real background beneath the Frame's border") : I18n.tr("Xray off shows the real background beneath the Dank Bar"))) - checked: SettingsData.niriLayoutBarXrayEnabled - onToggled: checked => SettingsData.set("niriLayoutBarXrayEnabled", checked) + description: I18n.tr("Blurred surfaces show the wallpaper instead of the content beneath") + checked: NiriService.layoutXrayEnabled + onToggled: checked => NiriService.setLayoutXray(checked) } } @@ -440,25 +480,13 @@ Item { } SettingsToggleRow { + visible: CompositorService.isHyprland tags: ["hyprland", "xray", "blur", "background-effect", "performance"] settingKey: "hyprlandLayoutXrayEnabled" text: I18n.tr("Xray Blur Effect") - description: SettingsData.hyprlandLayoutXrayEnabled ? I18n.tr("Xray on makes the windows background visible through to the wallpaper") : I18n.tr("Xray off shows the real background beneath the blurred surfaces") - checked: SettingsData.hyprlandLayoutXrayEnabled - onToggled: checked => SettingsData.set("hyprlandLayoutXrayEnabled", checked) - } - - SettingsToggleRow { - // Hidden in Frame Connected mode, where it has no target - visible: !(SettingsData.frameEnabled && SettingsData.frameMode === "connected") - enabled: SettingsData.frameEnabled || SettingsData.standaloneBarXrayAvailable - opacity: enabled ? 1 : 0.5 - tags: ["hyprland", "xray", "bar", "frame", "performance"] - settingKey: "hyprlandLayoutBarXrayEnabled" - text: SettingsData.frameEnabled ? I18n.tr("Frame Xray") : I18n.tr("Dank Bar Xray") - description: !SettingsData.frameEnabled && !SettingsData.standaloneBarXrayAvailable ? I18n.tr("Unavailable while an enabled Dank Bar uses Auto Hide because Xray would reveal the wallpaper through windows") : (SettingsData.hyprlandLayoutBarXrayEnabled ? (SettingsData.frameEnabled ? I18n.tr("Xray on makes the Frame's border visible through to the wallpaper; more efficient") : I18n.tr("Xray on makes the Dank Bar visible through to the wallpaper; more efficient")) : (SettingsData.frameEnabled ? I18n.tr("Xray off shows the real background beneath the Frame's border") : I18n.tr("Xray off shows the real background beneath the Dank Bar"))) - checked: SettingsData.hyprlandLayoutBarXrayEnabled - onToggled: checked => SettingsData.set("hyprlandLayoutBarXrayEnabled", checked) + description: I18n.tr("Blurred surfaces show the wallpaper instead of the content beneath") + checked: HyprlandService.layoutXrayEnabled + onToggled: checked => HyprlandService.setLayoutXray(checked) } } diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index dc0c95c82..44d3785cc 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -1816,7 +1816,7 @@ Item { Item { width: parent.width height: xrayHintRow.implicitHeight - visible: CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isMango + visible: CompositorService.isNiri || CompositorService.isHyprland Row { id: xrayHintRow @@ -1833,7 +1833,7 @@ Item { StyledText { width: parent.width - Theme.iconSizeSmall - Theme.spacingS anchors.verticalCenter: parent.verticalCenter - text: I18n.tr("Xray specific options for blurred surfaces live in Compositor → Layout") + text: I18n.tr("Xray options are in Compositor → Layout") font.pixelSize: Theme.fontSizeSmall color: Theme.primary wrapMode: Text.Wrap diff --git a/quickshell/Services/HyprlandService.qml b/quickshell/Services/HyprlandService.qml index 866c456db..77922ff55 100644 --- a/quickshell/Services/HyprlandService.qml +++ b/quickshell/Services/HyprlandService.qml @@ -32,6 +32,11 @@ Singleton { property int _frameTransitionRevision: 0 readonly property bool frameLayoutReady: _layoutAppliedRevision >= _frameTransitionRevision + // dms/layout.lua is the source of truth for xray; parsed once before the first regeneration + property bool layoutXrayEnabled: false + property bool _layoutXrayLoaded: false + property bool _layoutXrayLoading: false + DeferredAction { id: layoutGenerationAction onTriggered: root.doGenerateLayoutConfig() @@ -262,6 +267,28 @@ Singleton { }); } + function setLayoutXray(enabled) { + layoutXrayEnabled = enabled; + _layoutXrayLoaded = true; + generateLayoutConfig(); + } + + function loadLayoutXrayState() { + if (_layoutXrayLoading) + return; + _layoutXrayLoading = true; + const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); + Proc.runCommand("hypr-read-layout-xray", ["cat", configDir + "/hypr/dms/layout.lua"], (output, exitCode) => { + _layoutXrayLoading = false; + if (!_layoutXrayLoaded) { + layoutXrayEnabled = exitCode === 0 && output.includes('"^dms:.*$"'); + _layoutXrayLoaded = true; + } + if (layoutGenerationPending) + layoutGenerationAction.schedule(); + }); + } + function generateLayoutConfig(frameTransition) { if (!CompositorService.isHyprland) return; @@ -275,6 +302,10 @@ Singleton { function doGenerateLayoutConfig() { if (layoutGenerationRunning) return; + if (!_layoutXrayLoaded) { + loadLayoutXrayState(); + return; + } layoutGenerationPending = false; const requestRevision = _layoutRequestRevision; if (!canWriteLuaConfig("layout")) { @@ -295,12 +326,10 @@ Singleton { const gaps = (typeof SettingsData !== "undefined" && SettingsData.hyprlandLayoutGapsOverride >= 0) ? SettingsData.hyprlandLayoutGapsOverride : defaultGaps; const borderSize = (typeof SettingsData !== "undefined" && SettingsData.hyprlandLayoutBorderSize >= 0) ? SettingsData.hyprlandLayoutBorderSize : defaultBorderSize; const resizeOnBorder = (typeof SettingsData !== "undefined" && SettingsData.hyprlandResizeOnBorder) ? true : false; - const xrayEnabled = typeof SettingsData !== "undefined" && SettingsData.hyprlandLayoutXrayEnabled; - const barFrameXrayEnabled = typeof SettingsData === "undefined" || SettingsData.hyprlandLayoutBarXrayEnabled; const frameEnabled = typeof SettingsData !== "undefined" && SettingsData.frameEnabled; const frameConnectedMode = frameEnabled && SettingsData.frameMode === "connected"; // Hyprland `xray = false` is still early-development; unset already samples real content, so only force xray=true - // Standalone Bar Xray is safe only while every active bar reserves its strip + // Bar/Frame sit flush on the wallpaper, so force the cheap xray blur whenever safe const barFrameTargetNamespace = !frameEnabled ? (SettingsData.standaloneBarXrayAvailable ? "dms:bar" : null) : (frameConnectedMode ? null : "dms:frame"); let content = `-- Auto-generated by DMS — do not edit manually @@ -318,7 +347,7 @@ hl.config({ }) `; - if (xrayEnabled) { + if (layoutXrayEnabled) { content += ` hl.layer_rule({ match = { namespace = "^dms:.*$" }, @@ -326,7 +355,7 @@ hl.layer_rule({ }) `; } - if (barFrameXrayEnabled && barFrameTargetNamespace) { + if (barFrameTargetNamespace) { content += ` hl.layer_rule({ match = { namespace = "^${barFrameTargetNamespace}$" }, diff --git a/quickshell/Services/NiriService.qml b/quickshell/Services/NiriService.qml index 737501132..e3a0d6983 100644 --- a/quickshell/Services/NiriService.qml +++ b/quickshell/Services/NiriService.qml @@ -49,6 +49,11 @@ Singleton { property string _lastGeneratedAlttabContent: "" readonly property bool frameLayoutReady: _layoutAppliedRevision >= _frameTransitionRevision + // dms/layout.kdl is the source of truth for xray; parsed once before the first regeneration + property bool layoutXrayEnabled: true + property bool _layoutXrayLoaded: false + property bool _layoutXrayLoading: false + readonly property string screenshotsDir: Paths.strip(StandardPaths.writableLocation(StandardPaths.PicturesLocation)) + "/Screenshots" property string pendingScreenshotPath: "" @@ -1094,6 +1099,28 @@ Singleton { return _matchAndEnrichToplevels(toplevels, windows.filter(nw => outputWorkspaceIds.has(nw.workspace_id))); } + function setLayoutXray(enabled) { + layoutXrayEnabled = enabled; + _layoutXrayLoaded = true; + generateNiriLayoutConfig(); + } + + function loadLayoutXrayState() { + if (_layoutXrayLoading) + return; + _layoutXrayLoading = true; + const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); + Proc.runCommand("niri-read-layout-xray", ["cat", configDir + "/niri/dms/layout.kdl"], (output, exitCode) => { + _layoutXrayLoading = false; + if (!_layoutXrayLoaded) { + layoutXrayEnabled = exitCode !== 0 || !output.includes("xray false"); + _layoutXrayLoaded = true; + } + if (configGenerationPending) + configGenerationAction.schedule(); + }); + } + function generateNiriLayoutConfig(frameTransition) { if (!CompositorService.isNiri) return; @@ -1108,6 +1135,10 @@ Singleton { function doGenerateNiriLayoutConfig() { if (writeConfigProcess.running || _awaitingLayoutReloadRevision > _layoutAppliedRevision) return; + if (!_layoutXrayLoaded) { + loadLayoutXrayState(); + return; + } configGenerationPending = false; log.debug("Generating layout config..."); @@ -1118,63 +1149,65 @@ Singleton { const cornerRadius = (typeof SettingsData !== "undefined" && SettingsData.niriLayoutRadiusOverride >= 0) ? SettingsData.niriLayoutRadiusOverride : defaultRadius; const gaps = (typeof SettingsData !== "undefined" && SettingsData.niriLayoutGapsOverride >= 0) ? SettingsData.niriLayoutGapsOverride : defaultGaps; const borderSize = (typeof SettingsData !== "undefined" && SettingsData.niriLayoutBorderSize >= 0) ? SettingsData.niriLayoutBorderSize : defaultBorderSize; - const xrayEnabled = typeof SettingsData !== "undefined" && SettingsData.niriLayoutXrayEnabled; - const barFrameXrayEnabled = typeof SettingsData === "undefined" || SettingsData.niriLayoutBarXrayEnabled; const frameEnabled = typeof SettingsData !== "undefined" && SettingsData.frameEnabled; const frameConnectedMode = frameEnabled && SettingsData.frameMode === "connected"; - // Standalone Bar Xray is safe only while every active bar reserves its strip + // Bar/Frame sit flush on the wallpaper, so force the cheap xray blur whenever safe const barFrameTargetNamespace = !frameEnabled ? (SettingsData.standaloneBarXrayAvailable ? "dms:bar" : null) : (frameConnectedMode ? null : "dms:frame"); + // Xray is niri's default blur, so only the off state needs a rule let xrayRules = ""; - if (!xrayEnabled) { + if (!layoutXrayEnabled) { xrayRules += ` - layer-rule { - match namespace=".*" - background-effect { + +layer-rule { + background-effect { xray false + } +}`; } - }`; - } - if (barFrameXrayEnabled && barFrameTargetNamespace) { + + if (barFrameTargetNamespace) { xrayRules += ` - layer-rule { - match namespace="^${barFrameTargetNamespace}$" - background-effect { + +layer-rule { + match namespace="^${barFrameTargetNamespace}$" + background-effect { xray true - } - }`; + } +}`; } const dmsWarning = `// ! DO NOT EDIT ! - // ! AUTO-GENERATED BY DMS ! - // ! CHANGES WILL BE OVERWRITTEN ! - // ! PLACE YOUR CUSTOM CONFIGURATION ELSEWHERE ! +// ! AUTO-GENERATED BY DMS ! +// ! CHANGES WILL BE OVERWRITTEN ! +// ! PLACE YOUR CUSTOM CONFIGURATION ELSEWHERE ! - `; +`; const configContent = dmsWarning + `layout { - gaps ${gaps} + gaps ${gaps} - border { + border { width ${borderSize} - } + } - focus-ring { + focus-ring { width ${borderSize} - } - } - window-rule { - geometry-corner-radius ${cornerRadius} - clip-to-geometry true - tiled-state true - draw-border-with-background false - }` + xrayRules; + } +} + +window-rule { + geometry-corner-radius ${cornerRadius} + clip-to-geometry true + tiled-state true + draw-border-with-background false +}` + xrayRules; const alttabContent = dmsWarning + `recent-windows { - highlight { + highlight { corner-radius ${cornerRadius} - } - }`; + } +}`; const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); const niriDmsDir = configDir + "/niri/dms"; @@ -1203,7 +1236,6 @@ Singleton { log.warn("Failed to ensure " + name + ".kdl, exit code:", exitCode); }); } - } function generateNiriBlurrule() { diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index 897afc8e5..232e08c35 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -2,7 +2,7 @@ { "term": "%1 (+%2 more)", "context": "%1 (+%2 more)", - "reference": "Modules/Settings/WindowRulesTab.qml:89, Modules/Settings/WindowRulesTab.qml:947", + "reference": "Modules/Settings/WindowRulesTab.qml:89, Modules/Settings/WindowRulesTab.qml:945", "comment": "" }, { @@ -17,6 +17,12 @@ "reference": "Modals/MuxModal.qml:288", "comment": "" }, + { + "term": "%1 Startup Failed", + "context": "%1 Startup Failed", + "reference": "Services/PluginService.qml:709", + "comment": "" + }, { "term": "%1 active session", "context": "%1 active session", @@ -86,25 +92,13 @@ { "term": "%1 display", "context": "%1 display", - "reference": "Modules/Settings/DankBarTab.qml:370", + "reference": "Modules/Settings/DankBarTab.qml:372", "comment": "" }, { "term": "%1 displays", "context": "%1 displays", - "reference": "Modules/Settings/DankBarTab.qml:370", - "comment": "" - }, - { - "term": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.", - "context": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.", - "reference": "Modules/Settings/KeybindsTab.qml:406", - "comment": "" - }, - { - "term": "%1 exists but is not included. Window rules won't apply.", - "context": "%1 exists but is not included. Window rules won't apply.", - "reference": "Modules/Settings/WindowRulesTab.qml:512", + "reference": "Modules/Settings/DankBarTab.qml:372", "comment": "" }, { @@ -152,7 +146,7 @@ { "term": "%1 notifications", "context": "%1 notifications", - "reference": "Modules/Lock/LockScreenContent.qml:476", + "reference": "Modules/Lock/LockScreenContent.qml:531", "comment": "" }, { @@ -188,19 +182,19 @@ { "term": "%1 wallpaper • %2 / %3", "context": "%1 wallpaper • %2 / %3", - "reference": "Modules/DankDash/WallpaperTab.qml:541", + "reference": "Modules/DankDash/WallpaperTab.qml:646", "comment": "" }, { "term": "%1 wallpapers • %2 / %3", "context": "%1 wallpapers • %2 / %3", - "reference": "Modules/DankDash/WallpaperTab.qml:541", + "reference": "Modules/DankDash/WallpaperTab.qml:646", "comment": "" }, { "term": "%1 widgets", "context": "%1 widgets", - "reference": "Modules/Settings/DankBarTab.qml:391", + "reference": "Modules/Settings/DankBarTab.qml:393", "comment": "" }, { @@ -230,7 +224,7 @@ { "term": "%command%", "context": "%command%", - "reference": "Modules/Settings/AutoStartTab.qml:486", + "reference": "Modules/Settings/AutoStartTab.qml:519", "comment": "" }, { @@ -254,7 +248,7 @@ { "term": "+ %1 more", "context": "+ %1 more", - "reference": "Modules/Lock/LockScreenContent.qml:556, Modules/Lock/LockScreenContent.qml:671", + "reference": "Modules/Lock/LockScreenContent.qml:611, Modules/Lock/LockScreenContent.qml:726", "comment": "" }, { @@ -266,13 +260,13 @@ { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:1712", + "reference": "Modules/Settings/ThemeColorsTab.qml:1728", "comment": "" }, { "term": "1 day", "context": "1 day", - "reference": "Modules/Settings/NotificationsTab.qml:887, Modules/Settings/NotificationsTab.qml:900, Modules/Settings/NotificationsTab.qml:905, Modules/Settings/ClipboardTab.qml:103", + "reference": "Modules/Settings/NotificationsTab.qml:884, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:902, Modules/Settings/ClipboardTab.qml:103", "comment": "notification history retention option" }, { @@ -308,7 +302,7 @@ { "term": "1 notification", "context": "1 notification", - "reference": "Modules/Lock/LockScreenContent.qml:476", + "reference": "Modules/Lock/LockScreenContent.qml:531", "comment": "" }, { @@ -356,7 +350,7 @@ { "term": "14 days", "context": "14 days", - "reference": "Modules/Settings/NotificationsTab.qml:893, Modules/Settings/NotificationsTab.qml:900, Modules/Settings/NotificationsTab.qml:911, Modules/Settings/ClipboardTab.qml:115", + "reference": "Modules/Settings/NotificationsTab.qml:890, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:908, Modules/Settings/ClipboardTab.qml:115", "comment": "notification history retention option" }, { @@ -386,7 +380,7 @@ { "term": "180°", "context": "180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2593, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2614", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2601, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2622", "comment": "" }, { @@ -446,13 +440,13 @@ { "term": "270°", "context": "270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2595, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2616", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2603, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2624", "comment": "" }, { "term": "3 days", "context": "3 days", - "reference": "Modules/Settings/NotificationsTab.qml:889, Modules/Settings/NotificationsTab.qml:900, Modules/Settings/NotificationsTab.qml:907, Modules/Settings/ClipboardTab.qml:107", + "reference": "Modules/Settings/NotificationsTab.qml:886, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:904, Modules/Settings/ClipboardTab.qml:107", "comment": "notification history retention option" }, { @@ -476,7 +470,7 @@ { "term": "30 days", "context": "30 days", - "reference": "Modules/Settings/NotificationsTab.qml:895, Modules/Settings/NotificationsTab.qml:900, Modules/Settings/NotificationsTab.qml:913, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", + "reference": "Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:910, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", "comment": "notification history filter | notification history retention option" }, { @@ -512,7 +506,7 @@ { "term": "3rd party", "context": "3rd party", - "reference": "Modules/Settings/PluginBrowser.qml:941", + "reference": "Modules/Settings/PluginBrowser.qml:1012", "comment": "" }, { @@ -584,7 +578,7 @@ { "term": "7 days", "context": "7 days", - "reference": "Modules/Settings/NotificationsTab.qml:891, Modules/Settings/NotificationsTab.qml:900, Modules/Settings/NotificationsTab.qml:909, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", + "reference": "Modules/Settings/NotificationsTab.qml:888, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:906, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", "comment": "notification history filter | notification history retention option" }, { @@ -614,7 +608,7 @@ { "term": "90°", "context": "90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2591, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2612", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2599, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2620", "comment": "" }, { @@ -632,7 +626,7 @@ { "term": "A modern desktop shell for Wayland compositors", "context": "A modern desktop shell for Wayland compositors", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:55", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:54", "comment": "greeter welcome page tagline" }, { @@ -680,7 +674,7 @@ { "term": "About", "context": "About", - "reference": "Modals/Settings/SettingsSidebar.qml:401, Modules/Settings/AboutTab.qml:576", + "reference": "Modals/Settings/SettingsSidebar.qml:407, Modules/Settings/AboutTab.qml:576", "comment": "" }, { @@ -710,25 +704,25 @@ { "term": "Access clipboard history", "context": "Access clipboard history", - "reference": "Modules/Settings/WidgetsTab.qml:104", + "reference": "Modules/Settings/WidgetsTab.qml:120", "comment": "" }, { "term": "Access to notifications and do not disturb", "context": "Access to notifications and do not disturb", - "reference": "Modules/Settings/WidgetsTab.qml:172", + "reference": "Modules/Settings/WidgetsTab.qml:188", "comment": "" }, { "term": "Access to system controls and settings", "context": "Access to system controls and settings", - "reference": "Modules/Settings/WidgetsTab.qml:165", + "reference": "Modules/Settings/WidgetsTab.qml:181", "comment": "" }, { "term": "Action", "context": "Action", - "reference": "Widgets/KeybindItem.qml:961, Widgets/KeybindItem.qml:1163, Modules/Settings/NotificationsTab.qml:634", + "reference": "Widgets/KeybindItem.qml:961, Widgets/KeybindItem.qml:1163, Modules/Settings/NotificationsTab.qml:631", "comment": "" }, { @@ -740,19 +734,19 @@ { "term": "Action performed when scrolling horizontally on the bar", "context": "Action performed when scrolling horizontally on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1854", + "reference": "Modules/Settings/DankBarTab.qml:1900", "comment": "" }, { "term": "Action performed when scrolling vertically on the bar", "context": "Action performed when scrolling vertically on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1814", + "reference": "Modules/Settings/DankBarTab.qml:1860", "comment": "" }, { "term": "Actions", "context": "Actions", - "reference": "Widgets/DankIconPicker.qml:51, Modules/Settings/WindowRulesTab.qml:1052", + "reference": "Widgets/DankIconPicker.qml:51, Modules/Settings/WindowRulesTab.qml:1050", "comment": "" }, { @@ -788,7 +782,7 @@ { "term": "Active Color", "context": "Active Color", - "reference": "Modules/Settings/WidgetsTabSection.qml:3569", + "reference": "Modules/Settings/WidgetsTabSection.qml:3727", "comment": "" }, { @@ -842,13 +836,13 @@ { "term": "Adaptive Media Width", "context": "Adaptive Media Width", - "reference": "Modules/Settings/MediaPlayerTab.qml:50", + "reference": "Modules/Settings/MediaPlayerTab.qml:62", "comment": "" }, { "term": "Add", "context": "Add", - "reference": "Widgets/KeybindItem.qml:1874, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:152", + "reference": "Widgets/KeybindItem.qml:1874, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:248", "comment": "" }, { @@ -866,7 +860,7 @@ { "term": "Add Bar", "context": "Add Bar", - "reference": "Modules/Settings/DankBarTab.qml:284", + "reference": "Modules/Settings/DankBarTab.qml:286", "comment": "" }, { @@ -878,7 +872,7 @@ { "term": "Add Entry", "context": "Add Entry", - "reference": "Modules/Settings/AutoStartTab.qml:348", + "reference": "Modules/Settings/AutoStartTab.qml:380", "comment": "" }, { @@ -896,13 +890,13 @@ { "term": "Add Widget", "context": "Add Widget", - "reference": "Modules/Settings/WidgetsTabSection.qml:921, Modules/Settings/WidgetSelectionPopup.qml:107, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:131, Modules/ControlCenter/Components/EditControls.qml:238", + "reference": "Modules/Settings/WidgetsTabSection.qml:1079, Modules/Settings/WidgetSelectionPopup.qml:111, Modules/Settings/DesktopWidgetsTab.qml:191, Modules/ControlCenter/Components/EditControls.qml:131, Modules/ControlCenter/Components/EditControls.qml:238", "comment": "" }, { "term": "Add Widget to %1", "context": "Add Widget to %1", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:236", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:240", "comment": "" }, { @@ -932,7 +926,7 @@ { "term": "Add and configure widgets that appear on your desktop", "context": "Add and configure widgets that appear on your desktop", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:84", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:180", "comment": "" }, { @@ -974,13 +968,13 @@ { "term": "Add to Autostart", "context": "Add to Autostart", - "reference": "Modules/Settings/AutoStartTab.qml:576", + "reference": "Modules/Settings/AutoStartTab.qml:609", "comment": "" }, { "term": "Adjust the bar height via inner padding", "context": "Adjust the bar height via inner padding", - "reference": "Modules/Settings/DankBarTab.qml:932", + "reference": "Modules/Settings/DankBarTab.qml:934", "comment": "" }, { @@ -992,7 +986,7 @@ { "term": "Adjust volume per scroll indent", "context": "Adjust volume per scroll indent", - "reference": "Modules/Settings/MediaPlayerTab.qml:89", + "reference": "Modules/Settings/MediaPlayerTab.qml:101", "comment": "" }, { @@ -1022,7 +1016,7 @@ { "term": "All", "context": "All", - "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modals/Clipboard/ClipboardContent.qml:15, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:3303, Modules/Settings/WidgetsTabSection.qml:3357, Modules/Settings/PluginBrowser.qml:173, Modules/Settings/KeybindsTab.qml:468, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:254, Modules/Notifications/Center/HistoryNotificationList.qml:87", + "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:357, Modals/DankLauncherV2/LauncherContent.qml:635, Modals/Clipboard/ClipboardContent.qml:15, Modules/ProcessList/ProcessListPopout.qml:168, Modules/Settings/WidgetsTabSection.qml:3461, Modules/Settings/WidgetsTabSection.qml:3515, Modules/Settings/PluginBrowser.qml:194, Modules/Settings/KeybindsTab.qml:458, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:254, Modules/Notifications/Center/HistoryNotificationList.qml:87", "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter" }, { @@ -1046,7 +1040,7 @@ { "term": "All displays", "context": "All displays", - "reference": "Modules/Plugins/PluginSettings.qml:257, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:369, Modules/Settings/DankBarTab.qml:564, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", + "reference": "Modules/Plugins/PluginSettings.qml:257, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:371, Modules/Settings/DankBarTab.qml:566, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", "comment": "" }, { @@ -1064,7 +1058,7 @@ { "term": "Allow adjusting device volume by scrolling on the right half of items in the device list", "context": "Allow adjusting device volume by scrolling on the right half of items in the device list", - "reference": "Modules/Settings/MediaPlayerTab.qml:119", + "reference": "Modules/Settings/MediaPlayerTab.qml:131", "comment": "" }, { @@ -1130,7 +1124,7 @@ { "term": "Always on icons", "context": "Always on icons", - "reference": "Modules/Settings/WidgetsTabSection.qml:2321", + "reference": "Modules/Settings/WidgetsTabSection.qml:2479", "comment": "" }, { @@ -1163,6 +1157,12 @@ "reference": "Widgets/KeybindItem.qml:1007", "comment": "" }, + { + "term": "An xray rule at %1 may conflict with the Xray settings below", + "context": "An xray rule at %1 may conflict with the Xray settings below", + "reference": "Modules/Settings/CompositorLayoutTab.qml:262", + "comment": "" + }, { "term": "Analog", "context": "Analog", @@ -1196,7 +1196,7 @@ { "term": "Animation Speed", "context": "Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:480, Modules/Settings/NotificationsTab.qml:364", + "reference": "Modules/Settings/TypographyMotionTab.qml:480, Modules/Settings/NotificationsTab.qml:361", "comment": "" }, { @@ -1220,7 +1220,7 @@ { "term": "Any window", "context": "Any window", - "reference": "Modules/Settings/WindowRulesTab.qml:87, Modules/Settings/WindowRulesTab.qml:1043", + "reference": "Modules/Settings/WindowRulesTab.qml:87, Modules/Settings/WindowRulesTab.qml:1041", "comment": "" }, { @@ -1262,21 +1262,27 @@ { "term": "App Launcher", "context": "App Launcher", - "reference": "Modules/Settings/WidgetsTab.qml:47", + "reference": "Modules/Settings/WidgetsTab.qml:63", "comment": "" }, { "term": "App Names", "context": "App Names", - "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:85, Modules/Settings/NotificationsTab.qml:777", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:85, Modules/Settings/NotificationsTab.qml:774", "comment": "lock screen notification mode option | notification rule match field option" }, { "term": "App Theming", "context": "App Theming", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:98", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:97", "comment": "greeter feature card title" }, + { + "term": "App name or identity (e.g., firefox)", + "context": "App name or identity (e.g., firefox)", + "reference": "Modules/Settings/MediaPlayerTab.qml:164", + "comment": "" + }, { "term": "Appearance", "context": "Appearance", @@ -1286,7 +1292,7 @@ { "term": "Application", "context": "Application", - "reference": "Modules/Settings/AutoStartTab.qml:376", + "reference": "Modules/Settings/AutoStartTab.qml:408", "comment": "" }, { @@ -1298,13 +1304,13 @@ { "term": "Applications", "context": "Applications", - "reference": "Modals/DankLauncherV2/Controller.qml:207, Modals/Settings/SettingsSidebar.qml:271, Modules/Settings/ThemeColorsTab.qml:2041, Modules/Dock/DockLauncherButton.qml:25", + "reference": "Modals/DankLauncherV2/Controller.qml:207, Modals/Settings/SettingsSidebar.qml:277, Modules/Settings/ThemeColorsTab.qml:2071, Modules/Dock/DockLauncherButton.qml:25", "comment": "" }, { "term": "Applications and commands to start automatically when you log in", "context": "Applications and commands to start automatically when you log in", - "reference": "Modules/Settings/AutoStartTab.qml:601", + "reference": "Modules/Settings/AutoStartTab.qml:635", "comment": "" }, { @@ -1322,13 +1328,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2790", + "reference": "Modules/Settings/ThemeColorsTab.qml:2835", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2824", + "reference": "Modules/Settings/ThemeColorsTab.qml:2869", "comment": "" }, { @@ -1340,7 +1346,7 @@ { "term": "Apply inverse concave corner cutouts to the bar", "context": "Apply inverse concave corner cutouts to the bar", - "reference": "Modules/Settings/DankBarTab.qml:1210", + "reference": "Modules/Settings/DankBarTab.qml:1212", "comment": "" }, { @@ -1370,19 +1376,19 @@ { "term": "Apps", "context": "Apps", - "reference": "Modals/DankLauncherV2/SpotlightLauncherContent.qml:443, Modals/DankLauncherV2/LauncherContent.qml:344", + "reference": "Modals/DankLauncherV2/SpotlightLauncherContent.qml:443, Modals/DankLauncherV2/LauncherContent.qml:362", "comment": "" }, { "term": "Apps Dock", "context": "Apps Dock", - "reference": "Modules/Settings/WidgetsTab.qml:75", + "reference": "Modules/Settings/WidgetsTab.qml:91", "comment": "" }, { "term": "Apps Dock Settings", "context": "Apps Dock Settings", - "reference": "Modules/Settings/WidgetsTabSection.qml:3253", + "reference": "Modules/Settings/WidgetsTabSection.qml:3411", "comment": "" }, { @@ -1406,7 +1412,7 @@ { "term": "Apps with notification popups muted. Unmute or delete to remove.", "context": "Apps with notification popups muted. Unmute or delete to remove.", - "reference": "Modules/Settings/NotificationsTab.qml:689", + "reference": "Modules/Settings/NotificationsTab.qml:686", "comment": "" }, { @@ -1460,7 +1466,7 @@ { "term": "Audio", "context": "Audio", - "reference": "Modals/Settings/SettingsSidebar.qml:312, Modules/Settings/WidgetsTabSection.qml:1792, Modules/Settings/WidgetsTabSection.qml:2021", + "reference": "Modals/Settings/SettingsSidebar.qml:318, Modules/Settings/WidgetsTabSection.qml:1950, Modules/Settings/WidgetsTabSection.qml:2179", "comment": "" }, { @@ -1490,7 +1496,7 @@ { "term": "Audio Output", "context": "Audio Output", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1876, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1876, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, Modules/ControlCenter/Models/WidgetModel.qml:179", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1876, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1875, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, Modules/ControlCenter/Models/WidgetModel.qml:179", "comment": "" }, { @@ -1508,7 +1514,7 @@ { "term": "Audio Visualizer", "context": "Audio Visualizer", - "reference": "Modules/Settings/MediaPlayerTab.qml:43", + "reference": "Modules/Settings/MediaPlayerTab.qml:55", "comment": "" }, { @@ -1544,7 +1550,7 @@ { "term": "Authenticating...", "context": "Authenticating...", - "reference": "Modules/Greetd/GreeterContent.qml:1231", + "reference": "Modules/Greetd/GreeterContent.qml:1235", "comment": "" }, { @@ -1586,7 +1592,7 @@ { "term": "Authentication error - try again", "context": "Authentication error - try again", - "reference": "Modules/Lock/LockScreenContent.qml:59, Modules/Greetd/GreeterContent.qml:241", + "reference": "Modules/Lock/LockScreenContent.qml:59, Modules/Greetd/GreeterContent.qml:245", "comment": "" }, { @@ -1616,13 +1622,13 @@ { "term": "Auto", "context": "Auto", - "reference": "Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/WidgetsTabSection.qml:1298, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/TimeWeatherTab.qml:135, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/NetworkWifiTab.qml:239, Modules/Settings/NetworkWifiTab.qml:243, Modules/Settings/NetworkWifiTab.qml:244, Modules/Settings/NetworkWifiTab.qml:247, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:119, Modules/ControlCenter/Details/NetworkDetail.qml:122, Modules/ControlCenter/Details/NetworkDetail.qml:125, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106", + "reference": "Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/WidgetsTabSection.qml:1456, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/TimeWeatherTab.qml:135, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/NetworkWifiTab.qml:239, Modules/Settings/NetworkWifiTab.qml:243, Modules/Settings/NetworkWifiTab.qml:244, Modules/Settings/NetworkWifiTab.qml:247, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:119, Modules/ControlCenter/Details/NetworkDetail.qml:122, Modules/ControlCenter/Details/NetworkDetail.qml:125, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106", "comment": "calendar backend option | theme category option" }, { "term": "Auto (Bar-aware)", "context": "Auto (Bar-aware)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1916, Modules/Settings/ThemeColorsTab.qml:1929, Modules/Settings/DankBarTab.qml:1641, Modules/Settings/DankBarTab.qml:1645, Modules/Settings/DankBarTab.qml:1653", + "reference": "Modules/Settings/ThemeColorsTab.qml:1942, Modules/Settings/ThemeColorsTab.qml:1946, Modules/Settings/ThemeColorsTab.qml:1959, Modules/Settings/DankBarTab.qml:1687, Modules/Settings/DankBarTab.qml:1691, Modules/Settings/DankBarTab.qml:1699", "comment": "bar shadow direction source option | shadow direction option" }, { @@ -1646,13 +1652,13 @@ { "term": "Auto Overflow", "context": "Auto Overflow", - "reference": "Modules/Settings/WidgetsTabSection.qml:1237", + "reference": "Modules/Settings/WidgetsTabSection.qml:1395", "comment": "" }, { "term": "Auto Popup Gaps", "context": "Auto Popup Gaps", - "reference": "Modules/Settings/DankBarTab.qml:1032", + "reference": "Modules/Settings/DankBarTab.qml:1034", "comment": "" }, { @@ -1682,7 +1688,7 @@ { "term": "Auto-Hide Timeout", "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:2230", + "reference": "Modules/Settings/ThemeColorsTab.qml:2275", "comment": "" }, { @@ -1694,13 +1700,13 @@ { "term": "Auto-delete notifications older than this", "context": "Auto-delete notifications older than this", - "reference": "Modules/Settings/NotificationsTab.qml:881", + "reference": "Modules/Settings/NotificationsTab.qml:878", "comment": "notification history setting" }, { "term": "Auto-hide", "context": "Auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:652", + "reference": "Modules/Settings/DankBarTab.qml:654", "comment": "" }, { @@ -1712,7 +1718,7 @@ { "term": "Auto-login", "context": "Auto-login", - "reference": "Modules/Greetd/GreeterUserPicker.qml:223, Modules/Greetd/GreeterContent.qml:1452", + "reference": "Modules/Greetd/GreeterUserPicker.qml:223", "comment": "" }, { @@ -1784,7 +1790,7 @@ { "term": "Automatically calculate popup gap based on bar spacing", "context": "Automatically calculate popup gap based on bar spacing", - "reference": "Modules/Settings/DankBarTab.qml:1033", + "reference": "Modules/Settings/DankBarTab.qml:1035", "comment": "" }, { @@ -1814,7 +1820,7 @@ { "term": "Automatically hide the bar when the pointer moves away", "context": "Automatically hide the bar when the pointer moves away", - "reference": "Modules/Settings/DankBarTab.qml:653", + "reference": "Modules/Settings/DankBarTab.qml:655", "comment": "" }, { @@ -1856,13 +1862,13 @@ { "term": "Autostart Apps", "context": "Autostart Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:290", + "reference": "Modals/Settings/SettingsSidebar.qml:296", "comment": "" }, { "term": "Autostart Entries", "context": "Autostart Entries", - "reference": "Modules/Settings/AutoStartTab.qml:590", + "reference": "Modules/Settings/AutoStartTab.qml:624", "comment": "" }, { @@ -1916,13 +1922,13 @@ { "term": "Back", "context": "Back", - "reference": "Modals/Greeter/GreeterModal.qml:286, Modules/DankBar/Widgets/SystemTrayBar.qml:1942", + "reference": "Modals/Greeter/GreeterModal.qml:286, Modules/DankBar/Widgets/SystemTrayBar.qml:1944", "comment": "greeter back button" }, { "term": "Back to user list", "context": "Back to user list", - "reference": "Modules/Greetd/GreeterContent.qml:1387", + "reference": "Modules/Greetd/GreeterContent.qml:1391", "comment": "greeter link to return from manual username entry to user picker" }, { @@ -1946,7 +1952,7 @@ { "term": "Background Blur", "context": "Background Blur", - "reference": "Modules/Settings/ThemeColorsTab.qml:1725, Modules/Settings/ThemeColorsTab.qml:1733", + "reference": "Modules/Settings/ThemeColorsTab.qml:1748, Modules/Settings/ThemeColorsTab.qml:1756", "comment": "" }, { @@ -1988,19 +1994,19 @@ { "term": "Balance power and performance", "context": "Balance power and performance", - "reference": "Common/Theme.qml:1639", + "reference": "Common/Theme.qml:1654", "comment": "power profile description" }, { "term": "Balanced", "context": "Balanced", - "reference": "Common/Theme.qml:1626", + "reference": "Common/Theme.qml:1641", "comment": "power profile option" }, { "term": "Balanced palette with focused accents (default).", "context": "Balanced palette with focused accents (default).", - "reference": "Common/Theme.qml:480", + "reference": "Common/Theme.qml:484", "comment": "" }, { @@ -2012,67 +2018,67 @@ { "term": "Bar %1", "context": "Bar %1", - "reference": "Modules/Settings/DankBarTab.qml:45, Modules/Settings/DankBarTab.qml:252", + "reference": "Modules/Settings/DankBarTab.qml:45, Modules/Settings/DankBarTab.qml:254", "comment": "numbered name for an unnamed bar, %1 is its position" }, { "term": "Bar Configurations", "context": "Bar Configurations", - "reference": "Modules/Settings/DankBarTab.qml:267", + "reference": "Modules/Settings/DankBarTab.qml:269", "comment": "" }, { "term": "Bar Inset Padding", "context": "Bar Inset Padding", - "reference": "Modules/Settings/DankBarTab.qml:988, Modules/Settings/FrameTab.qml:168", + "reference": "Modules/Settings/DankBarTab.qml:990, Modules/Settings/FrameTab.qml:168", "comment": "" }, { "term": "Bar Opacity", "context": "Bar Opacity", - "reference": "Modules/Settings/DankBarTab.qml:816, Modules/Settings/DankBarTab.qml:863", + "reference": "Modules/Settings/DankBarTab.qml:818, Modules/Settings/DankBarTab.qml:865", "comment": "" }, { "term": "Bar Shadows", "context": "Bar Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:2004", + "reference": "Modules/Settings/ThemeColorsTab.qml:2034", "comment": "" }, { "term": "Bar Spacing", "context": "Bar Spacing", - "reference": "Modules/Settings/DankBarTab.qml:878", + "reference": "Modules/Settings/DankBarTab.qml:880", "comment": "" }, { "term": "Bar corners and background", "context": "Bar corners and background", - "reference": "Modules/Settings/DankBarTab.qml:1150", + "reference": "Modules/Settings/DankBarTab.qml:1152", "comment": "" }, { "term": "Bar shadow, border, and corners", "context": "Bar shadow, border, and corners", - "reference": "Modules/Settings/DankBarTab.qml:1562", + "reference": "Modules/Settings/DankBarTab.qml:1608", "comment": "" }, { "term": "Base color for shadows (opacity is applied automatically)", "context": "Base color for shadows (opacity is applied automatically)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1873", + "reference": "Modules/Settings/ThemeColorsTab.qml:1903", "comment": "" }, { "term": "Base duration for animations (drag to use Custom)", "context": "Base duration for animations (drag to use Custom)", - "reference": "Modules/Settings/NotificationsTab.qml:407", + "reference": "Modules/Settings/NotificationsTab.qml:404", "comment": "" }, { "term": "Battery", "context": "Battery", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1678, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:740, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1678, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:740, Modals/Settings/SettingsSidebar.qml:383, Modules/Settings/WidgetsTabSection.qml:1837, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:178, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1678, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:740, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1677, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:740, Modals/Settings/SettingsSidebar.qml:371, Modules/Settings/WidgetsTabSection.qml:1995, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:194, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "KDE Connect battery label" }, { @@ -2120,25 +2126,25 @@ { "term": "Battery has charged to your set limit of %1%", "context": "Battery has charged to your set limit of %1%", - "reference": "Services/BatteryService.qml:128", + "reference": "Services/BatteryService.qml:140", "comment": "" }, { "term": "Battery is at %1% - Connect charger immediately!", "context": "Battery is at %1% - Connect charger immediately!", - "reference": "Services/BatteryService.qml:144", + "reference": "Services/BatteryService.qml:156", "comment": "" }, { "term": "Battery is at %1% - Consider charging soon", "context": "Battery is at %1% - Consider charging soon", - "reference": "Services/BatteryService.qml:157", + "reference": "Services/BatteryService.qml:169", "comment": "" }, { "term": "Battery level and power management", "context": "Battery level and power management", - "reference": "Modules/Settings/WidgetsTab.qml:179", + "reference": "Modules/Settings/WidgetsTab.qml:195", "comment": "" }, { @@ -2171,12 +2177,6 @@ "reference": "Modules/Settings/LauncherTab.qml:236", "comment": "" }, - { - "term": "Binds Include Missing", - "context": "Binds Include Missing", - "reference": "Modules/Settings/KeybindsTab.qml:388", - "comment": "" - }, { "term": "Binds include added", "context": "Binds include added", @@ -2186,7 +2186,7 @@ { "term": "Bit Depth", "context": "Bit Depth", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2045", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053", "comment": "" }, { @@ -2234,7 +2234,7 @@ { "term": "Bluetooth", "context": "Bluetooth", - "reference": "Modules/Settings/WidgetsTabSection.qml:1782, Modules/Settings/WidgetsTabSection.qml:2021, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:475", + "reference": "Modules/Settings/WidgetsTabSection.qml:1940, Modules/Settings/WidgetsTabSection.qml:2179, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:503", "comment": "bluetooth status" }, { @@ -2258,13 +2258,13 @@ { "term": "Blur Border Color", "context": "Blur Border Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:178, Modules/Settings/ThemeColorsTab.qml:1771", + "reference": "Modules/Settings/ThemeColorsTab.qml:178, Modules/Settings/ThemeColorsTab.qml:1767", "comment": "" }, { "term": "Blur Border Opacity", "context": "Blur Border Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1809", + "reference": "Modules/Settings/ThemeColorsTab.qml:1805", "comment": "" }, { @@ -2282,7 +2282,7 @@ { "term": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.", "context": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1734", + "reference": "Modules/Settings/ThemeColorsTab.qml:1757", "comment": "" }, { @@ -2291,6 +2291,12 @@ "reference": "Modules/Settings/WallpaperTab.qml:820", "comment": "" }, + { + "term": "Blurred surfaces show the wallpaper instead of the content beneath", + "context": "Blurred surfaces show the wallpaper instead of the content beneath", + "reference": "Modules/Settings/CompositorLayoutTab.qml:371, Modules/Settings/CompositorLayoutTab.qml:487", + "comment": "" + }, { "term": "Body", "context": "Body", @@ -2300,7 +2306,7 @@ { "term": "Body Font Size", "context": "Body Font Size", - "reference": "Modules/Settings/NotificationsTab.qml:227", + "reference": "Modules/Settings/NotificationsTab.qml:226", "comment": "" }, { @@ -2312,13 +2318,13 @@ { "term": "Border", "context": "Border", - "reference": "Modules/Settings/DockTab.qml:671, Modules/Settings/DockTab.qml:678, Modules/Settings/LauncherTab.qml:686, Modules/Settings/DankBarTab.qml:1373, Modules/Settings/FrameTab.qml:79", + "reference": "Modules/Settings/DockTab.qml:671, Modules/Settings/DockTab.qml:678, Modules/Settings/LauncherTab.qml:686, Modules/Settings/DankBarTab.qml:1419, Modules/Settings/FrameTab.qml:79", "comment": "launcher border option" }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspaceAppearanceCard.qml:282, Modules/Settings/FrameTab.qml:230, Modules/Settings/WindowRulesTab.qml:137", + "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspaceAppearanceBorderFields.qml:22, Modules/Settings/FrameTab.qml:230, Modules/Settings/WindowRulesTab.qml:137", "comment": "" }, { @@ -2342,7 +2348,7 @@ { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/CompositorLayoutTab.qml:107, Modules/Settings/CompositorLayoutTab.qml:204, Modules/Settings/CompositorLayoutTab.qml:310", + "reference": "Modules/Settings/CompositorLayoutTab.qml:355, Modules/Settings/CompositorLayoutTab.qml:462, Modules/Settings/CompositorLayoutTab.qml:578", "comment": "" }, { @@ -2360,7 +2366,7 @@ { "term": "Border color around blurred surfaces", "context": "Border color around blurred surfaces", - "reference": "Modules/Settings/ThemeColorsTab.qml:1772", + "reference": "Modules/Settings/ThemeColorsTab.qml:1768", "comment": "" }, { @@ -2378,31 +2384,31 @@ { "term": "Bottom", "context": "Bottom", - "reference": "Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1922, Modules/Settings/ThemeColorsTab.qml:1935, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:342, Modules/Settings/DankBarTab.qml:491, Modules/Settings/DankBarTab.qml:1675, Modules/Settings/DankBarTab.qml:1683, Modules/Settings/DankBarTab.qml:1697, Modules/Settings/FrameTab.qml:343", + "reference": "Modules/Settings/ThemeColorsTab.qml:1942, Modules/Settings/ThemeColorsTab.qml:1952, Modules/Settings/ThemeColorsTab.qml:1965, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:344, Modules/Settings/DankBarTab.qml:493, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1729, Modules/Settings/DankBarTab.qml:1743, Modules/Settings/FrameTab.qml:343", "comment": "shadow direction option" }, { "term": "Bottom Center", "context": "Bottom Center", - "reference": "Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66, Modules/Settings/NotificationsTab.qml:255, Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:272", + "reference": "Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66, Modules/Settings/NotificationsTab.qml:254, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:271", "comment": "screen position option" }, { "term": "Bottom Left", "context": "Bottom Left", - "reference": "Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/NotificationsTab.qml:249, Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:278, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "reference": "Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/NotificationsTab.qml:248, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:277, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", "comment": "screen position option" }, { "term": "Bottom Right", "context": "Bottom Right", - "reference": "Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/NotificationsTab.qml:253, Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "reference": "Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/NotificationsTab.qml:252, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:274, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", "comment": "screen position option" }, { "term": "Bottom Section", "context": "Bottom Section", - "reference": "Modules/Settings/WidgetsTab.qml:1216", + "reference": "Modules/Settings/WidgetsTab.qml:1488", "comment": "" }, { @@ -2414,7 +2420,7 @@ { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/WidgetsTabSection.qml:1822, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/DockTab.qml:498, Modules/Settings/LauncherTab.qml:519, Modules/Settings/OSDTab.qml:117", + "reference": "Modules/Settings/WidgetsTabSection.qml:1980, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/DockTab.qml:498, Modules/Settings/LauncherTab.qml:519, Modules/Settings/OSDTab.qml:117", "comment": "" }, { @@ -2426,7 +2432,7 @@ { "term": "Brightness Value", "context": "Brightness Value", - "reference": "Modules/Settings/WidgetsTabSection.qml:1827, Modules/Settings/WidgetsTabSection.qml:2021", + "reference": "Modules/Settings/WidgetsTabSection.qml:1985, Modules/Settings/WidgetsTabSection.qml:2179", "comment": "" }, { @@ -2438,19 +2444,19 @@ { "term": "Browse", "context": "Browse", - "reference": "Modals/DankLauncherV2/SpotlightResultRow.qml:62, Modals/DankLauncherV2/Controller.qml:228, Modals/DankLauncherV2/Controller.qml:1376, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/GreeterTab.qml:681, Modules/Settings/AutoStartTab.qml:454, Modules/Settings/PluginsTab.qml:231, Modules/Settings/LockScreenTab.qml:327", + "reference": "Modals/DankLauncherV2/SpotlightResultRow.qml:62, Modals/DankLauncherV2/Controller.qml:228, Modals/DankLauncherV2/Controller.qml:1376, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/GreeterTab.qml:681, Modules/Settings/AutoStartTab.qml:487, Modules/Settings/PluginsTab.qml:231, Modules/Settings/LockScreenTab.qml:327", "comment": "theme category option" }, { "term": "Browse Files", "context": "Browse Files", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1599, dms-plugins/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:656, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1599, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:656", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1599, dms-plugins/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:656, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1598, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:656", "comment": "KDE Connect browse tooltip" }, { "term": "Browse Plugins", "context": "Browse Plugins", - "reference": "Modules/Settings/PluginBrowser.qml:425, Modules/Settings/PluginBrowser.qml:535, Modules/Settings/DesktopWidgetsTab.qml:101", + "reference": "Modules/Settings/PluginBrowser.qml:478, Modules/Settings/PluginBrowser.qml:590, Modules/Settings/DesktopWidgetsTab.qml:197", "comment": "plugin browser header | plugin browser window title" }, { @@ -2459,6 +2465,12 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:844, Modules/Settings/ThemeBrowser.qml:147, Modules/Settings/ThemeBrowser.qml:244", "comment": "browse themes button | theme browser header | theme browser window title" }, + { + "term": "Browse and set wallpapers", + "context": "Browse and set wallpapers", + "reference": "Modules/Settings/DankDashTab.qml:29", + "comment": "" + }, { "term": "Browse or search plugins", "context": "Browse or search plugins", @@ -2486,25 +2498,25 @@ { "term": "CPU Temperature", "context": "CPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:134, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", + "reference": "Modules/Settings/WidgetsTab.qml:150, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", "comment": "" }, { "term": "CPU Usage", "context": "CPU Usage", - "reference": "Modules/Settings/WidgetsTab.qml:110", + "reference": "Modules/Settings/WidgetsTab.qml:126", "comment": "" }, { "term": "CPU temperature display", "context": "CPU temperature display", - "reference": "Modules/Settings/WidgetsTab.qml:135", + "reference": "Modules/Settings/WidgetsTab.qml:151", "comment": "" }, { "term": "CPU usage indicator", "context": "CPU usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:111", + "reference": "Modules/Settings/WidgetsTab.qml:127", "comment": "" }, { @@ -2552,13 +2564,13 @@ { "term": "Camera", "context": "Camera", - "reference": "Modules/Settings/WidgetsTabSection.qml:2402", + "reference": "Modules/Settings/WidgetsTabSection.qml:2560", "comment": "" }, { "term": "Cancel", "context": "Cancel", - "reference": "DMSShell.qml:555, Modals/WindowRuleModal.qml:1851, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:267, Modals/WifiPasswordModal.qml:677, Widgets/KeybindItem.qml:1858, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:322, Modules/Settings/PluginBrowser.qml:400, Modules/Settings/PluginBrowser.qml:1342, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankDash/Overview/CalendarEventEditor.qml:342, Modules/DankBar/Popouts/SystemUpdatePopout.qml:203", + "reference": "DMSShell.qml:587, Modals/WindowRuleModal.qml:1851, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:267, Modals/WifiPasswordModal.qml:677, Widgets/KeybindItem.qml:1858, Modals/DankLauncherV2/LauncherContent.qml:1042, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:322, Modules/Settings/PluginBrowser.qml:453, Modules/Settings/PluginBrowser.qml:1492, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankDash/Overview/CalendarEventEditor.qml:342, Modules/DankBar/Popouts/SystemUpdatePopout.qml:203", "comment": "" }, { @@ -2630,13 +2642,13 @@ { "term": "Caps Lock Indicator", "context": "Caps Lock Indicator", - "reference": "Modules/Settings/WidgetsTab.qml:199", + "reference": "Modules/Settings/WidgetsTab.qml:215", "comment": "" }, { "term": "Caps Lock is on", "context": "Caps Lock is on", - "reference": "Modules/Lock/LockScreenContent.qml:1205", + "reference": "Modules/Lock/LockScreenContent.qml:1260", "comment": "" }, { @@ -2648,13 +2660,13 @@ { "term": "Category", "context": "Category", - "reference": "Modules/Settings/PluginBrowser.qml:63", + "reference": "Modules/Settings/PluginBrowser.qml:65", "comment": "plugin browser sort option" }, { "term": "Center Section", "context": "Center Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:28, Modules/Settings/WidgetsTab.qml:1140", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:30, Modules/Settings/WidgetsTab.qml:1401", "comment": "" }, { @@ -2678,13 +2690,13 @@ { "term": "Change Song", "context": "Change Song", - "reference": "Modules/Settings/MediaPlayerTab.qml:58", + "reference": "Modules/Settings/MediaPlayerTab.qml:70", "comment": "media scroll wheel option" }, { "term": "Change Volume", "context": "Change Volume", - "reference": "Modules/Settings/MediaPlayerTab.qml:58", + "reference": "Modules/Settings/MediaPlayerTab.qml:70", "comment": "media scroll wheel option" }, { @@ -2714,7 +2726,7 @@ { "term": "Charge Limit Reached", "context": "Charge Limit Reached", - "reference": "Services/BatteryService.qml:128", + "reference": "Services/BatteryService.qml:140", "comment": "" }, { @@ -2726,13 +2738,13 @@ { "term": "Charging", "context": "Charging", - "reference": "Services/BatteryService.qml:276, Services/BatteryService.qml:307, Modules/ControlCenter/Widgets/BatteryPill.qml:25", + "reference": "Services/BatteryService.qml:288, Services/BatteryService.qml:319, Modules/ControlCenter/Widgets/BatteryPill.qml:25", "comment": "battery status" }, { "term": "Check for system updates", "context": "Check for system updates", - "reference": "Modules/Settings/WidgetsTab.qml:249", + "reference": "Modules/Settings/WidgetsTab.qml:265", "comment": "" }, { @@ -2840,7 +2852,7 @@ { "term": "Choose how this bar resolves shadow direction", "context": "Choose how this bar resolves shadow direction", - "reference": "Modules/Settings/DankBarTab.qml:1639", + "reference": "Modules/Settings/DankBarTab.qml:1685", "comment": "" }, { @@ -2858,7 +2870,7 @@ { "term": "Choose monochrome or a theme color tint for system tray icons", "context": "Choose monochrome or a theme color tint for system tray icons", - "reference": "Modules/Settings/DankBarTab.qml:1277", + "reference": "Modules/Settings/DankBarTab.qml:1323", "comment": "" }, { @@ -2885,10 +2897,16 @@ "reference": "Modules/Settings/LauncherTab.qml:284", "comment": "" }, + { + "term": "Choose wallpaper folder", + "context": "Choose wallpaper folder", + "reference": "Modules/DankDash/WallpaperTab.qml:711", + "comment": "" + }, { "term": "Choose where notification popups appear on screen", "context": "Choose where notification popups appear on screen", - "reference": "Modules/Settings/NotificationsTab.qml:241", + "reference": "Modules/Settings/NotificationsTab.qml:240", "comment": "" }, { @@ -2900,7 +2918,7 @@ { "term": "Choose whether to launch a desktop app or a command", "context": "Choose whether to launch a desktop app or a command", - "reference": "Modules/Settings/AutoStartTab.qml:353", + "reference": "Modules/Settings/AutoStartTab.qml:385", "comment": "" }, { @@ -2960,7 +2978,7 @@ { "term": "Clear All", "context": "Clear All", - "reference": "Modals/Clipboard/ClipboardHeader.qml:71, Modals/Clipboard/ClipboardHistoryPopout.qml:105, Modals/Clipboard/ClipboardHistoryModal.qml:97, Modules/Settings/PrinterTab.qml:1370, Modules/DankBar/Widgets/ClipboardButton.qml:254", + "reference": "Modals/Clipboard/ClipboardHeader.qml:70, Modals/Clipboard/ClipboardHistoryPopout.qml:105, Modals/Clipboard/ClipboardHistoryModal.qml:97, Modules/Settings/PrinterTab.qml:1370, Modules/DankBar/Widgets/ClipboardButton.qml:254", "comment": "" }, { @@ -2972,7 +2990,7 @@ { "term": "Clear History?", "context": "Clear History?", - "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:139, Modules/DankBar/DankBarContent.qml:740", + "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:139, Modules/DankBar/DankBarContent.qml:906", "comment": "" }, { @@ -2993,28 +3011,16 @@ "reference": "Modules/Settings/ClipboardTab.qml:451", "comment": "" }, - { - "term": "Click 'Setup' to create %1 and add include to config.", - "context": "Click 'Setup' to create %1 and add include to config.", - "reference": "Modules/Settings/KeybindsTab.qml:404", - "comment": "" - }, { "term": "Click 'Setup' to create %1 and add include to your compositor config.", "context": "Click 'Setup' to create %1 and add include to your compositor config.", - "reference": "Modules/Settings/WindowRulesTab.qml:512", - "comment": "" - }, - { - "term": "Click 'Setup' to create cursor config and add include to your compositor config.", - "context": "Click 'Setup' to create cursor config and add include to your compositor config.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2118", + "reference": "Modules/Settings/ThemeColorsTab.qml:2160, Modules/Settings/WindowRulesTab.qml:510, Modules/Settings/KeybindsTab.qml:402, Modules/Settings/CompositorLayoutTab.qml:213", "comment": "" }, { "term": "Click 'Setup' to create the outputs config and add include to your compositor config.", "context": "Click 'Setup' to create the outputs config and add include to your compositor config.", - "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:68", + "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:65", "comment": "" }, { @@ -3032,7 +3038,7 @@ { "term": "Click Through", "context": "Click Through", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:754", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:756", "comment": "" }, { @@ -3080,7 +3086,7 @@ { "term": "Clipboard", "context": "Clipboard", - "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:68, Modals/DankLauncherV2/Controller.qml:221, Modals/DankLauncherV2/Controller.qml:1224, Modals/Settings/SettingsSidebar.qml:324", + "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:68, Modals/DankLauncherV2/Controller.qml:221, Modals/DankLauncherV2/Controller.qml:1224, Modals/Settings/SettingsSidebar.qml:330", "comment": "" }, { @@ -3092,7 +3098,7 @@ { "term": "Clipboard Manager", "context": "Clipboard Manager", - "reference": "Modules/Settings/WidgetsTab.qml:103", + "reference": "Modules/Settings/WidgetsTab.qml:119", "comment": "" }, { @@ -3104,7 +3110,7 @@ { "term": "Clipboard sent", "context": "Clipboard sent", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:613, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:58, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:613, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:58", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:613, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:58, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:612, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:58", "comment": "Phone Connect clipboard action" }, { @@ -3116,7 +3122,7 @@ { "term": "Clock", "context": "Clock", - "reference": "Modules/Settings/WidgetsTab.qml:82", + "reference": "Modules/Settings/WidgetsTab.qml:98", "comment": "" }, { @@ -3125,6 +3131,12 @@ "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:28, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:11", "comment": "" }, + { + "term": "Clock, calendar, system info and profile", + "context": "Clock, calendar, system info and profile", + "reference": "Modules/Settings/DankDashTab.qml:19", + "comment": "" + }, { "term": "Close", "context": "Close", @@ -3152,7 +3164,7 @@ { "term": "Color", "context": "Color", - "reference": "Modules/Settings/LauncherTab.qml:713, Modules/Settings/DankBarTab.qml:1381, Modules/Settings/DankBarTab.qml:1476, Modules/Settings/DankBarTab.qml:1715, Modules/Settings/DankBarTab.qml:1789, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "reference": "Modules/Settings/LauncherTab.qml:713, Modules/Settings/DankBarTab.qml:1427, Modules/Settings/DankBarTab.qml:1522, Modules/Settings/DankBarTab.qml:1761, Modules/Settings/DankBarTab.qml:1835, Modules/Settings/Widgets/SettingsColorPicker.qml:29", "comment": "border color" }, { @@ -3170,7 +3182,7 @@ { "term": "Color Management", "context": "Color Management", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2047", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", "comment": "" }, { @@ -3188,7 +3200,7 @@ { "term": "Color Picker", "context": "Color Picker", - "reference": "Services/AppSearchService.qml:204, Modules/Settings/WidgetsTab.qml:241, Modules/ControlCenter/Models/WidgetModel.qml:239, Modules/ControlCenter/Widgets/ColorPickerPill.qml:15", + "reference": "Services/AppSearchService.qml:204, Modules/Settings/WidgetsTab.qml:257, Modules/ControlCenter/Models/WidgetModel.qml:239, Modules/ControlCenter/Widgets/ColorPickerPill.qml:15", "comment": "" }, { @@ -3210,8 +3222,8 @@ "comment": "" }, { - "term": "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)", - "context": "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)", + "term": "Color shown for areas not covered by wallpaper", + "context": "Color shown for areas not covered by wallpaper", "reference": "Modules/Settings/WallpaperTab.qml:362", "comment": "" }, @@ -3254,25 +3266,25 @@ { "term": "Colorful mix of bright contrasting accents.", "context": "Colorful mix of bright contrasting accents.", - "reference": "Common/Theme.qml:500", + "reference": "Common/Theme.qml:504", "comment": "" }, { "term": "Colorize Active", "context": "Colorize Active", - "reference": "Modules/Settings/WidgetsTabSection.qml:3529", + "reference": "Modules/Settings/WidgetsTabSection.qml:3687", "comment": "" }, { "term": "Colors from wallpaper", "context": "Colors from wallpaper", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:91", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:90", "comment": "greeter feature card description" }, { "term": "Column", "context": "Column", - "reference": "Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1856", + "reference": "Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1902", "comment": "" }, { @@ -3296,13 +3308,13 @@ { "term": "Command", "context": "Command", - "reference": "Widgets/KeybindItem.qml:1501, Modules/Settings/AutoStartTab.qml:470, Modules/Settings/AutoStartTab.qml:538, Modules/Settings/DesktopWidgetInstanceCard.qml:386", + "reference": "Widgets/KeybindItem.qml:1501, Modules/Settings/AutoStartTab.qml:503, Modules/Settings/AutoStartTab.qml:571, Modules/Settings/DesktopWidgetInstanceCard.qml:386", "comment": "" }, { "term": "Command Line", "context": "Command Line", - "reference": "Modules/Settings/AutoStartTab.qml:354, Modules/Settings/AutoStartTab.qml:355", + "reference": "Modules/Settings/AutoStartTab.qml:386, Modules/Settings/AutoStartTab.qml:387", "comment": "" }, { @@ -3320,19 +3332,19 @@ { "term": "Community themes", "context": "Community themes", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:107", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:106", "comment": "greeter feature card description" }, { "term": "Compact", "context": "Compact", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:1482, Modules/Settings/NotificationsTab.qml:298", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:1640, Modules/Settings/NotificationsTab.qml:297", "comment": "" }, { "term": "Compact Mode", "context": "Compact Mode", - "reference": "Modules/Settings/WidgetsTabSection.qml:713, Modules/Settings/WidgetsTabSection.qml:3030", + "reference": "Modules/Settings/WidgetsTabSection.qml:876, Modules/Settings/WidgetsTabSection.qml:3188", "comment": "" }, { @@ -3356,7 +3368,7 @@ { "term": "Config Format", "context": "Config Format", - "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2009", + "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2017", "comment": "" }, { @@ -3368,13 +3380,13 @@ { "term": "Config validation failed", "context": "Config validation failed", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2092, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2100", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2100, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2108", "comment": "" }, { "term": "Configuration", "context": "Configuration", - "reference": "Modals/Settings/SettingsSidebar.qml:219", + "reference": "Modals/Settings/SettingsSidebar.qml:225", "comment": "" }, { @@ -3428,7 +3440,7 @@ { "term": "Configure which displays show \"%1\"", "context": "Configure which displays show \"%1\"", - "reference": "Modules/Settings/DankBarTab.qml:546", + "reference": "Modules/Settings/DankBarTab.qml:548", "comment": "" }, { @@ -3500,13 +3512,13 @@ { "term": "Connected", "context": "Connected", - "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkVpnTab.qml:101, Modules/Settings/NetworkEthernetTab.qml:163, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:59, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:969, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:26, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:111, Modules/ControlCenter/Components/DragDropGrid.qml:501, Modules/ControlCenter/Components/DragDropGrid.qml:504, Modules/ControlCenter/Components/DragDropGrid.qml:506, Modules/ControlCenter/Components/DragDropGrid.qml:509", + "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkVpnTab.qml:101, Modules/Settings/NetworkEthernetTab.qml:163, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:59, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:969, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:26, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:111, Modules/ControlCenter/Components/DragDropGrid.qml:529, Modules/ControlCenter/Components/DragDropGrid.qml:532, Modules/ControlCenter/Components/DragDropGrid.qml:534, Modules/ControlCenter/Components/DragDropGrid.qml:537", "comment": "Tailscale connection status: connected | network status" }, { "term": "Connected Device", "context": "Connected Device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:533", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:561", "comment": "bluetooth status" }, { @@ -3548,7 +3560,7 @@ { "term": "Connecting...", "context": "Connecting...", - "reference": "Widgets/VpnProfileDelegate.qml:145, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:968, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/Components/DragDropGrid.qml:455, Modules/ControlCenter/Components/DragDropGrid.qml:497, Modules/ControlCenter/Components/DragDropGrid.qml:521", + "reference": "Widgets/VpnProfileDelegate.qml:145, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:968, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/Components/DragDropGrid.qml:483, Modules/ControlCenter/Components/DragDropGrid.qml:525, Modules/ControlCenter/Components/DragDropGrid.qml:549", "comment": "bluetooth status | network status" }, { @@ -3572,7 +3584,7 @@ { "term": "Content", "context": "Content", - "reference": "Common/Theme.qml:487", + "reference": "Common/Theme.qml:491", "comment": "matugen color scheme option" }, { @@ -3590,13 +3602,13 @@ { "term": "Contributor", "context": "Contributor", - "reference": "Modules/Settings/PluginBrowser.qml:58", + "reference": "Modules/Settings/PluginBrowser.qml:60", "comment": "plugin browser sort option" }, { "term": "Control Center", "context": "Control Center", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:149, Modules/Settings/WidgetsTab.qml:164", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:148, Modules/Settings/WidgetsTab.qml:180", "comment": "greeter feature card title" }, { @@ -3608,19 +3620,19 @@ { "term": "Control animation duration for notification popups and history", "context": "Control animation duration for notification popups and history", - "reference": "Modules/Settings/NotificationsTab.qml:372", + "reference": "Modules/Settings/NotificationsTab.qml:369", "comment": "" }, { "term": "Control currently playing media", "context": "Control currently playing media", - "reference": "Modules/Settings/WidgetsTab.qml:97", + "reference": "Modules/Settings/WidgetsTab.qml:113", "comment": "" }, { "term": "Control what notification information is shown on the lock screen", "context": "Control what notification information is shown on the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:147, Modules/Settings/NotificationsTab.qml:776", + "reference": "Modules/Settings/LockScreenTab.qml:147, Modules/Settings/NotificationsTab.qml:773", "comment": "lock screen notification privacy setting" }, { @@ -3632,85 +3644,85 @@ { "term": "Control workspaces and columns by scrolling on the bar", "context": "Control workspaces and columns by scrolling on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1805", + "reference": "Modules/Settings/DankBarTab.qml:1851", "comment": "" }, { "term": "Controls how much original icon color is removed before applying tint", "context": "Controls how much original icon color is removed before applying tint", - "reference": "Modules/Settings/DankBarTab.qml:1325", + "reference": "Modules/Settings/DankBarTab.qml:1371", "comment": "" }, { "term": "Controls how strongly the selected tint color is applied", "context": "Controls how strongly the selected tint color is applied", - "reference": "Modules/Settings/DankBarTab.qml:1348", + "reference": "Modules/Settings/DankBarTab.qml:1394", "comment": "" }, { "term": "Controls opacity of shell surfaces, popouts, and modals", "context": "Controls opacity of shell surfaces, popouts, and modals", - "reference": "Modules/Settings/ThemeColorsTab.qml:1697", + "reference": "Modules/Settings/ThemeColorsTab.qml:1699", "comment": "" }, { "term": "Controls opacity of the bar background", "context": "Controls opacity of the bar background", - "reference": "Modules/Settings/DankBarTab.qml:817", + "reference": "Modules/Settings/DankBarTab.qml:819", "comment": "" }, { "term": "Controls opacity of the border", "context": "Controls opacity of the border", - "reference": "Modules/Settings/DankBarTab.qml:1420", + "reference": "Modules/Settings/DankBarTab.qml:1466", "comment": "" }, { "term": "Controls opacity of the shadow layer", "context": "Controls opacity of the shadow layer", - "reference": "Modules/Settings/DankBarTab.qml:1624", + "reference": "Modules/Settings/DankBarTab.qml:1670", "comment": "" }, { "term": "Controls opacity of the widget outline", "context": "Controls opacity of the widget outline", - "reference": "Modules/Settings/DankBarTab.qml:1515", + "reference": "Modules/Settings/DankBarTab.qml:1561", "comment": "" }, { "term": "Controls opacity of widget backgrounds", "context": "Controls opacity of widget backgrounds", - "reference": "Modules/Settings/DankBarTab.qml:840", + "reference": "Modules/Settings/DankBarTab.qml:842", "comment": "" }, { - "term": "Controls outlines around blurred foreground cards, pills, and notification cards", - "context": "Controls outlines around blurred foreground cards, pills, and notification cards", - "reference": "Modules/Settings/ThemeColorsTab.qml:1757", + "term": "Controls outlines around foreground cards, pills, and notification cards", + "context": "Controls outlines around foreground cards, pills, and notification cards", + "reference": "Modules/Settings/ThemeColorsTab.qml:1714", "comment": "" }, { "term": "Controls shadow cast direction for elevation layers", "context": "Controls shadow cast direction for elevation layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:1911", + "reference": "Modules/Settings/ThemeColorsTab.qml:1941", "comment": "" }, { "term": "Controls the base blur radius and offset of shadows", "context": "Controls the base blur radius and offset of shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1843", + "reference": "Modules/Settings/ThemeColorsTab.qml:1873", "comment": "" }, { "term": "Controls the opacity of the shadow", "context": "Controls the opacity of the shadow", - "reference": "Modules/Settings/ThemeColorsTab.qml:1858", + "reference": "Modules/Settings/ThemeColorsTab.qml:1888", "comment": "" }, { "term": "Controls the outer edge of protocol-blurred windows", "context": "Controls the outer edge of protocol-blurred windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1810", + "reference": "Modules/Settings/ThemeColorsTab.qml:1806", "comment": "" }, { @@ -3722,7 +3734,7 @@ { "term": "Convert to DMS", "context": "Convert to DMS", - "reference": "Modules/Settings/WindowRulesTab.qml:1011", + "reference": "Modules/Settings/WindowRulesTab.qml:1009", "comment": "" }, { @@ -3752,7 +3764,7 @@ { "term": "Copied to clipboard", "context": "Copied to clipboard", - "reference": "Services/ClipboardService.qml:250, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:322, Modals/Settings/SettingsModal.qml:339, Modules/Notepad/NotepadTextEditor.qml:328, Modules/Settings/DesktopWidgetInstanceCard.qml:426", + "reference": "Services/ClipboardService.qml:250, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:323, Modals/Settings/SettingsModal.qml:340, Modules/Notepad/NotepadTextEditor.qml:328, Modules/Settings/DesktopWidgetInstanceCard.qml:426", "comment": "" }, { @@ -3812,19 +3824,19 @@ { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modals/WindowRuleModal.qml:1211, Modules/Settings/ThemeColorsTab.qml:1711", + "reference": "Modals/WindowRuleModal.qml:1211, Modules/Settings/ThemeColorsTab.qml:1727", "comment": "" }, { "term": "Corner Radius Override", "context": "Corner Radius Override", - "reference": "Modules/Settings/DankBarTab.qml:1219", + "reference": "Modules/Settings/DankBarTab.qml:1221", "comment": "" }, { "term": "Corners & Background", "context": "Corners & Background", - "reference": "Modules/Settings/DankBarTab.qml:1141", + "reference": "Modules/Settings/DankBarTab.qml:1143", "comment": "" }, { @@ -3836,7 +3848,7 @@ { "term": "Count Only", "context": "Count Only", - "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:777", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:774", "comment": "lock screen notification mode option" }, { @@ -3890,7 +3902,7 @@ { "term": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", "context": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", - "reference": "Modules/Settings/NotificationsTab.qml:486", + "reference": "Modules/Settings/NotificationsTab.qml:483", "comment": "" }, { @@ -3914,7 +3926,7 @@ { "term": "Critical Battery", "context": "Critical Battery", - "reference": "Services/BatteryService.qml:144", + "reference": "Services/BatteryService.qml:156", "comment": "" }, { @@ -3932,7 +3944,7 @@ { "term": "Critical Priority", "context": "Critical Priority", - "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:833, Modules/Settings/NotificationsTab.qml:940, Modules/Notifications/Center/NotificationSettings.qml:211, Modules/Notifications/Center/NotificationSettings.qml:432", + "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:830, Modules/Settings/NotificationsTab.qml:937, Modules/Notifications/Center/NotificationSettings.qml:211, Modules/Notifications/Center/NotificationSettings.qml:432", "comment": "notification rule urgency option" }, { @@ -3992,7 +4004,7 @@ { "term": "Current Monitor", "context": "Current Monitor", - "reference": "Modules/Settings/WidgetsTabSection.qml:3186", + "reference": "Modules/Settings/WidgetsTabSection.qml:3344", "comment": "Running apps filter: only show apps from the same monitor" }, { @@ -4028,19 +4040,19 @@ { "term": "Current Workspace", "context": "Current Workspace", - "reference": "Modules/Settings/WidgetsTabSection.qml:3134", + "reference": "Modules/Settings/WidgetsTabSection.qml:3292", "comment": "Running apps filter: only show apps from the active workspace" }, { "term": "Current time and date display", "context": "Current time and date display", - "reference": "Modules/Settings/WidgetsTab.qml:83", + "reference": "Modules/Settings/WidgetsTab.qml:99", "comment": "" }, { "term": "Current weather conditions and temperature", "context": "Current weather conditions and temperature", - "reference": "Modules/Settings/WidgetsTab.qml:90", + "reference": "Modules/Settings/WidgetsTab.qml:106", "comment": "" }, { @@ -4049,28 +4061,16 @@ "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:224", "comment": "" }, - { - "term": "Cursor Config Not Configured", - "context": "Cursor Config Not Configured", - "reference": "Modules/Settings/ThemeColorsTab.qml:2111", - "comment": "" - }, - { - "term": "Cursor Include Missing", - "context": "Cursor Include Missing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2111", - "comment": "" - }, { "term": "Cursor Size", "context": "Cursor Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2159", + "reference": "Modules/Settings/ThemeColorsTab.qml:2204", "comment": "" }, { "term": "Cursor Theme", "context": "Cursor Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2069, Modules/Settings/ThemeColorsTab.qml:2143", + "reference": "Modules/Settings/ThemeColorsTab.qml:2099, Modules/Settings/ThemeColorsTab.qml:2188", "comment": "" }, { @@ -4088,7 +4088,7 @@ { "term": "Custom", "context": "Custom", - "reference": "Widgets/KeybindItem.qml:1436, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:46, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1784, Modules/Settings/ThemeColorsTab.qml:1796, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1884, Modules/Settings/ThemeColorsTab.qml:1895, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/WallpaperTab.qml:384, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:50, Modules/Settings/WorkspaceAppearanceCard.qml:88, Modules/Settings/WorkspaceAppearanceCard.qml:120, Modules/Settings/WorkspaceAppearanceCard.qml:155, Modules/Settings/WorkspaceAppearanceCard.qml:181, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:385, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", + "reference": "Widgets/KeybindItem.qml:1436, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:46, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/ThemeColorsTab.qml:1792, Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:1914, Modules/Settings/ThemeColorsTab.qml:1925, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/WallpaperTab.qml:384, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:52, Modules/Settings/WorkspaceAppearanceCard.qml:90, Modules/Settings/WorkspaceAppearanceCard.qml:122, Modules/Settings/WorkspaceAppearanceCard.qml:157, Modules/Settings/WorkspaceAppearanceCard.qml:183, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:382, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", "comment": "blur border color | shadow color option | theme category option | widget background color option | workspace color option" }, { @@ -4160,13 +4160,13 @@ { "term": "Custom Shadow Color", "context": "Custom Shadow Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1955", + "reference": "Modules/Settings/ThemeColorsTab.qml:1985", "comment": "" }, { "term": "Custom Shadow Override", "context": "Custom Shadow Override", - "reference": "Modules/Settings/DankBarTab.qml:1590", + "reference": "Modules/Settings/DankBarTab.qml:1636", "comment": "" }, { @@ -4190,7 +4190,7 @@ { "term": "Custom power profile", "context": "Custom power profile", - "reference": "Common/Theme.qml:1643", + "reference": "Common/Theme.qml:1658", "comment": "power profile description" }, { @@ -4220,7 +4220,7 @@ { "term": "Customizable empty space", "context": "Customizable empty space", - "reference": "Modules/Settings/WidgetsTab.qml:207", + "reference": "Modules/Settings/WidgetsTab.qml:223", "comment": "" }, { @@ -4238,7 +4238,7 @@ { "term": "DEMO MODE - Click anywhere to exit", "context": "DEMO MODE - Click anywhere to exit", - "reference": "Modules/Lock/LockScreenContent.qml:1223", + "reference": "Modules/Lock/LockScreenContent.qml:1278", "comment": "" }, { @@ -4286,13 +4286,13 @@ { "term": "DMS out of date", "context": "DMS out of date", - "reference": "Services/DMSService.qml:321", + "reference": "Services/DMSService.qml:322", "comment": "" }, { "term": "DMS server is outdated (API v%1, expected v%2)", "context": "DMS server is outdated (API v%1, expected v%2)", - "reference": "Services/DMSService.qml:343", + "reference": "Services/DMSService.qml:344", "comment": "" }, { @@ -4310,7 +4310,7 @@ { "term": "DMS_SOCKET not available", "context": "DMS_SOCKET not available", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:430", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:458", "comment": "" }, { @@ -4334,13 +4334,19 @@ { "term": "Dank Bar", "context": "Dank Bar", - "reference": "Modals/Settings/SettingsSidebar.qml:117, Modules/Settings/DankBarTab.qml:246", + "reference": "Modals/Settings/SettingsSidebar.qml:117, Modules/Settings/DankBarTab.qml:248", + "comment": "" + }, + { + "term": "Dank Dash", + "context": "Dank Dash", + "reference": "Modals/Settings/SettingsSidebar.qml:160, Modules/Settings/DankDashTab.qml:216", "comment": "" }, { "term": "DankBar", "context": "DankBar", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:114, Modals/Greeter/GreeterCompletePage.qml:405", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:113, Modals/Greeter/GreeterCompletePage.qml:405", "comment": "greeter feature card title | greeter settings link" }, { @@ -4370,37 +4376,37 @@ { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2288, Modules/Settings/ThemeColorsTab.qml:2306, Modules/Settings/ThemeColorsTab.qml:2324", + "reference": "Modules/Settings/ThemeColorsTab.qml:2333, Modules/Settings/ThemeColorsTab.qml:2351, Modules/Settings/ThemeColorsTab.qml:2369", "comment": "" }, { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/WallpaperTab.qml:619, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:721", + "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/WallpaperTab.qml:619, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:749", "comment": "" }, { "term": "Dark Mode Icon Theme", "context": "Dark Mode Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2305", + "reference": "Modules/Settings/ThemeColorsTab.qml:2350", "comment": "" }, { "term": "Dark mode base", "context": "Dark mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2566", + "reference": "Modules/Settings/ThemeColorsTab.qml:2611", "comment": "" }, { "term": "Dark mode harmony", "context": "Dark mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2600", + "reference": "Modules/Settings/ThemeColorsTab.qml:2645", "comment": "" }, { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2022, Modules/Settings/ThemeColorsTab.qml:2030", + "reference": "Modules/Settings/ThemeColorsTab.qml:2052, Modules/Settings/ThemeColorsTab.qml:2060", "comment": "" }, { @@ -4466,13 +4472,13 @@ { "term": "Default", "context": "Default", - "reference": "Modals/WindowRuleModal.qml:559, Modules/Settings/ThemeColorsTab.qml:1562, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/WorkspaceAppearanceCard.qml:93, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", + "reference": "Modals/WindowRuleModal.qml:559, Modules/Settings/ThemeColorsTab.qml:1562, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/WorkspaceAppearanceCard.qml:95, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", "comment": "notification rule action option | notification rule urgency option | widget style option | workspace color option" }, { "term": "Default (Black)", "context": "Default (Black)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1886, Modules/Settings/DankBarTab.qml:1733", + "reference": "Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:1916, Modules/Settings/DankBarTab.qml:1779", "comment": "shadow color option" }, { @@ -4484,7 +4490,7 @@ { "term": "Default Apps", "context": "Default Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:277", + "reference": "Modals/Settings/SettingsSidebar.qml:283", "comment": "" }, { @@ -4586,7 +4592,7 @@ { "term": "Delete Rule", "context": "Delete Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:745", + "reference": "Modules/Settings/WindowRulesTab.qml:743", "comment": "" }, { @@ -4652,13 +4658,13 @@ { "term": "Derives colors that closely match the underlying image.", "context": "Derives colors that closely match the underlying image.", - "reference": "Common/Theme.qml:488", + "reference": "Common/Theme.qml:492", "comment": "" }, { "term": "Description", "context": "Description", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:923, Modules/Settings/PrinterTab.qml:796", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:941, Modules/Settings/PrinterTab.qml:796", "comment": "" }, { @@ -4670,7 +4676,7 @@ { "term": "Desktop Application", "context": "Desktop Application", - "reference": "Modules/Settings/AutoStartTab.qml:354, Modules/Settings/AutoStartTab.qml:355, Modules/Settings/AutoStartTab.qml:357", + "reference": "Modules/Settings/AutoStartTab.qml:386, Modules/Settings/AutoStartTab.qml:387, Modules/Settings/AutoStartTab.qml:389", "comment": "" }, { @@ -4694,7 +4700,7 @@ { "term": "Desktop Widgets", "context": "Desktop Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:178, Modules/Settings/DesktopWidgetsTab.qml:75", + "reference": "Modals/Settings/SettingsSidebar.qml:184, Modules/Settings/DesktopWidgetsTab.qml:171", "comment": "" }, { @@ -4742,7 +4748,7 @@ { "term": "Device list scroll volume", "context": "Device list scroll volume", - "reference": "Modules/Settings/MediaPlayerTab.qml:118", + "reference": "Modules/Settings/MediaPlayerTab.qml:130", "comment": "" }, { @@ -4754,13 +4760,13 @@ { "term": "Device paired", "context": "Device paired", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:687, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:687, Modules/ControlCenter/Details/BluetoothDetail.qml:54", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:687, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:686, Modules/ControlCenter/Details/BluetoothDetail.qml:54", "comment": "Phone Connect pairing action" }, { "term": "Device unpaired", "context": "Device unpaired", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:702, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:702", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:702, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:701", "comment": "Phone Connect unpair action" }, { @@ -4772,7 +4778,7 @@ { "term": "Direction Source", "context": "Direction Source", - "reference": "Modules/Settings/DankBarTab.qml:1638", + "reference": "Modules/Settings/DankBarTab.qml:1684", "comment": "bar shadow direction source" }, { @@ -4814,19 +4820,19 @@ { "term": "Disabled", "context": "Disabled", - "reference": "Modules/Settings/ThemeColorsTab.qml:1443, Modules/Settings/AutoStartTab.qml:684, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/DankBarTab.qml:411, Modules/Settings/NotificationsTab.qml:777, Modules/Settings/NetworkWifiTab.qml:179, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057, Modules/ControlCenter/Components/DragDropGrid.qml:479", + "reference": "Modules/Settings/ThemeColorsTab.qml:1443, Modules/Settings/AutoStartTab.qml:718, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/DankBarTab.qml:413, Modules/Settings/NotificationsTab.qml:774, Modules/Settings/NetworkWifiTab.qml:179, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2039, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2051, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2065, Modules/ControlCenter/Components/DragDropGrid.qml:507", "comment": "bluetooth status | lock screen notification mode option" }, { "term": "Disabled by Frame Mode", "context": "Disabled by Frame Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:2023", + "reference": "Modules/Settings/ThemeColorsTab.qml:2053", "comment": "" }, { "term": "Disabling WiFi...", "context": "Disabling WiFi...", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:194, Modules/ControlCenter/Components/DragDropGrid.qml:453", + "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:194, Modules/ControlCenter/Components/DragDropGrid.qml:481", "comment": "network status" }, { @@ -4850,7 +4856,7 @@ { "term": "Discharging", "context": "Discharging", - "reference": "Services/BatteryService.qml:278, Services/BatteryService.qml:307", + "reference": "Services/BatteryService.qml:290, Services/BatteryService.qml:319", "comment": "battery status" }, { @@ -4892,13 +4898,13 @@ { "term": "Disk Usage", "context": "Disk Usage", - "reference": "Modules/Settings/WidgetsTab.qml:126, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:36, Modules/ControlCenter/Widgets/DiskUsagePill.qml:42", + "reference": "Modules/Settings/WidgetsTab.qml:142, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:36, Modules/ControlCenter/Widgets/DiskUsagePill.qml:42", "comment": "" }, { "term": "Disk Usage Display", "context": "Disk Usage Display", - "reference": "Modules/Settings/WidgetsTabSection.qml:1641", + "reference": "Modules/Settings/WidgetsTabSection.qml:1799", "comment": "" }, { @@ -4910,7 +4916,7 @@ { "term": "Dismiss", "context": "Dismiss", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:95, Modules/Notifications/Popup/NotificationPopup.qml:1452, Modules/Notifications/Center/NotificationCard.qml:835, Modules/Notifications/Center/NotificationCard.qml:975, Modules/Notifications/Center/NotificationCard.qml:1125", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:95, Modules/Notifications/Popup/NotificationPopup.qml:1451, Modules/Notifications/Center/NotificationCard.qml:835, Modules/Notifications/Center/NotificationCard.qml:975, Modules/Notifications/Center/NotificationCard.qml:1125", "comment": "" }, { @@ -4922,13 +4928,13 @@ { "term": "Display Assignment", "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:538, Modules/Settings/FrameTab.qml:384", + "reference": "Modules/Settings/DankBarTab.qml:540, Modules/Settings/FrameTab.qml:393", "comment": "" }, { "term": "Display Control", "context": "Display Control", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:141", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:140", "comment": "greeter feature card title" }, { @@ -4958,13 +4964,13 @@ { "term": "Display all priorities over fullscreen apps", "context": "Display all priorities over fullscreen apps", - "reference": "Modules/Settings/NotificationsTab.qml:290, Modules/Notifications/Center/NotificationSettings.qml:265", + "reference": "Modules/Settings/NotificationsTab.qml:289, Modules/Notifications/Center/NotificationSettings.qml:265", "comment": "" }, { "term": "Display and switch MangoWC layouts", "context": "Display and switch MangoWC layouts", - "reference": "Modules/Settings/WidgetsTab.qml:40", + "reference": "Modules/Settings/WidgetsTab.qml:56", "comment": "" }, { @@ -4988,7 +4994,7 @@ { "term": "Display currently focused application title", "context": "Display currently focused application title", - "reference": "Modules/Settings/WidgetsTab.qml:62", + "reference": "Modules/Settings/WidgetsTab.qml:78", "comment": "" }, { @@ -5006,7 +5012,7 @@ { "term": "Display name for this entry", "context": "Display name for this entry", - "reference": "Modules/Settings/AutoStartTab.qml:514", + "reference": "Modules/Settings/AutoStartTab.qml:547", "comment": "" }, { @@ -5030,13 +5036,13 @@ { "term": "Display setup failed", "context": "Display setup failed", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1453", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1461", "comment": "" }, { "term": "Display the power system menu", "context": "Display the power system menu", - "reference": "Modules/Settings/WidgetsTab.qml:257", + "reference": "Modules/Settings/WidgetsTab.qml:273", "comment": "" }, { @@ -5048,7 +5054,7 @@ { "term": "Displays", "context": "Displays", - "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:213, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", + "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:219, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", "comment": "greeter settings link" }, { @@ -5060,7 +5066,7 @@ { "term": "Displays the active keyboard layout and allows switching", "context": "Displays the active keyboard layout and allows switching", - "reference": "Modules/Settings/WidgetsTab.qml:229", + "reference": "Modules/Settings/WidgetsTab.qml:245", "comment": "" }, { @@ -5072,25 +5078,25 @@ { "term": "Diverse palette spanning the full spectrum.", "context": "Diverse palette spanning the full spectrum.", - "reference": "Common/Theme.qml:512", + "reference": "Common/Theme.qml:516", "comment": "" }, { "term": "Do Not Disturb", "context": "Do Not Disturb", - "reference": "Modules/Settings/WidgetsTabSection.qml:1877, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/NotificationsTab.qml:434, Modules/ControlCenter/Models/WidgetModel.qml:145, Modules/ControlCenter/Widgets/DndPill.qml:10, Modules/Notifications/Center/NotificationHeader.qml:77, Modules/Notifications/Center/NotificationSettings.qml:151, Modules/Notifications/Center/DndDurationMenu.qml:140", + "reference": "Modules/Settings/WidgetsTabSection.qml:2035, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/NotificationsTab.qml:431, Modules/ControlCenter/Models/WidgetModel.qml:145, Modules/ControlCenter/Widgets/DndPill.qml:10, Modules/Notifications/Center/NotificationHeader.qml:77, Modules/Notifications/Center/NotificationSettings.qml:151, Modules/Notifications/Center/DndDurationMenu.qml:140", "comment": "" }, { "term": "Dock", "context": "Dock", - "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:192", + "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:198", "comment": "greeter settings link" }, { "term": "Dock & Launcher", "context": "Dock & Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:186, Modals/Settings/SettingsSidebar.qml:664", + "reference": "Modals/Settings/SettingsSidebar.qml:192, Modals/Settings/SettingsSidebar.qml:670", "comment": "" }, { @@ -5144,7 +5150,7 @@ { "term": "Don't Save", "context": "Don't Save", - "reference": "Modules/Notepad/Notepad.qml:709", + "reference": "Modules/Notepad/Notepad.qml:710", "comment": "" }, { @@ -5159,16 +5165,28 @@ "reference": "Modals/FileBrowser/FileBrowserContent.qml:273", "comment": "" }, + { + "term": "Drag a widget by its handle here to reorder it or drop it into another group", + "context": "Drag a widget by its handle here to reorder it or drop it into another group", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:554", + "comment": "" + }, { "term": "Drag to Reorder", "context": "Drag to Reorder", "reference": "Modules/Settings/WorkspacesTab.qml:183", "comment": "" }, + { + "term": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", + "context": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", + "reference": "Modules/Settings/DankDashTab.qml:276", + "comment": "" + }, { "term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "context": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", - "reference": "Modules/Settings/WidgetsTab.qml:1041", + "reference": "Modules/Settings/WidgetsTab.qml:1291", "comment": "" }, { @@ -5195,6 +5213,12 @@ "reference": "Services/WeatherService.qml:130, Services/WeatherService.qml:131, Services/WeatherService.qml:132", "comment": "" }, + { + "term": "Drop here", + "context": "Drop here", + "reference": "Modules/Settings/DesktopWidgetGroupSection.qml:237", + "comment": "" + }, { "term": "Drop your override for %1 so the DMS default action re-applies?", "context": "Drop your override for %1 so the DMS default action re-applies?", @@ -5216,7 +5240,7 @@ { "term": "Duration", "context": "Duration", - "reference": "Modules/Settings/NotificationsTab.qml:406", + "reference": "Modules/Settings/NotificationsTab.qml:403", "comment": "" }, { @@ -5252,7 +5276,7 @@ { "term": "Dynamic Theming", "context": "Dynamic Theming", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:90", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:89", "comment": "greeter feature card title" }, { @@ -5264,7 +5288,7 @@ { "term": "Dynamic colors parse error: %1", "context": "Dynamic colors parse error: %1", - "reference": "Common/Theme.qml:2197", + "reference": "Common/Theme.qml:2234", "comment": "" }, { @@ -5279,16 +5303,22 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:118", "comment": "" }, + { + "term": "Edge Hover Reveal", + "context": "Edge Hover Reveal", + "reference": "Modules/Settings/FrameTab.qml:364", + "comment": "" + }, { "term": "Edge Spacing", "context": "Edge Spacing", - "reference": "Modules/Settings/DankBarTab.qml:885", + "reference": "Modules/Settings/DankBarTab.qml:887", "comment": "" }, { "term": "Edge spacing, exclusive zone, and popup gaps are managed by Frame", "context": "Edge spacing, exclusive zone, and popup gaps are managed by Frame", - "reference": "Modules/Settings/DankBarTab.qml:879", + "reference": "Modules/Settings/DankBarTab.qml:881", "comment": "" }, { @@ -5306,7 +5336,7 @@ { "term": "Edit App", "context": "Edit App", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:179, Modals/DankLauncherV2/LauncherContent.qml:846", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:180, Modals/DankLauncherV2/LauncherContent.qml:864", "comment": "" }, { @@ -5318,7 +5348,7 @@ { "term": "Edit Rule", "context": "Edit Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:730", + "reference": "Modules/Settings/WindowRulesTab.qml:728", "comment": "" }, { @@ -5342,7 +5372,7 @@ { "term": "Editing changes on %1", "context": "Editing changes on %1", - "reference": "Modules/Settings/DankBarTab.qml:251", + "reference": "Modules/Settings/DankBarTab.qml:253", "comment": "" }, { @@ -5354,7 +5384,7 @@ { "term": "Empty", "context": "Empty", - "reference": "DMSShell.qml:554, Services/BatteryService.qml:280, Modules/Notepad/NotepadTextEditor.qml:1013", + "reference": "DMSShell.qml:586, Services/BatteryService.qml:292, Modules/Notepad/NotepadTextEditor.qml:1013", "comment": "battery status" }, { @@ -5372,7 +5402,7 @@ { "term": "Empty Trash?", "context": "Empty Trash?", - "reference": "DMSShell.qml:552", + "reference": "DMSShell.qml:584", "comment": "" }, { @@ -5390,13 +5420,13 @@ { "term": "Enable Bar", "context": "Enable Bar", - "reference": "Modules/Settings/DankBarTab.qml:465", + "reference": "Modules/Settings/DankBarTab.qml:467", "comment": "" }, { "term": "Enable Do Not Disturb", "context": "Enable Do Not Disturb", - "reference": "Modules/Settings/NotificationsTab.qml:440", + "reference": "Modules/Settings/NotificationsTab.qml:437", "comment": "" }, { @@ -5408,7 +5438,7 @@ { "term": "Enable History", "context": "Enable History", - "reference": "Modules/Settings/NotificationsTab.qml:857", + "reference": "Modules/Settings/NotificationsTab.qml:854", "comment": "notification history toggle label" }, { @@ -5450,7 +5480,7 @@ { "term": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", "context": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", - "reference": "Modules/Settings/DankBarTab.qml:1582", + "reference": "Modules/Settings/DankBarTab.qml:1628", "comment": "" }, { @@ -5498,7 +5528,7 @@ { "term": "Enabled", "context": "Enabled", - "reference": "Modules/Settings/ThemeColorsTab.qml:1443, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057, Modules/ControlCenter/Components/DragDropGrid.qml:480", + "reference": "Modules/Settings/ThemeColorsTab.qml:1443, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2039, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2065, Modules/ControlCenter/Components/DragDropGrid.qml:508", "comment": "bluetooth status" }, { @@ -5564,7 +5594,7 @@ { "term": "Enabling WiFi...", "context": "Enabling WiFi...", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:194, Modules/ControlCenter/Components/DragDropGrid.qml:453", + "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:194, Modules/ControlCenter/Components/DragDropGrid.qml:481", "comment": "network status" }, { @@ -5582,13 +5612,13 @@ { "term": "Enlarge on Hover", "context": "Enlarge on Hover", - "reference": "Modules/Settings/WidgetsTabSection.qml:3628", + "reference": "Modules/Settings/WidgetsTabSection.qml:3786", "comment": "" }, { "term": "Enlargement %", "context": "Enlargement %", - "reference": "Modules/Settings/WidgetsTabSection.qml:3667", + "reference": "Modules/Settings/WidgetsTabSection.qml:3825", "comment": "" }, { @@ -5708,7 +5738,7 @@ { "term": "Entry Type", "context": "Entry Type", - "reference": "Modules/Settings/AutoStartTab.qml:352", + "reference": "Modules/Settings/AutoStartTab.qml:384", "comment": "" }, { @@ -5726,13 +5756,13 @@ { "term": "Environment Variables", "context": "Environment Variables", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:943", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:961", "comment": "" }, { "term": "Error", "context": "Error", - "reference": "Services/CupsService.qml:836, Modules/Settings/WorkspaceAppearanceCard.qml:125, Modules/DankBar/Popouts/SystemUpdatePopout.qml:125", + "reference": "Services/CupsService.qml:836, Modules/Settings/WorkspaceAppearanceCard.qml:127, Modules/DankBar/Popouts/SystemUpdatePopout.qml:125", "comment": "workspace color option" }, { @@ -5750,7 +5780,7 @@ { "term": "Ethernet", "context": "Ethernet", - "reference": "Modals/Settings/SettingsSidebar.qml:251, Modules/Settings/NetworkStatusTab.qml:115, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/NetworkEthernetTab.qml:42, Modules/ControlCenter/Details/NetworkDetail.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:459, Modules/ControlCenter/Components/DragDropGrid.qml:462", + "reference": "Modals/Settings/SettingsSidebar.qml:257, Modules/Settings/NetworkStatusTab.qml:115, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/NetworkEthernetTab.qml:42, Modules/ControlCenter/Details/NetworkDetail.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:487, Modules/ControlCenter/Components/DragDropGrid.qml:490", "comment": "network status" }, { @@ -5789,10 +5819,16 @@ "reference": "Modules/Settings/NotificationsTab.qml:108", "comment": "notification rule match type option" }, + { + "term": "Excluded Media Players", + "context": "Excluded Media Players", + "reference": "Modules/Settings/MediaPlayerTab.qml:140", + "comment": "" + }, { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:621, Modules/Settings/DankBarTab.qml:908", + "reference": "Modules/Settings/DockTab.qml:621, Modules/Settings/DankBarTab.qml:910", "comment": "" }, { @@ -5834,19 +5870,19 @@ { "term": "Expressive", "context": "Expressive", - "reference": "Common/Theme.qml:491", + "reference": "Common/Theme.qml:495", "comment": "matugen color scheme option" }, { "term": "Extend battery life", "context": "Extend battery life", - "reference": "Common/Theme.qml:1637", + "reference": "Common/Theme.qml:1652", "comment": "power profile description" }, { "term": "Extensible architecture", "context": "Extensible architecture", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:123", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:122", "comment": "greeter feature card description" }, { @@ -5858,7 +5894,7 @@ { "term": "Extra Arguments", "context": "Extra Arguments", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:969", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:987", "comment": "" }, { @@ -5900,7 +5936,7 @@ { "term": "Failed to accept pairing", "context": "Failed to accept pairing", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:684, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:684", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:684, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:683", "comment": "Phone Connect error" }, { @@ -5924,13 +5960,13 @@ { "term": "Failed to apply GTK colors", "context": "Failed to apply GTK colors", - "reference": "Common/Theme.qml:1950", + "reference": "Common/Theme.qml:1966", "comment": "" }, { "term": "Failed to apply Qt colors", "context": "Failed to apply Qt colors", - "reference": "Common/Theme.qml:1971", + "reference": "Common/Theme.qml:1987", "comment": "" }, { @@ -5948,7 +5984,7 @@ { "term": "Failed to browse device", "context": "Failed to browse device", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:666, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:666", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:666, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:665", "comment": "Phone Connect error" }, { @@ -6026,7 +6062,7 @@ { "term": "Failed to disable plugin: %1", "context": "Failed to disable plugin: %1", - "reference": "Modules/Settings/PluginListItem.qml:332", + "reference": "Modules/Settings/PluginListItem.qml:331", "comment": "" }, { @@ -6077,12 +6113,6 @@ "reference": "Services/DisplayService.qml:459", "comment": "" }, - { - "term": "Failed to enable plugin: %1", - "context": "Failed to enable plugin: %1", - "reference": "Modules/Settings/PluginListItem.qml:323", - "comment": "" - }, { "term": "Failed to fetch network QR code: %1", "context": "Failed to fetch network QR code: %1", @@ -6092,7 +6122,7 @@ { "term": "Failed to generate systemd override", "context": "Failed to generate systemd override", - "reference": "Modules/Settings/AutoStartTab.qml:281, Modules/Settings/AutoStartTab.qml:295", + "reference": "Modules/Settings/AutoStartTab.qml:311, Modules/Settings/AutoStartTab.qml:325", "comment": "" }, { @@ -6110,7 +6140,7 @@ { "term": "Failed to launch SMS app", "context": "Failed to launch SMS app", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1766, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:809, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1766, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:809", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1766, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:809, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1765, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:809", "comment": "Phone Connect error" }, { @@ -6140,19 +6170,19 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1665", + "reference": "Common/SettingsData.qml:1843", "comment": "" }, { "term": "Failed to parse session.json", "context": "Failed to parse session.json", - "reference": "Common/SessionData.qml:266, Common/SessionData.qml:346", + "reference": "Common/SessionData.qml:286, Common/SessionData.qml:366", "comment": "" }, { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1567, Common/SettingsData.qml:3358", + "reference": "Common/SettingsData.qml:1745, Common/SettingsData.qml:3609", "comment": "" }, { @@ -6176,13 +6206,13 @@ { "term": "Failed to read theme file: %1", "context": "Failed to read theme file: %1", - "reference": "Common/Theme.qml:2152", + "reference": "Common/Theme.qml:2189", "comment": "" }, { "term": "Failed to reject pairing", "context": "Failed to reject pairing", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:693, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:693", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:693, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:692", "comment": "Phone Connect error" }, { @@ -6236,7 +6266,7 @@ { "term": "Failed to ring device", "context": "Failed to ring device", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:624, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:624", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:624, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:623", "comment": "Phone Connect error" }, { @@ -6278,25 +6308,25 @@ { "term": "Failed to send SMS", "context": "Failed to send SMS", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1756, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:799, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1756, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:799", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1756, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:799, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1755, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:799", "comment": "Phone Connect error" }, { "term": "Failed to send clipboard", "context": "Failed to send clipboard", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:610, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:55, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:610, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:55", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:610, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:55, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:609, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:55", "comment": "Phone Connect error" }, { "term": "Failed to send file", "context": "Failed to send file", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1737, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1737", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1737, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1736", "comment": "Phone Connect error" }, { "term": "Failed to send ping", "context": "Failed to send ping", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:633, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:633", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:633, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:632", "comment": "Phone Connect error" }, { @@ -6344,7 +6374,7 @@ { "term": "Failed to share", "context": "Failed to share", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1718, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1726, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1718, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1726", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1718, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1726, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1717, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1725", "comment": "Phone Connect error" }, { @@ -6398,19 +6428,19 @@ { "term": "Failed to write autostart entry", "context": "Failed to write autostart entry", - "reference": "Modules/Settings/AutoStartTab.qml:165", + "reference": "Modules/Settings/AutoStartTab.qml:188", "comment": "" }, { "term": "Failed to write outputs config.", "context": "Failed to write outputs config.", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1453", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1461", "comment": "" }, { "term": "Failed to write temp file for validation", "context": "Failed to write temp file for validation", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2091", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2099", "comment": "" }, { @@ -6422,7 +6452,7 @@ { "term": "Features", "context": "Features", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:75", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:74", "comment": "greeter welcome page section header" }, { @@ -6446,13 +6476,13 @@ { "term": "Fidelity", "context": "Fidelity", - "reference": "Common/Theme.qml:495", + "reference": "Common/Theme.qml:499", "comment": "matugen color scheme option" }, { "term": "Field", "context": "Field", - "reference": "Modules/Settings/NotificationsTab.qml:593", + "reference": "Modules/Settings/NotificationsTab.qml:590", "comment": "" }, { @@ -6482,7 +6512,7 @@ { "term": "File changed on disk", "context": "File changed on disk", - "reference": "Modules/Notepad/Notepad.qml:308", + "reference": "Modules/Notepad/Notepad.qml:309", "comment": "" }, { @@ -6494,7 +6524,7 @@ { "term": "File received from", "context": "File received from", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:597, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:597", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:597, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:596", "comment": "Phone Connect file share notification" }, { @@ -6512,7 +6542,7 @@ { "term": "Files", "context": "Files", - "reference": "Modals/DankLauncherV2/Controller.qml:235, Modals/DankLauncherV2/Controller.qml:1124, Modals/DankLauncherV2/Controller.qml:1145, Modals/DankLauncherV2/SpotlightLauncherContent.qml:447, Modals/DankLauncherV2/LauncherContent.qml:349, Modals/DankLauncherV2/LauncherContent.qml:622, Modules/Settings/LauncherTab.qml:896", + "reference": "Modals/DankLauncherV2/Controller.qml:235, Modals/DankLauncherV2/Controller.qml:1124, Modals/DankLauncherV2/Controller.qml:1145, Modals/DankLauncherV2/SpotlightLauncherContent.qml:447, Modals/DankLauncherV2/LauncherContent.qml:367, Modals/DankLauncherV2/LauncherContent.qml:640, Modules/Settings/LauncherTab.qml:896", "comment": "" }, { @@ -6530,7 +6560,7 @@ { "term": "Filter", "context": "Filter", - "reference": "Modules/Settings/PluginBrowser.qml:762", + "reference": "Modules/Settings/PluginBrowser.qml:817", "comment": "plugin browser category filter label" }, { @@ -6554,7 +6584,7 @@ { "term": "Fine-tune the space reserved for the bar from the screen edge", "context": "Fine-tune the space reserved for the bar from the screen edge", - "reference": "Modules/Settings/DankBarTab.qml:909", + "reference": "Modules/Settings/DankBarTab.qml:911", "comment": "" }, { @@ -6602,7 +6632,7 @@ { "term": "First Time Setup", "context": "First Time Setup", - "reference": "Modules/Settings/KeybindsTab.qml:386, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:51", + "reference": "Modules/Settings/ThemeColorsTab.qml:2145, Modules/Settings/WindowRulesTab.qml:501, Modules/Settings/KeybindsTab.qml:385, Modules/Settings/CompositorLayoutTab.qml:198, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:50", "comment": "" }, { @@ -6611,18 +6641,6 @@ "reference": "Modules/Settings/WallpaperTab.qml:312", "comment": "wallpaper fill mode" }, - { - "term": "Fix Now", - "context": "Fix Now", - "reference": "Modules/Settings/ThemeColorsTab.qml:2129, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:429, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:89", - "comment": "" - }, - { - "term": "Fixing...", - "context": "Fixing...", - "reference": "Modules/Settings/ThemeColorsTab.qml:2129, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:426, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:86", - "comment": "" - }, { "term": "Flags", "context": "Flags", @@ -6632,25 +6650,25 @@ { "term": "Flipped", "context": "Flipped", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2597, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2618", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2605, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2626", "comment": "" }, { "term": "Flipped 180°", "context": "Flipped 180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2601, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2622", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2609, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2630", "comment": "" }, { "term": "Flipped 270°", "context": "Flipped 270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2603, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2624", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2611, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2632", "comment": "" }, { "term": "Flipped 90°", "context": "Flipped 90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2599, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2620", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2607, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2628", "comment": "" }, { @@ -6722,7 +6740,7 @@ { "term": "Focus at Startup", "context": "Focus at Startup", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2033", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2041", "comment": "" }, { @@ -6734,25 +6752,31 @@ { "term": "Focused Border", "context": "Focused Border", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:268", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:267, Modules/Settings/WorkspaceAppearanceCard.qml:351", "comment": "" }, { "term": "Focused Color", "context": "Focused Color", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:188", + "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:32", "comment": "" }, + { + "term": "Focused Display", + "context": "Focused Display", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:203", + "comment": "workspace appearance tab" + }, { "term": "Focused Monitor Only", "context": "Focused Monitor Only", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:422, Modules/Settings/NotificationsTab.qml:345", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:422, Modules/Settings/NotificationsTab.qml:342", "comment": "" }, { "term": "Focused Window", "context": "Focused Window", - "reference": "Modules/Settings/WidgetsTab.qml:61", + "reference": "Modules/Settings/WidgetsTab.qml:77", "comment": "" }, { @@ -6770,13 +6794,13 @@ { "term": "Folders", "context": "Folders", - "reference": "Modals/DankLauncherV2/Controller.qml:1135, Modals/DankLauncherV2/Controller.qml:1145, Modals/DankLauncherV2/LauncherContent.qml:627, Modules/Settings/LauncherTab.qml:907", + "reference": "Modals/DankLauncherV2/Controller.qml:1135, Modals/DankLauncherV2/Controller.qml:1145, Modals/DankLauncherV2/LauncherContent.qml:645, Modules/Settings/LauncherTab.qml:907", "comment": "" }, { "term": "Follow DMS background color", "context": "Follow DMS background color", - "reference": "Modules/Settings/ThemeColorsTab.qml:2634", + "reference": "Modules/Settings/ThemeColorsTab.qml:2679", "comment": "" }, { @@ -6812,7 +6836,7 @@ { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:321, Modules/Settings/DankBarTab.qml:1085", + "reference": "Modules/Settings/TypographyMotionTab.qml:321, Modules/Settings/DankBarTab.qml:1087", "comment": "" }, { @@ -6878,7 +6902,7 @@ { "term": "Force HDR", "context": "Force HDR", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2061", "comment": "" }, { @@ -6896,13 +6920,13 @@ { "term": "Force Wide Color", "context": "Force Wide Color", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2063", "comment": "" }, { "term": "Force terminal applications to always use dark color schemes", "context": "Force terminal applications to always use dark color schemes", - "reference": "Modules/Settings/ThemeColorsTab.qml:2060", + "reference": "Modules/Settings/ThemeColorsTab.qml:2090", "comment": "" }, { @@ -6923,16 +6947,22 @@ "reference": "Modules/DankDash/WeatherForecastCard.qml:115", "comment": "" }, + { + "term": "Forecast and conditions", + "context": "Forecast and conditions", + "reference": "Modules/Settings/DankDashTab.qml:34", + "comment": "" + }, { "term": "Foreground Layers", "context": "Foreground Layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:1744", + "reference": "Modules/Settings/ThemeColorsTab.qml:1688", "comment": "" }, { "term": "Forever", "context": "Forever", - "reference": "Modules/Settings/NotificationsTab.qml:885, Modules/Settings/NotificationsTab.qml:900, Modules/Settings/NotificationsTab.qml:903", + "reference": "Modules/Settings/NotificationsTab.qml:882, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:900", "comment": "notification history retention option" }, { @@ -6974,7 +7004,7 @@ { "term": "Forward 10s", "context": "Forward 10s", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2155, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1610, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2155, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1610", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2155, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1610, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2154, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1610", "comment": "Media forward tooltip" }, { @@ -7022,7 +7052,7 @@ { "term": "Fruit Salad", "context": "Fruit Salad", - "reference": "Common/Theme.qml:499", + "reference": "Common/Theme.qml:503", "comment": "matugen color scheme option" }, { @@ -7040,7 +7070,7 @@ { "term": "Full Content", "context": "Full Content", - "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:777", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:774", "comment": "lock screen notification mode option" }, { @@ -7052,7 +7082,7 @@ { "term": "Full command to execute", "context": "Full command to execute", - "reference": "Modules/Settings/AutoStartTab.qml:545", + "reference": "Modules/Settings/AutoStartTab.qml:578", "comment": "" }, { @@ -7076,7 +7106,7 @@ { "term": "Fully Charged", "context": "Fully Charged", - "reference": "Services/BatteryService.qml:282", + "reference": "Services/BatteryService.qml:294", "comment": "battery status" }, { @@ -7106,25 +7136,25 @@ { "term": "GPU Temperature", "context": "GPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:142, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", + "reference": "Modules/Settings/WidgetsTab.qml:158, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", "comment": "" }, { "term": "GPU temperature display", "context": "GPU temperature display", - "reference": "Modules/Settings/WidgetsTab.qml:143", + "reference": "Modules/Settings/WidgetsTab.qml:159", "comment": "" }, { "term": "GTK colors applied successfully", "context": "GTK colors applied successfully", - "reference": "Common/Theme.qml:1946", + "reference": "Common/Theme.qml:1962", "comment": "" }, { "term": "GTK, Qt, IDEs, more", "context": "GTK, Qt, IDEs, more", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:99", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:98", "comment": "greeter feature card description" }, { @@ -7136,7 +7166,7 @@ { "term": "Gamma Control", "context": "Gamma Control", - "reference": "Modals/Settings/SettingsSidebar.qml:225, Modules/Settings/GammaControlTab.qml:64", + "reference": "Modals/Settings/SettingsSidebar.qml:231, Modules/Settings/GammaControlTab.qml:64", "comment": "" }, { @@ -7148,19 +7178,19 @@ { "term": "Gap between the end widgets and the bar ends (0 = edge-to-edge)", "context": "Gap between the end widgets and the bar ends (0 = edge-to-edge)", - "reference": "Modules/Settings/DankBarTab.qml:989, Modules/Settings/FrameTab.qml:169", + "reference": "Modules/Settings/DankBarTab.qml:991, Modules/Settings/FrameTab.qml:169", "comment": "" }, { "term": "Generate Override", "context": "Generate Override", - "reference": "Modules/Settings/AutoStartTab.qml:743", + "reference": "Modules/Settings/AutoStartTab.qml:777", "comment": "" }, { "term": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.

It is recommended to configure adw-gtk3 prior to applying GTK themes.", "context": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.

It is recommended to configure adw-gtk3 prior to applying GTK themes.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2842", + "reference": "Modules/Settings/ThemeColorsTab.qml:2887", "comment": "" }, { @@ -7208,13 +7238,13 @@ { "term": "Goth Corner Radius", "context": "Goth Corner Radius", - "reference": "Modules/Settings/DankBarTab.qml:1237", + "reference": "Modules/Settings/DankBarTab.qml:1239", "comment": "" }, { "term": "Goth Corners", "context": "Goth Corners", - "reference": "Modules/Settings/DankBarTab.qml:1209", + "reference": "Modules/Settings/DankBarTab.qml:1211", "comment": "" }, { @@ -7274,7 +7304,7 @@ { "term": "Greeter", "context": "Greeter", - "reference": "Modals/Settings/SettingsSidebar.qml:371, Modules/Settings/UsersTab.qml:228", + "reference": "Modals/Settings/SettingsSidebar.qml:383, Modules/Settings/UsersTab.qml:228", "comment": "" }, { @@ -7376,7 +7406,7 @@ { "term": "Group by App", "context": "Group by App", - "reference": "Modules/Settings/WidgetsTabSection.qml:3082, Modules/Settings/DockTab.qml:171", + "reference": "Modules/Settings/WidgetsTabSection.qml:3240, Modules/Settings/DockTab.qml:171", "comment": "" }, { @@ -7388,7 +7418,7 @@ { "term": "Group removed", "context": "Group removed", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:239", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:335", "comment": "" }, { @@ -7400,7 +7430,7 @@ { "term": "Groups", "context": "Groups", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:112", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:208", "comment": "" }, { @@ -7490,7 +7520,7 @@ { "term": "Help", "context": "Help", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:617", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:430", "comment": "" }, { @@ -7514,7 +7544,7 @@ { "term": "Hidden", "context": "Hidden", - "reference": "Modules/Settings/NetworkWifiTab.qml:593, Modules/Settings/NetworkWifiTab.qml:972", + "reference": "Modules/Settings/NetworkWifiTab.qml:593, Modules/Settings/NetworkWifiTab.qml:972, Modules/Settings/DankDashTab.qml:343", "comment": "" }, { @@ -7535,6 +7565,12 @@ "reference": "Modules/Settings/LauncherTab.qml:1204", "comment": "" }, + { + "term": "Hidden until weather is enabled", + "context": "Hidden until weather is enabled", + "reference": "Modules/Settings/DankDashTab.qml:34", + "comment": "" + }, { "term": "Hide", "context": "Hide", @@ -7544,55 +7580,55 @@ { "term": "Hide 3rd Party", "context": "Hide 3rd Party", - "reference": "Modules/Settings/PluginBrowser.qml:551", + "reference": "Modules/Settings/PluginBrowser.qml:606", "comment": "" }, { "term": "Hide App", "context": "Hide App", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:172", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:173", "comment": "" }, { "term": "Hide Delay", "context": "Hide Delay", - "reference": "Modules/Settings/DankBarTab.qml:679", + "reference": "Modules/Settings/DankBarTab.qml:681", "comment": "" }, { "term": "Hide Indicators", "context": "Hide Indicators", - "reference": "Modules/Settings/WidgetsTabSection.qml:3476", + "reference": "Modules/Settings/WidgetsTabSection.qml:3634", "comment": "" }, { "term": "Hide When Typing", "context": "Hide When Typing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2184", + "reference": "Modules/Settings/ThemeColorsTab.qml:2229", "comment": "" }, { "term": "Hide When Windows Open", "context": "Hide When Windows Open", - "reference": "Modules/Settings/DankBarTab.qml:716", + "reference": "Modules/Settings/DankBarTab.qml:718", "comment": "" }, { "term": "Hide cursor after inactivity (0 = disabled)", "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2231", + "reference": "Modules/Settings/ThemeColorsTab.qml:2276", "comment": "" }, { "term": "Hide cursor when pressing keyboard keys", "context": "Hide cursor when pressing keyboard keys", - "reference": "Modules/Settings/ThemeColorsTab.qml:2185", + "reference": "Modules/Settings/ThemeColorsTab.qml:2230", "comment": "" }, { "term": "Hide cursor when using touch input", "context": "Hide cursor when using touch input", - "reference": "Modules/Settings/ThemeColorsTab.qml:2214", + "reference": "Modules/Settings/ThemeColorsTab.qml:2259", "comment": "" }, { @@ -7604,7 +7640,7 @@ { "term": "Hide installed", "context": "Hide installed", - "reference": "Modules/Settings/PluginBrowser.qml:38", + "reference": "Modules/Settings/PluginBrowser.qml:40", "comment": "plugin browser filter chip" }, { @@ -7616,19 +7652,19 @@ { "term": "Hide notification content until expanded; popups show collapsed by default", "context": "Hide notification content until expanded; popups show collapsed by default", - "reference": "Modules/Settings/NotificationsTab.qml:337", + "reference": "Modules/Settings/NotificationsTab.qml:334", "comment": "" }, { "term": "Hide on Touch", "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:2213", + "reference": "Modules/Settings/ThemeColorsTab.qml:2258", "comment": "" }, { "term": "Hide the bar when the pointer leaves even if a popout is still open", "context": "Hide the bar when the pointer leaves even if a popout is still open", - "reference": "Modules/Settings/DankBarTab.qml:703", + "reference": "Modules/Settings/DankBarTab.qml:705", "comment": "" }, { @@ -7640,7 +7676,7 @@ { "term": "High-fidelity palette that preserves source hues.", "context": "High-fidelity palette that preserves source hues.", - "reference": "Common/Theme.qml:496", + "reference": "Common/Theme.qml:500", "comment": "" }, { @@ -7664,13 +7700,13 @@ { "term": "History Retention", "context": "History Retention", - "reference": "Modules/Settings/NotificationsTab.qml:880", + "reference": "Modules/Settings/NotificationsTab.qml:877", "comment": "notification history retention settings label" }, { "term": "History Settings", "context": "History Settings", - "reference": "Modules/Settings/NotificationsTab.qml:851, Modules/Settings/ClipboardTab.qml:304, Modules/Notifications/Center/NotificationSettings.qml:340", + "reference": "Modules/Settings/NotificationsTab.qml:848, Modules/Settings/ClipboardTab.qml:304, Modules/Notifications/Center/NotificationSettings.qml:340", "comment": "" }, { @@ -7736,7 +7772,7 @@ { "term": "Hot Corners", "context": "Hot Corners", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2035", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043", "comment": "" }, { @@ -7763,6 +7799,12 @@ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:142, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:142", "comment": "" }, + { + "term": "Hover Popouts", + "context": "Hover Popouts", + "reference": "Modules/Settings/DankBarTab.qml:1262", + "comment": "" + }, { "term": "How often the server polls for new updates.", "context": "How often the server polls for new updates.", @@ -7796,7 +7838,7 @@ { "term": "Hyprland Layout Overrides", "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/CompositorLayoutTab.qml:122", + "reference": "Modules/Settings/CompositorLayoutTab.qml:380", "comment": "" }, { @@ -7814,7 +7856,7 @@ { "term": "Hyprland conf mode", "context": "Hyprland conf mode", - "reference": "Services/KeybindsService.qml:548, Modules/Settings/ThemeColorsTab.qml:130, Modules/Settings/WindowRulesTab.qml:344, Modules/Settings/WindowRulesTab.qml:502, Modules/Settings/KeybindsTab.qml:384, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:49, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1467", + "reference": "Services/KeybindsService.qml:548, Modules/Settings/ThemeColorsTab.qml:130, Modules/Settings/ThemeColorsTab.qml:2143, Modules/Settings/WindowRulesTab.qml:344, Modules/Settings/WindowRulesTab.qml:501, Modules/Settings/KeybindsTab.qml:383, Modules/Settings/CompositorLayoutTab.qml:97, Modules/Settings/CompositorLayoutTab.qml:196, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:48, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1475", "comment": "" }, { @@ -7832,7 +7874,7 @@ { "term": "I Understand", "context": "I Understand", - "reference": "Modules/Settings/PluginBrowser.qml:1348", + "reference": "Modules/Settings/PluginBrowser.qml:1498", "comment": "" }, { @@ -7862,13 +7904,13 @@ { "term": "Icon", "context": "Icon", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:903, Modules/Settings/DockTab.qml:261", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:921, Modules/Settings/DockTab.qml:261", "comment": "" }, { "term": "Icon Scale", "context": "Icon Scale", - "reference": "Modules/Settings/DankBarTab.qml:1112", + "reference": "Modules/Settings/DankBarTab.qml:1114", "comment": "" }, { @@ -7880,31 +7922,31 @@ { "term": "Icon Size %", "context": "Icon Size %", - "reference": "Modules/Settings/WidgetsTabSection.qml:3718", + "reference": "Modules/Settings/WidgetsTabSection.qml:3876", "comment": "" }, { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2269, Modules/Settings/ThemeColorsTab.qml:2287", + "reference": "Modules/Settings/ThemeColorsTab.qml:2314, Modules/Settings/ThemeColorsTab.qml:2332", "comment": "" }, { "term": "Icon theme changed outside DMS; switched to System Default", "context": "Icon theme changed outside DMS; switched to System Default", - "reference": "Common/SettingsData.qml:1357", + "reference": "Common/SettingsData.qml:1526", "comment": "shown when an external tool overrides the icon theme DMS applied" }, { "term": "Identical alerts show as one popup instead of stacking", "context": "Identical alerts show as one popup instead of stacking", - "reference": "Modules/Settings/NotificationsTab.qml:318", + "reference": "Modules/Settings/NotificationsTab.qml:316", "comment": "" }, { "term": "Identical alerts stack as separate notification cards", "context": "Identical alerts stack as separate notification cards", - "reference": "Modules/Settings/NotificationsTab.qml:319", + "reference": "Modules/Settings/NotificationsTab.qml:316", "comment": "" }, { @@ -7922,7 +7964,7 @@ { "term": "Idle Inhibitor", "context": "Idle Inhibitor", - "reference": "Modules/Settings/WidgetsTabSection.qml:1867, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/WidgetsTab.qml:192, Modules/Settings/OSDTab.qml:125", + "reference": "Modules/Settings/WidgetsTabSection.qml:2025, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/WidgetsTab.qml:208, Modules/Settings/OSDTab.qml:125", "comment": "" }, { @@ -7934,7 +7976,7 @@ { "term": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps", "context": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps", - "reference": "Modules/Settings/AutoStartTab.qml:735", + "reference": "Modules/Settings/AutoStartTab.qml:769", "comment": "" }, { @@ -8030,19 +8072,19 @@ { "term": "Incorrect password", "context": "Incorrect password", - "reference": "Modals/WifiPasswordModal.qml:363, Modules/Greetd/GreeterContent.qml:253", + "reference": "Modals/WifiPasswordModal.qml:363, Modules/Greetd/GreeterContent.qml:257", "comment": "" }, { "term": "Incorrect password - attempt %1 of %2 (lockout may follow)", "context": "Incorrect password - attempt %1 of %2 (lockout may follow)", - "reference": "Modules/Greetd/GreeterContent.qml:249", + "reference": "Modules/Greetd/GreeterContent.qml:253", "comment": "" }, { "term": "Incorrect password - next failures may trigger account lockout", "context": "Incorrect password - next failures may trigger account lockout", - "reference": "Modules/Greetd/GreeterContent.qml:251", + "reference": "Modules/Greetd/GreeterContent.qml:255", "comment": "" }, { @@ -8084,7 +8126,7 @@ { "term": "Inherit Global (Default)", "context": "Inherit Global (Default)", - "reference": "Modules/Settings/DankBarTab.qml:1641, Modules/Settings/DankBarTab.qml:1649", + "reference": "Modules/Settings/DankBarTab.qml:1687, Modules/Settings/DankBarTab.qml:1695", "comment": "bar shadow direction source option" }, { @@ -8108,7 +8150,7 @@ { "term": "Inner padding applied to each widget", "context": "Inner padding applied to each widget", - "reference": "Modules/Settings/DankBarTab.qml:955", + "reference": "Modules/Settings/DankBarTab.qml:957", "comment": "" }, { @@ -8138,7 +8180,7 @@ { "term": "Install", "context": "Install", - "reference": "Modules/Settings/PluginBrowser.qml:399, Modules/Settings/PluginBrowser.qml:1104, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:627", + "reference": "Modules/Settings/PluginBrowser.qml:452, Modules/Settings/PluginBrowser.qml:1184, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:627", "comment": "install action button" }, { @@ -8150,7 +8192,7 @@ { "term": "Install Plugin", "context": "Install Plugin", - "reference": "Modules/Settings/PluginBrowser.qml:397", + "reference": "Modules/Settings/PluginBrowser.qml:450", "comment": "plugin installation dialog title" }, { @@ -8180,7 +8222,7 @@ { "term": "Install failed: %1", "context": "Install failed: %1", - "reference": "Modules/Settings/PluginBrowser.qml:363, Modules/Settings/ThemeBrowser.qml:69", + "reference": "Modules/Settings/PluginBrowser.qml:416, Modules/Settings/ThemeBrowser.qml:69", "comment": "installation error" }, { @@ -8192,13 +8234,13 @@ { "term": "Install plugin '%1' from the DMS registry?", "context": "Install plugin '%1' from the DMS registry?", - "reference": "Modules/Settings/PluginBrowser.qml:398", + "reference": "Modules/Settings/PluginBrowser.qml:451", "comment": "plugin installation confirmation" }, { "term": "Install plugins from the DMS plugin registry", "context": "Install plugins from the DMS plugin registry", - "reference": "Modules/Settings/PluginBrowser.qml:599", + "reference": "Modules/Settings/PluginBrowser.qml:654", "comment": "plugin browser description" }, { @@ -8222,31 +8264,31 @@ { "term": "Installed", "context": "Installed", - "reference": "Modules/Settings/PluginBrowser.qml:1100, Modules/Settings/ThemeBrowser.qml:630", + "reference": "Modules/Settings/PluginBrowser.qml:1180, Modules/Settings/ThemeBrowser.qml:630", "comment": "installed status" }, { "term": "Installed first", "context": "Installed first", - "reference": "Modules/Settings/PluginBrowser.qml:43", + "reference": "Modules/Settings/PluginBrowser.qml:45", "comment": "plugin browser filter chip" }, { "term": "Installed: %1", "context": "Installed: %1", - "reference": "Modules/Settings/PluginBrowser.qml:366, Modules/Settings/ThemeBrowser.qml:72", + "reference": "Modules/Settings/PluginBrowser.qml:419, Modules/Settings/ThemeBrowser.qml:72", "comment": "installation success" }, { "term": "Installing: %1", "context": "Installing: %1", - "reference": "Modules/Settings/PluginBrowser.qml:360, Modules/Settings/ThemeBrowser.qml:66", + "reference": "Modules/Settings/PluginBrowser.qml:413, Modules/Settings/ThemeBrowser.qml:66", "comment": "installation progress" }, { "term": "Integrations", "context": "Integrations", - "reference": "Modules/Settings/FrameTab.qml:365", + "reference": "Modules/Settings/FrameTab.qml:374", "comment": "" }, { @@ -8258,7 +8300,7 @@ { "term": "Intensity", "context": "Intensity", - "reference": "Modules/Settings/DankBarTab.qml:1609", + "reference": "Modules/Settings/DankBarTab.qml:1655", "comment": "shadow intensity slider" }, { @@ -8288,13 +8330,13 @@ { "term": "Invalid JSON format: %1", "context": "Invalid JSON format: %1", - "reference": "Common/Theme.qml:2138", + "reference": "Common/Theme.qml:2175", "comment": "" }, { "term": "Invalid configuration", "context": "Invalid configuration", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2099", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2107", "comment": "" }, { @@ -8318,7 +8360,7 @@ { "term": "Invert touchpad scroll direction", "context": "Invert touchpad scroll direction", - "reference": "Modules/Settings/ThemeColorsTab.qml:2174", + "reference": "Modules/Settings/ThemeColorsTab.qml:2219", "comment": "" }, { @@ -8345,10 +8387,22 @@ "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:19", "comment": "" }, + { + "term": "Jump to page", + "context": "Jump to page", + "reference": "Modules/DankDash/WallpaperTab.qml:662", + "comment": "" + }, + { + "term": "Jump to page (1 - %1)", + "context": "Jump to page (1 - %1)", + "reference": "Modules/DankDash/WallpaperTab.qml:824", + "comment": "" + }, { "term": "Keep Awake", "context": "Keep Awake", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:723", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:751", "comment": "" }, { @@ -8360,13 +8414,13 @@ { "term": "Keep My Edits", "context": "Keep My Edits", - "reference": "Modules/Notepad/Notepad.qml:356", + "reference": "Modules/Notepad/Notepad.qml:357", "comment": "" }, { "term": "Keep in Bar", "context": "Keep in Bar", - "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1871", + "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1873", "comment": "" }, { @@ -8384,7 +8438,7 @@ { "term": "Keeping Awake", "context": "Keeping Awake", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:723", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:751", "comment": "" }, { @@ -8426,13 +8480,13 @@ { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", - "reference": "Modules/Settings/WidgetsTab.qml:228", + "reference": "Modules/Settings/WidgetsTab.qml:244", "comment": "" }, { "term": "Keyboard Shortcuts", "context": "Keyboard Shortcuts", - "reference": "Modals/Settings/SettingsSidebar.qml:206, Modals/Settings/SettingsSidebar.qml:652, Modals/Clipboard/ClipboardHeader.qml:63, Modules/Notepad/NotepadSettings.qml:526, Modules/Settings/KeybindsTab.qml:289", + "reference": "Modals/Settings/SettingsSidebar.qml:212, Modals/Settings/SettingsSidebar.qml:658, Modals/Clipboard/ClipboardHeader.qml:62, Modules/Notepad/NotepadSettings.qml:526, Modules/Settings/KeybindsTab.qml:289", "comment": "" }, { @@ -8486,13 +8540,13 @@ { "term": "Large", "context": "Large", - "reference": "Modules/Settings/WidgetsTabSection.qml:1529, Modules/Settings/WidgetsTabSection.qml:2890", + "reference": "Modules/Settings/WidgetsTabSection.qml:1687, Modules/Settings/WidgetsTabSection.qml:3048", "comment": "" }, { "term": "Largest", "context": "Largest", - "reference": "Modules/Settings/WidgetsTabSection.qml:1534, Modules/Settings/WidgetsTabSection.qml:2895", + "reference": "Modules/Settings/WidgetsTabSection.qml:1692, Modules/Settings/WidgetsTabSection.qml:3053", "comment": "" }, { @@ -8558,7 +8612,7 @@ { "term": "Launch", "context": "Launch", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:216, Modals/DankLauncherV2/Controller.qml:1198, Modals/DankLauncherV2/Controller.qml:1656, Modules/DankDash/Overview/CalendarOverviewCard.qml:265", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:217, Modals/DankLauncherV2/Controller.qml:1198, Modals/DankLauncherV2/Controller.qml:1656, Modules/DankDash/Overview/CalendarOverviewCard.qml:265", "comment": "" }, { @@ -8570,13 +8624,13 @@ { "term": "Launch on dGPU", "context": "Launch on dGPU", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:208, Modals/DankLauncherV2/ActionPanel.qml:61, Modules/Dock/DockContextMenu.qml:295, Modules/DankBar/Widgets/AppsDockContextMenu.qml:410", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:209, Modals/DankLauncherV2/ActionPanel.qml:61, Modules/Dock/DockContextMenu.qml:295, Modules/DankBar/Widgets/AppsDockContextMenu.qml:410", "comment": "" }, { "term": "Launcher", "context": "Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:198", + "reference": "Modals/Settings/SettingsSidebar.qml:204", "comment": "" }, { @@ -8600,13 +8654,13 @@ { "term": "Layer Outline Opacity", "context": "Layer Outline Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1756", + "reference": "Modules/Settings/ThemeColorsTab.qml:1713", "comment": "" }, { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:39, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:169", + "reference": "Modules/Settings/WidgetsTab.qml:55, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2045, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:169", "comment": "" }, { @@ -8624,7 +8678,7 @@ { "term": "Left", "context": "Left", - "reference": "Modules/Notepad/NotepadSettings.qml:434, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:344, Modules/Settings/DankBarTab.qml:491, Modules/DankBar/Popouts/BatteryPopout.qml:519", + "reference": "Modules/Notepad/NotepadSettings.qml:434, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:346, Modules/Settings/DankBarTab.qml:493, Modules/DankBar/Popouts/BatteryPopout.qml:519", "comment": "" }, { @@ -8636,7 +8690,7 @@ { "term": "Left Section", "context": "Left Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:27, Modules/Settings/WidgetsTab.qml:1064", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:28, Modules/Settings/WidgetsTab.qml:1314", "comment": "" }, { @@ -8648,7 +8702,7 @@ { "term": "Light Direction", "context": "Light Direction", - "reference": "Modules/Settings/ThemeColorsTab.qml:1910", + "reference": "Modules/Settings/ThemeColorsTab.qml:1940", "comment": "" }, { @@ -8660,7 +8714,7 @@ { "term": "Light Mode Icon Theme", "context": "Light Mode Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2323", + "reference": "Modules/Settings/ThemeColorsTab.qml:2368", "comment": "" }, { @@ -8684,13 +8738,13 @@ { "term": "Light mode base", "context": "Light mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2583", + "reference": "Modules/Settings/ThemeColorsTab.qml:2628", "comment": "" }, { "term": "Light mode harmony", "context": "Light mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2617", + "reference": "Modules/Settings/ThemeColorsTab.qml:2662", "comment": "" }, { @@ -8738,7 +8792,7 @@ { "term": "Lively palette with saturated accents.", "context": "Lively palette with saturated accents.", - "reference": "Common/Theme.qml:484", + "reference": "Common/Theme.qml:488", "comment": "" }, { @@ -8756,7 +8810,7 @@ { "term": "Loading keybinds...", "context": "Loading keybinds...", - "reference": "Modules/Settings/KeybindsTab.qml:640", + "reference": "Modules/Settings/KeybindsTab.qml:630", "comment": "" }, { @@ -8786,7 +8840,7 @@ { "term": "Locale", "context": "Locale", - "reference": "Modals/Settings/SettingsSidebar.qml:318", + "reference": "Modals/Settings/SettingsSidebar.qml:324", "comment": "" }, { @@ -8816,7 +8870,7 @@ { "term": "Lock Screen", "context": "Lock Screen", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:365, Modules/Settings/NotificationsTab.qml:769", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:156, Modals/Settings/SettingsSidebar.qml:377, Modules/Settings/NotificationsTab.qml:766", "comment": "greeter feature card title | lock screen notifications settings card" }, { @@ -8882,7 +8936,7 @@ { "term": "Logging in...", "context": "Logging in...", - "reference": "Modules/Greetd/GreeterContent.qml:1228", + "reference": "Modules/Greetd/GreeterContent.qml:1232", "comment": "" }, { @@ -8900,7 +8954,7 @@ { "term": "Long", "context": "Long", - "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/NotificationsTab.qml:385", + "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/NotificationsTab.qml:382", "comment": "" }, { @@ -8930,7 +8984,7 @@ { "term": "Low Battery", "context": "Low Battery", - "reference": "Services/BatteryService.qml:157", + "reference": "Services/BatteryService.qml:169", "comment": "" }, { @@ -8948,7 +9002,7 @@ { "term": "Low Priority", "context": "Low Priority", - "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:799, Modules/Settings/NotificationsTab.qml:922, Modules/Notifications/Center/NotificationSettings.qml:181, Modules/Notifications/Center/NotificationSettings.qml:364", + "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:796, Modules/Settings/NotificationsTab.qml:919, Modules/Notifications/Center/NotificationSettings.qml:181, Modules/Notifications/Center/NotificationSettings.qml:364", "comment": "notification rule urgency option" }, { @@ -8984,7 +9038,7 @@ { "term": "Make the bar background fully transparent", "context": "Make the bar background fully transparent", - "reference": "Modules/Settings/DankBarTab.qml:1166", + "reference": "Modules/Settings/DankBarTab.qml:1168", "comment": "" }, { @@ -8996,19 +9050,19 @@ { "term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", "context": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", - "reference": "Modules/Settings/DankBarTab.qml:276", + "reference": "Modules/Settings/DankBarTab.qml:278", "comment": "" }, { "term": "Managed by Frame", "context": "Managed by Frame", - "reference": "Modules/Settings/DankBarTab.qml:864, Modules/Settings/DankBarTab.qml:1151", + "reference": "Modules/Settings/DankBarTab.qml:866, Modules/Settings/DankBarTab.qml:1153", "comment": "" }, { "term": "Managed by Frame in Connected Mode", "context": "Managed by Frame in Connected Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1563", + "reference": "Modules/Settings/ThemeColorsTab.qml:1741, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1609", "comment": "" }, { @@ -9038,19 +9092,19 @@ { "term": "Mango service not available", "context": "Mango service not available", - "reference": "Modules/Settings/WidgetsTab.qml:43", + "reference": "Modules/Settings/WidgetsTab.qml:59", "comment": "" }, { "term": "MangoWC Layout Overrides", "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/CompositorLayoutTab.qml:228", + "reference": "Modules/Settings/CompositorLayoutTab.qml:496", "comment": "" }, { "term": "Manual", "context": "Manual", - "reference": "Modules/Settings/DankBarTab.qml:1641, Modules/Settings/DankBarTab.qml:1647, Modules/Settings/DankBarTab.qml:1657", + "reference": "Modules/Settings/DankBarTab.qml:1687, Modules/Settings/DankBarTab.qml:1693, Modules/Settings/DankBarTab.qml:1703", "comment": "bar shadow direction source option" }, { @@ -9062,13 +9116,13 @@ { "term": "Manual Direction", "context": "Manual Direction", - "reference": "Modules/Settings/DankBarTab.qml:1672", + "reference": "Modules/Settings/DankBarTab.qml:1718", "comment": "bar manual shadow direction" }, { "term": "Manual Gap Size", "context": "Manual Gap Size", - "reference": "Modules/Settings/DankBarTab.qml:1058", + "reference": "Modules/Settings/DankBarTab.qml:1060", "comment": "" }, { @@ -9080,7 +9134,7 @@ { "term": "Manual Show/Hide", "context": "Manual Show/Hide", - "reference": "Modules/Settings/DankBarTab.qml:735", + "reference": "Modules/Settings/DankBarTab.qml:737", "comment": "" }, { @@ -9128,7 +9182,7 @@ { "term": "Match (%1)", "context": "Match (%1)", - "reference": "Modules/Settings/WindowRulesTab.qml:1029", + "reference": "Modules/Settings/WindowRulesTab.qml:1027", "comment": "" }, { @@ -9170,7 +9224,7 @@ { "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", "context": "Material inspired shadows and elevation on modals, popouts, and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1833", + "reference": "Modules/Settings/ThemeColorsTab.qml:1863", "comment": "" }, { @@ -9206,7 +9260,7 @@ { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2341", + "reference": "Modules/Settings/ThemeColorsTab.qml:2386", "comment": "" }, { @@ -9224,7 +9278,7 @@ { "term": "Max Pinned Apps", "context": "Max Pinned Apps", - "reference": "Modules/Settings/WidgetsTabSection.qml:3277", + "reference": "Modules/Settings/WidgetsTabSection.qml:3435", "comment": "" }, { @@ -9236,7 +9290,7 @@ { "term": "Max Running Apps", "context": "Max Running Apps", - "reference": "Modules/Settings/WidgetsTabSection.qml:3331", + "reference": "Modules/Settings/WidgetsTabSection.qml:3489", "comment": "" }, { @@ -9248,7 +9302,7 @@ { "term": "Max Visible", "context": "Max Visible", - "reference": "Modules/Settings/WidgetsTabSection.qml:1288", + "reference": "Modules/Settings/WidgetsTabSection.qml:1446", "comment": "" }, { @@ -9284,19 +9338,19 @@ { "term": "Maximize Detection", "context": "Maximize Detection", - "reference": "Modules/Settings/DankBarTab.qml:1260", + "reference": "Modules/Settings/DankBarTab.qml:1306", "comment": "" }, { "term": "Maximize Widget Icons", "context": "Maximize Widget Icons", - "reference": "Modules/Settings/DankBarTab.qml:1175", + "reference": "Modules/Settings/DankBarTab.qml:1177", "comment": "" }, { "term": "Maximize Widget Text", "context": "Maximize Widget Text", - "reference": "Modules/Settings/DankBarTab.qml:1184", + "reference": "Modules/Settings/DankBarTab.qml:1186", "comment": "" }, { @@ -9308,7 +9362,7 @@ { "term": "Maximum History", "context": "Maximum History", - "reference": "Modules/Settings/NotificationsTab.qml:866, Modules/Settings/ClipboardTab.qml:313", + "reference": "Modules/Settings/NotificationsTab.qml:863, Modules/Settings/ClipboardTab.qml:313", "comment": "" }, { @@ -9338,7 +9392,7 @@ { "term": "Maximum number of notifications to keep", "context": "Maximum number of notifications to keep", - "reference": "Modules/Settings/NotificationsTab.qml:867", + "reference": "Modules/Settings/NotificationsTab.qml:864", "comment": "notification history limit" }, { @@ -9356,13 +9410,13 @@ { "term": "Media", "context": "Media", - "reference": "Services/AppSearchService.qml:662, Services/AppSearchService.qml:663, Services/AppSearchService.qml:664, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1122, Widgets/KeybindItem.qml:1131, Widgets/KeybindItem.qml:1137, Modules/DankDash/DankDashPopout.qml:288", + "reference": "Services/AppSearchService.qml:662, Services/AppSearchService.qml:663, Services/AppSearchService.qml:664, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1122, Widgets/KeybindItem.qml:1131, Widgets/KeybindItem.qml:1137, Modules/DankDash/DankDashPopout.qml:22, Modules/Settings/DankDashTab.qml:23", "comment": "" }, { "term": "Media Controls", "context": "Media Controls", - "reference": "Modules/Settings/WidgetsTab.qml:96", + "reference": "Modules/Settings/WidgetsTab.qml:112", "comment": "" }, { @@ -9398,13 +9452,13 @@ { "term": "Media Player", "context": "Media Player", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1863, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1863, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, Modals/Settings/SettingsSidebar.qml:160", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1863, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1862, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, Modals/Settings/SettingsSidebar.qml:166", "comment": "" }, { "term": "Media Player Settings", "context": "Media Player Settings", - "reference": "Modules/Settings/MediaPlayerTab.qml:25", + "reference": "Modules/Settings/MediaPlayerTab.qml:37", "comment": "" }, { @@ -9422,13 +9476,13 @@ { "term": "Medium", "context": "Medium", - "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:266, Modules/Settings/TypographyMotionTab.qml:294, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WidgetsTabSection.qml:1524, Modules/Settings/WidgetsTabSection.qml:2885, Modules/Settings/NotificationsTab.qml:385", + "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:266, Modules/Settings/TypographyMotionTab.qml:294, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WidgetsTabSection.qml:1682, Modules/Settings/WidgetsTabSection.qml:3043, Modules/Settings/NotificationsTab.qml:382", "comment": "font weight" }, { "term": "Memory", "context": "Memory", - "reference": "Modules/ProcessList/ProcessListPopout.qml:319, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", + "reference": "Modules/ProcessList/ProcessListPopout.qml:332, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", "comment": "" }, { @@ -9440,13 +9494,13 @@ { "term": "Memory Usage", "context": "Memory Usage", - "reference": "Modules/Settings/WidgetsTab.qml:118", + "reference": "Modules/Settings/WidgetsTab.qml:134", "comment": "" }, { "term": "Memory usage indicator", "context": "Memory usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:119", + "reference": "Modules/Settings/WidgetsTab.qml:135", "comment": "" }, { @@ -9470,13 +9524,13 @@ { "term": "Message Content", "context": "Message Content", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:972", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:971", "comment": "notification privacy mode placeholder" }, { "term": "Microphone", "context": "Microphone", - "reference": "Modules/Settings/WidgetsTabSection.qml:1807, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/WidgetsTabSection.qml:2350", + "reference": "Modules/Settings/WidgetsTabSection.qml:1965, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/WidgetsTabSection.qml:2508", "comment": "" }, { @@ -9488,7 +9542,7 @@ { "term": "Microphone Volume", "context": "Microphone Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:1812, Modules/Settings/WidgetsTabSection.qml:2021", + "reference": "Modules/Settings/WidgetsTabSection.qml:1970, Modules/Settings/WidgetsTabSection.qml:2179", "comment": "" }, { @@ -9506,7 +9560,7 @@ { "term": "Middle Section", "context": "Middle Section", - "reference": "Modules/Settings/WidgetsTab.qml:1140", + "reference": "Modules/Settings/WidgetsTab.qml:1401", "comment": "" }, { @@ -9524,7 +9578,7 @@ { "term": "Minimal palette built around a single hue.", "context": "Minimal palette built around a single hue.", - "reference": "Common/Theme.qml:504", + "reference": "Common/Theme.qml:508", "comment": "" }, { @@ -9548,13 +9602,13 @@ { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2015", + "reference": "Modules/Settings/ThemeColorsTab.qml:2045", "comment": "" }, { "term": "Modal Shadows", "context": "Modal Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1982", + "reference": "Modules/Settings/ThemeColorsTab.qml:2012", "comment": "" }, { @@ -9566,7 +9620,7 @@ { "term": "Mode", "context": "Mode", - "reference": "Modules/Settings/DankBarTab.qml:1286, Modules/Settings/FrameTab.qml:50, Modules/Settings/NetworkWifiTab.qml:763, Modules/Settings/NetworkWifiTab.qml:1124, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2017", + "reference": "Modules/Settings/DankBarTab.qml:1332, Modules/Settings/FrameTab.qml:50, Modules/Settings/NetworkWifiTab.qml:763, Modules/Settings/NetworkWifiTab.qml:1124, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2025", "comment": "" }, { @@ -9578,19 +9632,19 @@ { "term": "Model", "context": "Model", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2008", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2016", "comment": "" }, { "term": "Modified", "context": "Modified", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:695, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2035, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:713, Modals/DankLauncherV2/LauncherContent.qml:720, Modals/DankLauncherV2/LauncherContent.qml:726, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2045", "comment": "" }, { "term": "Modular widget bar", "context": "Modular widget bar", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:115", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:114", "comment": "greeter feature card description" }, { @@ -9626,7 +9680,7 @@ { "term": "Monochrome", "context": "Monochrome", - "reference": "Common/Theme.qml:503, Modules/Settings/DankBarTab.qml:1287", + "reference": "Common/Theme.qml:507, Modules/Settings/DankBarTab.qml:1333", "comment": "matugen color scheme option" }, { @@ -9668,19 +9722,19 @@ { "term": "Mouse clicks pass through the bar to windows behind it", "context": "Mouse clicks pass through the bar to windows behind it", - "reference": "Modules/Settings/DankBarTab.qml:755", + "reference": "Modules/Settings/DankBarTab.qml:757", "comment": "" }, { "term": "Mouse pointer appearance", "context": "Mouse pointer appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:2144", + "reference": "Modules/Settings/ThemeColorsTab.qml:2189", "comment": "" }, { "term": "Mouse pointer size in pixels", "context": "Mouse pointer size in pixels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2160", + "reference": "Modules/Settings/ThemeColorsTab.qml:2205", "comment": "" }, { @@ -9692,7 +9746,7 @@ { "term": "Move Widget", "context": "Move Widget", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:648", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:461", "comment": "" }, { @@ -9710,7 +9764,7 @@ { "term": "Multi-Monitor", "context": "Multi-Monitor", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:130", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:129", "comment": "greeter feature card title" }, { @@ -9734,7 +9788,7 @@ { "term": "Multiplexers", "context": "Multiplexers", - "reference": "Modals/Settings/SettingsSidebar.qml:338", + "reference": "Modals/Settings/SettingsSidebar.qml:344", "comment": "" }, { @@ -9764,25 +9818,25 @@ { "term": "Mute popups for %1", "context": "Mute popups for %1", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1423, Modules/Notifications/Center/NotificationCard.qml:1097", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1422, Modules/Notifications/Center/NotificationCard.qml:1097", "comment": "" }, { "term": "Muted", "context": "Muted", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:370, Modules/ControlCenter/Components/DragDropGrid.qml:541, Modules/ControlCenter/Components/DragDropGrid.qml:552", + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:370, Modules/ControlCenter/Components/DragDropGrid.qml:569, Modules/ControlCenter/Components/DragDropGrid.qml:580", "comment": "audio status" }, { "term": "Muted Apps", "context": "Muted Apps", - "reference": "Modules/Settings/NotificationsTab.qml:680", + "reference": "Modules/Settings/NotificationsTab.qml:677", "comment": "" }, { "term": "Muted palette with subdued, calming tones.", "context": "Muted palette with subdued, calming tones.", - "reference": "Common/Theme.qml:508", + "reference": "Common/Theme.qml:512", "comment": "" }, { @@ -9794,13 +9848,13 @@ { "term": "NM not supported", "context": "NM not supported", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:432", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:460", "comment": "" }, { "term": "Name", "context": "Name", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:53, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:507, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2008, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:711, Modals/DankLauncherV2/LauncherContent.qml:720, Modals/DankLauncherV2/LauncherContent.qml:725, Modals/DankLauncherV2/LauncherContent.qml:901, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:55, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:540, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2016, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", "comment": "plugin browser sort option" }, { @@ -9824,7 +9878,7 @@ { "term": "Natural Touchpad Scrolling", "context": "Natural Touchpad Scrolling", - "reference": "Modules/Settings/ThemeColorsTab.qml:2173", + "reference": "Modules/Settings/ThemeColorsTab.qml:2218", "comment": "" }, { @@ -9842,7 +9896,7 @@ { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1762, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:89, Modules/ControlCenter/Models/WidgetModel.qml:161", + "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:245, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1920, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:89, Modules/ControlCenter/Models/WidgetModel.qml:161", "comment": "" }, { @@ -9872,7 +9926,7 @@ { "term": "Network Speed Monitor", "context": "Network Speed Monitor", - "reference": "Modules/Settings/WidgetsTab.qml:220", + "reference": "Modules/Settings/WidgetsTab.qml:236", "comment": "" }, { @@ -9884,13 +9938,13 @@ { "term": "Network Type", "context": "Network Type", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1693, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:755, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1693, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:755", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1693, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:755, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1692, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:755", "comment": "KDE Connect network type label" }, { "term": "Network download and upload speed display", "context": "Network download and upload speed display", - "reference": "Modules/Settings/WidgetsTab.qml:221", + "reference": "Modules/Settings/WidgetsTab.qml:237", "comment": "" }, { @@ -9902,7 +9956,7 @@ { "term": "Neutral", "context": "Neutral", - "reference": "Common/Theme.qml:507", + "reference": "Common/Theme.qml:511", "comment": "matugen color scheme option" }, { @@ -9932,7 +9986,7 @@ { "term": "New Keybind", "context": "New Keybind", - "reference": "Modules/Settings/KeybindsTab.qml:547", + "reference": "Modules/Settings/KeybindsTab.qml:537", "comment": "" }, { @@ -9968,13 +10022,13 @@ { "term": "New group name...", "context": "New group name...", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:137", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:233", "comment": "" }, { "term": "Next", "context": "Next", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2167, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2167, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, Modals/Greeter/GreeterModal.qml:296", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2167, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2166, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, Modals/Greeter/GreeterModal.qml:296", "comment": "Media next tooltip | greeter next button" }, { @@ -9983,6 +10037,12 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1505, Modules/Settings/GammaControlTab.qml:643", "comment": "" }, + { + "term": "Next page", + "context": "Next page", + "reference": "Modules/DankDash/WallpaperTab.qml:678", + "comment": "" + }, { "term": "Night", "context": "Night", @@ -9992,7 +10052,7 @@ { "term": "Night Mode", "context": "Night Mode", - "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:719", + "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:747", "comment": "" }, { @@ -10004,7 +10064,7 @@ { "term": "Night mode & gamma", "context": "Night mode & gamma", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:142", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:141", "comment": "greeter feature card description" }, { @@ -10022,7 +10082,7 @@ { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/CompositorLayoutTab.qml:25", + "reference": "Modules/Settings/CompositorLayoutTab.qml:273", "comment": "" }, { @@ -10034,7 +10094,7 @@ { "term": "No", "context": "No", - "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2033, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", + "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2041, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2051, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2061, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2063", "comment": "" }, { @@ -10052,7 +10112,7 @@ { "term": "No Background", "context": "No Background", - "reference": "Modules/Settings/DankBarTab.qml:1165", + "reference": "Modules/Settings/DankBarTab.qml:1167", "comment": "" }, { @@ -10094,7 +10154,7 @@ { "term": "No GPU detected", "context": "No GPU detected", - "reference": "Modules/Settings/WidgetsTabSection.qml:152", + "reference": "Modules/Settings/WidgetsTabSection.qml:315", "comment": "" }, { @@ -10178,13 +10238,13 @@ { "term": "No adapter", "context": "No adapter", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:477", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:505", "comment": "bluetooth status" }, { "term": "No adapters", "context": "No adapters", - "reference": "Modules/Settings/NetworkEthernetTab.qml:60, Modules/ControlCenter/Components/DragDropGrid.qml:517", + "reference": "Modules/Settings/NetworkEthernetTab.qml:60, Modules/ControlCenter/Components/DragDropGrid.qml:545", "comment": "bluetooth status" }, { @@ -10196,7 +10256,7 @@ { "term": "No application selected", "context": "No application selected", - "reference": "Modules/Settings/AutoStartTab.qml:445", + "reference": "Modules/Settings/AutoStartTab.qml:478", "comment": "" }, { @@ -10214,19 +10274,19 @@ { "term": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", "context": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", - "reference": "Modules/Settings/NotificationsTab.qml:689", + "reference": "Modules/Settings/NotificationsTab.qml:686", "comment": "" }, { "term": "No autostart entries", "context": "No autostart entries", - "reference": "Modules/Settings/AutoStartTab.qml:714", + "reference": "Modules/Settings/AutoStartTab.qml:748", "comment": "" }, { "term": "No battery", "context": "No battery", - "reference": "Services/BatteryService.qml:295, Modules/ControlCenter/Widgets/BatteryPill.qml:15", + "reference": "Services/BatteryService.qml:307, Modules/ControlCenter/Widgets/BatteryPill.qml:15", "comment": "battery status" }, { @@ -10262,7 +10322,7 @@ { "term": "No devices", "context": "No devices", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:462, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:462, Modules/ControlCenter/Components/DragDropGrid.qml:534", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:462, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:461, Modules/ControlCenter/Components/DragDropGrid.qml:562", "comment": "Phone Connect no devices status | bluetooth status" }, { @@ -10301,6 +10361,12 @@ "reference": "Modals/Greeter/GreeterDoctorPage.qml:324", "comment": "greeter doctor page empty state" }, + { + "term": "No excluded players configured", + "context": "No excluded players configured", + "reference": "Modules/Settings/MediaPlayerTab.qml:256", + "comment": "" + }, { "term": "No features enabled", "context": "No features enabled", @@ -10340,7 +10406,7 @@ { "term": "No images found", "context": "No images found", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2296, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2296", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2296, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2295", "comment": "No recent images found message" }, { @@ -10358,7 +10424,7 @@ { "term": "No input device", "context": "No input device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:485", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:513", "comment": "audio status" }, { @@ -10376,7 +10442,7 @@ { "term": "No keybinds found", "context": "No keybinds found", - "reference": "Modules/Settings/KeybindsTab.qml:648", + "reference": "Modules/Settings/KeybindsTab.qml:638", "comment": "" }, { @@ -10388,13 +10454,13 @@ { "term": "No match criteria", "context": "No match criteria", - "reference": "Modules/Settings/WindowRulesTab.qml:670, Modules/Settings/WindowRulesTab.qml:945", + "reference": "Modules/Settings/WindowRulesTab.qml:668, Modules/Settings/WindowRulesTab.qml:943", "comment": "" }, { "term": "No matches", "context": "No matches", - "reference": "Modals/Settings/SettingsSidebar.qml:900, Modules/Notepad/NotepadTextEditor.qml:460", + "reference": "Modals/Settings/SettingsSidebar.qml:906, Modules/Notepad/NotepadTextEditor.qml:460", "comment": "" }, { @@ -10430,7 +10496,7 @@ { "term": "No output device", "context": "No output device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:483", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:511", "comment": "audio status" }, { @@ -10454,7 +10520,7 @@ { "term": "No plugins found", "context": "No plugins found", - "reference": "Modules/Settings/PluginBrowser.qml:1217", + "reference": "Modules/Settings/PluginBrowser.qml:1367", "comment": "empty plugin list" }, { @@ -10517,6 +10583,12 @@ "reference": "Modals/Clipboard/ClipboardContent.qml:322", "comment": "" }, + { + "term": "No screenshot provided", + "context": "No screenshot provided", + "reference": "Modules/Settings/PluginBrowser.qml:1318", + "comment": "plugin browser no screenshot" + }, { "term": "No session selected", "context": "No session selected", @@ -10586,13 +10658,13 @@ { "term": "No wallpapers", "context": "No wallpapers", - "reference": "Modules/DankDash/WallpaperTab.qml:541", + "reference": "Modules/DankDash/WallpaperTab.qml:646", "comment": "" }, { "term": "No wallpapers found\n\nClick the folder icon below to browse", "context": "No wallpapers found\n\nClick the folder icon below to browse", - "reference": "Modules/DankDash/WallpaperTab.qml:499", + "reference": "Modules/DankDash/WallpaperTab.qml:601", "comment": "" }, { @@ -10604,7 +10676,7 @@ { "term": "No widgets added. Click \"Add Widget\" to get started.", "context": "No widgets added. Click \"Add Widget\" to get started.", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:606", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:419", "comment": "" }, { @@ -10622,7 +10694,7 @@ { "term": "No window rules configured", "context": "No window rules configured", - "reference": "Modules/Settings/WindowRulesTab.qml:586", + "reference": "Modules/Settings/WindowRulesTab.qml:584", "comment": "" }, { @@ -10640,7 +10712,7 @@ { "term": "None", "context": "None", - "reference": "Modals/WindowRuleModal.qml:1154, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1198, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/WorkspaceAppearanceCard.qml:47, Modules/Settings/WorkspaceAppearanceCard.qml:55, Modules/Settings/NotificationsTab.qml:385, Modules/Settings/WindowRulesTab.qml:1063, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:181", + "reference": "Modals/WindowRuleModal.qml:1154, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1198, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1333, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1902, Modules/Settings/WorkspaceAppearanceCard.qml:49, Modules/Settings/WorkspaceAppearanceCard.qml:57, Modules/Settings/NotificationsTab.qml:382, Modules/Settings/WindowRulesTab.qml:1061, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:181", "comment": "Tailscale exit node: none selected | wallpaper transition option | workspace color option" }, { @@ -10652,7 +10724,7 @@ { "term": "Normal", "context": "Normal", - "reference": "Modals/WindowRuleModal.qml:1176, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2589, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2605, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2610", + "reference": "Modals/WindowRuleModal.qml:1176, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2597, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2613, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2618", "comment": "" }, { @@ -10664,7 +10736,7 @@ { "term": "Normal Priority", "context": "Normal Priority", - "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:816, Modules/Settings/NotificationsTab.qml:931, Modules/Notifications/Center/NotificationSettings.qml:196, Modules/Notifications/Center/NotificationSettings.qml:398", + "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:813, Modules/Settings/NotificationsTab.qml:928, Modules/Notifications/Center/NotificationSettings.qml:196, Modules/Notifications/Center/NotificationSettings.qml:398", "comment": "notification rule urgency option" }, { @@ -10706,7 +10778,7 @@ { "term": "Not connected", "context": "Not connected", - "reference": "Modules/Settings/NetworkWifiTab.qml:182, Modules/ControlCenter/Components/DragDropGrid.qml:469", + "reference": "Modules/Settings/NetworkWifiTab.qml:182, Modules/ControlCenter/Components/DragDropGrid.qml:497", "comment": "network status" }, { @@ -10736,7 +10808,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:1135, Services/AppSearchService.qml:182, Modules/Notepad/NotepadPopoutWindow.qml:25, Modules/Notepad/NotepadPopoutWindow.qml:80, Modules/Settings/WidgetsTab.qml:234", + "reference": "DMSShell.qml:1167, Services/AppSearchService.qml:182, Modules/Notepad/NotepadPopoutWindow.qml:25, Modules/Notepad/NotepadPopoutWindow.qml:80, Modules/Settings/WidgetsTab.qml:250", "comment": "Notepad" }, { @@ -10760,7 +10832,7 @@ { "term": "Nothing", "context": "Nothing", - "reference": "Modules/Settings/MediaPlayerTab.qml:58", + "reference": "Modules/Settings/MediaPlayerTab.qml:70", "comment": "media scroll wheel option" }, { @@ -10778,31 +10850,31 @@ { "term": "Notification Center", "context": "Notification Center", - "reference": "Modules/Settings/WidgetsTab.qml:171", + "reference": "Modules/Settings/WidgetsTab.qml:187", "comment": "" }, { "term": "Notification Display", "context": "Notification Display", - "reference": "Modules/Settings/LockScreenTab.qml:146, Modules/Settings/NotificationsTab.qml:775", + "reference": "Modules/Settings/LockScreenTab.qml:146, Modules/Settings/NotificationsTab.qml:772", "comment": "lock screen notification privacy setting" }, { "term": "Notification Overlay", "context": "Notification Overlay", - "reference": "Modules/Settings/NotificationsTab.qml:289, Modules/Notifications/Center/NotificationSettings.qml:257", + "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:257", "comment": "" }, { "term": "Notification Popups", "context": "Notification Popups", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:207", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:206", "comment": "" }, { "term": "Notification Rules", "context": "Notification Rules", - "reference": "Modules/Settings/NotificationsTab.qml:451", + "reference": "Modules/Settings/NotificationsTab.qml:448", "comment": "" }, { @@ -10814,7 +10886,7 @@ { "term": "Notification Timeouts", "context": "Notification Timeouts", - "reference": "Modules/Settings/NotificationsTab.qml:791, Modules/Notifications/Center/NotificationSettings.qml:174", + "reference": "Modules/Settings/NotificationsTab.qml:788, Modules/Notifications/Center/NotificationSettings.qml:174", "comment": "" }, { @@ -10832,7 +10904,7 @@ { "term": "Notifications", "context": "Notifications", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1699, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:761, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1699, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:761, Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:166, Modules/Notifications/Center/NotificationHeader.qml:55", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1699, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:761, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1698, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:761, Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:172, Modules/Notifications/Center/NotificationHeader.qml:55", "comment": "KDE Connect notifications label | greeter settings link" }, { @@ -10841,6 +10913,12 @@ "reference": "Modules/Settings/BatteryTab.qml:210", "comment": "" }, + { + "term": "Now playing and media controls", + "context": "Now playing and media controls", + "reference": "Modules/Settings/DankDashTab.qml:24", + "comment": "" + }, { "term": "Numbers", "context": "Numbers", @@ -10880,13 +10958,13 @@ { "term": "Occupied Color", "context": "Occupied Color", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:206", + "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:50", "comment": "" }, { "term": "Off", "context": "Off", - "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:694, Modules/Settings/WindowRulesTab.qml:971, Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:343, Modules/Settings/DisplayConfig/OutputCard.qml:346, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:365, Modules/Settings/DisplayConfig/OutputCard.qml:369, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:98, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:519, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31", + "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:692, Modules/Settings/WindowRulesTab.qml:969, Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:343, Modules/Settings/DisplayConfig/OutputCard.qml:346, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:365, Modules/Settings/DisplayConfig/OutputCard.qml:369, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:98, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:547, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31", "comment": "bluetooth status" }, { @@ -10898,7 +10976,7 @@ { "term": "Offline", "context": "Offline", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:469, dms-plugins/DankKDEConnect/components/DeviceCard.qml:306, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:469, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:306", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:469, dms-plugins/DankKDEConnect/components/DeviceCard.qml:306, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:468, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:306", "comment": "KDE Connect offline status | Phone Connect offline status" }, { @@ -10934,7 +11012,7 @@ { "term": "On-screen Displays", "context": "On-screen Displays", - "reference": "Modals/Settings/SettingsSidebar.qml:172, Modules/Settings/DisplayWidgetsTab.qml:49, Modules/Settings/OSDTab.qml:25", + "reference": "Modals/Settings/SettingsSidebar.qml:178, Modules/Settings/DisplayWidgetsTab.qml:49, Modules/Settings/OSDTab.qml:25", "comment": "" }, { @@ -10964,7 +11042,7 @@ { "term": "Only on Battery", "context": "Only on Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:2701, Modules/Settings/WidgetsTabSection.qml:2810", + "reference": "Modules/Settings/WidgetsTabSection.qml:2859, Modules/Settings/WidgetsTabSection.qml:2968", "comment": "" }, { @@ -10982,7 +11060,7 @@ { "term": "Opacity", "context": "Opacity", - "reference": "Modals/WindowRuleModal.qml:1092, Modals/DankColorPickerModal.qml:516, Modules/Settings/DockTab.qml:653, Modules/Settings/DankBarTab.qml:809, Modules/Settings/DankBarTab.qml:1419, Modules/Settings/DankBarTab.qml:1514, Modules/Settings/DankBarTab.qml:1623, Modules/Settings/WindowRulesTab.qml:94", + "reference": "Modals/WindowRuleModal.qml:1092, Modals/DankColorPickerModal.qml:516, Modules/Settings/DockTab.qml:653, Modules/Settings/DankBarTab.qml:811, Modules/Settings/DankBarTab.qml:1465, Modules/Settings/DankBarTab.qml:1560, Modules/Settings/DankBarTab.qml:1669, Modules/Settings/WindowRulesTab.qml:94", "comment": "" }, { @@ -11003,6 +11081,12 @@ "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:368, dms-plugins/dms-plugins-official/DankKDEConnect/components/SmsDialog.qml:368", "comment": "KDE Connect open SMS app button" }, + { + "term": "Open Delay", + "context": "Open Delay", + "reference": "Modules/Settings/DankBarTab.qml:1281", + "comment": "" + }, { "term": "Open Dir", "context": "Open Dir", @@ -11024,7 +11108,7 @@ { "term": "Open Notepad File", "context": "Open Notepad File", - "reference": "Modules/Notepad/Notepad.qml:611", + "reference": "Modules/Notepad/Notepad.qml:612", "comment": "" }, { @@ -11081,22 +11165,34 @@ "reference": "Modules/Notepad/NotepadSettings.qml:223", "comment": "" }, + { + "term": "Open the launcher by hovering the emerge edge (when free of bar and dock)", + "context": "Open the launcher by hovering the emerge edge (when free of bar and dock)", + "reference": "Modules/Settings/FrameTab.qml:365", + "comment": "" + }, + { + "term": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", + "context": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", + "reference": "Modules/Settings/DankBarTab.qml:1263", + "comment": "" + }, { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:931, Modals/BrowserPickerModal.qml:13", + "reference": "DMSShell.qml:963, Modals/BrowserPickerModal.qml:13", "comment": "" }, { "term": "Opening SMS app", "context": "Opening SMS app", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1769, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:812, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1769, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:812", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1769, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:812, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1768, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:812", "comment": "Phone Connect SMS action" }, { "term": "Opening file browser", "context": "Opening file browser", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:669, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:669", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:669, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:668", "comment": "Phone Connect browse action" }, { @@ -11156,7 +11252,7 @@ { "term": "Organize widgets into collapsible groups", "context": "Organize widgets into collapsible groups", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:123", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:219", "comment": "" }, { @@ -11174,7 +11270,7 @@ { "term": "Outline", "context": "Outline", - "reference": "Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1786, Modules/Settings/LauncherTab.qml:731", + "reference": "Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1782, Modules/Settings/LauncherTab.qml:731", "comment": "blur border color | outline color" }, { @@ -11207,12 +11303,6 @@ "reference": "Services/CupsService.qml:810", "comment": "" }, - { - "term": "Outputs Include Missing", - "context": "Outputs Include Missing", - "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:53", - "comment": "" - }, { "term": "Overcast", "context": "Overcast", @@ -11222,7 +11312,7 @@ { "term": "Overflow", "context": "Overflow", - "reference": "Modules/Settings/WidgetsTabSection.qml:3261", + "reference": "Modules/Settings/WidgetsTabSection.qml:3419", "comment": "" }, { @@ -11240,19 +11330,19 @@ { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/CompositorLayoutTab.qml:92, Modules/Settings/CompositorLayoutTab.qml:189, Modules/Settings/CompositorLayoutTab.qml:295", + "reference": "Modules/Settings/CompositorLayoutTab.qml:340, Modules/Settings/CompositorLayoutTab.qml:447, Modules/Settings/CompositorLayoutTab.qml:563", "comment": "" }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/CompositorLayoutTab.qml:63, Modules/Settings/CompositorLayoutTab.qml:160, Modules/Settings/CompositorLayoutTab.qml:266", + "reference": "Modules/Settings/CompositorLayoutTab.qml:311, Modules/Settings/CompositorLayoutTab.qml:418, Modules/Settings/CompositorLayoutTab.qml:534", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/CompositorLayoutTab.qml:33, Modules/Settings/CompositorLayoutTab.qml:130, Modules/Settings/CompositorLayoutTab.qml:236", + "reference": "Modules/Settings/CompositorLayoutTab.qml:281, Modules/Settings/CompositorLayoutTab.qml:388, Modules/Settings/CompositorLayoutTab.qml:504", "comment": "" }, { @@ -11276,13 +11366,13 @@ { "term": "Override the global shadow with per-bar settings", "context": "Override the global shadow with per-bar settings", - "reference": "Modules/Settings/DankBarTab.qml:1591", + "reference": "Modules/Settings/DankBarTab.qml:1637", "comment": "" }, { "term": "Override the popup gap size when auto is disabled", "context": "Override the popup gap size when auto is disabled", - "reference": "Modules/Settings/DankBarTab.qml:1059", + "reference": "Modules/Settings/DankBarTab.qml:1061", "comment": "" }, { @@ -11294,7 +11384,7 @@ { "term": "Overview", "context": "Overview", - "reference": "Widgets/KeybindItem.qml:1128, Widgets/KeybindItem.qml:1131, Modules/DankDash/DankDashPopout.qml:284, Modules/DankBar/Widgets/WorkspaceSwitcher.qml:975", + "reference": "Widgets/KeybindItem.qml:1128, Widgets/KeybindItem.qml:1131, Modules/DankDash/DankDashPopout.qml:18, Modules/Settings/DankDashTab.qml:18, Modules/DankBar/Widgets/WorkspaceSwitcher.qml:968", "comment": "" }, { @@ -11378,7 +11468,7 @@ { "term": "Padding", "context": "Padding", - "reference": "Modules/Settings/DockTab.qml:611, Modules/Settings/DankBarTab.qml:954", + "reference": "Modules/Settings/DockTab.qml:611, Modules/Settings/DankBarTab.qml:956", "comment": "" }, { @@ -11408,19 +11498,19 @@ { "term": "Pairing failed", "context": "Pairing failed", - "reference": "Modals/BluetoothPairingModal.qml:395, dms-plugins/DankKDEConnect/DankKDEConnect.qml:675, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:675, Modules/ControlCenter/Details/BluetoothDetail.qml:50", + "reference": "Modals/BluetoothPairingModal.qml:395, dms-plugins/DankKDEConnect/DankKDEConnect.qml:675, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:674, Modules/ControlCenter/Details/BluetoothDetail.qml:50", "comment": "Phone Connect error" }, { "term": "Pairing request from", "context": "Pairing request from", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:589, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:589", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:589, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:588", "comment": "Phone Connect pairing request notification" }, { "term": "Pairing request sent", "context": "Pairing request sent", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:678, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:678", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:678, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:677", "comment": "Phone Connect pairing action" }, { @@ -11480,7 +11570,7 @@ { "term": "Password...", "context": "Password...", - "reference": "Modules/Greetd/GreeterContent.qml:1234", + "reference": "Modules/Greetd/GreeterContent.qml:1238", "comment": "" }, { @@ -11510,13 +11600,13 @@ { "term": "Pattern", "context": "Pattern", - "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:570, Modules/Settings/NotificationsTab.qml:579", + "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:567, Modules/Settings/NotificationsTab.qml:576", "comment": "" }, { "term": "Pause", "context": "Pause", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, Modules/Settings/PrinterTab.qml:1232, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:138", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1954, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, Modules/Settings/PrinterTab.qml:1232, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:138", "comment": "Media pause tooltip" }, { @@ -11534,13 +11624,13 @@ { "term": "Pending Charge", "context": "Pending Charge", - "reference": "Services/BatteryService.qml:284", + "reference": "Services/BatteryService.qml:296", "comment": "battery status" }, { "term": "Pending Discharge", "context": "Pending Discharge", - "reference": "Services/BatteryService.qml:286", + "reference": "Services/BatteryService.qml:298", "comment": "battery status" }, { @@ -11558,25 +11648,25 @@ { "term": "Per-screen config", "context": "Per-screen config", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:131", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:130", "comment": "greeter feature card description" }, { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTabSection.qml:1651, Modules/Settings/WidgetsTab.qml:127", + "reference": "Modules/Settings/WidgetsTabSection.qml:1809, Modules/Settings/WidgetsTab.qml:143", "comment": "" }, { "term": "Performance", "context": "Performance", - "reference": "Modals/ProcessListModal.qml:312, Common/Theme.qml:1628", + "reference": "Modals/ProcessListModal.qml:312, Common/Theme.qml:1643", "comment": "power profile option" }, { "term": "Permanently delete %1 item(s)? This cannot be undone.", "context": "Permanently delete %1 item(s)? This cannot be undone.", - "reference": "DMSShell.qml:553", + "reference": "DMSShell.qml:585", "comment": "" }, { @@ -11588,7 +11678,7 @@ { "term": "Personalization", "context": "Personalization", - "reference": "Modals/Settings/SettingsSidebar.qml:72, Modals/Settings/SettingsSidebar.qml:670", + "reference": "Modals/Settings/SettingsSidebar.qml:72, Modals/Settings/SettingsSidebar.qml:676", "comment": "" }, { @@ -11642,19 +11732,19 @@ { "term": "Pin to Dock", "context": "Pin to Dock", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:163, Modules/Dock/DockContextMenu.qml:222, Modules/DankBar/Widgets/AppsDockContextMenu.qml:350", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:164, Modules/Dock/DockContextMenu.qml:222, Modules/DankBar/Widgets/AppsDockContextMenu.qml:350", "comment": "" }, { "term": "Ping", "context": "Ping", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1580, dms-plugins/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:635, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1580, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:635", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1580, dms-plugins/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:635, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1579, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:635", "comment": "KDE Connect ping tooltip" }, { "term": "Ping sent to", "context": "Ping sent to", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:636, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:636", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:636, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:635", "comment": "Phone Connect ping action" }, { @@ -11666,7 +11756,7 @@ { "term": "Pinned and running apps with drag-and-drop", "context": "Pinned and running apps with drag-and-drop", - "reference": "Modules/Settings/WidgetsTab.qml:76", + "reference": "Modules/Settings/WidgetsTab.qml:92", "comment": "" }, { @@ -11696,7 +11786,7 @@ { "term": "Place the bar on the Wayland overlay layer", "context": "Place the bar on the Wayland overlay layer", - "reference": "Modules/Settings/DankBarTab.qml:795", + "reference": "Modules/Settings/DankBarTab.qml:797", "comment": "" }, { @@ -11708,7 +11798,7 @@ { "term": "Play", "context": "Play", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1410", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1954, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1410", "comment": "Media play tooltip" }, { @@ -11774,7 +11864,7 @@ { "term": "Please wait...", "context": "Please wait...", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:495", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:523", "comment": "network status" }, { @@ -11786,7 +11876,7 @@ { "term": "Plugged In", "context": "Plugged In", - "reference": "Services/BatteryService.qml:301, Services/BatteryService.qml:307, Modules/Settings/SoundsTab.qml:129, Modules/ControlCenter/Widgets/BatteryPill.qml:28", + "reference": "Services/BatteryService.qml:313, Services/BatteryService.qml:319, Modules/Settings/SoundsTab.qml:129, Modules/ControlCenter/Widgets/BatteryPill.qml:28", "comment": "battery status" }, { @@ -11813,22 +11903,28 @@ "reference": "Modules/Settings/LauncherTab.qml:857", "comment": "" }, + { + "term": "Plugin dependency missing", + "context": "Plugin dependency missing", + "reference": "Services/PluginService.qml:673", + "comment": "" + }, { "term": "Plugin disabled: %1", "context": "Plugin disabled: %1", - "reference": "Modules/Settings/PluginListItem.qml:327", + "reference": "Modules/Settings/PluginListItem.qml:326", "comment": "" }, { "term": "Plugin enabled: %1", "context": "Plugin enabled: %1", - "reference": "Modules/Settings/PluginListItem.qml:320", + "reference": "Modules/Settings/PluginListItem.qml:321", "comment": "" }, { "term": "Plugin is disabled - enable in Plugins settings to use", "context": "Plugin is disabled - enable in Plugins settings to use", - "reference": "Modules/Settings/WidgetsTab.qml:272", + "reference": "Modules/Settings/WidgetsTab.qml:288", "comment": "" }, { @@ -11852,7 +11948,7 @@ { "term": "Plugins", "context": "Plugins", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:451, Modals/DankLauncherV2/LauncherContent.qml:354, Modals/Settings/SettingsSidebar.qml:391, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:121, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:451, Modals/DankLauncherV2/LauncherContent.qml:372, Modals/Settings/SettingsSidebar.qml:397, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", "comment": "greeter feature card title | greeter plugins link" }, { @@ -11876,7 +11972,7 @@ { "term": "Popout Shadows", "context": "Popout Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1993", + "reference": "Modules/Settings/ThemeColorsTab.qml:2023", "comment": "" }, { @@ -11900,13 +11996,13 @@ { "term": "Popup Position", "context": "Popup Position", - "reference": "Modules/Settings/NotificationsTab.qml:240", + "reference": "Modules/Settings/NotificationsTab.qml:239", "comment": "" }, { "term": "Popup Shadow", "context": "Popup Shadow", - "reference": "Modules/Settings/NotificationsTab.qml:327", + "reference": "Modules/Settings/NotificationsTab.qml:324", "comment": "" }, { @@ -11930,7 +12026,7 @@ { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:480, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2015", + "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:482, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023", "comment": "" }, { @@ -11942,25 +12038,25 @@ { "term": "Possible Override Conflicts", "context": "Possible Override Conflicts", - "reference": "Modules/Settings/KeybindsTab.qml:390", + "reference": "Modules/Settings/KeybindsTab.qml:387", "comment": "" }, { "term": "Power", "context": "Power", - "reference": "Modules/Settings/WidgetsTab.qml:256, Modules/ControlCenter/Details/BatteryDetail.qml:71, Modules/DankBar/Popouts/BatteryPopout.qml:190", + "reference": "Modules/Settings/WidgetsTab.qml:272, Modules/ControlCenter/Details/BatteryDetail.qml:71, Modules/DankBar/Popouts/BatteryPopout.qml:190", "comment": "" }, { "term": "Power & Security", "context": "Power & Security", - "reference": "Modals/Settings/SettingsSidebar.qml:359, Modals/Settings/SettingsSidebar.qml:658", + "reference": "Modals/Settings/SettingsSidebar.qml:365, Modals/Settings/SettingsSidebar.qml:664", "comment": "" }, { "term": "Power & Sleep", "context": "Power & Sleep", - "reference": "Modals/Settings/SettingsSidebar.qml:377", + "reference": "Modals/Settings/SettingsSidebar.qml:389", "comment": "" }, { @@ -12014,7 +12110,7 @@ { "term": "Power Saver", "context": "Power Saver", - "reference": "Common/Theme.qml:1624", + "reference": "Common/Theme.qml:1639", "comment": "power profile option" }, { @@ -12122,7 +12218,13 @@ { "term": "Prevent screen timeout", "context": "Prevent screen timeout", - "reference": "Modules/Settings/WidgetsTab.qml:193, Modules/ControlCenter/Models/WidgetModel.qml:154", + "reference": "Modules/Settings/WidgetsTab.qml:209, Modules/ControlCenter/Models/WidgetModel.qml:154", + "comment": "" + }, + { + "term": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", + "context": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", + "reference": "Modules/Settings/MediaPlayerTab.qml:149", "comment": "" }, { @@ -12140,19 +12242,25 @@ { "term": "Previous", "context": "Previous", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1978, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1433, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1978, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1433", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1978, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1433, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1977, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1433", "comment": "Media previous tooltip" }, + { + "term": "Previous page", + "context": "Previous page", + "reference": "Modules/DankDash/WallpaperTab.qml:634", + "comment": "" + }, { "term": "Primary", "context": "Primary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1617, Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1655, Modules/Settings/ThemeColorsTab.qml:1669, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/ThemeColorsTab.qml:1790, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1880, Modules/Settings/ThemeColorsTab.qml:1891, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:731, Modules/Settings/NetworkStatusTab.qml:131, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:17, Modules/Settings/WorkspaceAppearanceCard.qml:58, Modules/Settings/WorkspaceAppearanceCard.qml:99, Modules/Settings/WorkspaceAppearanceCard.qml:128, Modules/Settings/WorkspaceAppearanceCard.qml:163, Modules/Settings/FrameTab.qml:231, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1617, Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1655, Modules/Settings/ThemeColorsTab.qml:1669, Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1786, Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:1910, Modules/Settings/ThemeColorsTab.qml:1921, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:731, Modules/Settings/NetworkStatusTab.qml:131, Modules/Settings/DankBarTab.qml:1333, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:19, Modules/Settings/WorkspaceAppearanceCard.qml:60, Modules/Settings/WorkspaceAppearanceCard.qml:101, Modules/Settings/WorkspaceAppearanceCard.qml:130, Modules/Settings/WorkspaceAppearanceCard.qml:165, Modules/Settings/FrameTab.qml:231, Modules/Settings/Widgets/SettingsColorPicker.qml:42", "comment": "blur border color | button color option | color option | primary color | shadow color option | tile color option | workspace color option" }, { "term": "Primary Container", "context": "Primary Container", - "reference": "Modules/Settings/ThemeColorsTab.qml:37, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1618, Modules/Settings/ThemeColorsTab.qml:1625, Modules/Settings/ThemeColorsTab.qml:1635, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1656, Modules/Settings/ThemeColorsTab.qml:1663, Modules/Settings/ThemeColorsTab.qml:1673, Modules/Settings/WorkspaceAppearanceCard.qml:20, Modules/Settings/WorkspaceAppearanceCard.qml:61, Modules/Settings/WorkspaceAppearanceCard.qml:131, Modules/Settings/WorkspaceAppearanceCard.qml:166", + "reference": "Modules/Settings/ThemeColorsTab.qml:37, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1618, Modules/Settings/ThemeColorsTab.qml:1625, Modules/Settings/ThemeColorsTab.qml:1635, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1656, Modules/Settings/ThemeColorsTab.qml:1663, Modules/Settings/ThemeColorsTab.qml:1673, Modules/Settings/WorkspaceAppearanceCard.qml:22, Modules/Settings/WorkspaceAppearanceCard.qml:63, Modules/Settings/WorkspaceAppearanceCard.qml:133, Modules/Settings/WorkspaceAppearanceCard.qml:168", "comment": "button color option | tile color option | widget background color option | workspace color option" }, { @@ -12176,7 +12284,7 @@ { "term": "Printer", "context": "Printer", - "reference": "Modules/Settings/WidgetsTabSection.qml:1847, Modules/Settings/WidgetsTabSection.qml:2021", + "reference": "Modules/Settings/WidgetsTabSection.qml:2005, Modules/Settings/WidgetsTabSection.qml:2179", "comment": "" }, { @@ -12212,7 +12320,7 @@ { "term": "Printers", "context": "Printers", - "reference": "Modals/Settings/SettingsSidebar.qml:331, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", + "reference": "Modals/Settings/SettingsSidebar.qml:337, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", "comment": "" }, { @@ -12224,25 +12332,25 @@ { "term": "Prioritize performance", "context": "Prioritize performance", - "reference": "Common/Theme.qml:1641", + "reference": "Common/Theme.qml:1656", "comment": "power profile description" }, { "term": "Priority", "context": "Priority", - "reference": "Modules/Settings/NotificationsTab.qml:655", + "reference": "Modules/Settings/NotificationsTab.qml:652", "comment": "" }, { "term": "Privacy Indicator", "context": "Privacy Indicator", - "reference": "Modules/Settings/WidgetsTab.qml:157", + "reference": "Modules/Settings/WidgetsTab.qml:173", "comment": "" }, { "term": "Privacy Mode", "context": "Privacy Mode", - "reference": "Modules/Settings/NotificationsTab.qml:336, Modules/Notifications/Center/NotificationSettings.qml:308", + "reference": "Modules/Settings/NotificationsTab.qml:333, Modules/Notifications/Center/NotificationSettings.qml:308", "comment": "" }, { @@ -12266,7 +12374,7 @@ { "term": "Processes", "context": "Processes", - "reference": "Modals/ProcessListModal.qml:308, Modules/ProcessList/ProcessListPopout.qml:140, Modules/ProcessList/SystemView.qml:88", + "reference": "Modals/ProcessListModal.qml:308, Modules/ProcessList/ProcessListPopout.qml:153, Modules/ProcessList/SystemView.qml:88", "comment": "" }, { @@ -12362,7 +12470,7 @@ { "term": "Qt colors applied successfully", "context": "Qt colors applied successfully", - "reference": "Common/Theme.qml:1967", + "reference": "Common/Theme.qml:1983", "comment": "" }, { @@ -12398,19 +12506,19 @@ { "term": "Quick access to application launcher", "context": "Quick access to application launcher", - "reference": "Modules/Settings/WidgetsTab.qml:48", + "reference": "Modules/Settings/WidgetsTab.qml:64", "comment": "" }, { "term": "Quick access to color picker", "context": "Quick access to color picker", - "reference": "Modules/Settings/WidgetsTab.qml:242", + "reference": "Modules/Settings/WidgetsTab.qml:258", "comment": "" }, { "term": "Quick access to notepad", "context": "Quick access to notepad", - "reference": "Modules/Settings/WidgetsTab.qml:235", + "reference": "Modules/Settings/WidgetsTab.qml:251", "comment": "" }, { @@ -12422,7 +12530,7 @@ { "term": "Quick system toggles", "context": "Quick system toggles", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:150", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:149", "comment": "greeter feature card description" }, { @@ -12452,7 +12560,7 @@ { "term": "Rainbow", "context": "Rainbow", - "reference": "Common/Theme.qml:511", + "reference": "Common/Theme.qml:515", "comment": "matugen color scheme option" }, { @@ -12506,7 +12614,7 @@ { "term": "Recent", "context": "Recent", - "reference": "Modals/Clipboard/ClipboardHeader.qml:55", + "reference": "Modals/Clipboard/ClipboardHeader.qml:54", "comment": "" }, { @@ -12518,7 +12626,7 @@ { "term": "Recent Images", "context": "Recent Images", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2215, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:870, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2215, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:870", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2215, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:870, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2214, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:870", "comment": "Recent Images title" }, { @@ -12575,6 +12683,12 @@ "reference": "Modules/Settings/PrinterTab.qml:1306", "comment": "" }, + { + "term": "Related: %1", + "context": "Related: %1", + "reference": "Modules/Settings/PluginBrowser.qml:1101", + "comment": "related plugins" + }, { "term": "Release", "context": "Release", @@ -12584,7 +12698,7 @@ { "term": "Reload From Disk", "context": "Reload From Disk", - "reference": "Modules/Notepad/Notepad.qml:381", + "reference": "Modules/Notepad/Notepad.qml:382", "comment": "" }, { @@ -12596,13 +12710,13 @@ { "term": "Remaining", "context": "Remaining", - "reference": "Modules/Settings/WidgetsTabSection.qml:1661", + "reference": "Modules/Settings/WidgetsTabSection.qml:1819", "comment": "" }, { "term": "Remaining / Total", "context": "Remaining / Total", - "reference": "Modules/Settings/WidgetsTabSection.qml:1666", + "reference": "Modules/Settings/WidgetsTabSection.qml:1824", "comment": "" }, { @@ -12662,7 +12776,7 @@ { "term": "Remove Widget Padding", "context": "Remove Widget Padding", - "reference": "Modules/Settings/DankBarTab.qml:1193", + "reference": "Modules/Settings/DankBarTab.qml:1195", "comment": "" }, { @@ -12680,13 +12794,13 @@ { "term": "Remove corner rounding from the bar", "context": "Remove corner rounding from the bar", - "reference": "Modules/Settings/DankBarTab.qml:1156", + "reference": "Modules/Settings/DankBarTab.qml:1158", "comment": "" }, { "term": "Remove gaps and border when windows are maximized", "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:1261", + "reference": "Modules/Settings/DankBarTab.qml:1307", "comment": "" }, { @@ -12704,7 +12818,7 @@ { "term": "Remove inner padding from all widgets", "context": "Remove inner padding from all widgets", - "reference": "Modules/Settings/DankBarTab.qml:1194", + "reference": "Modules/Settings/DankBarTab.qml:1196", "comment": "" }, { @@ -12755,6 +12869,12 @@ "reference": "Modals/WorkspaceRenameModal.qml:15", "comment": "" }, + { + "term": "Reorder & Group", + "context": "Reorder & Group", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:545", + "comment": "" + }, { "term": "Repeat", "context": "Repeat", @@ -12788,19 +12908,19 @@ { "term": "Required plugin: ", "context": "Required plugin: ", - "reference": "Modules/Settings/ThemeColorsTab.qml:2558", + "reference": "Modules/Settings/ThemeColorsTab.qml:2603", "comment": "" }, { "term": "Requires %1", "context": "Requires %1", - "reference": "Modules/Settings/PluginBrowser.qml:1102", + "reference": "Modules/Settings/PluginBrowser.qml:1182", "comment": "version requirement" }, { "term": "Requires 'dgop' tool", "context": "Requires 'dgop' tool", - "reference": "Modules/Settings/WidgetsTab.qml:114, Modules/Settings/WidgetsTab.qml:122, Modules/Settings/WidgetsTab.qml:130, Modules/Settings/WidgetsTab.qml:138, Modules/Settings/WidgetsTab.qml:145, Modules/Settings/WidgetsTab.qml:223, Modules/ControlCenter/Models/WidgetModel.qml:234", + "reference": "Modules/Settings/WidgetsTab.qml:130, Modules/Settings/WidgetsTab.qml:138, Modules/Settings/WidgetsTab.qml:146, Modules/Settings/WidgetsTab.qml:154, Modules/Settings/WidgetsTab.qml:161, Modules/Settings/WidgetsTab.qml:239, Modules/ControlCenter/Models/WidgetModel.qml:234", "comment": "" }, { @@ -12812,13 +12932,13 @@ { "term": "Requires DMS server with sysupdate capability", "context": "Requires DMS server with sysupdate capability", - "reference": "Modules/Settings/WidgetsTab.qml:252", + "reference": "Modules/Settings/WidgetsTab.qml:268", "comment": "" }, { "term": "Requires MangoWC compositor", "context": "Requires MangoWC compositor", - "reference": "Modules/Settings/WidgetsTab.qml:43", + "reference": "Modules/Settings/WidgetsTab.qml:59", "comment": "" }, { @@ -12842,7 +12962,7 @@ { "term": "Reset", "context": "Reset", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:1000, Modules/Settings/WidgetsTab.qml:1010, Modules/Settings/KeybindsTab.qml:122, Modules/ControlCenter/Components/EditControls.qml:306", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:1018, Modules/Settings/WidgetsTab.qml:1260, Modules/Settings/KeybindsTab.qml:122, Modules/Settings/DankDashTab.qml:250, Modules/ControlCenter/Components/EditControls.qml:306", "comment": "" }, { @@ -12878,19 +12998,19 @@ { "term": "Resize Widget", "context": "Resize Widget", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:690", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:503", "comment": "" }, { "term": "Resize on Border", "context": "Resize on Border", - "reference": "Modules/Settings/CompositorLayoutTab.qml:218", + "reference": "Modules/Settings/CompositorLayoutTab.qml:476", "comment": "" }, { "term": "Resize windows by dragging their edges with the mouse", "context": "Resize windows by dragging their edges with the mouse", - "reference": "Modules/Settings/CompositorLayoutTab.qml:219", + "reference": "Modules/Settings/CompositorLayoutTab.qml:477", "comment": "" }, { @@ -12968,13 +13088,13 @@ { "term": "Rewind 10s", "context": "Rewind 10s", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1986, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1441, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1986, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1441", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1986, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1441, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1985, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1441", "comment": "Media rewind tooltip" }, { "term": "Right", "context": "Right", - "reference": "Modules/Notepad/NotepadSettings.qml:434, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:346, Modules/Settings/DankBarTab.qml:491", + "reference": "Modules/Notepad/NotepadSettings.qml:434, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:348, Modules/Settings/DankBarTab.qml:493", "comment": "" }, { @@ -12986,7 +13106,7 @@ { "term": "Right Section", "context": "Right Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:29, Modules/Settings/WidgetsTab.qml:1216", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:32, Modules/Settings/WidgetsTab.qml:1488", "comment": "" }, { @@ -12998,13 +13118,13 @@ { "term": "Right-click and drag anywhere on the widget", "context": "Right-click and drag anywhere on the widget", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:657", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:470", "comment": "" }, { "term": "Right-click and drag the bottom-right corner", "context": "Right-click and drag the bottom-right corner", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:699", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:512", "comment": "" }, { @@ -13016,13 +13136,13 @@ { "term": "Ring", "context": "Ring", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1560, dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:613, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1560, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:613", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1560, dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:613, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1559, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:613", "comment": "KDE Connect ring tooltip" }, { "term": "Ringing", "context": "Ringing", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:627, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:627", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:627, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:626", "comment": "Phone Connect ring action" }, { @@ -13040,13 +13160,13 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/CompositorLayoutTab.qml:79, Modules/Settings/CompositorLayoutTab.qml:176, Modules/Settings/CompositorLayoutTab.qml:282", + "reference": "Modules/Settings/CompositorLayoutTab.qml:327, Modules/Settings/CompositorLayoutTab.qml:434, Modules/Settings/CompositorLayoutTab.qml:550", "comment": "" }, { "term": "Rule", "context": "Rule", - "reference": "Modals/WindowRuleModal.qml:430, Modules/Settings/NotificationsTab.qml:516", + "reference": "Modals/WindowRuleModal.qml:430, Modules/Settings/NotificationsTab.qml:513", "comment": "" }, { @@ -13058,13 +13178,13 @@ { "term": "Rules (%1)", "context": "Rules (%1)", - "reference": "Modules/Settings/WindowRulesTab.qml:559", + "reference": "Modules/Settings/WindowRulesTab.qml:557", "comment": "" }, { "term": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.", "context": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.", - "reference": "Modules/Settings/WindowRulesTab.qml:847", + "reference": "Modules/Settings/WindowRulesTab.qml:845", "comment": "" }, { @@ -13076,13 +13196,13 @@ { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2362", + "reference": "Modules/Settings/ThemeColorsTab.qml:2407", "comment": "" }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2352", + "reference": "Modules/Settings/ThemeColorsTab.qml:2397", "comment": "" }, { @@ -13106,13 +13226,13 @@ { "term": "Running Apps", "context": "Running Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:283, Modules/Settings/WidgetsTab.qml:68", + "reference": "Modals/Settings/SettingsSidebar.qml:289, Modules/Settings/WidgetsTab.qml:84", "comment": "" }, { "term": "Running Apps Settings", "context": "Running Apps Settings", - "reference": "Modules/Settings/WidgetsTabSection.qml:3003", + "reference": "Modules/Settings/WidgetsTabSection.qml:3161", "comment": "" }, { @@ -13130,25 +13250,25 @@ { "term": "SDR Brightness", "context": "SDR Brightness", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2049", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057", "comment": "" }, { "term": "SDR Saturation", "context": "SDR Saturation", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2051", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2059", "comment": "" }, { "term": "SMS", "context": "SMS", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1657, dms-plugins/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:718, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1657, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:718", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1657, dms-plugins/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:718, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1656, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:718", "comment": "KDE Connect SMS tooltip" }, { "term": "SMS sent successfully", "context": "SMS sent successfully", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1759, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:802, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1759, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:802", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1759, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:802, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1758, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:802", "comment": "Phone Connect SMS action" }, { @@ -13160,13 +13280,13 @@ { "term": "Save", "context": "Save", - "reference": "Modals/DankColorPickerModal.qml:752, Widgets/KeybindItem.qml:1398, Widgets/KeybindItem.qml:1874, Modals/DankLauncherV2/LauncherContent.qml:1048, Modals/FileBrowser/FileBrowserSaveRow.qml:56, Modals/Clipboard/ClipboardEditor.qml:352, Modals/Clipboard/ClipboardEditor.qml:438, Modules/Notepad/NotepadTextEditor.qml:857, Modules/Notepad/Notepad.qml:751, Modules/Settings/DisplayConfigTab.qml:406, Modules/Settings/AudioTab.qml:694, Modules/DankDash/Overview/CalendarEventEditor.qml:332", + "reference": "Modals/DankColorPickerModal.qml:752, Widgets/KeybindItem.qml:1398, Widgets/KeybindItem.qml:1874, Modals/DankLauncherV2/LauncherContent.qml:1066, Modals/FileBrowser/FileBrowserSaveRow.qml:56, Modals/Clipboard/ClipboardEditor.qml:352, Modals/Clipboard/ClipboardEditor.qml:438, Modules/Notepad/NotepadTextEditor.qml:857, Modules/Notepad/Notepad.qml:752, Modules/Settings/DisplayConfigTab.qml:406, Modules/Settings/AudioTab.qml:694, Modules/DankDash/Overview/CalendarEventEditor.qml:332", "comment": "" }, { "term": "Save Notepad File", "context": "Save Notepad File", - "reference": "Modules/Notepad/Notepad.qml:544", + "reference": "Modules/Notepad/Notepad.qml:545", "comment": "" }, { @@ -13202,25 +13322,25 @@ { "term": "Save critical priority notifications to history", "context": "Save critical priority notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:941", + "reference": "Modules/Settings/NotificationsTab.qml:938", "comment": "notification history setting" }, { "term": "Save dismissed notifications to history", "context": "Save dismissed notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:858", + "reference": "Modules/Settings/NotificationsTab.qml:855", "comment": "notification history toggle description" }, { "term": "Save low priority notifications to history", "context": "Save low priority notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:923", + "reference": "Modules/Settings/NotificationsTab.qml:920", "comment": "notification history setting" }, { "term": "Save normal priority notifications to history", "context": "Save normal priority notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:932", + "reference": "Modules/Settings/NotificationsTab.qml:929", "comment": "notification history setting" }, { @@ -13232,7 +13352,7 @@ { "term": "Saved", "context": "Saved", - "reference": "Modals/Clipboard/ClipboardHeader.qml:55, Modules/Notepad/NotepadTextEditor.qml:1044, Modules/Settings/NetworkWifiTab.qml:579, Modules/ControlCenter/Details/NetworkDetail.qml:633", + "reference": "Modals/Clipboard/ClipboardHeader.qml:54, Modules/Notepad/NotepadTextEditor.qml:1044, Modules/Settings/NetworkWifiTab.qml:579, Modules/ControlCenter/Details/NetworkDetail.qml:633", "comment": "" }, { @@ -13274,19 +13394,19 @@ { "term": "Scale", "context": "Scale", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2019", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2027", "comment": "" }, { "term": "Scale DankBar font sizes independently", "context": "Scale DankBar font sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1086", + "reference": "Modules/Settings/DankBarTab.qml:1088", "comment": "" }, { "term": "Scale DankBar icon sizes independently", "context": "Scale DankBar icon sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1113", + "reference": "Modules/Settings/DankBarTab.qml:1115", "comment": "" }, { @@ -13322,20 +13442,26 @@ { "term": "Score", "context": "Score", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:691, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:706", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:709, Modals/DankLauncherV2/LauncherContent.qml:717, Modals/DankLauncherV2/LauncherContent.qml:720, Modals/DankLauncherV2/LauncherContent.qml:724", "comment": "" }, { "term": "Screen sharing", "context": "Screen sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:1857, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/WidgetsTabSection.qml:2454", + "reference": "Modules/Settings/WidgetsTabSection.qml:2015, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/WidgetsTabSection.qml:2612", "comment": "" }, + { + "term": "Screenshot unavailable", + "context": "Screenshot unavailable", + "reference": "Modules/Settings/PluginBrowser.qml:1318", + "comment": "plugin browser screenshot error" + }, { "term": "Scroll", "context": "Scroll", - "reference": "Modules/Settings/WindowRulesTab.qml:107", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:312, Modules/Settings/WindowRulesTab.qml:107", + "comment": "wallpaper fill mode" }, { "term": "Scroll Factor", @@ -13352,25 +13478,25 @@ { "term": "Scroll Wheel", "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:60, Modules/Settings/DankBarTab.qml:1804", + "reference": "Modules/Settings/MediaPlayerTab.qml:72, Modules/Settings/DankBarTab.qml:1850", "comment": "" }, { "term": "Scroll song title", "context": "Scroll song title", - "reference": "Modules/Settings/MediaPlayerTab.qml:36", + "reference": "Modules/Settings/MediaPlayerTab.qml:48", "comment": "" }, { "term": "Scroll title if it doesn't fit in widget", "context": "Scroll title if it doesn't fit in widget", - "reference": "Modules/Settings/MediaPlayerTab.qml:37", + "reference": "Modules/Settings/MediaPlayerTab.qml:49", "comment": "" }, { "term": "Scroll wheel behavior on media widget", "context": "Scroll wheel behavior on media widget", - "reference": "Modules/Settings/MediaPlayerTab.qml:61", + "reference": "Modules/Settings/MediaPlayerTab.qml:73", "comment": "" }, { @@ -13436,7 +13562,7 @@ { "term": "Search plugins...", "context": "Search plugins...", - "reference": "Modules/Settings/PluginBrowser.qml:623", + "reference": "Modules/Settings/PluginBrowser.qml:678", "comment": "plugin search placeholder" }, { @@ -13460,13 +13586,13 @@ { "term": "Search widgets...", "context": "Search widgets...", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:302, Modules/Settings/DesktopWidgetBrowser.qml:288", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:306, Modules/Settings/DesktopWidgetBrowser.qml:288", "comment": "" }, { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:389, Modals/Settings/SettingsSidebar.qml:730, Modules/ProcessList/ProcessListPopout.qml:185", + "reference": "Widgets/DankDropdown.qml:389, Modals/Settings/SettingsSidebar.qml:736, Modules/ProcessList/ProcessListPopout.qml:198", "comment": "" }, { @@ -13490,13 +13616,13 @@ { "term": "Secondary", "context": "Secondary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1627, Modules/Settings/ThemeColorsTab.qml:1637, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1657, Modules/Settings/ThemeColorsTab.qml:1665, Modules/Settings/ThemeColorsTab.qml:1675, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/ThemeColorsTab.qml:1792, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:731, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:23, Modules/Settings/WorkspaceAppearanceCard.qml:64, Modules/Settings/WorkspaceAppearanceCard.qml:102, Modules/Settings/WorkspaceAppearanceCard.qml:134, Modules/Settings/WorkspaceAppearanceCard.qml:169, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1627, Modules/Settings/ThemeColorsTab.qml:1637, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1657, Modules/Settings/ThemeColorsTab.qml:1665, Modules/Settings/ThemeColorsTab.qml:1675, Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1776, Modules/Settings/ThemeColorsTab.qml:1788, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:731, Modules/Settings/DankBarTab.qml:1333, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:25, Modules/Settings/WorkspaceAppearanceCard.qml:66, Modules/Settings/WorkspaceAppearanceCard.qml:104, Modules/Settings/WorkspaceAppearanceCard.qml:136, Modules/Settings/WorkspaceAppearanceCard.qml:171, Modules/Settings/Widgets/SettingsColorPicker.qml:47", "comment": "blur border color | button color option | color option | secondary color | tile color option | workspace color option" }, { "term": "Secondary Container", "context": "Secondary Container", - "reference": "Modules/Settings/ThemeColorsTab.qml:40, Modules/Settings/WorkspaceAppearanceCard.qml:26, Modules/Settings/WorkspaceAppearanceCard.qml:67, Modules/Settings/WorkspaceAppearanceCard.qml:137, Modules/Settings/WorkspaceAppearanceCard.qml:172", + "reference": "Modules/Settings/ThemeColorsTab.qml:40, Modules/Settings/WorkspaceAppearanceCard.qml:28, Modules/Settings/WorkspaceAppearanceCard.qml:69, Modules/Settings/WorkspaceAppearanceCard.qml:139, Modules/Settings/WorkspaceAppearanceCard.qml:174", "comment": "widget background color option | workspace color option" }, { @@ -13514,7 +13640,7 @@ { "term": "Security & privacy", "context": "Security & privacy", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:159", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:157", "comment": "greeter feature card description" }, { @@ -13550,13 +13676,13 @@ { "term": "Select Bar", "context": "Select Bar", - "reference": "Modules/Settings/WidgetsTab.qml:925", + "reference": "Modules/Settings/WidgetsTab.qml:1175", "comment": "" }, { "term": "Select Custom Theme", "context": "Select Custom Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2865", + "reference": "Modules/Settings/ThemeColorsTab.qml:2910", "comment": "custom theme file browser title" }, { @@ -13580,7 +13706,7 @@ { "term": "Select Profile Image", "context": "Select Profile Image", - "reference": "Modals/Settings/SettingsModal.qml:134", + "reference": "Modals/Settings/SettingsModal.qml:133", "comment": "profile image file browser title" }, { @@ -13592,13 +13718,13 @@ { "term": "Select Wallpaper", "context": "Select Wallpaper", - "reference": "Modals/Settings/SettingsModal.qml:158, Modules/Settings/WallpaperTab.qml:1351, Modules/Settings/WallpaperTab.qml:1373, Modules/Settings/WallpaperTab.qml:1393", + "reference": "Modals/Settings/SettingsModal.qml:157, Modules/Settings/WallpaperTab.qml:1351, Modules/Settings/WallpaperTab.qml:1373, Modules/Settings/WallpaperTab.qml:1393", "comment": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title" }, { "term": "Select Wallpaper Directory", "context": "Select Wallpaper Directory", - "reference": "Modules/DankDash/WallpaperTab.qml:320", + "reference": "Modules/DankDash/WallpaperTab.qml:420", "comment": "wallpaper directory file browser title" }, { @@ -13610,7 +13736,7 @@ { "term": "Select a desktop application", "context": "Select a desktop application", - "reference": "Modules/Settings/AutoStartTab.qml:383", + "reference": "Modules/Settings/AutoStartTab.qml:415", "comment": "" }, { @@ -13622,7 +13748,7 @@ { "term": "Select a widget to add. You can add multiple instances of the same widget if needed.", "context": "Select a widget to add. You can add multiple instances of the same widget if needed.", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:280", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:284", "comment": "" }, { @@ -13652,7 +13778,7 @@ { "term": "Select device", "context": "Select device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:539, Modules/ControlCenter/Components/DragDropGrid.qml:550", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:567, Modules/ControlCenter/Components/DragDropGrid.qml:578", "comment": "audio status" }, { @@ -13694,7 +13820,7 @@ { "term": "Select network", "context": "Select network", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:511", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:539", "comment": "network status" }, { @@ -13754,7 +13880,7 @@ { "term": "Send Clipboard", "context": "Send Clipboard", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1619, dms-plugins/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:679, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1619, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:679", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1619, dms-plugins/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:679, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1618, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:679", "comment": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip" }, { @@ -13766,7 +13892,7 @@ { "term": "Sending", "context": "Sending", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1741, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1741", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1741, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1740", "comment": "Phone Connect file send" }, { @@ -13775,16 +13901,28 @@ "reference": "Modules/Settings/FrameTab.qml:59", "comment": "" }, + { + "term": "Separate Appearance for Unfocused Display(s)", + "context": "Separate Appearance for Unfocused Display(s)", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:301", + "comment": "" + }, { "term": "Separate Light & Dark Themes", "context": "Separate Light & Dark Themes", - "reference": "Modules/Settings/ThemeColorsTab.qml:2277", + "reference": "Modules/Settings/ThemeColorsTab.qml:2322", + "comment": "" + }, + { + "term": "Separate appearance for unfocused displays is not supported on this compositor.", + "context": "Separate appearance for unfocused displays is not supported on this compositor.", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:291", "comment": "" }, { "term": "Separator", "context": "Separator", - "reference": "Modules/Settings/WidgetsTab.qml:213", + "reference": "Modules/Settings/WidgetsTab.qml:229", "comment": "" }, { @@ -13850,19 +13988,19 @@ { "term": "Set notification rules", "context": "Set notification rules", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1397, Modules/Notifications/Center/NotificationCard.qml:1071", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1396, Modules/Notifications/Center/NotificationCard.qml:1071", "comment": "" }, { "term": "Set the font size for notification body text (htmlBody)", "context": "Set the font size for notification body text (htmlBody)", - "reference": "Modules/Settings/NotificationsTab.qml:228", + "reference": "Modules/Settings/NotificationsTab.qml:227", "comment": "" }, { "term": "Set the font size for notification summary text", "context": "Set the font size for notification summary text", - "reference": "Modules/Settings/NotificationsTab.qml:215", + "reference": "Modules/Settings/NotificationsTab.qml:214", "comment": "" }, { @@ -13877,10 +14015,16 @@ "reference": "Services/AppSearchService.qml:325, Modals/DankLauncherV2/ResultItem.qml:226, Modals/DankLauncherV2/SpotlightResultRow.qml:66", "comment": "" }, + { + "term": "Setting up...", + "context": "Setting up...", + "reference": "Modules/Settings/ThemeColorsTab.qml:2174, Modules/Settings/WindowRulesTab.qml:522, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/CompositorLayoutTab.qml:227, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:79", + "comment": "" + }, { "term": "Settings", "context": "Settings", - "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:324, Services/AppSearchService.qml:680, Services/PopoutService.qml:409, Services/PopoutService.qml:426, Modals/DankLauncherV2/Controller.qml:214, Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsModal.qml:89, Modals/Settings/SettingsModal.qml:229, Modules/DankDash/DankDashPopout.qml:305, Modules/Dock/DockTrashContextMenu.qml:48", + "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:324, Services/AppSearchService.qml:680, Services/PopoutService.qml:409, Services/PopoutService.qml:426, Modals/DankLauncherV2/Controller.qml:214, Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsModal.qml:88, Modals/Settings/SettingsModal.qml:230, Modules/DankDash/DankDashPopout.qml:34, Modules/Settings/DankDashTab.qml:38, Modules/Dock/DockTrashContextMenu.qml:48", "comment": "settings window title" }, { @@ -13892,73 +14036,73 @@ { "term": "Settings are read-only. Changes will not persist.", "context": "Settings are read-only. Changes will not persist.", - "reference": "Modals/Settings/SettingsModal.qml:301", + "reference": "Modals/Settings/SettingsModal.qml:302", "comment": "read-only settings warning for NixOS home-manager users" }, { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2129, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:428, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:88", + "reference": "Modules/Settings/ThemeColorsTab.qml:2174, Modules/Settings/WindowRulesTab.qml:522, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/CompositorLayoutTab.qml:227, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:79", "comment": "" }, { "term": "Shadow Color", "context": "Shadow Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:187, Modules/Settings/ThemeColorsTab.qml:1872", + "reference": "Modules/Settings/ThemeColorsTab.qml:187, Modules/Settings/ThemeColorsTab.qml:1902", "comment": "" }, { "term": "Shadow Intensity", "context": "Shadow Intensity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1842", + "reference": "Modules/Settings/ThemeColorsTab.qml:1872", "comment": "" }, { "term": "Shadow Opacity", "context": "Shadow Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1857", + "reference": "Modules/Settings/ThemeColorsTab.qml:1887", "comment": "" }, { "term": "Shadow Override", "context": "Shadow Override", - "reference": "Modules/Settings/DankBarTab.qml:1570", + "reference": "Modules/Settings/DankBarTab.qml:1616", "comment": "bar shadow settings card" }, { "term": "Shadow blur radius in pixels", "context": "Shadow blur radius in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1610", + "reference": "Modules/Settings/DankBarTab.qml:1656", "comment": "" }, { "term": "Shadow elevation on bars and panels", "context": "Shadow elevation on bars and panels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2005", + "reference": "Modules/Settings/ThemeColorsTab.qml:2035", "comment": "" }, { "term": "Shadow elevation on modals and dialogs", "context": "Shadow elevation on modals and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1983", + "reference": "Modules/Settings/ThemeColorsTab.qml:2013", "comment": "" }, { "term": "Shadow elevation on popouts, OSDs, and dropdowns", "context": "Shadow elevation on popouts, OSDs, and dropdowns", - "reference": "Modules/Settings/ThemeColorsTab.qml:1994", + "reference": "Modules/Settings/ThemeColorsTab.qml:2024", "comment": "" }, { "term": "Shadows", "context": "Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1824, Modules/Settings/ThemeColorsTab.qml:1832", + "reference": "Modules/Settings/ThemeColorsTab.qml:1854, Modules/Settings/ThemeColorsTab.qml:1862", "comment": "" }, { "term": "Share", "context": "Share", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1638, dms-plugins/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:698, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1638, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:698", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1638, dms-plugins/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:698, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1637, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:698", "comment": "KDE Connect share dialog title | KDE Connect share tooltip" }, { @@ -13970,7 +14114,7 @@ { "term": "Shared", "context": "Shared", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1721, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1729, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1721, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1729", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1721, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1729, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1720, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1728", "comment": "Phone Connect share success" }, { @@ -13994,25 +14138,31 @@ { "term": "Short", "context": "Short", - "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/NotificationsTab.qml:385", + "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/NotificationsTab.qml:382", "comment": "" }, { "term": "Shortcut (%1)", "context": "Shortcut (%1)", - "reference": "Modules/Settings/KeybindsTab.qml:608", + "reference": "Modules/Settings/KeybindsTab.qml:598", + "comment": "" + }, + { + "term": "Shortcut that opens this settings window", + "context": "Shortcut that opens this settings window", + "reference": "Modules/Settings/DankDashTab.qml:39", "comment": "" }, { "term": "Shortcuts", "context": "Shortcuts", - "reference": "Modules/Settings/KeybindsTab.qml:606", + "reference": "Modules/Settings/KeybindsTab.qml:596", "comment": "" }, { "term": "Shortcuts (%1)", "context": "Shortcuts (%1)", - "reference": "Modules/Settings/KeybindsTab.qml:608", + "reference": "Modules/Settings/KeybindsTab.qml:598", "comment": "" }, { @@ -14024,7 +14174,7 @@ { "term": "Show 3rd Party", "context": "Show 3rd Party", - "reference": "Modules/Settings/PluginBrowser.qml:551", + "reference": "Modules/Settings/PluginBrowser.qml:606", "comment": "" }, { @@ -14042,7 +14192,7 @@ { "term": "Show Badge", "context": "Show Badge", - "reference": "Modules/Settings/WidgetsTabSection.qml:3407", + "reference": "Modules/Settings/WidgetsTabSection.qml:3565", "comment": "" }, { @@ -14144,7 +14294,7 @@ { "term": "Show Icon", "context": "Show Icon", - "reference": "Modules/Settings/WidgetsTabSection.qml:1397", + "reference": "Modules/Settings/WidgetsTabSection.qml:1555", "comment": "" }, { @@ -14252,7 +14402,7 @@ { "term": "Show Percentage", "context": "Show Percentage", - "reference": "Modules/Settings/WidgetsTabSection.qml:2647", + "reference": "Modules/Settings/WidgetsTabSection.qml:2805", "comment": "" }, { @@ -14294,7 +14444,7 @@ { "term": "Show Remaining Time", "context": "Show Remaining Time", - "reference": "Modules/Settings/WidgetsTabSection.qml:2756", + "reference": "Modules/Settings/WidgetsTabSection.qml:2914", "comment": "" }, { @@ -14330,7 +14480,7 @@ { "term": "Show Swap", "context": "Show Swap", - "reference": "Modules/Settings/WidgetsTabSection.qml:995", + "reference": "Modules/Settings/WidgetsTabSection.qml:1153", "comment": "" }, { @@ -14402,7 +14552,7 @@ { "term": "Show a bar that drains as the popup's auto-dismiss timer runs", "context": "Show a bar that drains as the popup's auto-dismiss timer runs", - "reference": "Modules/Settings/NotificationsTab.qml:308", + "reference": "Modules/Settings/NotificationsTab.qml:307", "comment": "" }, { @@ -14426,7 +14576,7 @@ { "term": "Show an outline ring around the focused workspace indicator", "context": "Show an outline ring around the focused workspace indicator", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:269", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:268, Modules/Settings/WorkspaceAppearanceCard.qml:352", "comment": "" }, { @@ -14438,13 +14588,13 @@ { "term": "Show cava audio visualizer in media widget", "context": "Show cava audio visualizer in media widget", - "reference": "Modules/Settings/MediaPlayerTab.qml:44", + "reference": "Modules/Settings/MediaPlayerTab.qml:56", "comment": "" }, { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:2031", + "reference": "Modules/Settings/ThemeColorsTab.qml:2061", "comment": "" }, { @@ -14462,25 +14612,25 @@ { "term": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", "context": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", - "reference": "Modules/Settings/NotificationsTab.qml:328", + "reference": "Modules/Settings/NotificationsTab.qml:325", "comment": "" }, { "term": "Show during Niri overview", "context": "Show during Niri overview", - "reference": "Modules/Settings/FrameTab.qml:375", + "reference": "Modules/Settings/FrameTab.qml:384", "comment": "" }, { - "term": "Show foreground surfaces on blurred panels for stronger contrast", - "context": "Show foreground surfaces on blurred panels for stronger contrast", - "reference": "Modules/Settings/ThemeColorsTab.qml:1745", + "term": "Show foreground surfaces on panels for stronger contrast", + "context": "Show foreground surfaces on panels for stronger contrast", + "reference": "Modules/Settings/ThemeColorsTab.qml:1689", "comment": "" }, { "term": "Show in GB", "context": "Show in GB", - "reference": "Modules/Settings/WidgetsTabSection.qml:1048", + "reference": "Modules/Settings/WidgetsTabSection.qml:1206", "comment": "" }, { @@ -14504,7 +14654,7 @@ { "term": "Show notification popups only on the currently focused monitor", "context": "Show notification popups only on the currently focused monitor", - "reference": "Modules/Settings/NotificationsTab.qml:346", + "reference": "Modules/Settings/NotificationsTab.qml:343", "comment": "" }, { @@ -14516,7 +14666,7 @@ { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:576", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:578", "comment": "" }, { @@ -14528,7 +14678,7 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DockTab.qml:85, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:774, Modules/Settings/FrameTab.qml:374", + "reference": "Modules/Settings/DockTab.qml:85, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:776, Modules/Settings/FrameTab.qml:383", "comment": "" }, { @@ -14606,13 +14756,13 @@ { "term": "Show the bar only when no windows are open", "context": "Show the bar only when no windows are open", - "reference": "Modules/Settings/DankBarTab.qml:717", + "reference": "Modules/Settings/DankBarTab.qml:719", "comment": "" }, { "term": "Show the bar when niri overview is active", "context": "Show the bar when niri overview is active", - "reference": "Modules/Settings/DankBarTab.qml:775", + "reference": "Modules/Settings/DankBarTab.qml:777", "comment": "" }, { @@ -14648,31 +14798,31 @@ { "term": "Shows all running applications with focus indication", "context": "Shows all running applications with focus indication", - "reference": "Modules/Settings/WidgetsTab.qml:69", + "reference": "Modules/Settings/WidgetsTab.qml:85", "comment": "" }, { "term": "Shows current workspace and allows switching", "context": "Shows current workspace and allows switching", - "reference": "Modules/Settings/WidgetsTab.qml:55", + "reference": "Modules/Settings/WidgetsTab.qml:71", "comment": "" }, { "term": "Shows when caps lock is active", "context": "Shows when caps lock is active", - "reference": "Modules/Settings/WidgetsTab.qml:200", + "reference": "Modules/Settings/WidgetsTab.qml:216", "comment": "" }, { "term": "Shows when microphone, camera, or screen sharing is active", "context": "Shows when microphone, camera, or screen sharing is active", - "reference": "Modules/Settings/WidgetsTab.qml:158", + "reference": "Modules/Settings/WidgetsTab.qml:174", "comment": "" }, { "term": "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size", "context": "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size", - "reference": "Modules/Settings/MediaPlayerTab.qml:51", + "reference": "Modules/Settings/MediaPlayerTab.qml:63", "comment": "" }, { @@ -14690,7 +14840,7 @@ { "term": "Signal Strength", "context": "Signal Strength", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1686, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:748, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1686, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:748", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1686, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:748, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1685, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:748", "comment": "KDE Connect signal strength label" }, { @@ -14720,13 +14870,13 @@ { "term": "Single-Line Popup", "context": "Single-Line Popup", - "reference": "Modules/Settings/WidgetsTabSection.qml:1184", + "reference": "Modules/Settings/WidgetsTabSection.qml:1342", "comment": "" }, { "term": "Size", "context": "Size", - "reference": "Modals/WindowRuleModal.qml:1585, Modals/WindowRuleModal.qml:1797, Modals/DankLauncherV2/LauncherContent.qml:697, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:709, Modules/Settings/LauncherTab.qml:614, Modules/Settings/DankBarTab.qml:931, Modules/Settings/FrameTab.qml:128, Modules/Settings/WindowRulesTab.qml:125", + "reference": "Modals/WindowRuleModal.qml:1585, Modals/WindowRuleModal.qml:1797, Modals/DankLauncherV2/LauncherContent.qml:715, Modals/DankLauncherV2/LauncherContent.qml:720, Modals/DankLauncherV2/LauncherContent.qml:727, Modules/Settings/LauncherTab.qml:614, Modules/Settings/DankBarTab.qml:933, Modules/Settings/FrameTab.qml:128, Modules/Settings/WindowRulesTab.qml:125", "comment": "launcher size option" }, { @@ -14780,7 +14930,7 @@ { "term": "Small", "context": "Small", - "reference": "Modules/Settings/WidgetsTabSection.qml:1519, Modules/Settings/WidgetsTabSection.qml:2880", + "reference": "Modules/Settings/WidgetsTabSection.qml:1677, Modules/Settings/WidgetsTabSection.qml:3038", "comment": "" }, { @@ -14819,6 +14969,12 @@ "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:323", "comment": "" }, + { + "term": "Sort wallpapers", + "context": "Sort wallpapers", + "reference": "Modules/DankDash/WallpaperTab.qml:696", + "comment": "" + }, { "term": "Sorting & Layout", "context": "Sorting & Layout", @@ -14840,31 +14996,31 @@ { "term": "Source: %1", "context": "Source: %1", - "reference": "Modules/Settings/WindowRulesTab.qml:1072", + "reference": "Modules/Settings/WindowRulesTab.qml:1070", "comment": "" }, { "term": "Space between the bar and screen edges", "context": "Space between the bar and screen edges", - "reference": "Modules/Settings/DankBarTab.qml:886", + "reference": "Modules/Settings/DankBarTab.qml:888", "comment": "" }, { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/CompositorLayoutTab.qml:50, Modules/Settings/CompositorLayoutTab.qml:147, Modules/Settings/CompositorLayoutTab.qml:253", + "reference": "Modules/Settings/CompositorLayoutTab.qml:298, Modules/Settings/CompositorLayoutTab.qml:405, Modules/Settings/CompositorLayoutTab.qml:521", "comment": "" }, { "term": "Spacer", "context": "Spacer", - "reference": "Modules/Settings/WidgetsTab.qml:206", + "reference": "Modules/Settings/WidgetsTab.qml:222", "comment": "" }, { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:605, Modules/Settings/DankBarTab.qml:871", + "reference": "Modules/Settings/DockTab.qml:605, Modules/Settings/DankBarTab.qml:873", "comment": "" }, { @@ -14912,7 +15068,7 @@ { "term": "Square Corners", "context": "Square Corners", - "reference": "Modules/Settings/DankBarTab.qml:1155", + "reference": "Modules/Settings/DankBarTab.qml:1157", "comment": "" }, { @@ -14960,7 +15116,7 @@ { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:55, Modals/Settings/SettingsSidebar.qml:245, Modules/Settings/AboutTab.qml:698, Modules/Settings/NetworkStatusTab.qml:86, Modules/Settings/PrinterTab.qml:186, Modules/Settings/BatteryTab.qml:109", + "reference": "Widgets/DankIconPicker.qml:55, Modals/Settings/SettingsSidebar.qml:251, Modules/Settings/AboutTab.qml:698, Modules/Settings/NetworkStatusTab.qml:86, Modules/Settings/PrinterTab.qml:186, Modules/Settings/BatteryTab.qml:109", "comment": "" }, { @@ -14990,19 +15146,19 @@ { "term": "Stretch widget icons to fill the available bar height", "context": "Stretch widget icons to fill the available bar height", - "reference": "Modules/Settings/DankBarTab.qml:1176", + "reference": "Modules/Settings/DankBarTab.qml:1178", "comment": "" }, { "term": "Stretch widget text to fill the available bar height", "context": "Stretch widget text to fill the available bar height", - "reference": "Modules/Settings/DankBarTab.qml:1185", + "reference": "Modules/Settings/DankBarTab.qml:1187", "comment": "" }, { "term": "Strict auto-hide", "context": "Strict auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:702", + "reference": "Modules/Settings/DankBarTab.qml:704", "comment": "Dank bar setting: hide the bar when the pointer leaves even if a menu or bar popover is still open" }, { @@ -15026,7 +15182,7 @@ { "term": "Summary Font Size", "context": "Summary Font Size", - "reference": "Modules/Settings/NotificationsTab.qml:214", + "reference": "Modules/Settings/NotificationsTab.qml:213", "comment": "" }, { @@ -15044,19 +15200,19 @@ { "term": "Suppress Duplicate Notifications", "context": "Suppress Duplicate Notifications", - "reference": "Modules/Settings/NotificationsTab.qml:316", + "reference": "Modules/Settings/NotificationsTab.qml:315", "comment": "" }, { "term": "Suppress notification popups while enabled", "context": "Suppress notification popups while enabled", - "reference": "Modules/Settings/NotificationsTab.qml:441", + "reference": "Modules/Settings/NotificationsTab.qml:438", "comment": "" }, { "term": "Surface", "context": "Surface", - "reference": "Modules/Settings/ThemeColorsTab.qml:28, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:35, Modules/Settings/WorkspaceAppearanceCard.qml:76, Modules/Settings/WorkspaceAppearanceCard.qml:108, Modules/Settings/WorkspaceAppearanceCard.qml:146, Modules/Settings/FrameTab.qml:231", + "reference": "Modules/Settings/ThemeColorsTab.qml:28, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:37, Modules/Settings/WorkspaceAppearanceCard.qml:78, Modules/Settings/WorkspaceAppearanceCard.qml:110, Modules/Settings/WorkspaceAppearanceCard.qml:148, Modules/Settings/FrameTab.qml:231", "comment": "color option | shadow color option | widget background color option | workspace color option" }, { @@ -15068,37 +15224,37 @@ { "term": "Surface Container", "context": "Surface Container", - "reference": "Modules/Settings/ThemeColorsTab.qml:31, Modules/Settings/WallpaperTab.qml:380, Modules/Settings/WorkspaceAppearanceCard.qml:38, Modules/Settings/WorkspaceAppearanceCard.qml:79, Modules/Settings/WorkspaceAppearanceCard.qml:111, Modules/Settings/WorkspaceAppearanceCard.qml:149", + "reference": "Modules/Settings/ThemeColorsTab.qml:31, Modules/Settings/WallpaperTab.qml:380, Modules/Settings/WorkspaceAppearanceCard.qml:40, Modules/Settings/WorkspaceAppearanceCard.qml:81, Modules/Settings/WorkspaceAppearanceCard.qml:113, Modules/Settings/WorkspaceAppearanceCard.qml:151", "comment": "widget background color option | workspace color option" }, { "term": "Surface High", "context": "Surface High", - "reference": "Modules/Settings/ThemeColorsTab.qml:34, Modules/Settings/WorkspaceAppearanceCard.qml:41, Modules/Settings/WorkspaceAppearanceCard.qml:82, Modules/Settings/WorkspaceAppearanceCard.qml:114, Modules/Settings/WorkspaceAppearanceCard.qml:152", + "reference": "Modules/Settings/ThemeColorsTab.qml:34, Modules/Settings/WorkspaceAppearanceCard.qml:43, Modules/Settings/WorkspaceAppearanceCard.qml:84, Modules/Settings/WorkspaceAppearanceCard.qml:116, Modules/Settings/WorkspaceAppearanceCard.qml:154", "comment": "widget background color option | workspace color option" }, { "term": "Surface Highest", "context": "Surface Highest", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:44, Modules/Settings/WorkspaceAppearanceCard.qml:85, Modules/Settings/WorkspaceAppearanceCard.qml:117", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:46, Modules/Settings/WorkspaceAppearanceCard.qml:87, Modules/Settings/WorkspaceAppearanceCard.qml:119", "comment": "workspace color option" }, { "term": "Surface Opacity", "context": "Surface Opacity", - "reference": "Modules/Notepad/NotepadSettings.qml:355, Modules/Settings/ThemeColorsTab.qml:1688, Modules/Settings/ThemeColorsTab.qml:1696, Modules/Settings/FrameTab.qml:149", + "reference": "Modules/Notepad/NotepadSettings.qml:355, Modules/Settings/ThemeColorsTab.qml:1698, Modules/Settings/ThemeColorsTab.qml:1740, Modules/Settings/FrameTab.qml:149", "comment": "" }, { "term": "Surface Text", "context": "Surface Text", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:96, Modules/Settings/WorkspaceAppearanceCard.qml:160", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:98, Modules/Settings/WorkspaceAppearanceCard.qml:162", "comment": "workspace color option" }, { "term": "Surface Variant", "context": "Surface Variant", - "reference": "Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1620, Modules/Settings/ThemeColorsTab.qml:1629, Modules/Settings/ThemeColorsTab.qml:1639, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1658, Modules/Settings/ThemeColorsTab.qml:1667, Modules/Settings/ThemeColorsTab.qml:1677, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1882, Modules/Settings/ThemeColorsTab.qml:1893", + "reference": "Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1620, Modules/Settings/ThemeColorsTab.qml:1629, Modules/Settings/ThemeColorsTab.qml:1639, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1658, Modules/Settings/ThemeColorsTab.qml:1667, Modules/Settings/ThemeColorsTab.qml:1677, Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1923", "comment": "button color option | shadow color option | tile color option" }, { @@ -15170,13 +15326,13 @@ { "term": "Sync Bar Inset Padding", "context": "Sync Bar Inset Padding", - "reference": "Modules/Settings/DankBarTab.qml:1015", + "reference": "Modules/Settings/DankBarTab.qml:1017", "comment": "" }, { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:2049", + "reference": "Modules/Settings/ThemeColorsTab.qml:2079", "comment": "" }, { @@ -15200,7 +15356,7 @@ { "term": "Sync dark mode with settings portals for system-wide theme hints", "context": "Sync dark mode with settings portals for system-wide theme hints", - "reference": "Modules/Settings/ThemeColorsTab.qml:2050", + "reference": "Modules/Settings/ThemeColorsTab.qml:2080", "comment": "" }, { @@ -15218,13 +15374,13 @@ { "term": "System", "context": "System", - "reference": "Modals/ProcessListModal.qml:320, Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:681, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:306, Modules/ProcessList/ProcessListPopout.qml:155", + "reference": "Modals/ProcessListModal.qml:320, Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:681, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:312, Modules/ProcessList/ProcessListPopout.qml:168", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:2763", + "reference": "Modules/Settings/ThemeColorsTab.qml:2808", "comment": "" }, { @@ -15266,25 +15422,25 @@ { "term": "System Tray", "context": "System Tray", - "reference": "Modules/Settings/WidgetsTab.qml:150", + "reference": "Modules/Settings/WidgetsTab.qml:166", "comment": "" }, { "term": "System Tray Icon Tint", "context": "System Tray Icon Tint", - "reference": "Modules/Settings/DankBarTab.qml:1272", + "reference": "Modules/Settings/DankBarTab.qml:1318", "comment": "" }, { "term": "System Update", "context": "System Update", - "reference": "Modules/Settings/WidgetsTab.qml:248", + "reference": "Modules/Settings/WidgetsTab.qml:264", "comment": "" }, { "term": "System Updater", "context": "System Updater", - "reference": "Modals/Settings/SettingsSidebar.qml:344, Modules/Settings/SystemUpdaterTab.qml:67", + "reference": "Modals/Settings/SettingsSidebar.qml:350, Modules/Settings/SystemUpdaterTab.qml:67", "comment": "" }, { @@ -15296,7 +15452,7 @@ { "term": "System notification area icons", "context": "System notification area icons", - "reference": "Modules/Settings/WidgetsTab.qml:151", + "reference": "Modules/Settings/WidgetsTab.qml:167", "comment": "" }, { @@ -15320,7 +15476,7 @@ { "term": "Systemd Override generated", "context": "Systemd Override generated", - "reference": "Modules/Settings/AutoStartTab.qml:272, Modules/Settings/AutoStartTab.qml:277", + "reference": "Modules/Settings/AutoStartTab.qml:302, Modules/Settings/AutoStartTab.qml:307", "comment": "" }, { @@ -15428,19 +15584,19 @@ { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2059", + "reference": "Modules/Settings/ThemeColorsTab.qml:2089", "comment": "" }, { "term": "Tertiary", "context": "Tertiary", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:29, Modules/Settings/WorkspaceAppearanceCard.qml:70, Modules/Settings/WorkspaceAppearanceCard.qml:105, Modules/Settings/WorkspaceAppearanceCard.qml:140, Modules/Settings/WorkspaceAppearanceCard.qml:175", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:31, Modules/Settings/WorkspaceAppearanceCard.qml:72, Modules/Settings/WorkspaceAppearanceCard.qml:107, Modules/Settings/WorkspaceAppearanceCard.qml:142, Modules/Settings/WorkspaceAppearanceCard.qml:177", "comment": "workspace color option" }, { "term": "Tertiary Container", "context": "Tertiary Container", - "reference": "Modules/Settings/ThemeColorsTab.qml:43, Modules/Settings/WorkspaceAppearanceCard.qml:32, Modules/Settings/WorkspaceAppearanceCard.qml:73, Modules/Settings/WorkspaceAppearanceCard.qml:143, Modules/Settings/WorkspaceAppearanceCard.qml:178", + "reference": "Modules/Settings/ThemeColorsTab.qml:43, Modules/Settings/WorkspaceAppearanceCard.qml:34, Modules/Settings/WorkspaceAppearanceCard.qml:75, Modules/Settings/WorkspaceAppearanceCard.qml:145, Modules/Settings/WorkspaceAppearanceCard.qml:180", "comment": "widget background color option | workspace color option" }, { @@ -15476,7 +15632,7 @@ { "term": "Text Color", "context": "Text Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1782, Modules/Settings/ThemeColorsTab.qml:1794, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1878, Modules/Settings/ThemeColorsTab.qml:1898", + "reference": "Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/ThemeColorsTab.qml:1790, Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:1908, Modules/Settings/ThemeColorsTab.qml:1928", "comment": "blur border color | shadow color option" }, { @@ -15491,6 +15647,12 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:335", "comment": "" }, + { + "term": "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.", + "context": "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.", + "reference": "PLUGINS/ExampleStartupCheck/StartupCheck.qml:18", + "comment": "" + }, { "term": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", "context": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", @@ -15506,7 +15668,7 @@ { "term": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", "context": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", - "reference": "Modules/Settings/ThemeColorsTab.qml:2752", + "reference": "Modules/Settings/ThemeColorsTab.qml:2797", "comment": "" }, { @@ -15542,25 +15704,25 @@ { "term": "Theme Registry", "context": "Theme Registry", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:106", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:105", "comment": "greeter feature card title" }, { "term": "Theme color used for the border", "context": "Theme color used for the border", - "reference": "Modules/Settings/DankBarTab.qml:1382", + "reference": "Modules/Settings/DankBarTab.qml:1428", "comment": "" }, { "term": "Theme color used for the widget outline", "context": "Theme color used for the widget outline", - "reference": "Modules/Settings/DankBarTab.qml:1477", + "reference": "Modules/Settings/DankBarTab.qml:1523", "comment": "" }, { "term": "Theme worker failed (%1)", "context": "Theme worker failed (%1)", - "reference": "Common/Theme.qml:2112", + "reference": "Common/Theme.qml:2149", "comment": "" }, { @@ -15572,13 +15734,13 @@ { "term": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)", "context": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)", - "reference": "Modules/Settings/AutoStartTab.qml:562", + "reference": "Modules/Settings/AutoStartTab.qml:595", "comment": "" }, { "term": "Thickness", "context": "Thickness", - "reference": "Modules/Settings/LauncherTab.qml:699, Modules/Settings/DankBarTab.qml:1442, Modules/Settings/DankBarTab.qml:1537, Modules/Settings/WorkspaceAppearanceCard.qml:294", + "reference": "Modules/Settings/LauncherTab.qml:699, Modules/Settings/WorkspaceAppearanceBorderFields.qml:34, Modules/Settings/DankBarTab.qml:1488, Modules/Settings/DankBarTab.qml:1583", "comment": "border thickness" }, { @@ -15590,13 +15752,13 @@ { "term": "Third-Party Plugin Warning", "context": "Third-Party Plugin Warning", - "reference": "Modules/Settings/PluginBrowser.qml:1245, Modules/Settings/PluginBrowser.qml:1279", + "reference": "Modules/Settings/PluginBrowser.qml:1395, Modules/Settings/PluginBrowser.qml:1429", "comment": "" }, { "term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", "context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", - "reference": "Modules/Settings/PluginBrowser.qml:1303", + "reference": "Modules/Settings/PluginBrowser.qml:1453", "comment": "" }, { @@ -15614,25 +15776,31 @@ { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.", - "reference": "Modules/Settings/ThemeColorsTab.qml:130", + "reference": "Modules/Settings/ThemeColorsTab.qml:130, Modules/Settings/ThemeColorsTab.qml:2158", "comment": "" }, { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.", - "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:66, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1467", + "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:63, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1475", + "comment": "" + }, + { + "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.", + "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.", + "reference": "Modules/Settings/CompositorLayoutTab.qml:97, Modules/Settings/CompositorLayoutTab.qml:211", "comment": "" }, { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.", - "reference": "Services/KeybindsService.qml:548, Modules/Settings/KeybindsTab.qml:402", + "reference": "Services/KeybindsService.qml:548, Modules/Settings/KeybindsTab.qml:400", "comment": "" }, { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.", - "reference": "Modules/Settings/WindowRulesTab.qml:344, Modules/Settings/WindowRulesTab.qml:512", + "reference": "Modules/Settings/WindowRulesTab.qml:344, Modules/Settings/WindowRulesTab.qml:510", "comment": "" }, { @@ -15656,19 +15824,19 @@ { "term": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.", "context": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.", - "reference": "Modules/Settings/WidgetsTab.qml:145", + "reference": "Modules/Settings/WidgetsTab.qml:161", "comment": "" }, { "term": "This will delete all unpinned entries. %1 pinned entries will be kept.", "context": "This will delete all unpinned entries. %1 pinned entries will be kept.", - "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:138, Modules/DankBar/DankBarContent.qml:739", + "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:138, Modules/DankBar/DankBarContent.qml:905", "comment": "" }, { "term": "This will permanently delete all clipboard history.", "context": "This will permanently delete all clipboard history.", - "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:138, Modules/DankBar/DankBarContent.qml:739", + "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:138, Modules/DankBar/DankBarContent.qml:905", "comment": "" }, { @@ -15755,10 +15923,16 @@ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:108, Modules/DankBar/Popouts/BatteryPopout.qml:178", "comment": "" }, + { + "term": "Time to rest on a widget before its popout opens", + "context": "Time to rest on a widget before its popout opens", + "reference": "Modules/Settings/DankBarTab.qml:1282", + "comment": "" + }, { "term": "Time to wait before hiding after the pointer leaves", "context": "Time to wait before hiding after the pointer leaves", - "reference": "Modules/Settings/DankBarTab.qml:680", + "reference": "Modules/Settings/DankBarTab.qml:682", "comment": "" }, { @@ -15776,37 +15950,37 @@ { "term": "Timeout Progress Bar", "context": "Timeout Progress Bar", - "reference": "Modules/Settings/NotificationsTab.qml:307", + "reference": "Modules/Settings/NotificationsTab.qml:306", "comment": "" }, { "term": "Timeout for critical priority notifications", "context": "Timeout for critical priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:834, Modules/Notifications/Center/NotificationSettings.qml:212", + "reference": "Modules/Settings/NotificationsTab.qml:831, Modules/Notifications/Center/NotificationSettings.qml:212", "comment": "" }, { "term": "Timeout for low priority notifications", "context": "Timeout for low priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:800, Modules/Notifications/Center/NotificationSettings.qml:182", + "reference": "Modules/Settings/NotificationsTab.qml:797, Modules/Notifications/Center/NotificationSettings.qml:182", "comment": "" }, { "term": "Timeout for normal priority notifications", "context": "Timeout for normal priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:817, Modules/Notifications/Center/NotificationSettings.qml:197", + "reference": "Modules/Settings/NotificationsTab.qml:814, Modules/Notifications/Center/NotificationSettings.qml:197", "comment": "" }, { "term": "Tint Saturation", "context": "Tint Saturation", - "reference": "Modules/Settings/DankBarTab.qml:1324", + "reference": "Modules/Settings/DankBarTab.qml:1370", "comment": "" }, { "term": "Tint Strength", "context": "Tint Strength", - "reference": "Modules/Settings/DankBarTab.qml:1347", + "reference": "Modules/Settings/DankBarTab.qml:1393", "comment": "" }, { @@ -15848,7 +16022,7 @@ { "term": "To update, run the following command:", "context": "To update, run the following command:", - "reference": "Services/DMSService.qml:321", + "reference": "Services/DMSService.qml:322", "comment": "" }, { @@ -15878,7 +16052,7 @@ { "term": "Toggle bar visibility manually via IPC", "context": "Toggle bar visibility manually via IPC", - "reference": "Modules/Settings/DankBarTab.qml:736", + "reference": "Modules/Settings/DankBarTab.qml:738", "comment": "" }, { @@ -15890,7 +16064,7 @@ { "term": "Toggle visibility of this bar configuration", "context": "Toggle visibility of this bar configuration", - "reference": "Modules/Settings/DankBarTab.qml:469", + "reference": "Modules/Settings/DankBarTab.qml:471", "comment": "" }, { @@ -15908,7 +16082,7 @@ { "term": "Tonal Spot", "context": "Tonal Spot", - "reference": "Common/Theme.qml:479", + "reference": "Common/Theme.qml:483", "comment": "matugen color scheme option" }, { @@ -15932,7 +16106,7 @@ { "term": "Too many failed attempts - account may be locked", "context": "Too many failed attempts - account may be locked", - "reference": "Modules/Greetd/GreeterContent.qml:243", + "reference": "Modules/Greetd/GreeterContent.qml:247", "comment": "" }, { @@ -15944,13 +16118,13 @@ { "term": "Top", "context": "Top", - "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:340, Modules/Settings/DankBarTab.qml:348, Modules/Settings/DankBarTab.qml:491, Modules/Settings/DankBarTab.qml:1675, Modules/Settings/DankBarTab.qml:1685, Modules/Settings/FrameTab.qml:343", + "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:342, Modules/Settings/DankBarTab.qml:350, Modules/Settings/DankBarTab.qml:493, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1731, Modules/Settings/FrameTab.qml:343", "comment": "shadow direction option" }, { "term": "Top (Default)", "context": "Top (Default)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1924", + "reference": "Modules/Settings/ThemeColorsTab.qml:1942, Modules/Settings/ThemeColorsTab.qml:1954", "comment": "shadow direction option" }, { @@ -15962,13 +16136,13 @@ { "term": "Top Center", "context": "Top Center", - "reference": "Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60, Modules/Settings/NotificationsTab.qml:244, Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:269", + "reference": "Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60, Modules/Settings/NotificationsTab.qml:243, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:268", "comment": "screen position option" }, { "term": "Top Left", "context": "Top Left", - "reference": "Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1918, Modules/Settings/ThemeColorsTab.qml:1931, Modules/Settings/DankBarTab.qml:1675, Modules/Settings/DankBarTab.qml:1679, Modules/Settings/DankBarTab.qml:1689, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:251, Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:266, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "reference": "Modules/Settings/ThemeColorsTab.qml:1942, Modules/Settings/ThemeColorsTab.qml:1948, Modules/Settings/ThemeColorsTab.qml:1961, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1725, Modules/Settings/DankBarTab.qml:1735, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:250, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:265, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", "comment": "screen position option | shadow direction option" }, { @@ -15980,19 +16154,19 @@ { "term": "Top Right", "context": "Top Right", - "reference": "Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1920, Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/DankBarTab.qml:1675, Modules/Settings/DankBarTab.qml:1681, Modules/Settings/DankBarTab.qml:1693, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:247, Modules/Settings/NotificationsTab.qml:257, Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:263, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "reference": "Modules/Settings/ThemeColorsTab.qml:1942, Modules/Settings/ThemeColorsTab.qml:1950, Modules/Settings/ThemeColorsTab.qml:1963, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1727, Modules/Settings/DankBarTab.qml:1739, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:246, Modules/Settings/NotificationsTab.qml:256, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:262, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", "comment": "screen position option | shadow direction option" }, { "term": "Top Section", "context": "Top Section", - "reference": "Modules/Settings/WidgetsTab.qml:1064", + "reference": "Modules/Settings/WidgetsTab.qml:1314", "comment": "" }, { "term": "Total", "context": "Total", - "reference": "Modules/Settings/WidgetsTabSection.qml:1656", + "reference": "Modules/Settings/WidgetsTabSection.qml:1814", "comment": "" }, { @@ -16010,7 +16184,7 @@ { "term": "Transform", "context": "Transform", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2021", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029", "comment": "" }, { @@ -16040,7 +16214,7 @@ { "term": "Tray Icon Fix", "context": "Tray Icon Fix", - "reference": "Modules/Settings/AutoStartTab.qml:726", + "reference": "Modules/Settings/AutoStartTab.qml:760", "comment": "" }, { @@ -16130,7 +16304,7 @@ { "term": "Type", "context": "Type", - "reference": "Widgets/KeybindItem.qml:846, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:614", + "reference": "Widgets/KeybindItem.qml:846, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:611", "comment": "" }, { @@ -16166,7 +16340,7 @@ { "term": "Typography & Motion", "context": "Typography & Motion", - "reference": "Modals/Settings/SettingsSidebar.qml:89, Modals/Settings/SettingsSidebar.qml:646", + "reference": "Modals/Settings/SettingsSidebar.qml:89, Modals/Settings/SettingsSidebar.qml:652", "comment": "" }, { @@ -16178,25 +16352,31 @@ { "term": "Unavailable", "context": "Unavailable", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:460, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:460, Modules/Settings/NetworkVpnTab.qml:82, Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkEthernetTab.qml:167, Modules/Settings/NetworkWifiTab.qml:970", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:460, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:459, Modules/Settings/NetworkVpnTab.qml:82, Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkEthernetTab.qml:167, Modules/Settings/NetworkWifiTab.qml:970", "comment": "Phone Connect unavailable status" }, { "term": "Uncategorized", "context": "Uncategorized", - "reference": "Modules/Settings/PluginBrowser.qml:149", + "reference": "Modules/Settings/PluginBrowser.qml:170", "comment": "plugin browser category filter" }, { "term": "Unfocused Color", "context": "Unfocused Color", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:226", + "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:70", "comment": "" }, + { + "term": "Unfocused Display(s)", + "context": "Unfocused Display(s)", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:205", + "comment": "workspace appearance tab" + }, { "term": "Ungrouped", "context": "Ungrouped", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:472", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:397", "comment": "" }, { @@ -16250,7 +16430,7 @@ { "term": "Unknown", "context": "Unknown", - "reference": "Common/Theme.qml:1630, Services/WeatherService.qml:153, Services/WeatherService.qml:716, Services/WeatherService.qml:717, Services/WeatherService.qml:758, Services/WeatherService.qml:759, Services/WeatherService.qml:794, Services/WeatherService.qml:795, Services/WeatherService.qml:993, Services/WeatherService.qml:994, Services/BatteryService.qml:288, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1679, dms-plugins/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:741, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1679, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:741, Modules/Lock/LockScreenContent.qml:406, Modules/Lock/LockScreenContent.qml:526, Modules/Lock/LockScreenContent.qml:622, Modules/Settings/PluginBrowser.qml:1007, Modules/Settings/NetworkStatusTab.qml:79, Modules/Settings/NetworkStatusTab.qml:121, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkEthernetTab.qml:146, Modules/Settings/NetworkEthernetTab.qml:169, Modules/Settings/NetworkEthernetTab.qml:317, Modules/Settings/NetworkEthernetTab.qml:428, Modules/Settings/NotificationsTab.qml:714, Modules/Settings/NetworkWifiTab.qml:537, Modules/Settings/NetworkWifiTab.qml:947, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:487, Modules/ControlCenter/Components/DragDropGrid.qml:725, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", + "reference": "Common/Theme.qml:1645, Services/WeatherService.qml:153, Services/WeatherService.qml:716, Services/WeatherService.qml:717, Services/WeatherService.qml:758, Services/WeatherService.qml:759, Services/WeatherService.qml:794, Services/WeatherService.qml:795, Services/WeatherService.qml:993, Services/WeatherService.qml:994, Services/BatteryService.qml:300, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1679, dms-plugins/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:741, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1678, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:741, Modules/Lock/LockScreenContent.qml:461, Modules/Lock/LockScreenContent.qml:581, Modules/Lock/LockScreenContent.qml:677, Modules/Settings/PluginBrowser.qml:1078, Modules/Settings/NetworkStatusTab.qml:79, Modules/Settings/NetworkStatusTab.qml:121, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkEthernetTab.qml:146, Modules/Settings/NetworkEthernetTab.qml:169, Modules/Settings/NetworkEthernetTab.qml:317, Modules/Settings/NetworkEthernetTab.qml:428, Modules/Settings/NotificationsTab.qml:711, Modules/Settings/NetworkWifiTab.qml:537, Modules/Settings/NetworkWifiTab.qml:947, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:515, Modules/ControlCenter/Components/DragDropGrid.qml:753, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", "comment": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status" }, { @@ -16262,7 +16442,7 @@ { "term": "Unknown Artist", "context": "Unknown Artist", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1933, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1939, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1933, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1939, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, Modules/DankDash/MediaDropdownOverlay.qml:551, Modules/DankDash/MediaPlayerTab.qml:426, Modules/OSD/MediaPlaybackOSD.qml:280, Modules/DankDash/Overview/MediaOverviewCard.qml:102", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1933, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1939, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1932, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1938, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, Modules/DankDash/MediaDropdownOverlay.qml:551, Modules/DankDash/MediaPlayerTab.qml:426, Modules/OSD/MediaPlaybackOSD.qml:280, Modules/DankDash/Overview/MediaOverviewCard.qml:102", "comment": "" }, { @@ -16316,19 +16496,19 @@ { "term": "Unmute", "context": "Unmute", - "reference": "Modules/Settings/NotificationsTab.qml:727", + "reference": "Modules/Settings/NotificationsTab.qml:724", "comment": "" }, { "term": "Unmute popups for %1", "context": "Unmute popups for %1", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1423, Modules/Notifications/Center/NotificationCard.qml:1097", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1422, Modules/Notifications/Center/NotificationCard.qml:1097", "comment": "" }, { "term": "Unnamed Rule", "context": "Unnamed Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:628", + "reference": "Modules/Settings/WindowRulesTab.qml:626", "comment": "" }, { @@ -16340,7 +16520,7 @@ { "term": "Unpair failed", "context": "Unpair failed", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:699, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:699", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:699, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:698", "comment": "Phone Connect error" }, { @@ -16352,13 +16532,13 @@ { "term": "Unpin from Dock", "context": "Unpin from Dock", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:163, Modules/Dock/DockContextMenu.qml:222, Modules/DankBar/Widgets/AppsDockContextMenu.qml:350", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:164, Modules/Dock/DockContextMenu.qml:222, Modules/DankBar/Widgets/AppsDockContextMenu.qml:350", "comment": "" }, { "term": "Unsaved Changes", "context": "Unsaved Changes", - "reference": "Modules/Notepad/Notepad.qml:675", + "reference": "Modules/Notepad/Notepad.qml:676", "comment": "" }, { @@ -16370,7 +16550,7 @@ { "term": "Unset", "context": "Unset", - "reference": "Modules/Settings/DefaultAppsTab.qml:229, Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:217, Modules/Settings/NotificationsTab.qml:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:230, Modules/Settings/NotificationsTab.qml:232", + "reference": "Modules/Settings/DefaultAppsTab.qml:229, Modules/Settings/NotificationsTab.qml:215, Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:218, Modules/Settings/NotificationsTab.qml:228, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:231", "comment": "Unset" }, { @@ -16466,7 +16646,7 @@ { "term": "Urgent Color", "context": "Urgent Color", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:246", + "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:90", "comment": "" }, { @@ -16520,7 +16700,7 @@ { "term": "Use Inline Expansion", "context": "Use Inline Expansion", - "reference": "Modules/Settings/WidgetsTabSection.qml:1133", + "reference": "Modules/Settings/WidgetsTabSection.qml:1291", "comment": "" }, { @@ -16532,7 +16712,7 @@ { "term": "Use Overlay Layer", "context": "Use Overlay Layer", - "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/LauncherTab.qml:175, Modules/Settings/DankBarTab.qml:794", + "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/LauncherTab.qml:175, Modules/Settings/DankBarTab.qml:796", "comment": "bar layer toggle: use Wayland overlay layer | dock layer toggle: use Wayland overlay layer | launcher layer toggle: use Wayland overlay layer" }, { @@ -16550,13 +16730,13 @@ { "term": "Use a custom radius for goth corner cutouts", "context": "Use a custom radius for goth corner cutouts", - "reference": "Modules/Settings/DankBarTab.qml:1220", + "reference": "Modules/Settings/DankBarTab.qml:1222", "comment": "" }, { "term": "Use a fixed shadow direction for this bar", "context": "Use a fixed shadow direction for this bar", - "reference": "Modules/Settings/DankBarTab.qml:1673", + "reference": "Modules/Settings/DankBarTab.qml:1719", "comment": "" }, { @@ -16574,31 +16754,31 @@ { "term": "Use animated wave progress bars for media playback", "context": "Use animated wave progress bars for media playback", - "reference": "Modules/Settings/MediaPlayerTab.qml:30", + "reference": "Modules/Settings/MediaPlayerTab.qml:42", "comment": "" }, { "term": "Use custom border size", "context": "Use custom border size", - "reference": "Modules/Settings/CompositorLayoutTab.qml:190, Modules/Settings/CompositorLayoutTab.qml:296", + "reference": "Modules/Settings/CompositorLayoutTab.qml:448, Modules/Settings/CompositorLayoutTab.qml:564", "comment": "" }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", - "reference": "Modules/Settings/CompositorLayoutTab.qml:93", + "reference": "Modules/Settings/CompositorLayoutTab.qml:341", "comment": "" }, { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/CompositorLayoutTab.qml:34, Modules/Settings/CompositorLayoutTab.qml:131, Modules/Settings/CompositorLayoutTab.qml:237", + "reference": "Modules/Settings/CompositorLayoutTab.qml:282, Modules/Settings/CompositorLayoutTab.qml:389, Modules/Settings/CompositorLayoutTab.qml:505", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/CompositorLayoutTab.qml:64, Modules/Settings/CompositorLayoutTab.qml:161, Modules/Settings/CompositorLayoutTab.qml:267", + "reference": "Modules/Settings/CompositorLayoutTab.qml:312, Modules/Settings/CompositorLayoutTab.qml:419, Modules/Settings/CompositorLayoutTab.qml:535", "comment": "" }, { @@ -16610,7 +16790,13 @@ { "term": "Use different icon themes for light and dark mode", "context": "Use different icon themes for light and dark mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:2278", + "reference": "Modules/Settings/ThemeColorsTab.qml:2323", + "comment": "" + }, + { + "term": "Use different workspace colors on displays that are not focused", + "context": "Use different workspace colors on displays that are not focused", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:302", "comment": "" }, { @@ -16640,13 +16826,13 @@ { "term": "Use one inset value for every bar", "context": "Use one inset value for every bar", - "reference": "Modules/Settings/DankBarTab.qml:1016", + "reference": "Modules/Settings/DankBarTab.qml:1018", "comment": "" }, { "term": "Use smaller notification cards", "context": "Use smaller notification cards", - "reference": "Modules/Settings/NotificationsTab.qml:299", + "reference": "Modules/Settings/NotificationsTab.qml:298", "comment": "" }, { @@ -16694,13 +16880,13 @@ { "term": "User", "context": "User", - "reference": "Modals/ProcessListModal.qml:378, Modules/ProcessList/ProcessListPopout.qml:155, Modules/ControlCenter/Components/HeaderPane.qml:57", + "reference": "Modals/ProcessListModal.qml:378, Modules/ProcessList/ProcessListPopout.qml:168, Modules/ControlCenter/Components/HeaderPane.qml:57", "comment": "" }, { "term": "User Window Rules (%1)", "context": "User Window Rules (%1)", - "reference": "Modules/Settings/WindowRulesTab.qml:839", + "reference": "Modules/Settings/WindowRulesTab.qml:837", "comment": "" }, { @@ -16760,13 +16946,13 @@ { "term": "Username...", "context": "Username...", - "reference": "Modules/Greetd/GreeterContent.qml:1239", + "reference": "Modules/Greetd/GreeterContent.qml:1243", "comment": "" }, { "term": "Users", "context": "Users", - "reference": "Modals/Settings/SettingsSidebar.qml:351", + "reference": "Modals/Settings/SettingsSidebar.qml:357", "comment": "" }, { @@ -16820,7 +17006,7 @@ { "term": "VPN", "context": "VPN", - "reference": "Services/DMSNetworkService.qml:393, Modals/Settings/SettingsSidebar.qml:263, Modules/Settings/WidgetsTabSection.qml:1772, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/NetworkVpnTab.qml:45, Modules/Settings/WidgetsTab.qml:185, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", + "reference": "Services/DMSNetworkService.qml:393, Modals/Settings/SettingsSidebar.qml:269, Modules/Settings/WidgetsTabSection.qml:1930, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/NetworkVpnTab.qml:45, Modules/Settings/WidgetsTab.qml:201, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", "comment": "" }, { @@ -16862,25 +17048,25 @@ { "term": "VPN status and quick connect", "context": "VPN status and quick connect", - "reference": "Modules/Settings/WidgetsTab.qml:186", + "reference": "Modules/Settings/WidgetsTab.qml:202", "comment": "" }, { "term": "VRR", "context": "VRR", - "reference": "Modules/Settings/WindowRulesTab.qml:104, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023", + "reference": "Modules/Settings/WindowRulesTab.qml:104, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031", "comment": "" }, { "term": "VRR Fullscreen Only", "context": "VRR Fullscreen Only", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2065", "comment": "" }, { "term": "VRR On-Demand", "context": "VRR On-Demand", - "reference": "Modals/WindowRuleModal.qml:1115, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031", + "reference": "Modals/WindowRuleModal.qml:1115, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2039", "comment": "" }, { @@ -16892,7 +17078,7 @@ { "term": "Verification", "context": "Verification", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:588, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:588", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:588, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:587", "comment": "Phone Connect pairing verification key label" }, { @@ -16934,13 +17120,13 @@ { "term": "Vibrant", "context": "Vibrant", - "reference": "Common/Theme.qml:483", + "reference": "Common/Theme.qml:487", "comment": "matugen color scheme option" }, { "term": "Vibrant palette with playful saturation.", "context": "Vibrant palette with playful saturation.", - "reference": "Common/Theme.qml:492", + "reference": "Common/Theme.qml:496", "comment": "" }, { @@ -16976,7 +17162,7 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1157, Modules/Settings/DankBarTab.qml:645", + "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1157, Modules/Settings/DankBarTab.qml:647", "comment": "" }, { @@ -16988,13 +17174,13 @@ { "term": "Visual Effects", "context": "Visual Effects", - "reference": "Modules/Settings/WidgetsTabSection.qml:3448", + "reference": "Modules/Settings/WidgetsTabSection.qml:3606", "comment": "" }, { "term": "Visual divider between widgets", "context": "Visual divider between widgets", - "reference": "Modules/Settings/WidgetsTab.qml:214", + "reference": "Modules/Settings/WidgetsTab.qml:230", "comment": "" }, { @@ -17006,7 +17192,7 @@ { "term": "Volume", "context": "Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:1797, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/OSDTab.qml:93", + "reference": "Modules/Settings/WidgetsTabSection.qml:1955, Modules/Settings/WidgetsTabSection.qml:2179, Modules/Settings/OSDTab.qml:93", "comment": "" }, { @@ -17030,7 +17216,7 @@ { "term": "Votes", "context": "Votes", - "reference": "Modules/Settings/PluginBrowser.qml:48", + "reference": "Modules/Settings/PluginBrowser.qml:50", "comment": "plugin browser sort option" }, { @@ -17078,7 +17264,7 @@ { "term": "Wallpapers", "context": "Wallpapers", - "reference": "Modules/DankDash/DankDashPopout.qml:292", + "reference": "Modules/DankDash/DankDashPopout.qml:26, Modules/Settings/DankDashTab.qml:28", "comment": "" }, { @@ -17102,19 +17288,19 @@ { "term": "Wave Progress Bars", "context": "Wave Progress Bars", - "reference": "Modules/Settings/MediaPlayerTab.qml:29", + "reference": "Modules/Settings/MediaPlayerTab.qml:41", "comment": "" }, { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1126, Widgets/KeybindItem.qml:1131, Widgets/KeybindItem.qml:1143, Modules/DankDash/DankDashPopout.qml:299, Modules/Settings/TimeWeatherTab.qml:420", + "reference": "Widgets/KeybindItem.qml:1126, Widgets/KeybindItem.qml:1131, Widgets/KeybindItem.qml:1143, Modules/DankDash/DankDashPopout.qml:30, Modules/Settings/TimeWeatherTab.qml:420, Modules/Settings/DankDashTab.qml:33", "comment": "" }, { "term": "Weather Widget", "context": "Weather Widget", - "reference": "Modules/Settings/WidgetsTab.qml:89", + "reference": "Modules/Settings/WidgetsTab.qml:105", "comment": "" }, { @@ -17132,7 +17318,7 @@ { "term": "Welcome to DankMaterialShell", "context": "Welcome to DankMaterialShell", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:47", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:46", "comment": "greeter welcome page title" }, { @@ -17180,7 +17366,7 @@ { "term": "WiFi", "context": "WiFi", - "reference": "Modals/Settings/SettingsSidebar.qml:257, Modules/Settings/NetworkStatusTab.qml:117, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/NetworkWifiTab.qml:86, Modules/ControlCenter/Details/NetworkDetail.qml:137", + "reference": "Modals/Settings/SettingsSidebar.qml:263, Modules/Settings/NetworkStatusTab.qml:117, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/NetworkWifiTab.qml:86, Modules/ControlCenter/Details/NetworkDetail.qml:137", "comment": "" }, { @@ -17216,7 +17402,7 @@ { "term": "WiFi off", "context": "WiFi off", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:470", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:498", "comment": "network status" }, { @@ -17234,19 +17420,19 @@ { "term": "Widget Management", "context": "Widget Management", - "reference": "Modules/Settings/WidgetsTab.qml:977", + "reference": "Modules/Settings/WidgetsTab.qml:1227", "comment": "" }, { "term": "Widget Opacity", "context": "Widget Opacity", - "reference": "Modules/Settings/DankBarTab.qml:839", + "reference": "Modules/Settings/DankBarTab.qml:841", "comment": "" }, { "term": "Widget Outline", "context": "Widget Outline", - "reference": "Modules/Settings/DankBarTab.qml:1468", + "reference": "Modules/Settings/DankBarTab.qml:1514", "comment": "" }, { @@ -17264,25 +17450,25 @@ { "term": "Widget added", "context": "Widget added", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:44", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:140", "comment": "" }, { "term": "Widget removed", "context": "Widget removed", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:374, Modules/Settings/DesktopWidgetsTab.qml:547", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:377, Modules/Settings/DesktopWidgetsTab.qml:410", "comment": "" }, { "term": "Widgets", "context": "Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:231", + "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:237", "comment": "settings_displays" }, { "term": "Widgets & Notifications", "context": "Widgets & Notifications", - "reference": "Modals/Settings/SettingsSidebar.qml:154, Modals/Settings/SettingsSidebar.qml:640", + "reference": "Modals/Settings/SettingsSidebar.qml:154, Modals/Settings/SettingsSidebar.qml:646", "comment": "" }, { @@ -17300,25 +17486,25 @@ { "term": "Width of the border in pixels", "context": "Width of the border in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1443", + "reference": "Modules/Settings/DankBarTab.qml:1489", "comment": "" }, { "term": "Width of the widget outline in pixels", "context": "Width of the widget outline in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1538", + "reference": "Modules/Settings/DankBarTab.qml:1584", "comment": "" }, { "term": "Width of window border", "context": "Width of window border", - "reference": "Modules/Settings/CompositorLayoutTab.qml:205, Modules/Settings/CompositorLayoutTab.qml:311", + "reference": "Modules/Settings/CompositorLayoutTab.qml:463, Modules/Settings/CompositorLayoutTab.qml:579", "comment": "" }, { "term": "Width of window border and focus ring", "context": "Width of window border and focus ring", - "reference": "Modules/Settings/CompositorLayoutTab.qml:108", + "reference": "Modules/Settings/CompositorLayoutTab.qml:356", "comment": "" }, { @@ -17342,13 +17528,13 @@ { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/CompositorLayoutTab.qml:78, Modules/Settings/CompositorLayoutTab.qml:175, Modules/Settings/CompositorLayoutTab.qml:281", + "reference": "Modules/Settings/CompositorLayoutTab.qml:326, Modules/Settings/CompositorLayoutTab.qml:433, Modules/Settings/CompositorLayoutTab.qml:549", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/CompositorLayoutTab.qml:49, Modules/Settings/CompositorLayoutTab.qml:146, Modules/Settings/CompositorLayoutTab.qml:252", + "reference": "Modules/Settings/CompositorLayoutTab.qml:297, Modules/Settings/CompositorLayoutTab.qml:404, Modules/Settings/CompositorLayoutTab.qml:520", "comment": "" }, { @@ -17372,19 +17558,7 @@ { "term": "Window Rules", "context": "Window Rules", - "reference": "Modals/Settings/SettingsSidebar.qml:297, Modules/Settings/WindowRulesTab.qml:399", - "comment": "" - }, - { - "term": "Window Rules Include Missing", - "context": "Window Rules Include Missing", - "reference": "Modules/Settings/WindowRulesTab.qml:502", - "comment": "" - }, - { - "term": "Window Rules Not Configured", - "context": "Window Rules Not Configured", - "reference": "Modules/Settings/WindowRulesTab.qml:502", + "reference": "Modals/Settings/SettingsSidebar.qml:303, Modules/Settings/WindowRulesTab.qml:399", "comment": "" }, { @@ -17402,13 +17576,13 @@ { "term": "Workspace", "context": "Workspace", - "reference": "Modals/WindowRuleModal.qml:997, Modals/WindowRuleModal.qml:1672, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/WindowRulesTab.qml:101, Modules/Settings/WindowRulesTab.qml:128", + "reference": "Modals/WindowRuleModal.qml:997, Modals/WindowRuleModal.qml:1672, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1902, Modules/Settings/WindowRulesTab.qml:101, Modules/Settings/WindowRulesTab.qml:128", "comment": "" }, { "term": "Workspace Appearance", "context": "Workspace Appearance", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:10", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:11", "comment": "" }, { @@ -17438,7 +17612,7 @@ { "term": "Workspace Switcher", "context": "Workspace Switcher", - "reference": "Modules/Settings/WidgetsTab.qml:54", + "reference": "Modules/Settings/WidgetsTab.qml:70", "comment": "" }, { @@ -17456,7 +17630,7 @@ { "term": "Wrap the app command. %command% is replaced with the actual executable", "context": "Wrap the app command. %command% is replaced with the actual executable", - "reference": "Modules/Settings/AutoStartTab.qml:477", + "reference": "Modules/Settings/AutoStartTab.qml:510", "comment": "" }, { @@ -17474,7 +17648,7 @@ { "term": "X Axis", "context": "X Axis", - "reference": "Modules/Settings/DankBarTab.qml:1853", + "reference": "Modules/Settings/DankBarTab.qml:1899", "comment": "" }, { @@ -17489,12 +17663,24 @@ "reference": "Modals/WindowRuleModal.qml:907, Modules/Settings/WindowRulesTab.qml:54", "comment": "" }, + { + "term": "Xray Blur Effect", + "context": "Xray Blur Effect", + "reference": "Modules/Settings/CompositorLayoutTab.qml:370, Modules/Settings/CompositorLayoutTab.qml:486", + "comment": "" + }, { "term": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).", "context": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).", "reference": "Modals/WindowRuleModal.qml:1235", "comment": "" }, + { + "term": "Xray options are in Compositor → Layout", + "context": "Xray options are in Compositor → Layout", + "reference": "Modules/Settings/ThemeColorsTab.qml:1836", + "comment": "" + }, { "term": "Y", "context": "Y", @@ -17504,13 +17690,13 @@ { "term": "Y Axis", "context": "Y Axis", - "reference": "Modules/Settings/DankBarTab.qml:1813", + "reference": "Modules/Settings/DankBarTab.qml:1859", "comment": "" }, { "term": "Yes", "context": "Yes", - "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2033, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", + "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2041, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2051, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2061, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2063", "comment": "" }, { @@ -17522,25 +17708,25 @@ { "term": "You have unsaved changes. Save before closing this tab?", "context": "You have unsaved changes. Save before closing this tab?", - "reference": "Modules/Notepad/Notepad.qml:682", + "reference": "Modules/Notepad/Notepad.qml:683", "comment": "" }, { "term": "You have unsaved changes. Save before continuing?", "context": "You have unsaved changes. Save before continuing?", - "reference": "Modules/Notepad/Notepad.qml:682", + "reference": "Modules/Notepad/Notepad.qml:683", "comment": "" }, { "term": "You have unsaved changes. Save before creating a new file?", "context": "You have unsaved changes. Save before creating a new file?", - "reference": "Modules/Notepad/Notepad.qml:682", + "reference": "Modules/Notepad/Notepad.qml:683", "comment": "" }, { "term": "You have unsaved changes. Save before opening a file?", "context": "You have unsaved changes. Save before opening a file?", - "reference": "Modules/Notepad/Notepad.qml:682", + "reference": "Modules/Notepad/Notepad.qml:683", "comment": "" }, { @@ -17570,7 +17756,7 @@ { "term": "Your compositor does not support background blur (ext-background-effect-v1)", "context": "Your compositor does not support background blur (ext-background-effect-v1)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1734", + "reference": "Modules/Settings/ThemeColorsTab.qml:1757", "comment": "" }, { @@ -17582,7 +17768,7 @@ { "term": "actions", "context": "actions", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:423", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:441", "comment": "" }, { @@ -17597,6 +17783,12 @@ "reference": "Modals/MuxModal.qml:467", "comment": "" }, + { + "term": "boregard is required", + "context": "boregard is required", + "reference": "PLUGINS/ExampleStartupCheck/StartupCheck.qml:17", + "comment": "" + }, { "term": "brandon", "context": "brandon", @@ -17606,25 +17798,25 @@ { "term": "broken", "context": "broken", - "reference": "Modules/Settings/PluginBrowser.qml:115", + "reference": "Modules/Settings/PluginBrowser.qml:117", "comment": "plugin status" }, { "term": "by %1", "context": "by %1", - "reference": "Modules/Settings/PluginBrowser.qml:1007, Modules/Settings/ThemeBrowser.qml:506", + "reference": "Modules/Settings/PluginBrowser.qml:1078, Modules/Settings/ThemeBrowser.qml:506", "comment": "author attribution" }, { "term": "days", "context": "days", - "reference": "Modules/Settings/NotificationsTab.qml:897, Modules/Settings/ClipboardTab.qml:182", + "reference": "Modules/Settings/NotificationsTab.qml:894, Modules/Settings/ClipboardTab.qml:182", "comment": "" }, { "term": "deprecated", "context": "deprecated", - "reference": "Modules/Settings/PluginBrowser.qml:119", + "reference": "Modules/Settings/PluginBrowser.qml:121", "comment": "plugin status" }, { @@ -17636,7 +17828,7 @@ { "term": "device", "context": "device", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:619, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:619", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:619, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:618", "comment": "Generic device name fallback" }, { @@ -17654,7 +17846,7 @@ { "term": "discuss", "context": "discuss", - "reference": "Modules/Settings/PluginBrowser.qml:1009", + "reference": "Modules/Settings/PluginBrowser.qml:1080", "comment": "plugin discussion link" }, { @@ -17663,28 +17855,16 @@ "reference": "Modules/Settings/AboutTab.qml:585", "comment": "" }, - { - "term": "dms/cursor config exists but is not included. Cursor settings won't apply.", - "context": "dms/cursor config exists but is not included. Cursor settings won't apply.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2118", - "comment": "" - }, - { - "term": "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.", - "context": "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.", - "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:70", - "comment": "" - }, { "term": "e.g. /usr/bin/my-script --flag", "context": "e.g. /usr/bin/my-script --flag", - "reference": "Modules/Settings/AutoStartTab.qml:554", + "reference": "Modules/Settings/AutoStartTab.qml:587", "comment": "" }, { "term": "e.g. My Script", "context": "e.g. My Script", - "reference": "Modules/Settings/AutoStartTab.qml:523", + "reference": "Modules/Settings/AutoStartTab.qml:556", "comment": "" }, { @@ -17726,13 +17906,13 @@ { "term": "ext", "context": "ext", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:719", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:737", "comment": "" }, { "term": "featured", "context": "featured", - "reference": "Modules/Settings/PluginBrowser.qml:899, Modules/Settings/DesktopWidgetBrowser.qml:390", + "reference": "Modules/Settings/PluginBrowser.qml:970, Modules/Settings/DesktopWidgetBrowser.qml:390", "comment": "" }, { @@ -17768,13 +17948,13 @@ { "term": "mango: config reloaded", "context": "mango: config reloaded", - "reference": "Services/MangoService.qml:429", + "reference": "Services/MangoService.qml:431", "comment": "" }, { "term": "mango: failed to reload config", "context": "mango: failed to reload config", - "reference": "Services/MangoService.qml:425", + "reference": "Services/MangoService.qml:427", "comment": "" }, { @@ -17792,13 +17972,13 @@ { "term": "matugen not available or disabled - cannot apply GTK colors", "context": "matugen not available or disabled - cannot apply GTK colors", - "reference": "Common/Theme.qml:1937", + "reference": "Common/Theme.qml:1953", "comment": "" }, { "term": "matugen not available or disabled - cannot apply Qt colors", "context": "matugen not available or disabled - cannot apply Qt colors", - "reference": "Common/Theme.qml:1959", + "reference": "Common/Theme.qml:1975", "comment": "" }, { @@ -17822,7 +18002,7 @@ { "term": "nav", "context": "nav", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:409", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:427", "comment": "" }, { @@ -17852,13 +18032,13 @@ { "term": "niri: config reloaded", "context": "niri: config reloaded", - "reference": "Services/NiriService.qml:571", + "reference": "Services/NiriService.qml:601", "comment": "" }, { "term": "niri: failed to load config", "context": "niri: failed to load config", - "reference": "Services/NiriService.qml:111", + "reference": "Services/NiriService.qml:121", "comment": "" }, { @@ -17870,7 +18050,7 @@ { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:921, Modules/Settings/ThemeBrowser.qml:473", + "reference": "Modules/Settings/PluginBrowser.qml:992, Modules/Settings/ThemeBrowser.qml:473", "comment": "" }, { @@ -17912,7 +18092,7 @@ { "term": "open", "context": "open", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:416", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:434", "comment": "" }, { @@ -17930,7 +18110,7 @@ { "term": "procs", "context": "procs", - "reference": "Modules/ProcessList/ProcessListPopout.qml:288", + "reference": "Modules/ProcessList/ProcessListPopout.qml:301", "comment": "short for processes" }, { @@ -17951,6 +18131,12 @@ "reference": "Modals/SwitchUserModal.qml:29", "comment": "" }, + { + "term": "reviewed", + "context": "reviewed", + "reference": "Modules/Settings/PluginBrowser.qml:123", + "comment": "plugin status" + }, { "term": "seconds", "context": "seconds", @@ -17966,19 +18152,19 @@ { "term": "source", "context": "source", - "reference": "Modules/Settings/PluginBrowser.qml:1008", + "reference": "Modules/Settings/PluginBrowser.qml:1079", "comment": "source code link" }, { "term": "this app", "context": "this app", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1423, Modules/Notifications/Popup/NotificationPopup.qml:1423, Modules/Notifications/Center/NotificationCard.qml:1097, Modules/Notifications/Center/NotificationCard.qml:1097", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1422, Modules/Notifications/Popup/NotificationPopup.qml:1422, Modules/Notifications/Center/NotificationCard.qml:1097, Modules/Notifications/Center/NotificationCard.qml:1097", "comment": "" }, { "term": "unmaintained", "context": "unmaintained", - "reference": "Modules/Settings/PluginBrowser.qml:117", + "reference": "Modules/Settings/PluginBrowser.qml:119", "comment": "plugin status" }, { @@ -17996,7 +18182,7 @@ { "term": "update dms for NM integration.", "context": "update dms for NM integration.", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:434", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:462", "comment": "" }, { @@ -18023,12 +18209,6 @@ "reference": "Modules/Settings/PluginListItem.qml:169", "comment": "" }, - { - "term": "verified", - "context": "verified", - "reference": "Modules/Settings/PluginBrowser.qml:121", - "comment": "plugin status" - }, { "term": "wtype not available - install wtype for paste support", "context": "wtype not available - install wtype for paste support", @@ -18038,7 +18218,7 @@ { "term": "• Install only from trusted sources", "context": "• Install only from trusted sources", - "reference": "Modules/Settings/PluginBrowser.qml:1326", + "reference": "Modules/Settings/PluginBrowser.qml:1476", "comment": "" }, { @@ -18068,13 +18248,13 @@ { "term": "• Plugins may contain bugs or security issues", "context": "• Plugins may contain bugs or security issues", - "reference": "Modules/Settings/PluginBrowser.qml:1314", + "reference": "Modules/Settings/PluginBrowser.qml:1464", "comment": "" }, { "term": "• Review code before installation when possible", "context": "• Review code before installation when possible", - "reference": "Modules/Settings/PluginBrowser.qml:1320", + "reference": "Modules/Settings/PluginBrowser.qml:1470", "comment": "" }, { diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index b9991b8b7..47a9fa501 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -8642,80 +8642,6 @@ ], "description": "Width of window border and focus ring" }, - { - "section": "hyprlandLayoutBarXrayEnabled", - "label": "Frame Xray", - "tabIndex": 37, - "category": "Personalization", - "keywords": [ - "appearance", - "auto", - "background", - "bar", - "because", - "bg", - "custom", - "customize", - "dank", - "desktop", - "enabled", - "frame", - "hide", - "hyprland", - "image", - "panel", - "performance", - "personal", - "personalization", - "picture", - "reveal", - "statusbar", - "taskbar", - "through", - "topbar", - "unavailable", - "uses", - "wallpaper", - "while", - "windows", - "would", - "xray" - ], - "description": "Unavailable while an enabled Dank Bar uses Auto Hide because Xray would reveal the wallpaper through windows" - }, - { - "section": "niriLayoutBarXrayEnabled", - "label": "Frame Xray", - "tabIndex": 37, - "category": "Personalization", - "keywords": [ - "appearance", - "auto", - "background", - "bar", - "bg", - "custom", - "customize", - "desktop", - "frame", - "hide", - "image", - "niri", - "performance", - "personal", - "personalization", - "picture", - "reveal", - "through", - "unavailable", - "wallpaper", - "while", - "windows", - "would", - "xray" - ], - "description": "Unavailable while using Auto Hide as Xray would reveal the wallpaper through windows" - }, { "section": "hyprlandLayout", "label": "Hyprland Layout Overrides", @@ -9202,26 +9128,28 @@ "appearance", "background", "background-effect", + "beneath", "bg", "blur", + "blurred", + "content", "custom", "customize", "desktop", "effect", "hyprland", "image", - "makes", "performance", "personal", "personalization", "picture", - "through", - "visible", + "show", + "surfaces", "wallpaper", - "windows", "xray" ], - "description": "Xray on makes the windows background visible through to the wallpaper" + "description": "Blurred surfaces show the wallpaper instead of the content beneath", + "conditionKey": "isHyprland" }, { "section": "niriLayoutXrayEnabled", @@ -9232,26 +9160,28 @@ "appearance", "background", "background-effect", + "beneath", "bg", "blur", + "blurred", + "content", "custom", "customize", "desktop", "effect", "image", - "makes", "niri", "performance", "personal", "personalization", "picture", - "through", - "visible", + "show", + "surfaces", "wallpaper", - "windows", "xray" ], - "description": "Xray on makes the windows background visible through to the wallpaper" + "description": "Blurred surfaces show the wallpaper instead of the content beneath", + "conditionKey": "isNiri" }, { "section": "windowRules", diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 3241764a6..d6c3c175f 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -20,6 +20,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 Startup Failed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 active session", "translation": "", @@ -111,20 +118,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "%1 exists but is not included. Window rules won't apply.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "%1 filtered", "translation": "", @@ -1357,6 +1350,13 @@ "reference": "", "comment": "" }, + { + "term": "An xray rule at %1 may conflict with the Xray settings below", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Analog", "translation": "", @@ -1490,6 +1490,13 @@ "reference": "", "comment": "" }, + { + "term": "App name or identity (e.g., firefox)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Appearance", "translation": "", @@ -2533,13 +2540,6 @@ "reference": "", "comment": "" }, - { - "term": "Binds Include Missing", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Binds include added", "translation": "", @@ -2673,6 +2673,13 @@ "reference": "", "comment": "" }, + { + "term": "Blurred surfaces show the wallpaper instead of the content beneath", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Body", "translation": "", @@ -2869,6 +2876,13 @@ "reference": "", "comment": "" }, + { + "term": "Browse and set wallpapers", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Browse or search plugins", "translation": "", @@ -3366,6 +3380,13 @@ "reference": "", "comment": "" }, + { + "term": "Choose wallpaper folder", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Choose where notification popups appear on screen", "translation": "", @@ -3492,13 +3513,6 @@ "reference": "", "comment": "" }, - { - "term": "Click 'Setup' to create %1 and add include to config.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Click 'Setup' to create %1 and add include to your compositor config.", "translation": "", @@ -3506,13 +3520,6 @@ "reference": "", "comment": "" }, - { - "term": "Click 'Setup' to create cursor config and add include to your compositor config.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Click 'Setup' to create the outputs config and add include to your compositor config.", "translation": "", @@ -3646,6 +3653,13 @@ "reference": "", "comment": "" }, + { + "term": "Clock, calendar, system info and profile", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Close", "translation": "", @@ -3745,7 +3759,7 @@ "comment": "" }, { - "term": "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)", + "term": "Color shown for areas not covered by wallpaper", "translation": "", "context": "", "reference": "", @@ -4298,7 +4312,7 @@ "comment": "" }, { - "term": "Controls outlines around blurred foreground cards, pills, and notification cards", + "term": "Controls outlines around foreground cards, pills, and notification cards", "translation": "", "context": "", "reference": "", @@ -4724,20 +4738,6 @@ "reference": "", "comment": "" }, - { - "term": "Cursor Config Not Configured", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Cursor Include Missing", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Cursor Size", "translation": "", @@ -5060,6 +5060,13 @@ "reference": "", "comment": "" }, + { + "term": "Dank Dash", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "DankBar", "translation": "", @@ -6019,6 +6026,13 @@ "reference": "", "comment": "" }, + { + "term": "Drag a widget by its handle here to reorder it or drop it into another group", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Drag to Reorder", "translation": "", @@ -6026,6 +6040,13 @@ "reference": "", "comment": "" }, + { + "term": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "translation": "", @@ -6061,6 +6082,13 @@ "reference": "", "comment": "" }, + { + "term": "Drop here", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Drop your override for %1 so the DMS default action re-applies?", "translation": "", @@ -6159,6 +6187,13 @@ "reference": "", "comment": "" }, + { + "term": "Edge Hover Reveal", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Edge Spacing", "translation": "", @@ -6754,6 +6789,13 @@ "reference": "", "comment": "" }, + { + "term": "Excluded Media Players", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Exclusive Zone Offset", "translation": "", @@ -7090,13 +7132,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to enable plugin: %1", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to fetch network QR code: %1", "translation": "", @@ -7713,20 +7748,6 @@ "reference": "", "comment": "" }, - { - "term": "Fix Now", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Fixing...", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Flags", "translation": "", @@ -7867,6 +7888,13 @@ "reference": "", "comment": "" }, + { + "term": "Focused Display", + "translation": "", + "context": "workspace appearance tab", + "reference": "", + "comment": "" + }, { "term": "Focused Monitor Only", "translation": "", @@ -8077,6 +8105,13 @@ "reference": "", "comment": "" }, + { + "term": "Forecast and conditions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Foreground Layers", "translation": "", @@ -8791,6 +8826,13 @@ "reference": "", "comment": "" }, + { + "term": "Hidden until weather is enabled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hide", "translation": "", @@ -9057,6 +9099,13 @@ "reference": "", "comment": "" }, + { + "term": "Hover Popouts", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "How often the server polls for new updates.", "translation": "", @@ -9736,6 +9785,20 @@ "reference": "", "comment": "" }, + { + "term": "Jump to page", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Jump to page (1 - %1)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Keep Awake", "translation": "", @@ -11647,6 +11710,13 @@ "reference": "", "comment": "" }, + { + "term": "Next page", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Night", "translation": "", @@ -12018,6 +12088,13 @@ "reference": "", "comment": "" }, + { + "term": "No excluded players configured", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No features enabled", "translation": "", @@ -12270,6 +12347,13 @@ "reference": "", "comment": "" }, + { + "term": "No screenshot provided", + "translation": "", + "context": "plugin browser no screenshot", + "reference": "", + "comment": "" + }, { "term": "No session selected", "translation": "", @@ -12648,6 +12732,13 @@ "reference": "", "comment": "" }, + { + "term": "Now playing and media controls", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Numbers", "translation": "", @@ -12837,6 +12928,13 @@ "reference": "", "comment": "" }, + { + "term": "Open Delay", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Open Dir", "translation": "", @@ -12928,6 +13026,20 @@ "reference": "", "comment": "" }, + { + "term": "Open the launcher by hovering the emerge edge (when free of bar and dock)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Open with...", "translation": "", @@ -13075,13 +13187,6 @@ "reference": "", "comment": "" }, - { - "term": "Outputs Include Missing", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Overcast", "translation": "", @@ -13782,6 +13887,13 @@ "reference": "", "comment": "" }, + { + "term": "Plugin dependency missing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Plugin disabled: %1", "translation": "", @@ -14146,6 +14258,13 @@ "reference": "", "comment": "" }, + { + "term": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Preview", "translation": "", @@ -14167,6 +14286,13 @@ "reference": "", "comment": "" }, + { + "term": "Previous page", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Primary", "translation": "", @@ -14671,6 +14797,13 @@ "reference": "", "comment": "" }, + { + "term": "Related: %1", + "translation": "", + "context": "related plugins", + "reference": "", + "comment": "" + }, { "term": "Release", "translation": "", @@ -14881,6 +15014,13 @@ "reference": "", "comment": "" }, + { + "term": "Reorder & Group", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Repeat", "translation": "", @@ -15553,10 +15693,17 @@ "reference": "", "comment": "" }, + { + "term": "Screenshot unavailable", + "translation": "", + "context": "plugin browser screenshot error", + "reference": "", + "comment": "" + }, { "term": "Scroll", "translation": "", - "context": "", + "context": "wallpaper fill mode", "reference": "", "comment": "" }, @@ -16071,6 +16218,13 @@ "reference": "", "comment": "" }, + { + "term": "Separate Appearance for Unfocused Display(s)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Separate Light & Dark Themes", "translation": "", @@ -16078,6 +16232,13 @@ "reference": "", "comment": "" }, + { + "term": "Separate appearance for unfocused displays is not supported on this compositor.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Separator", "translation": "", @@ -16190,6 +16351,13 @@ "reference": "", "comment": "" }, + { + "term": "Setting up...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Settings", "translation": "", @@ -16337,6 +16505,13 @@ "reference": "", "comment": "" }, + { + "term": "Shortcut that opens this settings window", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Shortcuts", "translation": "", @@ -16884,7 +17059,7 @@ "comment": "" }, { - "term": "Show foreground surfaces on blurred panels for stronger contrast", + "term": "Show foreground surfaces on panels for stronger contrast", "translation": "", "context": "", "reference": "", @@ -17289,6 +17464,13 @@ "reference": "", "comment": "" }, + { + "term": "Sort wallpapers", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Sorting & Layout", "translation": "", @@ -18073,6 +18255,13 @@ "reference": "", "comment": "" }, + { + "term": "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", "translation": "", @@ -18227,6 +18416,13 @@ "reference": "", "comment": "" }, + { + "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.", "translation": "", @@ -18381,6 +18577,13 @@ "reference": "", "comment": "" }, + { + "term": "Time to rest on a widget before its popout opens", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Time to wait before hiding after the pointer leaves", "translation": "", @@ -18892,6 +19095,13 @@ "reference": "", "comment": "" }, + { + "term": "Unfocused Display(s)", + "translation": "", + "context": "workspace appearance tab", + "reference": "", + "comment": "" + }, { "term": "Ungrouped", "translation": "", @@ -19382,6 +19592,13 @@ "reference": "", "comment": "" }, + { + "term": "Use different workspace colors on displays that are not focused", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use fingerprint authentication for the lock screen.", "translation": "", @@ -20271,20 +20488,6 @@ "reference": "", "comment": "" }, - { - "term": "Window Rules Include Missing", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Window Rules Not Configured", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Wipe", "translation": "", @@ -20404,6 +20607,13 @@ "reference": "", "comment": "" }, + { + "term": "Xray Blur Effect", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).", "translation": "", @@ -20411,6 +20621,13 @@ "reference": "", "comment": "" }, + { + "term": "Xray options are in Compositor → Layout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Y", "translation": "", @@ -20530,6 +20747,13 @@ "reference": "", "comment": "" }, + { + "term": "boregard is required", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "brandon", "translation": "", @@ -20607,20 +20831,6 @@ "reference": "", "comment": "" }, - { - "term": "dms/cursor config exists but is not included. Cursor settings won't apply.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "e.g. /usr/bin/my-script --flag", "translation": "", @@ -20943,6 +21153,13 @@ "reference": "", "comment": "" }, + { + "term": "reviewed", + "translation": "", + "context": "plugin status", + "reference": "", + "comment": "" + }, { "term": "seconds", "translation": "", @@ -21027,13 +21244,6 @@ "reference": "", "comment": "" }, - { - "term": "verified", - "translation": "", - "context": "plugin status", - "reference": "", - "comment": "" - }, { "term": "wtype not available - install wtype for paste support", "translation": "",