From 5c4ce86da4e53e08325ebbe2856cd6ccfe10f40f Mon Sep 17 00:00:00 2001 From: Youseffo13 <110458691+Youseffo13@users.noreply.github.com> Date: Tue, 17 Mar 2026 17:43:23 +0100 Subject: [PATCH] Wrapped all missing i18n strings (#2013) * Feat(i18n): wrapped missing strings * Feat(i18n): wrapped missing strings * feat(i18n): added pluralization to some strings * feat: updated en.json and template.json * Update en.json * Update template.json --- .../Clipboard/ClipboardKeyboardHints.qml | 4 +- quickshell/Modals/MuxModal.qml | 16 +- quickshell/Modals/NetworkInfoModal.qml | 4 +- quickshell/Modals/NetworkWiredInfoModal.qml | 4 +- .../Modules/DankBar/Popouts/BatteryPopout.qml | 14 +- .../Modules/DankDash/MediaPlayerTab.qml | 8 +- .../DankDash/Overview/MediaOverviewCard.qml | 4 +- .../DankDash/Overview/WeatherOverviewCard.qml | 2 +- quickshell/Modules/DankDash/WallpaperTab.qml | 6 +- quickshell/Modules/Greetd/GreeterContent.qml | 18 +- .../Modules/Notepad/NotepadTextEditor.qml | 12 +- .../Notifications/Center/NotificationCard.qml | 4 +- .../Center/NotificationSettings.qml | 28 +- quickshell/Modules/Settings/AboutTab.qml | 32 +- .../Modules/Settings/GammaControlTab.qml | 4 +- quickshell/Modules/Settings/KeybindsTab.qml | 9 +- .../Modules/Settings/ThemeColorsTab.qml | 2 +- quickshell/Modules/Settings/WidgetsTab.qml | 2 +- quickshell/Modules/SystemUpdatePopout.qml | 22 +- quickshell/translations/en.json | 5554 +++++++---------- quickshell/translations/template.json | 5249 +++++++--------- 21 files changed, 4824 insertions(+), 6174 deletions(-) diff --git a/quickshell/Modals/Clipboard/ClipboardKeyboardHints.qml b/quickshell/Modals/Clipboard/ClipboardKeyboardHints.qml index edfb9cb6..0285952c 100644 --- a/quickshell/Modals/Clipboard/ClipboardKeyboardHints.qml +++ b/quickshell/Modals/Clipboard/ClipboardKeyboardHints.qml @@ -26,7 +26,9 @@ Rectangle { spacing: 2 StyledText { - text: keyboardHints.enterToPaste ? I18n.tr("↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help", "Keyboard hints when enter-to-paste is enabled") : "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help" + text: keyboardHints.enterToPaste + ? I18n.tr("↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help", "Keyboard hints when enter-to-paste is enabled") + : I18n.tr("↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceText anchors.horizontalCenter: parent.horizontalCenter diff --git a/quickshell/Modals/MuxModal.qml b/quickshell/Modals/MuxModal.qml index 03d44f9a..9d193880 100644 --- a/quickshell/Modals/MuxModal.qml +++ b/quickshell/Modals/MuxModal.qml @@ -304,7 +304,17 @@ DankModal { anchors.right: parent.right anchors.rightMargin: Theme.spacingS anchors.verticalCenter: parent.verticalCenter - text: I18n.tr("%1 active, %2 filtered").arg(MuxService.sessions.length).arg(muxModal.filteredSessions.length) + text: { + const total = MuxService.sessions.length; + const filtered = muxModal.filteredSessions.length; + const activePart = total === 1 + ? I18n.tr("%1 active session").arg(total) + : I18n.tr("%1 active sessions").arg(total); + const filteredPart = filtered === 1 + ? I18n.tr("%1 filtered").arg(filtered) + : I18n.tr("%1 filtered").arg(filtered); + return activePart + ", " + filteredPart; + } font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText } @@ -468,7 +478,9 @@ DankModal { text: { var parts = [] if (modelData.windows !== "N/A") - parts.push(I18n.tr("%1 windows").arg(modelData.windows)) + parts.push(modelData.windows === 1 + ? I18n.tr("%1 window").arg(modelData.windows) + : I18n.tr("%1 windows").arg(modelData.windows)) parts.push(modelData.attached ? I18n.tr("attached") : I18n.tr("detached")) return parts.join(" \u2022 ") } diff --git a/quickshell/Modals/NetworkInfoModal.qml b/quickshell/Modals/NetworkInfoModal.qml index 4b750a90..79dbadae 100644 --- a/quickshell/Modals/NetworkInfoModal.qml +++ b/quickshell/Modals/NetworkInfoModal.qml @@ -66,7 +66,7 @@ DankModal { } StyledText { - text: `Details for "${networkSSID}"` + text: I18n.tr("Details for \"%1\"").arg(networkSSID) font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceTextMedium width: parent.width @@ -102,7 +102,7 @@ DankModal { id: detailsText width: parent.width - text: NetworkService.networkInfoDetails && NetworkService.networkInfoDetails.replace(/\\n/g, '\n') || "No information available" + text: NetworkService.networkInfoDetails && NetworkService.networkInfoDetails.replace(/\\n/g, '\n') || I18n.tr("No information available") font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceText wrapMode: Text.WordWrap diff --git a/quickshell/Modals/NetworkWiredInfoModal.qml b/quickshell/Modals/NetworkWiredInfoModal.qml index a910a5d8..4b42fdce 100644 --- a/quickshell/Modals/NetworkWiredInfoModal.qml +++ b/quickshell/Modals/NetworkWiredInfoModal.qml @@ -66,7 +66,7 @@ DankModal { } StyledText { - text: `Details for "${networkID}"` + text: I18n.tr("Details for \"%1\"").arg(networkSSID) font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceTextMedium width: parent.width @@ -102,7 +102,7 @@ DankModal { id: detailsText width: parent.width - text: NetworkService.networkWiredInfoDetails && NetworkService.networkWiredInfoDetails.replace(/\\n/g, '\n') || "No information available" + text: NetworkService.networkWiredInfoDetails && NetworkService.networkWiredInfoDetails.replace(/\\n/g, '\n') || I18n.tr("No information available") font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceText wrapMode: Text.WordWrap diff --git a/quickshell/Modules/DankBar/Popouts/BatteryPopout.qml b/quickshell/Modules/DankBar/Popouts/BatteryPopout.qml index 90fd940c..f0cb9d84 100644 --- a/quickshell/Modules/DankBar/Popouts/BatteryPopout.qml +++ b/quickshell/Modules/DankBar/Popouts/BatteryPopout.qml @@ -22,12 +22,12 @@ DankPopout { function setProfile(profile) { if (typeof PowerProfiles === "undefined") { - ToastService.showError("power-profiles-daemon not available"); + ToastService.showError(I18n.tr("power-profiles-daemon not available")); return; } PowerProfiles.profile = profile; if (PowerProfiles.profile !== profile) { - ToastService.showError("Failed to set power profile"); + ToastService.showError(I18n.tr("Failed to set power profile")); } } @@ -173,10 +173,10 @@ DankPopout { width: parent.width - Theme.iconSizeLarge - 32 - Theme.spacingM * 2 readonly property string timeInfoText: { if (!BatteryService.batteryAvailable) - return "Power profile management available"; + return I18n.tr("Power profile management available"); const time = BatteryService.formatTimeRemaining(); if (time !== "Unknown") { - return BatteryService.isCharging ? `Time until full: ${time}` : `Time remaining: ${time}`; + return BatteryService.isCharging ? I18n.tr("Time until full: %1").arg(time) : I18n.tr("Time remaining: %1").arg(time); } return ""; } @@ -188,7 +188,7 @@ DankPopout { spacing: Theme.spacingS StyledText { - text: BatteryService.batteryAvailable ? `${BatteryService.batteryLevel}%` : "Power" + text: BatteryService.batteryAvailable ? `${BatteryService.batteryLevel}%` : I18n.tr("Power") font.pixelSize: Theme.fontSizeXLarge color: { if (BatteryService.isLowBattery && !BatteryService.isCharging) { @@ -338,7 +338,7 @@ DankPopout { } StyledText { - text: BatteryService.batteryCapacity > 0 ? `${BatteryService.batteryCapacity.toFixed(1)} Wh` : "Unknown" + text: BatteryService.batteryCapacity > 0 ? `${BatteryService.batteryCapacity.toFixed(1)} Wh` : I18n.tr("Unknown") font.pixelSize: Theme.fontSizeLarge color: Theme.surfaceText font.weight: Font.Bold @@ -393,7 +393,7 @@ DankPopout { width: parent.width - percentText.width - chargingIcon.width - Theme.spacingM * 2 StyledText { - text: modelData.model || `Battery ${index + 1}` + text: modelData.model || I18n.tr("Battery %1").arg(index + 1) font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceText font.weight: Font.Medium diff --git a/quickshell/Modules/DankDash/MediaPlayerTab.qml b/quickshell/Modules/DankDash/MediaPlayerTab.qml index 17a33fc8..c8efdaa3 100644 --- a/quickshell/Modules/DankDash/MediaPlayerTab.qml +++ b/quickshell/Modules/DankDash/MediaPlayerTab.qml @@ -320,7 +320,7 @@ Item { anchors.horizontalCenter: parent.horizontalCenter StyledText { - text: activePlayer?.trackTitle || "Unknown Track" + text: activePlayer?.trackTitle || I18n.tr("Unknown Track") font.pixelSize: Theme.fontSizeLarge font.weight: Font.Bold color: Theme.surfaceText @@ -332,7 +332,7 @@ Item { } StyledText { - text: activePlayer?.trackArtist || "Unknown Artist" + text: activePlayer?.trackTitle || I18n.tr("Unknown Artist") font.pixelSize: Theme.fontSizeMedium color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.8) width: parent.width @@ -669,7 +669,7 @@ Item { const screenY = popoutY + contentOffsetY + btnY; showPlayersDropdown(Qt.point(screenX, screenY), targetScreen, buttonsOnRight, activePlayer, allPlayers); } - onEntered: sharedTooltip.show("Media Players", playerSelectorButton, 0, 0, isRightEdge ? "right" : "left") + onEntered: sharedTooltip.show(I18n.tr("Media Players"), playerSelectorButton, 0, 0, isRightEdge ? "right" : "left") onExited: sharedTooltip.hide() } } @@ -788,7 +788,7 @@ Item { const screenY = popoutY + contentOffsetY + btnY; showAudioDevicesDropdown(Qt.point(screenX, screenY), targetScreen, buttonsOnRight); } - onEntered: sharedTooltip.show("Output Device", audioDevicesButton, 0, 0, isRightEdge ? "right" : "left") + onEntered: sharedTooltip.show(I18n.tr("Output Device"), audioDevicesButton, 0, 0, isRightEdge ? "right" : "left") onExited: sharedTooltip.hide() } } diff --git a/quickshell/Modules/DankDash/Overview/MediaOverviewCard.qml b/quickshell/Modules/DankDash/Overview/MediaOverviewCard.qml index d1f8e96c..d55b87c8 100644 --- a/quickshell/Modules/DankDash/Overview/MediaOverviewCard.qml +++ b/quickshell/Modules/DankDash/Overview/MediaOverviewCard.qml @@ -88,7 +88,7 @@ Card { topPadding: Theme.spacingL StyledText { - text: activePlayer?.trackTitle || "Unknown" + text: activePlayer?.trackTitle || I18n.tr("Unknown") font.pixelSize: Theme.fontSizeSmall font.weight: Font.Medium color: Theme.surfaceText @@ -99,7 +99,7 @@ Card { } StyledText { - text: activePlayer?.trackArtist || "Unknown Artist" + text: activePlayer?.trackArtist || I18n.tr("Unknown Artist") font.pixelSize: Theme.fontSizeSmall color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7) width: parent.width diff --git a/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml b/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml index 8d3a5a7f..0bba92ee 100644 --- a/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml +++ b/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml @@ -28,7 +28,7 @@ Card { } StyledText { - text: WeatherService.weather.loading ? "Loading..." : "No Weather" + text: WeatherService.weather.loading ? I18n.tr("Loading...") : I18n.tr("No Weather") font.pixelSize: Theme.fontSizeSmall color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7) anchors.horizontalCenter: parent.horizontalCenter diff --git a/quickshell/Modules/DankDash/WallpaperTab.qml b/quickshell/Modules/DankDash/WallpaperTab.qml index 2f55e5c8..1f35b001 100644 --- a/quickshell/Modules/DankDash/WallpaperTab.qml +++ b/quickshell/Modules/DankDash/WallpaperTab.qml @@ -538,7 +538,11 @@ Item { StyledText { anchors.verticalCenter: parent.verticalCenter - text: wallpaperFolderModel.count > 0 ? `${wallpaperFolderModel.count} wallpapers • ${currentPage + 1} / ${totalPages}` : "No wallpapers" + text: wallpaperFolderModel.count > 0 + ? (wallpaperFolderModel.count === 1 + ? I18n.tr("%1 wallpaper • %2 / %3").arg(wallpaperFolderModel.count).arg(currentPage + 1).arg(totalPages) + : I18n.tr("%1 wallpapers • %2 / %3").arg(wallpaperFolderModel.count).arg(currentPage + 1).arg(totalPages)) + : I18n.tr("No wallpapers") font.pixelSize: 14 color: Theme.surfaceText opacity: 0.7 diff --git a/quickshell/Modules/Greetd/GreeterContent.qml b/quickshell/Modules/Greetd/GreeterContent.qml index b6b8fb47..c20c9bb4 100644 --- a/quickshell/Modules/Greetd/GreeterContent.qml +++ b/quickshell/Modules/Greetd/GreeterContent.qml @@ -230,19 +230,19 @@ Item { function currentAuthMessage() { if (GreeterState.pamState === "error") - return "Authentication error - try again"; + return I18n.tr("Authentication error - try again"); if (GreeterState.pamState === "max") - return "Too many failed attempts - account may be locked"; + return I18n.tr("Too many failed attempts - account may be locked"); if (GreeterState.pamState === "fail") { if (passwordAttemptLimitHint > 0) { const attempt = Math.max(1, Math.min(passwordFailureCount, passwordAttemptLimitHint)); const remaining = Math.max(passwordAttemptLimitHint - attempt, 0); if (remaining > 0) { - return "Incorrect password - attempt " + attempt + " of " + passwordAttemptLimitHint + " (lockout may follow)"; + return I18n.tr("Incorrect password - attempt %1 of %2 (lockout may follow)").arg(attempt).arg(passwordAttemptLimitHint); } - return "Incorrect password - next failures may trigger account lockout"; + return I18n.tr("Incorrect password - next failures may trigger account lockout"); } - return "Incorrect password"; + return I18n.tr("Incorrect password"); } return ""; } @@ -1012,15 +1012,15 @@ Item { anchors.verticalCenter: parent.verticalCenter text: { if (GreeterState.unlocking) { - return "Logging in..."; + return I18n.tr("Logging in..."); } if (Greetd.state !== GreetdState.Inactive && !awaitingExternalAuth && !pendingPasswordResponse) { - return "Authenticating..."; + return I18n.tr("Authenticating..."); } if (GreeterState.showPasswordInput) { - return "Password..."; + return I18n.tr("Password..."); } - return "Username..."; + return I18n.tr("Username..."); } color: (GreeterState.unlocking || (Greetd.state !== GreetdState.Inactive && !awaitingExternalAuth && !pendingPasswordResponse)) ? Theme.primary : Theme.outline font.pixelSize: Theme.fontSizeMedium diff --git a/quickshell/Modules/Notepad/NotepadTextEditor.qml b/quickshell/Modules/Notepad/NotepadTextEditor.qml index f61ac2c2..4d6169dc 100644 --- a/quickshell/Modules/Notepad/NotepadTextEditor.qml +++ b/quickshell/Modules/Notepad/NotepadTextEditor.qml @@ -832,13 +832,21 @@ Column { spacing: Theme.spacingL StyledText { - text: textArea.text.length > 0 ? I18n.tr("%1 characters").arg(textArea.text.length) : I18n.tr("Empty") + text: { + const len = textArea.text.length; + if (len === 0) return I18n.tr("Empty"); + return len === 1 + ? I18n.tr("%1 character").arg(len) + : I18n.tr("%1 characters").arg(len); + } font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceTextMedium } StyledText { - text: I18n.tr("Lines: %1").arg(textArea.lineCount) + text: textArea.lineCount === 1 + ? I18n.tr("Line: %1").arg(textArea.lineCount) + : I18n.tr("Lines: %1").arg(textArea.lineCount) font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceTextMedium visible: textArea.text.length > 0 diff --git a/quickshell/Modules/Notifications/Center/NotificationCard.qml b/quickshell/Modules/Notifications/Center/NotificationCard.qml index 1838f10a..7e404df5 100644 --- a/quickshell/Modules/Notifications/Center/NotificationCard.qml +++ b/quickshell/Modules/Notifications/Center/NotificationCard.qml @@ -713,7 +713,7 @@ Rectangle { StyledText { id: expandedActionText text: { - const baseText = modelData.text || "Open"; + const baseText = modelData.text || I18n.tr("Open"); if (keyboardNavigationActive && (isGroupSelected || selectedNotificationIndex >= 0)) return `${baseText} (${index + 1})`; return baseText; @@ -849,7 +849,7 @@ Rectangle { StyledText { id: collapsedActionText text: { - const baseText = modelData.text || "Open"; + const baseText = modelData.text || I18n.tr("Open"); if (keyboardNavigationActive && isGroupSelected) { return `${baseText} (${index + 1})`; } diff --git a/quickshell/Modules/Notifications/Center/NotificationSettings.qml b/quickshell/Modules/Notifications/Center/NotificationSettings.qml index 2281f560..749ca666 100644 --- a/quickshell/Modules/Notifications/Center/NotificationSettings.qml +++ b/quickshell/Modules/Notifications/Center/NotificationSettings.qml @@ -85,7 +85,7 @@ Rectangle { function getTimeoutText(value) { if (value === undefined || value === null || isNaN(value)) { - return "5 seconds"; + return I18n.tr("5 seconds"); } for (let i = 0; i < timeoutOptions.length; i++) { @@ -94,15 +94,15 @@ Rectangle { } } if (value === 0) { - return "Never"; + return I18n.tr("Never"); } if (value < 1000) { return value + "ms"; } if (value < 60000) { - return Math.round(value / 1000) + " seconds"; + return Math.round(value / 1000) + " " + I18n.tr("seconds"); } - return Math.round(value / 60000) + " minutes"; + return Math.round(value / 60000) + " " + I18n.tr("minutes"); } Column { @@ -169,7 +169,7 @@ Rectangle { DankDropdown { text: I18n.tr("Low Priority") - description: "Timeout for low priority notifications" + description: I18n.tr("Timeout for low priority notifications") currentValue: getTimeoutText(SettingsData.notificationTimeoutLow) options: timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -184,7 +184,7 @@ Rectangle { DankDropdown { text: I18n.tr("Normal Priority") - description: "Timeout for normal priority notifications" + description: I18n.tr("Timeout for normal priority notifications") currentValue: getTimeoutText(SettingsData.notificationTimeoutNormal) options: timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -199,7 +199,7 @@ Rectangle { DankDropdown { text: I18n.tr("Critical Priority") - description: "Timeout for critical priority notifications" + description: I18n.tr("Timeout for critical priority notifications") currentValue: getTimeoutText(SettingsData.notificationTimeoutCritical) options: timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -225,6 +225,8 @@ Rectangle { Row { id: overlayRow anchors.left: parent.left + anchors.right: overlayToggle.left + anchors.rightMargin: Theme.spacingM anchors.verticalCenter: parent.verticalCenter spacing: Theme.spacingM @@ -238,17 +240,22 @@ Rectangle { Column { spacing: 2 anchors.verticalCenter: parent.verticalCenter + width: overlayRow.width - Theme.iconSizeSmall - Theme.spacingM StyledText { + width: parent.width text: I18n.tr("Notification Overlay") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceText + wrapMode: Text.Wrap } StyledText { + width: parent.width text: I18n.tr("Display all priorities over fullscreen apps") font.pixelSize: Theme.fontSizeSmall - 1 color: Theme.surfaceVariantText + wrapMode: Text.Wrap } } } @@ -269,6 +276,8 @@ Rectangle { Row { id: privacyRow anchors.left: parent.left + anchors.right: privacyToggle.left + anchors.rightMargin: Theme.spacingM anchors.verticalCenter: parent.verticalCenter spacing: Theme.spacingM @@ -282,17 +291,22 @@ Rectangle { Column { spacing: 2 anchors.verticalCenter: parent.verticalCenter + width: privacyRow.width - Theme.iconSizeSmall - Theme.spacingM StyledText { + width: parent.width text: I18n.tr("Privacy Mode") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceText + wrapMode: Text.Wrap } StyledText { + width: parent.width text: I18n.tr("Hide notification content until expanded") font.pixelSize: Theme.fontSizeSmall - 1 color: Theme.surfaceVariantText + wrapMode: Text.Wrap } } } diff --git a/quickshell/Modules/Settings/AboutTab.qml b/quickshell/Modules/Settings/AboutTab.qml index ce188eda..67c2c21f 100644 --- a/quickshell/Modules/Settings/AboutTab.qml +++ b/quickshell/Modules/Settings/AboutTab.qml @@ -68,22 +68,22 @@ Item { property string compositorTooltip: { if (isHyprland) - return "Hyprland Website"; + return I18n.tr("Hyprland Website"); if (isSway) - return "Sway Website"; + return I18n.tr("Sway Website"); if (isScroll) - return "Scroll Github"; + return I18n.tr("Scroll GitHub"); if (isMiracle) - return "Miracle WM GitHub"; + return I18n.tr("Scroll GitHub"); if (isDwl) - return "mangowc GitHub"; + return I18n.tr("mangowc GitHub"); if (isLabwc) - return "LabWC Website"; - return "niri GitHub"; + return I18n.tr("LabWC Website"); + return I18n.tr("niri GitHub"); } property string dmsDiscordUrl: "https://discord.gg/ppWTpKmPgT" - property string dmsDiscordTooltip: "niri/dms Discord" + property string dmsDiscordTooltip: I18n.tr("niri/dms Discord") property string compositorDiscordUrl: { if (isHyprland) @@ -95,17 +95,17 @@ Item { property string compositorDiscordTooltip: { if (isHyprland) - return "Hyprland Discord Server"; + return I18n.tr("Hyprland Discord Server"); if (isDwl) - return "mangowc Discord Server"; + return I18n.tr("mangowc Discord Server"); return ""; } property string redditUrl: "https://reddit.com/r/niri" - property string redditTooltip: "r/niri Subreddit" + property string redditTooltip: I18n.tr("r/niri Subreddit") property string ircUrl: "https://web.libera.chat/gamja/?channels=#labwc" - property string ircTooltip: "LabWC IRC Channel" + property string ircTooltip: I18n.tr("LabWC IRC Channel") property bool showMatrix: isNiri && !isHyprland && !isSway && !isScroll && !isMiracle && !isDwl && !isLabwc property bool showCompositorDiscord: isHyprland || isDwl @@ -396,7 +396,7 @@ Item { visible: showMatrix property bool hovered: false - property string tooltipText: "niri Matrix Chat" + property string tooltipText: I18n.tr("niri Matrix Chat") Image { anchors.fill: parent @@ -582,9 +582,7 @@ Item { } StyledText { - text: I18n.tr(`dms is a highly customizable, modern desktop shell with a material 3 inspired design. -

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language. - `) + text: I18n.tr('dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.').arg(Theme.primary) textFormat: Text.RichText font.pixelSize: Theme.fontSizeMedium linkColor: Theme.primary @@ -825,7 +823,7 @@ Item { StyledText { anchors.horizontalCenter: parent.horizontalCenter - text: `MIT License` + text: I18n.tr('MIT License').arg(Theme.surfaceVariantText) font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText textFormat: Text.RichText diff --git a/quickshell/Modules/Settings/GammaControlTab.qml b/quickshell/Modules/Settings/GammaControlTab.qml index 5ac4ecc0..7d08c5af 100644 --- a/quickshell/Modules/Settings/GammaControlTab.qml +++ b/quickshell/Modules/Settings/GammaControlTab.qml @@ -181,11 +181,11 @@ Item { anchors.horizontalCenter: parent.horizontalCenter model: [ { - "text": "Time", + "text": I18n.tr("Time"), "icon": "access_time" }, { - "text": "Location", + "text": I18n.tr("Location"), "icon": "place" } ] diff --git a/quickshell/Modules/Settings/KeybindsTab.qml b/quickshell/Modules/Settings/KeybindsTab.qml index 77380fc0..6bf5d547 100644 --- a/quickshell/Modules/Settings/KeybindsTab.qml +++ b/quickshell/Modules/Settings/KeybindsTab.qml @@ -542,7 +542,14 @@ Item { } StyledText { - text: KeybindsService.loading ? I18n.tr("Shortcuts") : I18n.tr("Shortcuts (%1)").arg(keybindsTab._filteredBinds.length) + text: { + if (KeybindsService.loading) + return I18n.tr("Shortcuts"); + const count = keybindsTab._filteredBinds.length; + return count === 1 + ? I18n.tr("Shortcut (%1)").arg(count) + : I18n.tr("Shortcuts (%1)").arg(count); + } font.pixelSize: Theme.fontSizeMedium font.weight: Font.Medium color: Theme.surfaceText diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index c008c3f8..1708e500 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -2854,7 +2854,7 @@ Item { } StyledText { - text: I18n.tr(`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.`) + text: I18n.tr('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.').arg(Theme.primary) textFormat: Text.RichText linkColor: Theme.primary onLinkActivated: url => Qt.openUrlExternally(url) diff --git a/quickshell/Modules/Settings/WidgetsTab.qml b/quickshell/Modules/Settings/WidgetsTab.qml index 0cdc2eff..99031977 100644 --- a/quickshell/Modules/Settings/WidgetsTab.qml +++ b/quickshell/Modules/Settings/WidgetsTab.qml @@ -138,7 +138,7 @@ Item { { "id": "gpuTemp", "text": I18n.tr("GPU Temperature"), - "description": "", + "description": I18n.tr("GPU temperature display"), "icon": "auto_awesome_mosaic", "warning": !DgopService.dgopAvailable ? I18n.tr("Requires 'dgop' tool") : I18n.tr("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."), "enabled": DgopService.dgopAvailable diff --git a/quickshell/Modules/SystemUpdatePopout.qml b/quickshell/Modules/SystemUpdatePopout.qml index 92d31078..49cdb930 100644 --- a/quickshell/Modules/SystemUpdatePopout.qml +++ b/quickshell/Modules/SystemUpdatePopout.qml @@ -67,12 +67,14 @@ DankPopout { anchors.verticalCenter: parent.verticalCenter text: { if (SystemUpdateService.isChecking) - return "Checking..."; + return I18n.tr("Checking..."); if (SystemUpdateService.hasError) - return "Error"; + return I18n.tr("Error"); if (SystemUpdateService.updateCount === 0) - return "Up to date"; - return SystemUpdateService.updateCount + " updates"; + return I18n.tr("Up to date"); + return SystemUpdateService.updateCount === 1 + ? I18n.tr("%1 update").arg(SystemUpdateService.updateCount) + : I18n.tr("%1 updates").arg(SystemUpdateService.updateCount); } font.pixelSize: Theme.fontSizeMedium color: { @@ -136,18 +138,20 @@ DankPopout { width: parent.width text: { if (SystemUpdateService.hasError) { - return "Failed to check for updates:\n" + SystemUpdateService.errorMessage; + return I18n.tr("Failed to check for updates:\n%1").arg(SystemUpdateService.errorMessage); } if (!SystemUpdateService.helperAvailable) { - return "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates."; + return I18n.tr("No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates."); } if (SystemUpdateService.isChecking) { - return "Checking for updates..."; + return I18n.tr("Checking for updates..."); } if (SystemUpdateService.updateCount === 0) { - return "Your system is up to date!"; + return I18n.tr("Your system is up to date!"); } - return `Found ${SystemUpdateService.updateCount} packages to update:`; + return SystemUpdateService.updateCount === 1 + ? I18n.tr("Found %1 package to update:").arg(SystemUpdateService.updateCount) + : I18n.tr("Found %1 packages to update:").arg(SystemUpdateService.updateCount); } font.pixelSize: Theme.fontSizeMedium color: { diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index 60724464..fdadcba0 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -5,28 +5,22 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:300, Modules/Settings/TypographyMotionTab.qml:384", "comment": "" }, - { - "term": "%1 DMS bind(s) may be overridden by config binds that come after the include.", - "context": "%1 DMS bind(s) may be overridden by config binds that come after the include.", - "reference": "Modules/Settings/KeybindsTab.qml:327", - "comment": "" - }, { "term": "%1 Sessions", "context": "%1 Sessions", - "reference": "Modals/MuxModal.qml:321", + "reference": "Modals/MuxModal.qml:297", "comment": "" }, { - "term": "%1 active, %2 filtered", - "context": "%1 active, %2 filtered", - "reference": "Modals/MuxModal.qml:331", + "term": "%1 active session", + "context": "%1 active session", + "reference": "Modals/MuxModal.qml:311", "comment": "" }, { - "term": "%1 adapter(s), none connected", - "context": "%1 adapter(s), none connected", - "reference": "Modules/Settings/NetworkTab.qml:343", + "term": "%1 active sessions", + "context": "%1 active sessions", + "reference": "Modals/MuxModal.qml:312", "comment": "" }, { @@ -42,21 +36,15 @@ "comment": "" }, { - "term": "%1 Animation Speed", - "context": "%1 Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:300, Modules/Settings/TypographyMotionTab.qml:384", + "term": "%1 character", + "context": "%1 character", + "reference": "Modules/Notepad/NotepadTextEditor.qml:839", "comment": "" }, { "term": "%1 characters", "context": "%1 characters", - "reference": "Modules/Notepad/NotepadTextEditor.qml:835", - "comment": "" - }, - { - "term": "%1 class(es)", - "context": "%1 class(es)", - "reference": "Modules/Settings/PrinterTab.qml:1248", + "reference": "Modules/Notepad/NotepadTextEditor.qml:840", "comment": "" }, { @@ -71,12 +59,6 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:348, Modules/Settings/TypographyMotionTab.qml:432", "comment": "" }, - { - "term": "%1 days ago", - "context": "%1 days ago", - "reference": "Services/NotificationService.qml:256", - "comment": "" - }, { "term": "%1 disconnected", "context": "%1 disconnected", @@ -95,24 +77,12 @@ "reference": "Modules/Settings/DankBarTab.qml:315", "comment": "" }, - { - "term": "%1 display(s)", - "context": "%1 display(s)", - "reference": "Modules/Settings/DankBarTab.qml:416", - "comment": "" - }, { "term": "%1 displays", "context": "%1 displays", "reference": "Modules/Settings/DankBarTab.qml:316", "comment": "" }, - { - "term": "%1 DMS bind(s) may be overridden by config binds that come after the include.", - "context": "%1 DMS bind(s) may be overridden by config binds that come after the include.", - "reference": "Modules/Settings/KeybindsTab.qml:327", - "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.", @@ -125,6 +95,12 @@ "reference": "Modules/Settings/WindowRulesTab.qml:355", "comment": "" }, + { + "term": "%1 filtered", + "context": "%1 filtered", + "reference": "Modals/MuxModal.qml:314, Modals/MuxModal.qml:315", + "comment": "" + }, { "term": "%1 is now included in config", "context": "%1 is now included in config", @@ -137,24 +113,12 @@ "reference": "Modals/Greeter/GreeterDoctorPage.qml:232", "comment": "" }, - { - "term": "%1 issue(s) found", - "context": "greeter doctor page error count", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:228", - "comment": "" - }, { "term": "%1 issues found", "context": "greeter doctor page error count", "reference": "Modals/Greeter/GreeterDoctorPage.qml:233", "comment": "" }, - { - "term": "%1 job(s)", - "context": "%1 job(s)", - "reference": "Modules/Settings/PrinterTab.qml:701", - "comment": "" - }, { "term": "%1 notifications", "context": "%1 notifications", @@ -162,15 +126,15 @@ "comment": "" }, { - "term": "%1 printer(s)", - "context": "%1 printer(s)", - "reference": "Modules/Settings/PrinterTab.qml:551, Modules/Settings/PrinterTab.qml:1313", + "term": "%1 update", + "context": "%1 update", + "reference": "Modules/SystemUpdatePopout.qml:76", "comment": "" }, { - "term": "%1 Sessions", - "context": "%1 Sessions", - "reference": "Modals/MuxModal.qml:322", + "term": "%1 updates", + "context": "%1 updates", + "reference": "Modules/SystemUpdatePopout.qml:77", "comment": "" }, { @@ -179,16 +143,34 @@ "reference": "Modules/Settings/ThemeBrowser.qml:516, Modules/Settings/ThemeBrowser.qml:517", "comment": "" }, + { + "term": "%1 wallpaper • %2 / %3", + "context": "%1 wallpaper • %2 / %3", + "reference": "Modules/DankDash/WallpaperTab.qml:543", + "comment": "" + }, + { + "term": "%1 wallpapers • %2 / %3", + "context": "%1 wallpapers • %2 / %3", + "reference": "Modules/DankDash/WallpaperTab.qml:544", + "comment": "" + }, { "term": "%1 widgets", "context": "%1 widgets", "reference": "Modules/Settings/DankBarTab.qml:337", "comment": "" }, + { + "term": "%1 window", + "context": "%1 window", + "reference": "Modals/MuxModal.qml:482", + "comment": "" + }, { "term": "%1 windows", "context": "%1 windows", - "reference": "Modals/MuxModal.qml:493", + "reference": "Modals/MuxModal.qml:483", "comment": "" }, { @@ -236,37 +218,31 @@ { "term": "1 day", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:839, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:857, Modules/Settings/ClipboardTab.qml:103", - "comment": "" - }, - { - "term": "1 device connected", - "context": "KDE Connect status single device", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:37", + "reference": "Modules/Settings/ClipboardTab.qml:103, Modules/Settings/NotificationsTab.qml:839, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:857", "comment": "" }, { "term": "1 event", "context": "1 event", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:142", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:178", "comment": "" }, { "term": "1 hour", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "1 hour 30 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "1 minute", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:69", + "reference": "Modules/Settings/NotificationsTab.qml:65, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996, Modules/Notifications/Center/NotificationSettings.qml:69", "comment": "" }, { @@ -278,19 +254,19 @@ { "term": "1 second", "context": "1 second", - "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:37, Modules/Notifications/Center/NotificationSettings.qml:41", + "reference": "Modules/Settings/NotificationsTab.qml:37, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Notifications/Center/NotificationSettings.qml:41", "comment": "" }, { "term": "10 minutes", "context": "10 minutes", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:77, Modules/Notifications/Center/NotificationSettings.qml:81", + "reference": "Modules/Settings/NotificationsTab.qml:77, Modules/Settings/PowerSleepTab.qml:10, Modules/Notifications/Center/NotificationSettings.qml:81", "comment": "" }, { "term": "10 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:53, Modules/Notifications/Center/NotificationSettings.qml:57", + "reference": "Modules/Settings/NotificationsTab.qml:53, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/WallpaperTab.qml:996, Modules/Notifications/Center/NotificationSettings.qml:57", "comment": "" }, { @@ -308,37 +284,37 @@ { "term": "14 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:845, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:863, Modules/Settings/ClipboardTab.qml:115", + "reference": "Modules/Settings/ClipboardTab.qml:115, Modules/Settings/NotificationsTab.qml:845, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:863", "comment": "" }, { "term": "15 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "15 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:57, Modules/Notifications/Center/NotificationSettings.qml:61", + "reference": "Modules/Settings/NotificationsTab.qml:57, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/WallpaperTab.qml:996, Modules/Notifications/Center/NotificationSettings.qml:61", "comment": "" }, { "term": "180°", "context": "180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1797, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1818", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1797, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1818, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { "term": "2 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "2 minutes", "context": "2 minutes", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:69, Modules/Notifications/Center/NotificationSettings.qml:73", + "reference": "Modules/Settings/NotificationsTab.qml:69, Modules/Settings/PowerSleepTab.qml:10, Modules/Notifications/Center/NotificationSettings.qml:73", "comment": "" }, { @@ -356,13 +332,7 @@ { "term": "20 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", - "comment": "" - }, - { - "term": "24-hour clock", - "context": "24-hour clock", - "reference": "Modules/Settings/GreeterTab.qml:601", + "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { @@ -371,6 +341,12 @@ "reference": "Modules/Settings/TimeWeatherTab.qml:53", "comment": "" }, + { + "term": "24-hour clock", + "context": "24-hour clock", + "reference": "Modules/Settings/GreeterTab.qml:601", + "comment": "" + }, { "term": "24-hour format", "context": "24-hour format", @@ -392,19 +368,19 @@ { "term": "270°", "context": "270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1799, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1820", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1799, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1820, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { "term": "3 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:841, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:859, Modules/Settings/ClipboardTab.qml:107", + "reference": "Modules/Settings/ClipboardTab.qml:107, Modules/Settings/NotificationsTab.qml:841, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:859", "comment": "" }, { "term": "3 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { @@ -416,25 +392,25 @@ { "term": "3 seconds", "context": "3 seconds", - "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:41, Modules/Notifications/Center/NotificationSettings.qml:45", + "reference": "Modules/Settings/NotificationsTab.qml:41, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Notifications/Center/NotificationSettings.qml:45", "comment": "" }, { "term": "30 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:847, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:865, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", + "reference": "Modules/Settings/ClipboardTab.qml:119, Modules/Settings/NotificationsTab.qml:847, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:865, Modules/Notifications/Center/HistoryNotificationList.qml:112", "comment": "" }, { "term": "30 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "30 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:61, Modules/Notifications/Center/NotificationSettings.qml:65", + "reference": "Modules/Settings/NotificationsTab.qml:61, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/WallpaperTab.qml:996, Modules/Notifications/Center/NotificationSettings.qml:65", "comment": "" }, { @@ -476,13 +452,13 @@ { "term": "5 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/WallpaperTab.qml:1020, Modules/Settings/WallpaperTab.qml:1044, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:73, Modules/Notifications/Center/NotificationSettings.qml:77", + "reference": "Modules/Settings/NotificationsTab.qml:73, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/WallpaperTab.qml:996, Modules/Settings/WallpaperTab.qml:1020, Modules/Settings/WallpaperTab.qml:1044, Modules/Notifications/Center/NotificationSettings.qml:77", "comment": "" }, { "term": "5 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Notifications/Center/NotificationSettings.qml:49", + "reference": "Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/WallpaperTab.qml:996, Modules/Notifications/Center/NotificationSettings.qml:49, Modules/Notifications/Center/NotificationSettings.qml:88", "comment": "" }, { @@ -512,7 +488,7 @@ { "term": "7 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:843, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:861, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", + "reference": "Modules/Settings/ClipboardTab.qml:111, Modules/Settings/NotificationsTab.qml:843, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:861, Modules/Notifications/Center/HistoryNotificationList.qml:107", "comment": "" }, { @@ -542,7 +518,13 @@ { "term": "90°", "context": "90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1795, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1816", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1795, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1816, Modules/Settings/DisplayConfig/OutputCard.qml:257", + "comment": "" + }, + { + "term": "MIT License", + "context": "MIT License", + "reference": "Modules/Settings/AboutTab.qml:826", "comment": "" }, { @@ -557,6 +539,18 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:55", "comment": "" }, + { + "term": "AC Power", + "context": "AC Power", + "reference": "Modules/Settings/PowerSleepTab.qml:59", + "comment": "" + }, + { + "term": "API", + "context": "API", + "reference": "Modules/Settings/AboutTab.qml:673", + "comment": "" + }, { "term": "Aborted", "context": "Aborted", @@ -566,25 +560,7 @@ { "term": "About", "context": "About", - "reference": "Modals/Settings/SettingsSidebar.qml:316, Modules/Settings/AboutTab.qml:576", - "comment": "" - }, - { - "term": "AC Power", - "context": "AC Power", - "reference": "Modules/Settings/PowerSleepTab.qml:59", - "comment": "" - }, - { - "term": "Accent Color", - "context": "Accent Color", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:36", - "comment": "" - }, - { - "term": "Accept", - "context": "KDE Connect accept pairing button", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:182, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:370", + "reference": "Modules/Settings/AboutTab.qml:576, Modals/Settings/SettingsSidebar.qml:322", "comment": "" }, { @@ -635,12 +611,6 @@ "reference": "Widgets/DankIconPicker.qml:51", "comment": "" }, - { - "term": "actions", - "context": "actions", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:391", - "comment": "" - }, { "term": "Activate", "context": "Activate", @@ -659,22 +629,16 @@ "reference": "Modules/Settings/GreeterTab.qml:169", "comment": "" }, - { - "term": "Activation", - "context": "Activation", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:97", - "comment": "" - }, { "term": "Active", "context": "Active", - "reference": "Modules/Settings/NetworkTab.qml:754, Modules/Settings/ThemeColorsTab.qml:1398, Modules/ControlCenter/Details/AudioOutputDetail.qml:263, Modules/ControlCenter/Details/AudioInputDetail.qml:254", + "reference": "Modules/Settings/NetworkTab.qml:754, Modules/Settings/ThemeColorsTab.qml:1398, Modules/ControlCenter/Details/AudioInputDetail.qml:254, Modules/ControlCenter/Details/AudioOutputDetail.qml:263", "comment": "" }, { "term": "Active Color", "context": "Active Color", - "reference": "Modules/Settings/WidgetsTabSection.qml:2282", + "reference": "Modules/Settings/WidgetsTabSection.qml:2627", "comment": "" }, { @@ -716,25 +680,7 @@ { "term": "Add", "context": "Add", - "reference": "Widgets/KeybindItem.qml:1830, Modules/Settings/DesktopWidgetsTab.qml:152, Modules/Plugins/ListSettingWithInput.qml:126", - "comment": "" - }, - { - "term": "Add a border around the dock", - "context": "Add a border around the dock", - "reference": "Modules/Settings/DockTab.qml:591", - "comment": "" - }, - { - "term": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", - "context": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", - "reference": "Modules/Settings/LauncherTab.qml:316", - "comment": "" - }, - { - "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": "Widgets/KeybindItem.qml:1830, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:152", "comment": "" }, { @@ -743,12 +689,6 @@ "reference": "Modules/Settings/DankBarTab.qml:228", "comment": "" }, - { - "term": "Add by Address", - "context": "Toggle button to manually add a printer by IP or hostname", - "reference": "Modules/Settings/PrinterTab.qml:390", - "comment": "" - }, { "term": "Add Desktop Widget", "context": "Add Desktop Widget", @@ -770,7 +710,7 @@ { "term": "Add Widget", "context": "Add Widget", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:95, Modules/Settings/WidgetsTabSection.qml:772, Modules/Settings/WidgetSelectionPopup.qml:93, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:95, Modules/Settings/WidgetSelectionPopup.qml:93, Modules/Settings/WidgetsTabSection.qml:773, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", "comment": "" }, { @@ -779,6 +719,30 @@ "reference": "Modules/Settings/WidgetSelectionPopup.qml:205", "comment": "" }, + { + "term": "Add a border around the dock", + "context": "Add a border around the dock", + "reference": "Modules/Settings/DockTab.qml:591", + "comment": "" + }, + { + "term": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", + "context": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", + "reference": "Modules/Settings/LauncherTab.qml:316", + "comment": "" + }, + { + "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", + "comment": "" + }, + { + "term": "Add by Address", + "context": "Toggle button to manually add a printer by IP or hostname", + "reference": "Modules/Settings/PrinterTab.qml:390", + "comment": "" + }, { "term": "Adjust the number of columns in grid view mode.", "context": "Adjust the number of columns in grid view mode.", @@ -794,7 +758,7 @@ { "term": "Advanced", "context": "Advanced", - "reference": "Modules/Settings/PowerSleepTab.qml:579, Modules/Settings/ClipboardTab.qml:445", + "reference": "Modules/Settings/ClipboardTab.qml:445, Modules/Settings/PowerSleepTab.qml:579", "comment": "" }, { @@ -806,7 +770,13 @@ { "term": "All", "context": "notification history filter", - "reference": "Services/AppSearchService.qml:684, Services/AppSearchService.qml:705, Modals/ProcessListModal.qml:377, Modals/DankLauncherV2/LauncherContent.qml:307, Modals/DankLauncherV2/LauncherContent.qml:584, Modals/DankLauncherV2/Controller.qml:625, Modules/Settings/KeybindsTab.qml:410, Modules/Settings/WidgetsTabSection.qml:2016, Modules/Settings/WidgetsTabSection.qml:2070, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Notifications/Center/HistoryNotificationList.qml:87, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101", + "reference": "Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:698, Services/AppSearchService.qml:719, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/KeybindsTab.qml:410, Modules/Settings/WidgetsTabSection.qml:2361, Modules/Settings/WidgetsTabSection.qml:2415, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:87, Modals/DankLauncherV2/Controller.qml:628, Modals/DankLauncherV2/LauncherContent.qml:337, Modals/DankLauncherV2/LauncherContent.qml:614", + "comment": "" + }, + { + "term": "All Monitors", + "context": "All Monitors", + "reference": "Modules/Settings/LockScreenTab.qml:357, Modules/Settings/LockScreenTab.qml:367, Modules/Settings/LockScreenTab.qml:377, Modules/Settings/LockScreenTab.qml:381", "comment": "" }, { @@ -818,19 +788,13 @@ { "term": "All day", "context": "All day", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:407", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:496", "comment": "" }, { "term": "All displays", "context": "All displays", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:313, Modules/Settings/DankBarTab.qml:450, Modules/Plugins/PluginSettings.qml:255, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", - "comment": "" - }, - { - "term": "All Monitors", - "context": "All Monitors", - "reference": "Modules/Settings/LockScreenTab.qml:357, Modules/Settings/LockScreenTab.qml:367, Modules/Settings/LockScreenTab.qml:377, Modules/Settings/LockScreenTab.qml:381", + "reference": "Modules/Plugins/PluginSettings.qml:255, Modules/Settings/DankBarTab.qml:313, Modules/Settings/DankBarTab.qml:450, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", "comment": "" }, { @@ -852,9 +816,9 @@ "comment": "" }, { - "term": "Always Active", - "context": "Always Active", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106", + "term": "Always Show Percentage", + "context": "Always Show Percentage", + "reference": "Modules/Settings/OSDTab.qml:78", "comment": "" }, { @@ -866,7 +830,7 @@ { "term": "Always on icons", "context": "Always on icons", - "reference": "Modules/Settings/WidgetsTabSection.qml:1284", + "reference": "Modules/Settings/WidgetsTabSection.qml:1629", "comment": "" }, { @@ -875,12 +839,6 @@ "reference": "Modules/Settings/WorkspacesTab.qml:51", "comment": "" }, - { - "term": "Always Show Percentage", - "context": "Always Show Percentage", - "reference": "Modules/Settings/OSDTab.qml:78", - "comment": "" - }, { "term": "Always show the dock when niri's overview is open", "context": "Always show the dock when niri's overview is open", @@ -902,7 +860,7 @@ { "term": "Analog", "context": "Analog", - "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:33, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:42, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:14", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:14, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:33, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:42", "comment": "" }, { @@ -926,7 +884,7 @@ { "term": "Animation Speed", "context": "Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:197, Modules/Settings/NotificationsTab.qml:316", + "reference": "Modules/Settings/NotificationsTab.qml:316, Modules/Settings/TypographyMotionTab.qml:197", "comment": "" }, { @@ -941,30 +899,24 @@ "reference": "Modals/WifiPasswordModal.qml:590", "comment": "" }, - { - "term": "API", - "context": "API", - "reference": "Modules/Settings/AboutTab.qml:675", - "comment": "" - }, { "term": "App Customizations", "context": "App Customizations", "reference": "Modules/Settings/LauncherTab.qml:958", "comment": "" }, - { - "term": "App ID regex (e.g. ^firefox$)", - "context": "App ID regex (e.g. ^firefox$)", - "reference": "Modals/WindowRuleModal.qml:474", - "comment": "" - }, { "term": "App ID Substitutions", "context": "App ID Substitutions", "reference": "Modules/Settings/RunningAppsTab.qml:25", "comment": "" }, + { + "term": "App ID regex (e.g. ^firefox$)", + "context": "App ID regex (e.g. ^firefox$)", + "reference": "Modals/WindowRuleModal.qml:474", + "comment": "" + }, { "term": "App Launcher", "context": "App Launcher", @@ -998,7 +950,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modals/DankLauncherV2/Controller.qml:150, Modules/Settings/ThemeColorsTab.qml:2132, Modules/Dock/DockLauncherButton.qml:25", + "reference": "Modules/Dock/DockLauncherButton.qml:25, Modules/Settings/ThemeColorsTab.qml:2132, Modals/DankLauncherV2/Controller.qml:150", "comment": "" }, { @@ -1010,13 +962,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2801", + "reference": "Modules/Settings/ThemeColorsTab.qml:2805", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2835", + "reference": "Modules/Settings/ThemeColorsTab.qml:2839", "comment": "" }, { @@ -1028,13 +980,7 @@ { "term": "Apps", "context": "Apps", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:312", - "comment": "" - }, - { - "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", - "context": "Apps are ordered by usage frequency, then last used, then alphabetically.", - "reference": "Modules/Settings/LauncherTab.qml:1104", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:342", "comment": "" }, { @@ -1046,7 +992,7 @@ { "term": "Apps Dock Settings", "context": "Apps Dock Settings", - "reference": "Modules/Settings/WidgetsTabSection.qml:1966", + "reference": "Modules/Settings/WidgetsTabSection.qml:2311", "comment": "" }, { @@ -1055,6 +1001,12 @@ "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", "comment": "" }, + { + "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", + "context": "Apps are ordered by usage frequency, then last used, then alphabetically.", + "reference": "Modules/Settings/LauncherTab.qml:1104", + "comment": "" + }, { "term": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", "context": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", @@ -1076,7 +1028,7 @@ { "term": "Are you sure you want to kill session \"%1\"?", "context": "Are you sure you want to kill session \"%1\"?", - "reference": "Modals/MuxModal.qml:126", + "reference": "Modals/MuxModal.qml:101", "comment": "" }, { @@ -1088,19 +1040,13 @@ { "term": "Attach", "context": "Attach", - "reference": "Modals/MuxModal.qml:601", - "comment": "" - }, - { - "term": "attached", - "context": "attached", - "reference": "Modals/MuxModal.qml:495", + "reference": "Modals/MuxModal.qml:591", "comment": "" }, { "term": "Audio", "context": "Audio", - "reference": "Modals/Settings/SettingsSidebar.qml:245, Modules/Settings/WidgetsTabSection.qml:1097", + "reference": "Modules/Settings/WidgetsTabSection.qml:1110, Modules/Settings/WidgetsTabSection.qml:1323, Modals/Settings/SettingsSidebar.qml:245", "comment": "" }, { @@ -1145,18 +1091,18 @@ "reference": "Modules/Settings/OSDTab.qml:157", "comment": "" }, - { - "term": "Audio system restarted", - "context": "Audio system restarted", - "reference": "Services/AudioService.qml:263", - "comment": "" - }, { "term": "Audio Visualizer", "context": "Audio Visualizer", "reference": "Modules/Settings/MediaPlayerTab.qml:43", "comment": "" }, + { + "term": "Audio system restarted", + "context": "Audio system restarted", + "reference": "Services/AudioService.qml:263", + "comment": "" + }, { "term": "Audio volume control", "context": "Audio volume control", @@ -1181,24 +1127,36 @@ "reference": "Modals/PolkitAuthModal.qml:381", "comment": "" }, + { + "term": "Authenticating...", + "context": "Authenticating...", + "reference": "Modules/Greetd/GreeterContent.qml:1018", + "comment": "" + }, { "term": "Authentication", "context": "Authentication", "reference": "Modals/PolkitAuthModal.qml:99", "comment": "" }, - { - "term": "Authentication failed, please try again", - "context": "Authentication failed, please try again", - "reference": "Modals/PolkitAuthModal.qml:325", - "comment": "" - }, { "term": "Authentication Required", "context": "Authentication Required", "reference": "Modals/PolkitAuthModal.qml:227", "comment": "" }, + { + "term": "Authentication error - try again", + "context": "Authentication error - try again", + "reference": "Modules/Greetd/GreeterContent.qml:233", + "comment": "" + }, + { + "term": "Authentication failed, please try again", + "context": "Authentication failed, please try again", + "reference": "Modals/PolkitAuthModal.qml:325", + "comment": "" + }, { "term": "Authorize", "context": "Authorize", @@ -1220,7 +1178,7 @@ { "term": "Auto", "context": "theme category option", - "reference": "Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:887, Modules/Settings/NetworkTab.qml:888, Modules/Settings/NetworkTab.qml:891, Modules/Settings/DisplayConfigTab.qml:150, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124", + "reference": "Modules/Settings/DisplayConfigTab.qml:150, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:887, Modules/Settings/NetworkTab.qml:888, Modules/Settings/NetworkTab.qml:891, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124", "comment": "" }, { @@ -1238,7 +1196,7 @@ { "term": "Auto Location", "context": "Auto Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:448", + "reference": "Modules/Settings/TimeWeatherTab.qml:458", "comment": "" }, { @@ -1253,6 +1211,12 @@ "reference": "Modules/Settings/ClipboardTab.qml:347", "comment": "" }, + { + "term": "Auto-Hide Timeout", + "context": "Auto-Hide Timeout", + "reference": "Modules/Settings/ThemeColorsTab.qml:2310", + "comment": "" + }, { "term": "Auto-close Niri overview when launching apps.", "context": "Auto-close Niri overview when launching apps.", @@ -1277,16 +1241,10 @@ "reference": "Modules/Settings/DockTab.qml:51", "comment": "" }, - { - "term": "Auto-Hide Timeout", - "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:2310", - "comment": "" - }, { "term": "Auto-saving...", "context": "Auto-saving...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:851", + "reference": "Modules/Notepad/NotepadTextEditor.qml:859", "comment": "" }, { @@ -1316,13 +1274,13 @@ { "term": "Automatic Control", "context": "Automatic Control", - "reference": "Modules/Settings/ThemeColorsTab.qml:1029, Modules/Settings/GammaControlTab.qml:139", + "reference": "Modules/Settings/GammaControlTab.qml:139, Modules/Settings/ThemeColorsTab.qml:1029", "comment": "" }, { "term": "Automatic Cycling", "context": "Automatic Cycling", - "reference": "Modules/Settings/WallpaperTab.qml:907, Modules/Settings/LockScreenTab.qml:327", + "reference": "Modules/Settings/LockScreenTab.qml:327, Modules/Settings/WallpaperTab.qml:907", "comment": "" }, { @@ -1346,7 +1304,7 @@ { "term": "Automatically determine your location using your IP address", "context": "Automatically determine your location using your IP address", - "reference": "Modules/Settings/TimeWeatherTab.qml:449", + "reference": "Modules/Settings/TimeWeatherTab.qml:459", "comment": "" }, { @@ -1376,13 +1334,7 @@ { "term": "Available", "context": "Available", - "reference": "Modules/Settings/PrinterTab.qml:202, Modules/ControlCenter/Details/AudioOutputDetail.qml:263, Modules/ControlCenter/Details/AudioInputDetail.qml:254", - "comment": "" - }, - { - "term": "Available in Detailed and Forecast view modes", - "context": "Available in Detailed and Forecast view modes", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", + "reference": "Modules/Settings/PrinterTab.qml:202, Modules/ControlCenter/Details/AudioInputDetail.qml:254, Modules/ControlCenter/Details/AudioOutputDetail.qml:263", "comment": "" }, { @@ -1415,16 +1367,22 @@ "reference": "Modules/Settings/GreeterTab.qml:63", "comment": "" }, + { + "term": "BSSID", + "context": "BSSID", + "reference": "Modules/Settings/NetworkTab.qml:1443", + "comment": "" + }, { "term": "Back", "context": "greeter back button", - "reference": "Modals/Greeter/GreeterModal.qml:285, Modules/DankBar/Widgets/SystemTrayBar.qml:1542", + "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1542, Modals/Greeter/GreeterModal.qml:285", "comment": "" }, { "term": "Backend", "context": "Backend", - "reference": "Modules/Settings/NetworkTab.qml:170, Modules/Settings/AboutTab.qml:634", + "reference": "Modules/Settings/AboutTab.qml:632, Modules/Settings/NetworkTab.qml:170", "comment": "" }, { @@ -1434,15 +1392,15 @@ "comment": "" }, { - "term": "Background image", - "context": "greeter wallpaper description", - "reference": "Modals/Greeter/GreeterCompletePage.qml:382", + "term": "Background Opacity", + "context": "Background Opacity", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", "comment": "" }, { - "term": "Background Opacity", - "context": "Background Opacity", - "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63", + "term": "Background image", + "context": "greeter wallpaper description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:382", "comment": "" }, { @@ -1502,13 +1460,13 @@ { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/Settings/WidgetsTabSection.qml:1127, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "reference": "Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/Settings/WidgetsTabSection.qml:1155, Modules/Settings/WidgetsTabSection.qml:1329, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "" }, { - "term": "Battery and power management", - "context": "Battery and power management", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:162", + "term": "Battery %1", + "context": "Battery %1", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:396", "comment": "" }, { @@ -1517,6 +1475,12 @@ "reference": "Modules/Settings/PowerSleepTab.qml:587", "comment": "" }, + { + "term": "Battery and power management", + "context": "Battery and power management", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:162", + "comment": "" + }, { "term": "Battery level and power management", "context": "Battery level and power management", @@ -1526,7 +1490,7 @@ { "term": "Behavior", "context": "Behavior", - "reference": "Modules/Settings/DockTab.qml:142, Modules/Settings/ClipboardTab.qml:417", + "reference": "Modules/Settings/ClipboardTab.qml:417, Modules/Settings/DockTab.qml:142", "comment": "" }, { @@ -1535,12 +1499,6 @@ "reference": "Modules/Settings/LockScreenTab.qml:178", "comment": "" }, - { - "term": "Binds include added", - "context": "Binds include added", - "reference": "Services/KeybindsService.qml:265", - "comment": "" - }, { "term": "Binds Include Missing", "context": "Binds Include Missing", @@ -1548,15 +1506,15 @@ "comment": "" }, { - "term": "Bit Depth", - "context": "Bit Depth", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1248", + "term": "Binds include added", + "context": "Binds include added", + "reference": "Services/KeybindsService.qml:265", "comment": "" }, { - "term": "Block notifications", - "context": "Block notifications", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:86", + "term": "Bit Depth", + "context": "Bit Depth", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1248", "comment": "" }, { @@ -1571,6 +1529,12 @@ "reference": "Modals/WindowRuleModal.qml:727", "comment": "" }, + { + "term": "Block notifications", + "context": "Block notifications", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:86", + "comment": "" + }, { "term": "Blocked", "context": "Blocked", @@ -1586,13 +1550,7 @@ { "term": "Bluetooth", "context": "bluetooth status", - "reference": "Modules/Settings/WidgetsTabSection.qml:1092, Modules/ControlCenter/Models/WidgetModel.qml:110, Modules/ControlCenter/Components/DragDropGrid.qml:313", - "comment": "" - }, - { - "term": "Bluetooth not available", - "context": "Bluetooth not available", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:115", + "reference": "Modules/Settings/WidgetsTabSection.qml:1100, Modules/Settings/WidgetsTabSection.qml:1322, Modules/ControlCenter/Components/DragDropGrid.qml:313, Modules/ControlCenter/Models/WidgetModel.qml:110", "comment": "" }, { @@ -1602,9 +1560,9 @@ "comment": "" }, { - "term": "Blur on Overview", - "context": "Blur on Overview", - "reference": "Modules/Settings/WallpaperTab.qml:782", + "term": "Bluetooth not available", + "context": "Bluetooth not available", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:115", "comment": "" }, { @@ -1613,6 +1571,12 @@ "reference": "Modules/Settings/WallpaperTab.qml:1272", "comment": "" }, + { + "term": "Blur on Overview", + "context": "Blur on Overview", + "reference": "Modules/Settings/WallpaperTab.qml:782", + "comment": "" + }, { "term": "Blur wallpaper when niri overview is open", "context": "Blur wallpaper when niri overview is open", @@ -1628,13 +1592,13 @@ { "term": "Border", "context": "launcher border option", - "reference": "Modules/Settings/DockTab.qml:584, Modules/Settings/DockTab.qml:590, Modules/Settings/DankBarTab.qml:1384, Modules/Settings/LauncherTab.qml:432", + "reference": "Modules/Settings/DankBarTab.qml:1384, Modules/Settings/DockTab.qml:584, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:432", "comment": "" }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/DockTab.qml:597", + "reference": "Modules/Settings/DockTab.qml:597, Modules/Settings/WorkspacesTab.qml:368", "comment": "" }, { @@ -1664,7 +1628,7 @@ { "term": "Bottom", "context": "shadow direction option", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:286, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1161, Modules/Settings/DankBarTab.qml:1175, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1712, Modules/Settings/ThemeColorsTab.qml:1725", + "reference": "Modules/Settings/DankBarTab.qml:286, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1161, Modules/Settings/DankBarTab.qml:1175, Modules/Settings/DockTab.qml:102, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1712, Modules/Settings/ThemeColorsTab.qml:1725", "comment": "" }, { @@ -1673,12 +1637,6 @@ "reference": "Modules/Settings/NotificationsTab.qml:227, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:244, Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66", "comment": "" }, - { - "term": "Bottom dock for pinned and running applications", - "context": "Bottom dock for pinned and running applications", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:32", - "comment": "" - }, { "term": "Bottom Left", "context": "screen position option", @@ -1694,25 +1652,19 @@ { "term": "Bottom Section", "context": "Bottom Section", - "reference": "Modules/Settings/WidgetsTab.qml:1050", + "reference": "Modules/Settings/WidgetsTab.qml:1085", "comment": "" }, { - "term": "brandon", - "context": "brandon", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:44", + "term": "Bottom dock for pinned and running applications", + "context": "Bottom dock for pinned and running applications", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:32", "comment": "" }, { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/DockTab.qml:484, Modules/Settings/WidgetsTabSection.qml:1117, Modules/Settings/OSDTab.qml:117, Modules/Settings/LauncherTab.qml:276", - "comment": "" - }, - { - "term": "Brightness control not available", - "context": "Brightness control not available", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:148, Modules/ControlCenter/Details/BrightnessDetail.qml:147", + "reference": "Modules/Settings/DockTab.qml:484, Modules/Settings/LauncherTab.qml:276, Modules/Settings/OSDTab.qml:117, Modules/Settings/WidgetsTabSection.qml:1140, Modules/Settings/WidgetsTabSection.qml:1327", "comment": "" }, { @@ -1724,25 +1676,19 @@ { "term": "Brightness Value", "context": "Brightness Value", - "reference": "Modules/Settings/WidgetsTabSection.qml:1122", + "reference": "Modules/Settings/WidgetsTabSection.qml:1145, Modules/Settings/WidgetsTabSection.qml:1328", + "comment": "" + }, + { + "term": "Brightness control not available", + "context": "Brightness control not available", + "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:147, Modules/ControlCenter/Models/WidgetModel.qml:148", "comment": "" }, { "term": "Browse", "context": "theme category option", - "reference": "Modals/DankLauncherV2/Controller.qml:157, Modals/DankLauncherV2/Controller.qml:1166, Modules/Settings/LockScreenTab.qml:318, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/GreeterTab.qml:683, Modules/Settings/PluginsTab.qml:209", - "comment": "" - }, - { - "term": "Browse Files", - "context": "KDE Connect browse tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:322", - "comment": "" - }, - { - "term": "Browse or search plugins", - "context": "Browse or search plugins", - "reference": "Modals/DankLauncherV2/ResultsList.qml:486", + "reference": "Modules/Settings/GreeterTab.qml:683, Modules/Settings/LockScreenTab.qml:318, Modules/Settings/PluginsTab.qml:209, Modules/Settings/ThemeColorsTab.qml:280, Modals/DankLauncherV2/Controller.qml:157, Modals/DankLauncherV2/Controller.qml:1169", "comment": "" }, { @@ -1754,13 +1700,13 @@ { "term": "Browse Themes", "context": "browse themes button | theme browser header | theme browser window title", - "reference": "Modules/Settings/ThemeColorsTab.qml:764, Modules/Settings/ThemeBrowser.qml:146, Modules/Settings/ThemeBrowser.qml:243", + "reference": "Modules/Settings/ThemeBrowser.qml:146, Modules/Settings/ThemeBrowser.qml:243, Modules/Settings/ThemeColorsTab.qml:764", "comment": "" }, { - "term": "BSSID", - "context": "BSSID", - "reference": "Modules/Settings/NetworkTab.qml:1443", + "term": "Browse or search plugins", + "context": "Browse or search plugins", + "reference": "Modals/DankLauncherV2/ResultsList.qml:486", "comment": "" }, { @@ -1770,33 +1716,81 @@ "comment": "" }, { - "term": "by %1", - "context": "author attribution", - "reference": "Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/PluginBrowser.qml:539", + "term": "CPU", + "context": "CPU", + "reference": "Modules/ProcessList/SystemView.qml:76, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:86", "comment": "" }, { - "term": "Calc", - "context": "Calc", - "reference": "Modals/DankLauncherV2/ResultItem.qml:182", + "term": "CPU Graph", + "context": "CPU Graph", + "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:97", "comment": "" }, { - "term": "Calculator", - "context": "Calculator", - "reference": "Modals/DankLauncherV2/Controller.qml:129", + "term": "CPU Temperature", + "context": "CPU Temperature", + "reference": "Modules/Settings/WidgetsTab.qml:132, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", + "comment": "" + }, + { + "term": "CPU Usage", + "context": "CPU Usage", + "reference": "Modules/Settings/WidgetsTab.qml:108", + "comment": "" + }, + { + "term": "CPU temperature display", + "context": "CPU temperature display", + "reference": "Modules/Settings/WidgetsTab.qml:133", + "comment": "" + }, + { + "term": "CPU usage indicator", + "context": "CPU usage indicator", + "reference": "Modules/Settings/WidgetsTab.qml:109", + "comment": "" + }, + { + "term": "CPU, memory, network, and disk monitoring", + "context": "System monitor widget description", + "reference": "Services/DesktopWidgetRegistry.qml:56", + "comment": "" + }, + { + "term": "CUPS Insecure Filter Warning", + "context": "CUPS Insecure Filter Warning", + "reference": "Services/CupsService.qml:825", + "comment": "" + }, + { + "term": "CUPS Missing Filter Warning", + "context": "CUPS Missing Filter Warning", + "reference": "Services/CupsService.qml:824", + "comment": "" + }, + { + "term": "CUPS Print Server", + "context": "CUPS Print Server", + "reference": "Modules/Settings/PrinterTab.qml:163", + "comment": "" + }, + { + "term": "CUPS not available", + "context": "CUPS not available", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:202", "comment": "" }, { "term": "Camera", "context": "Camera", - "reference": "Modules/Settings/WidgetsTabSection.qml:1365", + "reference": "Modules/Settings/WidgetsTabSection.qml:1710", "comment": "" }, { "term": "Cancel", "context": "Cancel", - "reference": "Widgets/KeybindItem.qml:1814, Modals/WindowRuleModal.qml:1130, Modals/PolkitAuthModal.qml:354, Modals/WifiPasswordModal.qml:691, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:272, Modals/DankLauncherV2/LauncherContent.qml:985, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/DisplayConfigTab.qml:256, Modules/Settings/DisplayConfigTab.qml:301, Modules/Settings/AudioTab.qml:726, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/GreeterTab.qml:180, Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:832", + "reference": "Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:354, Modals/WifiPasswordModal.qml:691, Modals/WindowRuleModal.qml:1130, Modals/WorkspaceRenameModal.qml:161, Widgets/KeybindItem.qml:1814, Modules/Settings/AudioTab.qml:726, Modules/Settings/DisplayConfigTab.qml:256, Modules/Settings/DisplayConfigTab.qml:301, Modules/Settings/GreeterTab.qml:180, Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:832, Modules/Settings/ThemeBrowser.qml:121, Modals/DankLauncherV2/LauncherContent.qml:1015, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83", "comment": "" }, { @@ -1820,7 +1814,7 @@ { "term": "Capabilities", "context": "Capabilities", - "reference": "Modules/Settings/AboutTab.qml:734", + "reference": "Modules/Settings/AboutTab.qml:732", "comment": "" }, { @@ -1850,7 +1844,7 @@ { "term": "Center Section", "context": "Center Section", - "reference": "Modules/Settings/WidgetsTab.qml:986", + "reference": "Modules/Settings/WidgetsTab.qml:1018", "comment": "" }, { @@ -1871,18 +1865,24 @@ "reference": "Modals/WifiPasswordModal.qml:177", "comment": "" }, - { - "term": "Change bar appearance", - "context": "Change bar appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:1481", - "comment": "" - }, { "term": "Change Song", "context": "media scroll wheel option", "reference": "Modules/Settings/MediaPlayerTab.qml:51", "comment": "" }, + { + "term": "Change Volume", + "context": "media scroll wheel option", + "reference": "Modules/Settings/MediaPlayerTab.qml:51", + "comment": "" + }, + { + "term": "Change bar appearance", + "context": "Change bar appearance", + "reference": "Modules/Settings/ThemeColorsTab.qml:1481", + "comment": "" + }, { "term": "Change the locale used by the DMS interface.", "context": "Change the locale used by the DMS interface.", @@ -1895,12 +1895,6 @@ "reference": "Modules/Settings/LocaleTab.qml:76", "comment": "" }, - { - "term": "Change Volume", - "context": "media scroll wheel option", - "reference": "Modules/Settings/MediaPlayerTab.qml:51", - "comment": "" - }, { "term": "Channel", "context": "Channel", @@ -1925,36 +1919,36 @@ "reference": "Modules/Settings/GreeterTab.qml:451", "comment": "" }, + { + "term": "Checking for updates...", + "context": "Checking for updates...", + "reference": "Modules/SystemUpdatePopout.qml:147", + "comment": "" + }, { "term": "Checking whether sudo authentication is needed…", "context": "Checking whether sudo authentication is needed…", "reference": "Modules/Settings/GreeterTab.qml:193", "comment": "" }, + { + "term": "Checking...", + "context": "Checking...", + "reference": "Modules/SystemUpdatePopout.qml:70", + "comment": "" + }, { "term": "Checking…", "context": "greeter status loading", "reference": "Modules/Settings/GreeterTab.qml:473", "comment": "" }, - { - "term": "Choose a color", - "context": "Choose a color", - "reference": "Modules/ControlCenter/Widgets/ColorPickerPill.qml:14", - "comment": "" - }, { "term": "Choose Color", "context": "Choose Color", "reference": "Modals/DankColorPickerModal.qml:20, Modules/Settings/Widgets/SettingsColorPicker.qml:13", "comment": "" }, - { - "term": "Choose colors from palette", - "context": "Choose colors from palette", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:180", - "comment": "" - }, { "term": "Choose Dark Mode Color", "context": "dark mode wallpaper color picker title", @@ -1968,9 +1962,33 @@ "comment": "" }, { - "term": "Choose how the weather widget is displayed", - "context": "Choose how the weather widget is displayed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", + "term": "Choose Launcher Logo Color", + "context": "Choose Launcher Logo Color", + "reference": "Modules/Settings/LauncherTab.qml:242", + "comment": "" + }, + { + "term": "Choose Light Mode Color", + "context": "light mode wallpaper color picker title", + "reference": "Modules/Settings/WallpaperTab.qml:516", + "comment": "" + }, + { + "term": "Choose Wallpaper Color", + "context": "wallpaper color picker title", + "reference": "Modules/Settings/WallpaperTab.qml:180", + "comment": "" + }, + { + "term": "Choose a color", + "context": "Choose a color", + "reference": "Modules/ControlCenter/Widgets/ColorPickerPill.qml:14", + "comment": "" + }, + { + "term": "Choose colors from palette", + "context": "Choose colors from palette", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:180", "comment": "" }, { @@ -1985,18 +2003,6 @@ "reference": "Widgets/DankIconPicker.qml:100", "comment": "" }, - { - "term": "Choose Launcher Logo Color", - "context": "Choose Launcher Logo Color", - "reference": "Modules/Settings/LauncherTab.qml:242", - "comment": "" - }, - { - "term": "Choose Light Mode Color", - "context": "light mode wallpaper color picker title", - "reference": "Modules/Settings/WallpaperTab.qml:516", - "comment": "" - }, { "term": "Choose the background color for widgets", "context": "Choose the background color for widgets", @@ -2015,12 +2021,6 @@ "reference": "Modules/Settings/LauncherTab.qml:41", "comment": "" }, - { - "term": "Choose Wallpaper Color", - "context": "wallpaper color picker title", - "reference": "Modules/Settings/WallpaperTab.qml:180", - "comment": "" - }, { "term": "Choose where notification popups appear on screen", "context": "Choose where notification popups appear on screen", @@ -2045,12 +2045,6 @@ "reference": "Modules/Settings/LockScreenTab.qml:344", "comment": "" }, - { - "term": "Chroma Style", - "context": "Chroma Style", - "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:74", - "comment": "" - }, { "term": "Cipher", "context": "Cipher", @@ -2078,13 +2072,7 @@ { "term": "Clear All", "context": "Clear All", - "reference": "Modals/Clipboard/ClipboardHeader.qml:76, Modals/Clipboard/ClipboardHistoryPopout.qml:151, Modals/Clipboard/ClipboardHistoryModal.qml:149, Modules/Settings/PrinterTab.qml:1370, Modules/DankBar/Widgets/ClipboardButton.qml:244", - "comment": "" - }, - { - "term": "Clear all history when server starts", - "context": "Clear all history when server starts", - "reference": "Modules/Settings/ClipboardTab.qml:426", + "reference": "Modules/Settings/PrinterTab.qml:1370, Modules/DankBar/Widgets/ClipboardButton.qml:244, Modals/Clipboard/ClipboardHeader.qml:76, Modals/Clipboard/ClipboardHistoryModal.qml:149, Modals/Clipboard/ClipboardHistoryPopout.qml:151", "comment": "" }, { @@ -2093,16 +2081,10 @@ "reference": "Modules/Settings/PrinterTab.qml:1384", "comment": "" }, - { - "term": "Clear at Startup", - "context": "Clear at Startup", - "reference": "Modules/Settings/ClipboardTab.qml:425", - "comment": "" - }, { "term": "Clear History?", "context": "Clear History?", - "reference": "Modals/Clipboard/ClipboardContent.qml:38, Modules/DankBar/DankBarContent.qml:601", + "reference": "Modules/DankBar/DankBarContent.qml:601, Modals/Clipboard/ClipboardContent.qml:38", "comment": "" }, { @@ -2111,6 +2093,18 @@ "reference": "Services/WeatherService.qml:122, Services/WeatherService.qml:123", "comment": "" }, + { + "term": "Clear all history when server starts", + "context": "Clear all history when server starts", + "reference": "Modules/Settings/ClipboardTab.qml:426", + "comment": "" + }, + { + "term": "Clear at Startup", + "context": "Clear at Startup", + "reference": "Modules/Settings/ClipboardTab.qml:425", + "comment": "" + }, { "term": "Click 'Setup' to create %1 and add include to config.", "context": "Click 'Setup' to create %1 and add include to config.", @@ -2135,12 +2129,6 @@ "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:63", "comment": "" }, - { - "term": "Click any shortcut to edit. Changes save to %1", - "context": "Click any shortcut to edit. Changes save to %1", - "reference": "Modules/Settings/KeybindsTab.qml:242", - "comment": "" - }, { "term": "Click Import to add a .ovpn or .conf", "context": "Click Import to add a .ovpn or .conf", @@ -2156,7 +2144,13 @@ { "term": "Click Through", "context": "Click Through", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:679", + "reference": "Modules/Settings/DankBarTab.qml:679, Modules/Settings/DesktopWidgetInstanceCard.qml:343", + "comment": "" + }, + { + "term": "Click any shortcut to edit. Changes save to %1", + "context": "Click any shortcut to edit. Changes save to %1", + "reference": "Modules/Settings/KeybindsTab.qml:242", "comment": "" }, { @@ -2201,16 +2195,10 @@ "reference": "Modules/Settings/WidgetsTab.qml:101", "comment": "" }, - { - "term": "Clipboard sent", - "context": "KDE Connect clipboard action | Phone Connect clipboard action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:117, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:300", - "comment": "" - }, { "term": "Clipboard service not available", "context": "Clipboard service not available", - "reference": "Modals/Clipboard/ClipboardHistoryPopout.qml:54, Modals/Clipboard/ClipboardHistoryModal.qml:64", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:64, Modals/Clipboard/ClipboardHistoryPopout.qml:54", "comment": "" }, { @@ -2228,13 +2216,13 @@ { "term": "Clock Style", "context": "Clock Style", - "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:28, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:11", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:11, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:28", "comment": "" }, { "term": "Close", "context": "Close", - "reference": "Modals/NetworkInfoModal.qml:129, Modals/NetworkWiredInfoModal.qml:129, Modals/MuxModal.qml:604, Modules/SystemUpdatePopout.qml:303, Modules/DankBar/Widgets/RunningApps.qml:873", + "reference": "Modals/NetworkInfoModal.qml:129, Modals/NetworkWiredInfoModal.qml:129, Modals/MuxModal.qml:594, Modules/SystemUpdatePopout.qml:307, Modules/DankBar/Widgets/RunningApps.qml:872", "comment": "" }, { @@ -2252,7 +2240,7 @@ { "term": "Close Window", "context": "Close Window", - "reference": "Modules/Dock/DockContextMenu.qml:537, Modules/DankBar/Widgets/AppsDockContextMenu.qml:447, dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141", + "reference": "Modules/Dock/DockContextMenu.qml:537, Modules/DankBar/Widgets/AppsDockContextMenu.qml:447", "comment": "" }, { @@ -2261,18 +2249,6 @@ "reference": "Modules/Settings/DankBarTab.qml:1193, Modules/Settings/DankBarTab.qml:1267, Modules/Settings/DankBarTab.qml:1392, Modules/Settings/DankBarTab.qml:1482, Modules/Settings/LauncherTab.qml:459, Modules/Settings/Widgets/SettingsColorPicker.qml:29", "comment": "" }, - { - "term": "Color displayed on monitors without the lock screen", - "context": "Color displayed on monitors without the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:412", - "comment": "" - }, - { - "term": "Color for primary action buttons", - "context": "Color for primary action buttons", - "reference": "Modules/Settings/ThemeColorsTab.qml:1563", - "comment": "" - }, { "term": "Color Gamut", "context": "Color Gamut", @@ -2300,7 +2276,7 @@ { "term": "Color Picker", "context": "Color Picker", - "reference": "Modules/Settings/WidgetsTab.qml:239, Modules/ControlCenter/Models/WidgetModel.qml:179, Modules/ControlCenter/Widgets/ColorPickerPill.qml:13", + "reference": "Services/AppSearchService.qml:201, Modules/Settings/WidgetsTab.qml:239, Modules/ControlCenter/Models/WidgetModel.qml:179, Modules/ControlCenter/Widgets/ColorPickerPill.qml:13", "comment": "" }, { @@ -2309,6 +2285,18 @@ "reference": "Modules/Settings/GammaControlTab.qml:105", "comment": "" }, + { + "term": "Color displayed on monitors without the lock screen", + "context": "Color displayed on monitors without the lock screen", + "reference": "Modules/Settings/LockScreenTab.qml:412", + "comment": "" + }, + { + "term": "Color for primary action buttons", + "context": "Color for primary action buttons", + "reference": "Modules/Settings/ThemeColorsTab.qml:1563", + "comment": "" + }, { "term": "Color temperature for day time", "context": "Color temperature for day time", @@ -2321,18 +2309,6 @@ "reference": "Modules/Settings/GammaControlTab.qml:106", "comment": "" }, - { - "term": "Color theme for syntax highlighting.", - "context": "Color theme for syntax highlighting.", - "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:77", - "comment": "" - }, - { - "term": "Color theme for syntax highlighting. %1 themes available.", - "context": "Color theme for syntax highlighting. %1 themes available.", - "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:76", - "comment": "" - }, { "term": "Color theme from DMS registry", "context": "registry theme description", @@ -2354,7 +2330,7 @@ { "term": "Colorize Active", "context": "Colorize Active", - "reference": "Modules/Settings/WidgetsTabSection.qml:2242", + "reference": "Modules/Settings/WidgetsTabSection.qml:2587", "comment": "" }, { @@ -2384,7 +2360,7 @@ { "term": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", "context": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", - "reference": "Modules/Settings/MuxTab.qml:122", + "reference": "Modules/Settings/MuxTab.qml:97", "comment": "" }, { @@ -2414,13 +2390,13 @@ { "term": "Compact", "context": "Compact", - "reference": "Modules/Settings/NotificationsTab.qml:270, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15", + "reference": "Modules/Settings/NotificationsTab.qml:270", "comment": "" }, { "term": "Compact Mode", "context": "Compact Mode", - "reference": "Modules/Settings/WidgetsTabSection.qml:565, Modules/Settings/WidgetsTabSection.qml:1743", + "reference": "Modules/Settings/WidgetsTabSection.qml:565, Modules/Settings/WidgetsTabSection.qml:2088", "comment": "" }, { @@ -2435,6 +2411,12 @@ "reference": "Modules/Settings/DockTab.qml:280, Modules/Settings/LauncherTab.qml:73", "comment": "" }, + { + "term": "Compositor Settings", + "context": "Compositor Settings", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:38, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:38", + "comment": "" + }, { "term": "Compositor not supported", "context": "Compositor not supported", @@ -2442,9 +2424,9 @@ "comment": "" }, { - "term": "Compositor Settings", - "context": "Compositor Settings", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:38, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:38", + "term": "Config Format", + "context": "Config Format", + "reference": "Modules/Settings/DisplayConfigTab.qml:413, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1212", "comment": "" }, { @@ -2453,12 +2435,6 @@ "reference": "Widgets/KeybindItem.qml:511", "comment": "" }, - { - "term": "Config Format", - "context": "Config Format", - "reference": "Modules/Settings/DisplayConfigTab.qml:413, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1212", - "comment": "" - }, { "term": "Config validation failed", "context": "Config validation failed", @@ -2489,6 +2465,12 @@ "reference": "Modals/Greeter/GreeterCompletePage.qml:356", "comment": "" }, + { + "term": "Configure Keybinds", + "context": "greeter configure keybinds link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:297", + "comment": "" + }, { "term": "Configure a new printer", "context": "Configure a new printer", @@ -2501,12 +2483,6 @@ "reference": "Modules/Settings/WorkspacesTab.qml:423", "comment": "" }, - { - "term": "Configure Keybinds", - "context": "greeter configure keybinds link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:297", - "comment": "" - }, { "term": "Configure match criteria and actions", "context": "Configure match criteria and actions", @@ -2582,7 +2558,7 @@ { "term": "Connected", "context": "network status", - "reference": "Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1558, Modules/Settings/AboutTab.qml:718, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:337, Modules/ControlCenter/Components/DragDropGrid.qml:340, Modules/ControlCenter/Components/DragDropGrid.qml:342, Modules/ControlCenter/Components/DragDropGrid.qml:345, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:609", + "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1558, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:337, Modules/ControlCenter/Components/DragDropGrid.qml:340, Modules/ControlCenter/Components/DragDropGrid.qml:342, Modules/ControlCenter/Components/DragDropGrid.qml:345, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:609", "comment": "" }, { @@ -2627,28 +2603,16 @@ "reference": "Common/Theme.qml:475", "comment": "" }, - { - "term": "Content copied", - "context": "Content copied", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:209, dms-plugins/DankStickerSearch/DankStickerSearch.qml:262", - "comment": "" - }, { "term": "Contrast", "context": "Contrast", "reference": "Modules/Settings/DockTab.qml:496, Modules/Settings/LauncherTab.qml:288", "comment": "" }, - { - "term": "Control animation duration for notification popups and history", - "context": "Control animation duration for notification popups and history", - "reference": "Modules/Settings/NotificationsTab.qml:324", - "comment": "" - }, { "term": "Control Center", "context": "greeter feature card title", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:149, Modules/Settings/WidgetsTab.qml:162", + "reference": "Modules/Settings/WidgetsTab.qml:162, Modals/Greeter/GreeterWelcomePage.qml:149", "comment": "" }, { @@ -2657,6 +2621,12 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1530", "comment": "" }, + { + "term": "Control animation duration for notification popups and history", + "context": "Control animation duration for notification popups and history", + "reference": "Modules/Settings/NotificationsTab.qml:324", + "comment": "" + }, { "term": "Control currently playing media", "context": "Control currently playing media", @@ -2717,28 +2687,10 @@ "reference": "Widgets/KeybindItem.qml:1659", "comment": "" }, - { - "term": "Copied GIF", - "context": "Copied GIF", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:230, dms-plugins/DankStickerSearch/DankStickerSearch.qml:283", - "comment": "" - }, - { - "term": "Copied MP4", - "context": "Copied MP4", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:240, dms-plugins/DankStickerSearch/DankStickerSearch.qml:293", - "comment": "" - }, { "term": "Copied to clipboard", "context": "Copied to clipboard", - "reference": "Services/ClipboardService.qml:108, Modals/Settings/SettingsModal.qml:315, Modals/Settings/SettingsModal.qml:332, Modules/Settings/DesktopWidgetInstanceCard.qml:426, Modules/Notepad/NotepadTextEditor.qml:250, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230", - "comment": "" - }, - { - "term": "Copied WebP", - "context": "Copied WebP", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:220, dms-plugins/DankStickerSearch/DankStickerSearch.qml:273", + "reference": "Services/ClipboardService.qml:108, Modules/Notepad/NotepadTextEditor.qml:250, Modules/Settings/DesktopWidgetInstanceCard.qml:426, Modals/Settings/SettingsModal.qml:315, Modals/Settings/SettingsModal.qml:332", "comment": "" }, { @@ -2747,18 +2699,6 @@ "reference": "Modules/Toast.qml:16", "comment": "" }, - { - "term": "Copy", - "context": "Copy", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170", - "comment": "" - }, - { - "term": "Copy Content", - "context": "Copy Content", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:206, dms-plugins/DankStickerSearch/DankStickerSearch.qml:259", - "comment": "" - }, { "term": "Copy Full Command", "context": "Copy Full Command", @@ -2777,12 +2717,6 @@ "reference": "Modules/ProcessList/ProcessContextMenu.qml:26", "comment": "" }, - { - "term": "Copy path", - "context": "Copy path", - "reference": "Modals/DankLauncherV2/Controller.qml:1045", - "comment": "" - }, { "term": "Copy PID", "context": "Copy PID", @@ -2795,6 +2729,12 @@ "reference": "Modules/Notepad/NotepadTextEditor.qml:679", "comment": "" }, + { + "term": "Copy path", + "context": "Copy path", + "reference": "Modals/DankLauncherV2/Controller.qml:1048", + "comment": "" + }, { "term": "Corner Radius", "context": "Corner Radius", @@ -2825,60 +2765,12 @@ "reference": "Services/CupsService.qml:805", "comment": "" }, - { - "term": "CPU", - "context": "CPU", - "reference": "Modules/ProcessList/SystemView.qml:76, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:86", - "comment": "" - }, - { - "term": "CPU Graph", - "context": "CPU Graph", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:97", - "comment": "" - }, - { - "term": "CPU Temperature", - "context": "CPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:132, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", - "comment": "" - }, - { - "term": "CPU temperature display", - "context": "CPU temperature display", - "reference": "Modules/Settings/WidgetsTab.qml:133", - "comment": "" - }, - { - "term": "CPU Usage", - "context": "CPU Usage", - "reference": "Modules/Settings/WidgetsTab.qml:108", - "comment": "" - }, - { - "term": "CPU usage indicator", - "context": "CPU usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:109", - "comment": "" - }, - { - "term": "CPU, memory, network, and disk monitoring", - "context": "System monitor widget description", - "reference": "Services/DesktopWidgetRegistry.qml:56", - "comment": "" - }, { "term": "Create", "context": "Create", "reference": "Modals/WindowRuleModal.qml:1154, Modules/Settings/DisplayConfigTab.qml:246", "comment": "" }, - { - "term": "Create a new %1 session (n)", - "context": "Create a new %1 session (n)", - "reference": "Modals/MuxModal.qml:403", - "comment": "" - }, { "term": "Create Dir", "context": "Create Dir", @@ -2888,7 +2780,7 @@ { "term": "Create Printer", "context": "Create Printer", - "reference": "Modules/Settings/PrinterTab.qml:489", + "reference": "Modules/Settings/PrinterTab.qml:820", "comment": "" }, { @@ -2900,7 +2792,7 @@ { "term": "Create a new %1 session (n)", "context": "Create a new %1 session (n)", - "reference": "Modals/MuxModal.qml:402", + "reference": "Modals/MuxModal.qml:388", "comment": "" }, { @@ -2909,24 +2801,12 @@ "reference": "Modules/Settings/WindowRulesTab.qml:280", "comment": "" }, - { - "term": "Create rules to mute, ignore, hide from history, or override notification priority.", - "context": "Create rules to mute, ignore, hide from history, or override notification priority.", - "reference": "Modules/Settings/NotificationsTab.qml:294", - "comment": "" - }, { "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:438", "comment": "" }, - { - "term": "Create Window Rule", - "context": "Create Window Rule", - "reference": "Modals/WindowRuleModal.qml:24", - "comment": "" - }, { "term": "Creating...", "context": "Creating...", @@ -2936,31 +2816,7 @@ { "term": "Critical Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:785, Modules/Settings/NotificationsTab.qml:892, Modules/Notifications/Center/NotificationSettings.qml:201, Modules/Notifications/Center/NotificationSettings.qml:408", - "comment": "" - }, - { - "term": "CUPS Insecure Filter Warning", - "context": "CUPS Insecure Filter Warning", - "reference": "Services/CupsService.qml:825", - "comment": "" - }, - { - "term": "CUPS Missing Filter Warning", - "context": "CUPS Missing Filter Warning", - "reference": "Services/CupsService.qml:824", - "comment": "" - }, - { - "term": "CUPS not available", - "context": "CUPS not available", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:202", - "comment": "" - }, - { - "term": "CUPS Print Server", - "context": "CUPS Print Server", - "reference": "Modules/Settings/PrinterTab.qml:163", + "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:785, Modules/Settings/NotificationsTab.qml:892, Modules/Notifications/Center/NotificationSettings.qml:201, Modules/Notifications/Center/NotificationSettings.qml:422", "comment": "" }, { @@ -2984,7 +2840,7 @@ { "term": "Current Monitor", "context": "Running apps filter: only show apps from the same monitor", - "reference": "Modules/Settings/WidgetsTabSection.qml:1899", + "reference": "Modules/Settings/WidgetsTabSection.qml:2244", "comment": "" }, { @@ -3011,30 +2867,30 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:221, Modules/Settings/ThemeColorsTab.qml:223, Modules/Settings/ThemeColorsTab.qml:224", "comment": "" }, + { + "term": "Current Weather", + "context": "Current Weather", + "reference": "Modules/Settings/TimeWeatherTab.qml:633", + "comment": "" + }, + { + "term": "Current Workspace", + "context": "Running apps filter: only show apps from the active workspace", + "reference": "Modules/Settings/WidgetsTabSection.qml:2192", + "comment": "" + }, { "term": "Current time and date display", "context": "Current time and date display", "reference": "Modules/Settings/WidgetsTab.qml:81", "comment": "" }, - { - "term": "Current Weather", - "context": "Current Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:623", - "comment": "" - }, { "term": "Current weather conditions and temperature", "context": "Current weather conditions and temperature", "reference": "Modules/Settings/WidgetsTab.qml:88", "comment": "" }, - { - "term": "Current Workspace", - "context": "Running apps filter: only show apps from the active workspace", - "reference": "Modules/Settings/WidgetsTabSection.qml:1847", - "comment": "" - }, { "term": "Current: %1", "context": "Current: %1", @@ -3068,13 +2924,7 @@ { "term": "Custom", "context": "shadow color option | theme category option", - "reference": "Widgets/KeybindItem.qml:1403, Modules/Settings/DockTab.qml:282, Modules/Settings/DockTab.qml:389, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1674, Modules/Settings/ThemeColorsTab.qml:1685, Modules/Settings/NotificationsTab.qml:337, Modules/Settings/LauncherTab.qml:75, Modules/Settings/LauncherTab.qml:181, Modules/Settings/Widgets/DeviceAliasRow.qml:92, Modules/Settings/Widgets/SettingsColorPicker.qml:52, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47", - "comment": "" - }, - { - "term": "Custom Color", - "context": "Custom Color", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:56", + "reference": "Widgets/KeybindItem.qml:1403, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/DockTab.qml:282, Modules/Settings/DockTab.qml:389, Modules/Settings/LauncherTab.qml:75, Modules/Settings/LauncherTab.qml:181, Modules/Settings/NotificationsTab.qml:337, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1674, Modules/Settings/ThemeColorsTab.qml:1685, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/Widgets/DeviceAliasRow.qml:92, Modules/Settings/Widgets/SettingsColorPicker.qml:52", "comment": "" }, { @@ -3092,7 +2942,7 @@ { "term": "Custom Location", "context": "Custom Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:477", + "reference": "Modules/Settings/TimeWeatherTab.qml:487", "comment": "" }, { @@ -3125,12 +2975,6 @@ "reference": "Modules/Settings/PowerSleepTab.qml:539", "comment": "" }, - { - "term": "Custom power profile", - "context": "power profile description", - "reference": "Common/Theme.qml:1489", - "comment": "" - }, { "term": "Custom Reboot Command", "context": "Custom Reboot Command", @@ -3155,28 +2999,34 @@ "reference": "Modules/Settings/PowerSleepTab.qml:524", "comment": "" }, - { - "term": "Custom theme loaded from JSON file", - "context": "custom theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:239", - "comment": "" - }, { "term": "Custom Transparency", "context": "Custom Transparency", "reference": "Modules/Notepad/NotepadSettings.qml:324", "comment": "" }, + { + "term": "Custom power profile", + "context": "power profile description", + "reference": "Common/Theme.qml:1489", + "comment": "" + }, + { + "term": "Custom theme loaded from JSON file", + "context": "custom theme description", + "reference": "Modules/Settings/ThemeColorsTab.qml:239", + "comment": "" + }, { "term": "Custom...", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:173, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:260, Modules/Settings/DisplayConfig/OutputCard.qml:182, Modules/Settings/DisplayConfig/OutputCard.qml:188, Modules/Settings/DisplayConfig/OutputCard.qml:190, Modules/Settings/DisplayConfig/OutputCard.qml:196", + "reference": "Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:183, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:270, Modules/Settings/DisplayConfig/OutputCard.qml:182, Modules/Settings/DisplayConfig/OutputCard.qml:188, Modules/Settings/DisplayConfig/OutputCard.qml:190, Modules/Settings/DisplayConfig/OutputCard.qml:196", "comment": "" }, { "term": "Custom: ", "context": "Custom: ", - "reference": "Modules/Settings/GreeterTab.qml:641, Modules/Settings/TimeWeatherTab.qml:160, Modules/Settings/TimeWeatherTab.qml:247", + "reference": "Modules/Settings/GreeterTab.qml:641, Modules/Settings/TimeWeatherTab.qml:170, Modules/Settings/TimeWeatherTab.qml:257", "comment": "" }, { @@ -3191,6 +3041,66 @@ "reference": "Modules/Settings/PowerSleepTab.qml:357", "comment": "" }, + { + "term": "DDC/CI monitor", + "context": "DDC/CI monitor", + "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:333", + "comment": "" + }, + { + "term": "DEMO MODE - Click anywhere to exit", + "context": "DEMO MODE - Click anywhere to exit", + "reference": "Modules/Lock/LockScreenContent.qml:1115", + "comment": "" + }, + { + "term": "DMS Plugin Manager Unavailable", + "context": "DMS Plugin Manager Unavailable", + "reference": "Modules/Settings/PluginsTab.qml:115", + "comment": "" + }, + { + "term": "DMS Shortcuts", + "context": "greeter keybinds section header", + "reference": "Modals/Greeter/GreeterCompletePage.qml:136", + "comment": "" + }, + { + "term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", + "context": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", + "reference": "Modules/Settings/GreeterTab.qml:757", + "comment": "" + }, + { + "term": "DMS out of date", + "context": "DMS out of date", + "reference": "Services/DMSService.qml:320", + "comment": "" + }, + { + "term": "DMS service is not connected. Clipboard settings are unavailable.", + "context": "DMS service is not connected. Clipboard settings are unavailable.", + "reference": "Modules/Settings/ClipboardTab.qml:267", + "comment": "" + }, + { + "term": "DMS shell actions (launcher, clipboard, etc.)", + "context": "DMS shell actions (launcher, clipboard, etc.)", + "reference": "Widgets/KeybindItem.qml:854", + "comment": "" + }, + { + "term": "DMS_SOCKET not available", + "context": "DMS_SOCKET not available", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:219", + "comment": "" + }, + { + "term": "DWL service not available", + "context": "DWL service not available", + "reference": "Modules/Settings/WidgetsTab.qml:41", + "comment": "" + }, { "term": "Daily", "context": "Daily", @@ -3218,7 +3128,7 @@ { "term": "DankBar", "context": "greeter feature card title | greeter settings link", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:114, Modals/Greeter/GreeterCompletePage.qml:405", + "reference": "Modals/Greeter/GreeterCompletePage.qml:405, Modals/Greeter/GreeterWelcomePage.qml:114", "comment": "" }, { @@ -3236,7 +3146,7 @@ { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/WallpaperTab.qml:582, Modules/Settings/ThemeColorsTab.qml:1389, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:620", + "reference": "Modules/Settings/ThemeColorsTab.qml:1389, Modules/Settings/WallpaperTab.qml:582, Modules/ControlCenter/Components/DragDropGrid.qml:620, Modules/ControlCenter/Models/WidgetModel.qml:77", "comment": "" }, { @@ -3248,7 +3158,7 @@ { "term": "Dark mode harmony", "context": "Dark mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2622", + "reference": "Modules/Settings/ThemeColorsTab.qml:2624", "comment": "" }, { @@ -3296,13 +3206,13 @@ { "term": "Day Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:398, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:128, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:215, Modules/Settings/TimeWeatherTab.qml:252", + "reference": "Modules/Settings/GreeterTab.qml:398, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:138, Modules/Settings/TimeWeatherTab.qml:175, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:225, Modules/Settings/TimeWeatherTab.qml:262", "comment": "" }, { "term": "Day Month Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:402, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:132, Modules/Settings/TimeWeatherTab.qml:166, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:219, Modules/Settings/TimeWeatherTab.qml:253", + "reference": "Modules/Settings/GreeterTab.qml:402, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:142, Modules/Settings/TimeWeatherTab.qml:176, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:229, Modules/Settings/TimeWeatherTab.qml:263", "comment": "" }, { @@ -3311,24 +3221,12 @@ "reference": "Modules/Settings/GammaControlTab.qml:124", "comment": "" }, - { - "term": "days", - "context": "days", - "reference": "Modules/Settings/NotificationsTab.qml:849, Modules/Settings/ClipboardTab.qml:179", - "comment": "" - }, { "term": "Daytime", "context": "Daytime", "reference": "Modules/Settings/GammaControlTab.qml:524", "comment": "" }, - { - "term": "DDC/CI monitor", - "context": "DDC/CI monitor", - "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:333", - "comment": "" - }, { "term": "Deck", "context": "Deck", @@ -3338,7 +3236,7 @@ { "term": "Default", "context": "notification rule action option | notification rule urgency option | widget style option", - "reference": "Modules/Settings/DockTab.qml:389, Modules/Settings/ThemeColorsTab.qml:1482, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142, Modules/Settings/LauncherTab.qml:181", + "reference": "Modules/Settings/DockTab.qml:389, Modules/Settings/LauncherTab.qml:181, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142, Modules/Settings/ThemeColorsTab.qml:1482", "comment": "" }, { @@ -3347,18 +3245,18 @@ "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1676", "comment": "" }, - { - "term": "Default selected action", - "context": "Default selected action", - "reference": "Modules/Settings/PowerSleepTab.qml:377", - "comment": "" - }, { "term": "Default Width (%)", "context": "Default Width (%)", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:254", "comment": "" }, + { + "term": "Default selected action", + "context": "Default selected action", + "reference": "Modules/Settings/PowerSleepTab.qml:377", + "comment": "" + }, { "term": "Defaults", "context": "Defaults", @@ -3380,13 +3278,13 @@ { "term": "Delete", "context": "Delete", - "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/PrinterTab.qml:1094, Modules/Settings/PrinterTab.qml:1680, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/NetworkTab.qml:1825, Modules/Settings/DisplayConfigTab.qml:291", + "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/DisplayConfigTab.qml:291, Modules/Settings/NetworkTab.qml:1825, Modules/Settings/PrinterTab.qml:1094, Modules/Settings/PrinterTab.qml:1680", "comment": "" }, { "term": "Delete \"%1\"?", "context": "Delete \"%1\"?", - "reference": "Widgets/VpnDetailContent.qml:220, Modules/Settings/PrinterTab.qml:1093, Modules/Settings/NetworkTab.qml:1824", + "reference": "Widgets/VpnDetailContent.qml:220, Modules/Settings/NetworkTab.qml:1824, Modules/Settings/PrinterTab.qml:1093", "comment": "" }, { @@ -3395,24 +3293,12 @@ "reference": "Modules/Settings/PrinterTab.qml:1678", "comment": "" }, - { - "term": "Delete class \"%1\"?", - "context": "Delete class \"%1\"?", - "reference": "Modules/Settings/PrinterTab.qml:1679", - "comment": "" - }, { "term": "Delete Printer", "context": "Delete Printer", "reference": "Modules/Settings/PrinterTab.qml:1092", "comment": "" }, - { - "term": "Delete profile \"%1\"?", - "context": "Delete profile \"%1\"?", - "reference": "Modules/Settings/DisplayConfigTab.qml:278", - "comment": "" - }, { "term": "Delete Saved Item?", "context": "Delete Saved Item?", @@ -3426,9 +3312,15 @@ "comment": "" }, { - "term": "DEMO MODE - Click anywhere to exit", - "context": "DEMO MODE - Click anywhere to exit", - "reference": "Modules/Lock/LockScreenContent.qml:1115", + "term": "Delete class \"%1\"?", + "context": "Delete class \"%1\"?", + "reference": "Modules/Settings/PrinterTab.qml:1679", + "comment": "" + }, + { + "term": "Delete profile \"%1\"?", + "context": "Delete profile \"%1\"?", + "reference": "Modules/Settings/DisplayConfigTab.qml:278", "comment": "" }, { @@ -3446,7 +3338,7 @@ { "term": "Description", "context": "Description", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:884, Modules/Settings/PrinterTab.qml:796", + "reference": "Modules/Settings/PrinterTab.qml:796, Modals/DankLauncherV2/LauncherContent.qml:914", "comment": "" }, { @@ -3455,12 +3347,6 @@ "reference": "Modals/FileBrowser/FileBrowserContent.qml:271", "comment": "" }, - { - "term": "Desktop background images", - "context": "Desktop background images", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:44", - "comment": "" - }, { "term": "Desktop Clock", "context": "Desktop clock widget name", @@ -3482,25 +3368,25 @@ { "term": "Desktop Widgets", "context": "Desktop Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:171, Modules/Settings/DesktopWidgetsTab.qml:75", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:75, Modals/Settings/SettingsSidebar.qml:171", "comment": "" }, { - "term": "detached", - "context": "detached", - "reference": "Modals/MuxModal.qml:495", + "term": "Desktop background images", + "context": "Desktop background images", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:44", "comment": "" }, { - "term": "Detailed", - "context": "Detailed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:23", + "term": "Details for \"%1\"", + "context": "Details for \"%1\"", + "reference": "Modals/NetworkInfoModal.qml:69, Modals/NetworkWiredInfoModal.qml:69", "comment": "" }, { "term": "Development", "context": "Development", - "reference": "Services/AppSearchService.qml:625, Services/AppSearchService.qml:626, Services/AppSearchService.qml:627, Widgets/DankIconPicker.qml:31", + "reference": "Services/AppSearchService.qml:639, Services/AppSearchService.qml:640, Services/AppSearchService.qml:641, Widgets/DankIconPicker.qml:31", "comment": "" }, { @@ -3509,12 +3395,6 @@ "reference": "Widgets/KeybindItem.qml:1032, Modules/Settings/PrinterTab.qml:423", "comment": "" }, - { - "term": "device", - "context": "Generic device name | Generic device name fallback", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:91, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", - "comment": "" - }, { "term": "Device connections", "context": "Device connections", @@ -3529,32 +3409,14 @@ }, { "term": "Device paired", - "context": "Phone Connect pairing action", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:54, dms-plugins/DankKDEConnect/DankKDEConnect.qml:164", - "comment": "" - }, - { - "term": "Device unpaired", - "context": "KDE Connect unpair action | Phone Connect unpair action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:179, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:359", - "comment": "" - }, - { - "term": "devices connected", - "context": "KDE Connect status multiple devices", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:38", - "comment": "" - }, - { - "term": "dgop not available", - "context": "dgop not available", - "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:45, Modules/ControlCenter/Details/DiskUsageDetail.qml:65", + "context": "Device paired", + "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:54", "comment": "" }, { "term": "Digital", "context": "Digital", - "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:37, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:18", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:18, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:37", "comment": "" }, { @@ -3584,13 +3446,13 @@ { "term": "Disable Output", "context": "Disable Output", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:63, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:76", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:76, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:63", "comment": "" }, { "term": "Disabled", "context": "bluetooth status | lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/DankBarTab.qml:357, Modules/Settings/NetworkTab.qml:823, Modules/Settings/ThemeColorsTab.qml:1363, Modules/Settings/NotificationsTab.qml:729, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260, Modules/ControlCenter/Components/DragDropGrid.qml:317", + "reference": "Modules/Settings/DankBarTab.qml:357, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NetworkTab.qml:823, Modules/Settings/NotificationsTab.qml:729, Modules/Settings/ThemeColorsTab.qml:1363, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260, Modules/ControlCenter/Components/DragDropGrid.qml:317", "comment": "" }, { @@ -3662,7 +3524,7 @@ { "term": "Disk Usage Display", "context": "Disk Usage Display", - "reference": "Modules/Settings/WidgetsTabSection.qml:974", + "reference": "Modules/Settings/WidgetsTabSection.qml:975", "comment": "" }, { @@ -3674,7 +3536,7 @@ { "term": "Dismiss", "context": "Dismiss", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:27, Modules/Notifications/Popup/NotificationPopup.qml:1125, Modules/Notifications/Center/NotificationCard.qml:762, Modules/Notifications/Center/NotificationCard.qml:899, Modules/Notifications/Center/NotificationCard.qml:1044", + "reference": "Modules/Notifications/Center/NotificationCard.qml:762, Modules/Notifications/Center/NotificationCard.qml:899, Modules/Notifications/Center/NotificationCard.qml:1044, Modules/Notifications/Popup/NotificationPopup.qml:27, Modules/Notifications/Popup/NotificationPopup.qml:1125", "comment": "" }, { @@ -3683,6 +3545,36 @@ "reference": "Modules/Settings/WindowRulesTab.qml:546", "comment": "" }, + { + "term": "Display Assignment", + "context": "Display Assignment", + "reference": "Modules/Settings/DankBarTab.qml:426", + "comment": "" + }, + { + "term": "Display Control", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:141", + "comment": "" + }, + { + "term": "Display Name Format", + "context": "Display Name Format", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:217", + "comment": "" + }, + { + "term": "Display Profiles", + "context": "Display Profiles", + "reference": "Modules/Settings/DisplayConfigTab.qml:124", + "comment": "" + }, + { + "term": "Display Settings", + "context": "Display Settings", + "reference": "Modules/Plugins/PluginSettings.qml:239", + "comment": "" + }, { "term": "Display a dock with pinned and running applications", "context": "Display a dock with pinned and running applications", @@ -3692,7 +3584,7 @@ { "term": "Display all priorities over fullscreen apps", "context": "Display all priorities over fullscreen apps", - "reference": "Modules/Settings/NotificationsTab.qml:262, Modules/Notifications/Center/NotificationSettings.qml:249", + "reference": "Modules/Settings/NotificationsTab.qml:262, Modules/Notifications/Center/NotificationSettings.qml:255", "comment": "" }, { @@ -3707,12 +3599,6 @@ "reference": "Modules/Settings/WorkspacesTab.qml:60", "comment": "" }, - { - "term": "Display Assignment", - "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:426", - "comment": "" - }, { "term": "Display brightness control", "context": "Display brightness control", @@ -3725,30 +3611,12 @@ "reference": "Modules/Settings/DisplayConfig/NoBackendMessage.qml:50", "comment": "" }, - { - "term": "Display Control", - "context": "greeter feature card title", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:141", - "comment": "" - }, { "term": "Display currently focused application title", "context": "Display currently focused application title", "reference": "Modules/Settings/WidgetsTab.qml:60", "comment": "" }, - { - "term": "Display hourly weather predictions", - "context": "Display hourly weather predictions", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:136", - "comment": "" - }, - { - "term": "Display Name Format", - "context": "Display Name Format", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:217", - "comment": "" - }, { "term": "Display only workspaces that contain windows", "context": "Display only workspaces that contain windows", @@ -3761,24 +3629,12 @@ "reference": "Modules/Settings/PowerSleepTab.qml:368", "comment": "" }, - { - "term": "Display Profiles", - "context": "Display Profiles", - "reference": "Modules/Settings/DisplayConfigTab.qml:124", - "comment": "" - }, { "term": "Display seconds in the clock", "context": "Display seconds in the clock", "reference": "Modules/Settings/TimeWeatherTab.qml:64", "comment": "" }, - { - "term": "Display Settings", - "context": "Display Settings", - "reference": "Modules/Plugins/PluginSettings.qml:239", - "comment": "" - }, { "term": "Display the power system menu", "context": "Display the power system menu", @@ -3794,7 +3650,7 @@ { "term": "Displays", "context": "greeter settings link", - "reference": "Modals/Settings/SettingsSidebar.qml:206, Modals/Greeter/GreeterCompletePage.qml:373, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", + "reference": "Modules/Settings/Widgets/SettingsDisplayPicker.qml:36, Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:206", "comment": "" }, { @@ -3821,76 +3677,22 @@ "reference": "Common/Theme.qml:500", "comment": "" }, - { - "term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", - "context": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", - "reference": "Modules/Settings/GreeterTab.qml:757", - "comment": "" - }, - { - "term": "DMS out of date", - "context": "DMS out of date", - "reference": "Services/DMSService.qml:320", - "comment": "" - }, - { - "term": "DMS Plugin Manager Unavailable", - "context": "DMS Plugin Manager Unavailable", - "reference": "Modules/Settings/PluginsTab.qml:115", - "comment": "" - }, - { - "term": "DMS service is not connected. Clipboard settings are unavailable.", - "context": "DMS service is not connected. Clipboard settings are unavailable.", - "reference": "Modules/Settings/ClipboardTab.qml:267", - "comment": "" - }, - { - "term": "DMS shell actions (launcher, clipboard, etc.)", - "context": "DMS shell actions (launcher, clipboard, etc.)", - "reference": "Widgets/KeybindItem.qml:854", - "comment": "" - }, - { - "term": "DMS Shortcuts", - "context": "greeter keybinds section header", - "reference": "Modals/Greeter/GreeterCompletePage.qml:136", - "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:2209", - "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:65", - "comment": "" - }, - { - "term": "DMS_SOCKET not available", - "context": "DMS_SOCKET not available", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:219", - "comment": "" - }, { "term": "Do Not Disturb", "context": "Do Not Disturb", - "reference": "Modules/Settings/NotificationsTab.qml:386, Modules/Notifications/Center/NotificationSettings.qml:141, Modules/Notifications/Center/NotificationHeader.qml:63, Modules/ControlCenter/Models/WidgetModel.qml:85, Modules/ControlCenter/Components/DragDropGrid.qml:622", + "reference": "Modules/Settings/NotificationsTab.qml:386, Modules/Notifications/Center/NotificationHeader.qml:63, Modules/Notifications/Center/NotificationSettings.qml:141, Modules/ControlCenter/Components/DragDropGrid.qml:622, Modules/ControlCenter/Models/WidgetModel.qml:85", "comment": "" }, { "term": "Dock", "context": "greeter settings link", - "reference": "Modals/Settings/SettingsSidebar.qml:185, Modals/Greeter/GreeterCompletePage.qml:422", + "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:185", "comment": "" }, { "term": "Dock & Launcher", "context": "Dock & Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:179, Modals/Settings/SettingsSidebar.qml:563", + "reference": "Modals/Settings/SettingsSidebar.qml:179, Modals/Settings/SettingsSidebar.qml:569", "comment": "" }, { @@ -3908,7 +3710,7 @@ { "term": "Docs", "context": "greeter documentation link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:468, Modules/Settings/AboutTab.qml:274, Modules/Settings/AboutTab.qml:282", + "reference": "Modules/Settings/AboutTab.qml:274, Modules/Settings/AboutTab.qml:282, Modals/Greeter/GreeterCompletePage.qml:468", "comment": "" }, { @@ -3956,7 +3758,7 @@ { "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:899", + "reference": "Modules/Settings/WidgetsTab.qml:928", "comment": "" }, { @@ -3968,7 +3770,7 @@ { "term": "Driver", "context": "Driver", - "reference": "Modules/Settings/PrinterTab.qml:691, Modules/Settings/NetworkTab.qml:597", + "reference": "Modules/Settings/NetworkTab.qml:597, Modules/Settings/PrinterTab.qml:691", "comment": "" }, { @@ -4013,30 +3815,12 @@ "reference": "Services/WeatherService.qml:280", "comment": "" }, - { - "term": "DWL service not available", - "context": "DWL service not available", - "reference": "Modules/Settings/WidgetsTab.qml:41", - "comment": "" - }, { "term": "Dynamic", "context": "dynamic theme name", "reference": "Modules/Settings/ThemeColorsTab.qml:221", "comment": "" }, - { - "term": "Dynamic colors from wallpaper", - "context": "dynamic colors description", - "reference": "Modules/Settings/ThemeColorsTab.qml:479", - "comment": "" - }, - { - "term": "Dynamic colors, presets", - "context": "greeter theme description", - "reference": "Modals/Greeter/GreeterCompletePage.qml:390", - "comment": "" - }, { "term": "Dynamic Properties", "context": "Dynamic Properties", @@ -4050,27 +3834,15 @@ "comment": "" }, { - "term": "e.g., firefox, kitty --title foo", - "context": "e.g., firefox, kitty --title foo", - "reference": "Widgets/KeybindItem.qml:1477", + "term": "Dynamic colors from wallpaper", + "context": "dynamic colors description", + "reference": "Modules/Settings/ThemeColorsTab.qml:479", "comment": "" }, { - "term": "e.g., focus-workspace 3, resize-column -10", - "context": "e.g., focus-workspace 3, resize-column -10", - "reference": "Widgets/KeybindItem.qml:1414", - "comment": "" - }, - { - "term": "e.g., notify-send 'Hello' && sleep 1", - "context": "e.g., notify-send 'Hello' && sleep 1", - "reference": "Widgets/KeybindItem.qml:1509", - "comment": "" - }, - { - "term": "e.g., scratch, /^tmp_.*/, build", - "context": "e.g., scratch, /^tmp_.*/, build", - "reference": "Modules/Settings/MuxTab.qml:131", + "term": "Dynamic colors, presets", + "context": "greeter theme description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:390", "comment": "" }, { @@ -4082,7 +3854,7 @@ { "term": "Edit App", "context": "Edit App", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:118, Modals/DankLauncherV2/LauncherContent.qml:807", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:118, Modals/DankLauncherV2/LauncherContent.qml:837", "comment": "" }, { @@ -4094,13 +3866,13 @@ { "term": "Education", "context": "Education", - "reference": "Services/AppSearchService.qml:628", + "reference": "Services/AppSearchService.qml:642", "comment": "" }, { "term": "Empty", "context": "battery status", - "reference": "Services/BatteryService.qml:140, Modules/Notepad/NotepadTextEditor.qml:835", + "reference": "Services/BatteryService.qml:140, Modules/Notepad/NotepadTextEditor.qml:837", "comment": "" }, { @@ -4109,12 +3881,6 @@ "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:112", "comment": "" }, - { - "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:1064", - "comment": "" - }, { "term": "Enable Autoconnect", "context": "Enable Autoconnect", @@ -4127,18 +3893,66 @@ "reference": "Modules/Settings/DankBarTab.qml:411", "comment": "" }, - { - "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", - "context": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", - "reference": "Modules/Settings/WallpaperTab.qml:1281", - "comment": "" - }, { "term": "Enable Do Not Disturb", "context": "Enable Do Not Disturb", "reference": "Modules/Settings/NotificationsTab.qml:392", "comment": "" }, + { + "term": "Enable History", + "context": "notification history toggle label", + "reference": "Modules/Settings/NotificationsTab.qml:809", + "comment": "" + }, + { + "term": "Enable Overview Overlay", + "context": "Enable Overview Overlay", + "reference": "Modules/Settings/LauncherTab.qml:508", + "comment": "" + }, + { + "term": "Enable Ripple Effects", + "context": "Enable Ripple Effects", + "reference": "Modules/Settings/TypographyMotionTab.qml:476", + "comment": "" + }, + { + "term": "Enable System Sounds", + "context": "Enable System Sounds", + "reference": "Modules/Settings/SoundsTab.qml:36", + "comment": "" + }, + { + "term": "Enable Video Screensaver", + "context": "Enable Video Screensaver", + "reference": "Modules/Settings/LockScreenTab.qml:273", + "comment": "" + }, + { + "term": "Enable Weather", + "context": "Enable Weather", + "reference": "Modules/Settings/TimeWeatherTab.qml:400", + "comment": "" + }, + { + "term": "Enable WiFi", + "context": "Enable WiFi", + "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:244", + "comment": "" + }, + { + "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:1064", + "comment": "" + }, + { + "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", + "context": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", + "reference": "Modules/Settings/WallpaperTab.qml:1281", + "comment": "" + }, { "term": "Enable fingerprint at login", "context": "Enable fingerprint at login", @@ -4157,30 +3971,12 @@ "reference": "Modules/Settings/GreeterTab.qml:528", "comment": "" }, - { - "term": "Enable History", - "context": "notification history toggle label", - "reference": "Modules/Settings/NotificationsTab.qml:809", - "comment": "" - }, { "term": "Enable loginctl lock integration", "context": "Enable loginctl lock integration", "reference": "Modules/Settings/LockScreenTab.qml:177", "comment": "" }, - { - "term": "Enable Overview Overlay", - "context": "Enable Overview Overlay", - "reference": "Modules/Settings/LauncherTab.qml:508", - "comment": "" - }, - { - "term": "Enable Ripple Effects", - "context": "Enable Ripple Effects", - "reference": "Modules/Settings/TypographyMotionTab.qml:476", - "comment": "" - }, { "term": "Enable security key at login", "context": "Enable security key at login", @@ -4193,30 +3989,6 @@ "reference": "Modules/Settings/LockScreenTab.qml:230", "comment": "" }, - { - "term": "Enable System Sounds", - "context": "Enable System Sounds", - "reference": "Modules/Settings/SoundsTab.qml:36", - "comment": "" - }, - { - "term": "Enable Video Screensaver", - "context": "Enable Video Screensaver", - "reference": "Modules/Settings/LockScreenTab.qml:273", - "comment": "" - }, - { - "term": "Enable Weather", - "context": "Enable Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:390", - "comment": "" - }, - { - "term": "Enable WiFi", - "context": "Enable WiFi", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:244", - "comment": "" - }, { "term": "Enabled", "context": "bluetooth status", @@ -4226,13 +3998,13 @@ { "term": "Enabled, but fingerprint availability could not be confirmed.", "context": "Enabled, but fingerprint availability could not be confirmed.", - "reference": "Modules/Settings/LockScreenTab.qml:28, Modules/Settings/GreeterTab.qml:49", + "reference": "Modules/Settings/GreeterTab.qml:49, Modules/Settings/LockScreenTab.qml:28", "comment": "" }, { "term": "Enabled, but no fingerprint reader was detected.", "context": "Enabled, but no fingerprint reader was detected.", - "reference": "Modules/Settings/LockScreenTab.qml:24, Modules/Settings/GreeterTab.qml:45", + "reference": "Modules/Settings/GreeterTab.qml:45, Modules/Settings/LockScreenTab.qml:24", "comment": "" }, { @@ -4262,7 +4034,7 @@ { "term": "Enabled, but security-key availability could not be confirmed.", "context": "Enabled, but security-key availability could not be confirmed.", - "reference": "Modules/Settings/LockScreenTab.qml:43, Modules/Settings/GreeterTab.qml:71", + "reference": "Modules/Settings/GreeterTab.qml:71, Modules/Settings/LockScreenTab.qml:43", "comment": "" }, { @@ -4292,19 +4064,19 @@ { "term": "End", "context": "End", - "reference": "Modules/Settings/ThemeColorsTab.qml:1178, Modules/Settings/GammaControlTab.qml:295", + "reference": "Modules/Settings/GammaControlTab.qml:295, Modules/Settings/ThemeColorsTab.qml:1178", "comment": "" }, { "term": "Enlarge on Hover", "context": "Enlarge on Hover", - "reference": "Modules/Settings/WidgetsTabSection.qml:2341", + "reference": "Modules/Settings/WidgetsTabSection.qml:2686", "comment": "" }, { "term": "Enlargement %", "context": "Enlargement %", - "reference": "Modules/Settings/WidgetsTabSection.qml:2380", + "reference": "Modules/Settings/WidgetsTabSection.qml:2725", "comment": "" }, { @@ -4313,10 +4085,22 @@ "reference": "Modals/BluetoothPairingModal.qml:211", "comment": "" }, + { + "term": "Enter PIN", + "context": "Enter PIN", + "reference": "Modals/BluetoothPairingModal.qml:176", + "comment": "" + }, + { + "term": "Enter PIN for ", + "context": "Enter PIN for ", + "reference": "Modals/BluetoothPairingModal.qml:137, Modals/WifiPasswordModal.qml:351", + "comment": "" + }, { "term": "Enter a new name for session \"%1\"", "context": "Enter a new name for session \"%1\"", - "reference": "Modals/MuxModal.qml:115", + "reference": "Modals/MuxModal.qml:90", "comment": "" }, { @@ -4328,7 +4112,7 @@ { "term": "Enter command or script path", "context": "Enter command or script path", - "reference": "Modules/Settings/MuxTab.qml:92", + "reference": "Modules/Settings/MuxTab.qml:78", "comment": "" }, { @@ -4340,13 +4124,13 @@ { "term": "Enter custom lock screen format (e.g., dddd, MMMM d)", "context": "Enter custom lock screen format (e.g., dddd, MMMM d)", - "reference": "Modules/Settings/TimeWeatherTab.qml:274", + "reference": "Modules/Settings/TimeWeatherTab.qml:284", "comment": "" }, { "term": "Enter custom top bar format (e.g., ddd MMM d)", "context": "Enter custom top bar format (e.g., ddd MMM d)", - "reference": "Modules/Settings/TimeWeatherTab.qml:187", + "reference": "Modules/Settings/TimeWeatherTab.qml:197", "comment": "" }, { @@ -4385,18 +4169,6 @@ "reference": "Modals/WifiPasswordModal.qml:355, Modals/WifiPasswordModal.qml:358", "comment": "" }, - { - "term": "Enter PIN", - "context": "Enter PIN", - "reference": "Modals/BluetoothPairingModal.qml:176", - "comment": "" - }, - { - "term": "Enter PIN for ", - "context": "Enter PIN for ", - "reference": "Modals/WifiPasswordModal.qml:351, Modals/BluetoothPairingModal.qml:137", - "comment": "" - }, { "term": "Enter this passkey on ", "context": "Enter this passkey on ", @@ -4409,12 +4181,6 @@ "reference": "Modules/Settings/ClipboardTab.qml:435", "comment": "" }, - { - "term": "Enter URL or text to share", - "context": "KDE Connect share input placeholder", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:73", - "comment": "" - }, { "term": "Enterprise", "context": "Enterprise", @@ -4436,13 +4202,13 @@ { "term": "Environment Variables", "context": "Environment Variables", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:904", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:934", "comment": "" }, { "term": "Error", "context": "Error", - "reference": "Services/CupsService.qml:834", + "reference": "Modules/SystemUpdatePopout.qml:72, Services/CupsService.qml:834", "comment": "" }, { @@ -4457,12 +4223,6 @@ "reference": "Modules/Settings/NetworkTab.qml:211, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:328, Modules/ControlCenter/Components/DragDropGrid.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:300, Modules/ControlCenter/Details/NetworkDetail.qml:136", "comment": "" }, - { - "term": "events", - "context": "events", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:142", - "comment": "" - }, { "term": "Exact", "context": "notification rule match type option", @@ -4472,7 +4232,7 @@ { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:546, Modules/Settings/DankBarTab.qml:830", + "reference": "Modules/Settings/DankBarTab.qml:830, Modules/Settings/DockTab.qml:546", "comment": "" }, { @@ -4499,12 +4259,6 @@ "reference": "Common/Theme.qml:479", "comment": "" }, - { - "term": "ext", - "context": "ext", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:686", - "comment": "" - }, { "term": "Extend battery life", "context": "power profile description", @@ -4526,7 +4280,7 @@ { "term": "Extra Arguments", "context": "Extra Arguments", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:930", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:960", "comment": "" }, { @@ -4553,12 +4307,6 @@ "reference": "Modules/Settings/PowerSleepTab.qml:83", "comment": "" }, - { - "term": "Failed to accept pairing", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:161", - "comment": "" - }, { "term": "Failed to activate configuration", "context": "Failed to activate configuration", @@ -4583,12 +4331,6 @@ "reference": "Services/CupsService.qml:710", "comment": "" }, - { - "term": "Failed to browse device", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:143", - "comment": "" - }, { "term": "Failed to cancel all jobs", "context": "Failed to cancel all jobs", @@ -4601,24 +4343,30 @@ "reference": "Services/CupsService.qml:423", "comment": "" }, + { + "term": "Failed to check for updates:\n%1", + "context": "Failed to check for updates:\n%1", + "reference": "Modules/SystemUpdatePopout.qml:141", + "comment": "" + }, { "term": "Failed to check pin limit", "context": "Failed to check pin limit", "reference": "Services/ClipboardService.qml:185", "comment": "" }, - { - "term": "Failed to connect to %1", - "context": "Failed to connect to %1", - "reference": "Services/DMSNetworkService.qml:355", - "comment": "" - }, { "term": "Failed to connect VPN", "context": "Failed to connect VPN", "reference": "Services/DMSNetworkService.qml:830", "comment": "" }, + { + "term": "Failed to connect to %1", + "context": "Failed to connect to %1", + "reference": "Services/DMSNetworkService.qml:355", + "comment": "" + }, { "term": "Failed to copy entry", "context": "Failed to copy entry", @@ -4637,6 +4385,12 @@ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:193", "comment": "" }, + { + "term": "Failed to delete VPN", + "context": "Failed to delete VPN", + "reference": "Services/VPNService.qml:157", + "comment": "" + }, { "term": "Failed to delete class", "context": "Failed to delete class", @@ -4649,12 +4403,6 @@ "reference": "Services/CupsService.qml:537", "comment": "" }, - { - "term": "Failed to delete VPN", - "context": "Failed to delete VPN", - "reference": "Services/VPNService.qml:157", - "comment": "" - }, { "term": "Failed to disable job acceptance", "context": "Failed to disable job acceptance", @@ -4691,6 +4439,12 @@ "reference": "Services/DisplayService.qml:624", "comment": "" }, + { + "term": "Failed to enable WiFi", + "context": "Failed to enable WiFi", + "reference": "Services/DMSNetworkService.qml:581", + "comment": "" + }, { "term": "Failed to enable job acceptance", "context": "Failed to enable job acceptance", @@ -4703,12 +4457,6 @@ "reference": "Services/DisplayService.qml:456", "comment": "" }, - { - "term": "Failed to enable WiFi", - "context": "Failed to enable WiFi", - "reference": "Services/DMSNetworkService.qml:581", - "comment": "" - }, { "term": "Failed to hold job", "context": "Failed to hold job", @@ -4722,9 +4470,9 @@ "comment": "" }, { - "term": "Failed to launch SMS app", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:133", + "term": "Failed to load VPN config", + "context": "Failed to load VPN config", + "reference": "Services/VPNService.qml:114", "comment": "" }, { @@ -4733,12 +4481,6 @@ "reference": "Modules/Settings/ClipboardTab.qml:267", "comment": "" }, - { - "term": "Failed to load VPN config", - "context": "Failed to load VPN config", - "reference": "Services/VPNService.qml:114", - "comment": "" - }, { "term": "Failed to move job", "context": "Failed to move job", @@ -4748,7 +4490,7 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1346", + "reference": "Common/SettingsData.qml:1352", "comment": "" }, { @@ -4760,7 +4502,7 @@ { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1247, Common/SettingsData.qml:2743", + "reference": "Common/SettingsData.qml:1253, Common/SettingsData.qml:2749", "comment": "" }, { @@ -4781,12 +4523,6 @@ "reference": "Services/CupsService.qml:640", "comment": "" }, - { - "term": "Failed to reject pairing", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:170", - "comment": "" - }, { "term": "Failed to remove device", "context": "Failed to remove device", @@ -4823,12 +4559,6 @@ "reference": "Services/CupsService.qml:406", "comment": "" }, - { - "term": "Failed to ring device", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:96", - "comment": "" - }, { "term": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "context": "greeter status error", @@ -4859,24 +4589,6 @@ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:199", "comment": "" }, - { - "term": "Failed to send clipboard", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:114", - "comment": "" - }, - { - "term": "Failed to send file", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:361, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:421", - "comment": "" - }, - { - "term": "Failed to send ping", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:105", - "comment": "" - }, { "term": "Failed to set brightness", "context": "Failed to set brightness", @@ -4901,6 +4613,12 @@ "reference": "Services/DisplayService.qml:525, Services/DisplayService.qml:576, Services/DisplayService.qml:614", "comment": "" }, + { + "term": "Failed to set power profile", + "context": "Failed to set power profile", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:30", + "comment": "" + }, { "term": "Failed to set profile image", "context": "Failed to set profile image", @@ -4913,12 +4631,6 @@ "reference": "Services/PortalService.qml:154", "comment": "" }, - { - "term": "Failed to share", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:341, dms-plugins/DankKDEConnect/DankKDEConnect.qml:349, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:407", - "comment": "" - }, { "term": "Failed to start connection to %1", "context": "Failed to start connection to %1", @@ -4931,6 +4643,12 @@ "reference": "Services/ClipboardService.qml:213", "comment": "" }, + { + "term": "Failed to update VPN", + "context": "Failed to update VPN", + "reference": "Services/VPNService.qml:140", + "comment": "" + }, { "term": "Failed to update autoconnect", "context": "Failed to update autoconnect", @@ -4955,46 +4673,28 @@ "reference": "Services/CupsService.qml:590", "comment": "" }, - { - "term": "Failed to update VPN", - "context": "Failed to update VPN", - "reference": "Services/VPNService.qml:140", - "comment": "" - }, { "term": "Failed to write temp file for validation", "context": "Failed to write temp file for validation", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1294", "comment": "" }, - { - "term": "featured", - "context": "featured", - "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:487", - "comment": "" - }, { "term": "Features", "context": "greeter welcome page section header", "reference": "Modals/Greeter/GreeterWelcomePage.qml:75", "comment": "" }, - { - "term": "Feels", - "context": "Feels", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:401", - "comment": "" - }, { "term": "Feels Like", "context": "Feels Like", - "reference": "Modules/Settings/TimeWeatherTab.qml:879", + "reference": "Modules/Settings/TimeWeatherTab.qml:889", "comment": "" }, { "term": "Feels Like %1°", "context": "weather feels like temperature", - "reference": "Modules/Settings/TimeWeatherTab.qml:766, Modules/DankDash/WeatherTab.qml:309", + "reference": "Modules/DankDash/WeatherTab.qml:309, Modules/Settings/TimeWeatherTab.qml:776", "comment": "" }, { @@ -5027,28 +4727,16 @@ "reference": "Modals/FileBrowser/FileInfo.qml:137", "comment": "" }, - { - "term": "File received from", - "context": "Phone Connect file share notification", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:79", - "comment": "" - }, { "term": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "context": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "reference": "Modals/DankLauncherV2/ResultsList.qml:471", "comment": "" }, - { - "term": "File search requires dsearch\nInstall from github.com/morelazers/dsearch", - "context": "File search requires dsearch\nInstall from github.com/morelazers/dsearch", - "reference": "Modals/DankLauncherV2/ResultsList.qml:470", - "comment": "" - }, { "term": "Files", "context": "Files", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:317, Modals/DankLauncherV2/LauncherContent.qml:589, Modals/DankLauncherV2/Controller.qml:164, Modals/DankLauncherV2/Controller.qml:959, Modals/DankLauncherV2/Controller.qml:980", + "reference": "Modals/DankLauncherV2/Controller.qml:164, Modals/DankLauncherV2/Controller.qml:962, Modals/DankLauncherV2/Controller.qml:983, Modals/DankLauncherV2/LauncherContent.qml:347, Modals/DankLauncherV2/LauncherContent.qml:619", "comment": "" }, { @@ -5060,13 +4748,7 @@ { "term": "Fill", "context": "wallpaper fill mode", - "reference": "Modules/Settings/WallpaperTab.qml:312, Modules/Settings/GreeterTab.qml:698", - "comment": "" - }, - { - "term": "Find in note...", - "context": "Find in note...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:372", + "reference": "Modules/Settings/GreeterTab.qml:698, Modules/Settings/WallpaperTab.qml:312", "comment": "" }, { @@ -5075,10 +4757,16 @@ "reference": "Modules/Notepad/NotepadSettings.qml:185", "comment": "" }, + { + "term": "Find in note...", + "context": "Find in note...", + "reference": "Modules/Notepad/NotepadTextEditor.qml:372", + "comment": "" + }, { "term": "Fingerprint availability could not be confirmed.", "context": "Fingerprint availability could not be confirmed.", - "reference": "Modules/Settings/LockScreenTab.qml:28, Modules/Settings/GreeterTab.qml:49", + "reference": "Modules/Settings/GreeterTab.qml:49, Modules/Settings/LockScreenTab.qml:28", "comment": "" }, { @@ -5102,7 +4790,7 @@ { "term": "First Day of Week", "context": "First Day of Week", - "reference": "Modules/Settings/TimeWeatherTab.qml:92", + "reference": "Modules/Settings/TimeWeatherTab.qml:102", "comment": "" }, { @@ -5120,13 +4808,13 @@ { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/KeybindsTab.qml:371, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", + "reference": "Modules/Settings/KeybindsTab.qml:371, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/KeybindsTab.qml:368, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", + "reference": "Modules/Settings/KeybindsTab.qml:368, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", "comment": "" }, { @@ -5138,25 +4826,25 @@ { "term": "Flipped", "context": "Flipped", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1801, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1822", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1801, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1822, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { "term": "Flipped 180°", "context": "Flipped 180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1805, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1826", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1805, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1826, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { "term": "Flipped 270°", "context": "Flipped 270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1807, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1828", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1807, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1828, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { "term": "Flipped 90°", "context": "Flipped 90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1803, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1824", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1803, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1824, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { @@ -5174,7 +4862,7 @@ { "term": "Focus at Startup", "context": "Focus at Startup", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70", "comment": "" }, { @@ -5195,18 +4883,18 @@ "reference": "Modules/Settings/NotificationsTab.qml:297", "comment": "" }, - { - "term": "Focused monitor only", - "context": "Focused monitor only", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:422", - "comment": "" - }, { "term": "Focused Window", "context": "Focused Window", "reference": "Modules/Settings/WidgetsTab.qml:59", "comment": "" }, + { + "term": "Focused monitor only", + "context": "Focused monitor only", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:422", + "comment": "" + }, { "term": "Fog", "context": "Fog", @@ -5222,13 +4910,7 @@ { "term": "Folders", "context": "Folders", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:594, Modals/DankLauncherV2/Controller.qml:970, Modals/DankLauncherV2/Controller.qml:980", - "comment": "" - }, - { - "term": "Follow focus", - "context": "Follow focus", - "reference": "Widgets/KeybindItem.qml:1311", + "reference": "Modals/DankLauncherV2/Controller.qml:973, Modals/DankLauncherV2/Controller.qml:983, Modals/DankLauncherV2/LauncherContent.qml:624", "comment": "" }, { @@ -5237,6 +4919,12 @@ "reference": "Modules/Settings/WorkspacesTab.qml:141", "comment": "" }, + { + "term": "Follow focus", + "context": "Follow focus", + "reference": "Widgets/KeybindItem.qml:1311", + "comment": "" + }, { "term": "Font", "context": "Font", @@ -5261,18 +4949,18 @@ "reference": "Modules/Notepad/NotepadSettings.qml:245", "comment": "" }, - { - "term": "Font used on the login screen", - "context": "Font used on the login screen", - "reference": "Modules/Settings/GreeterTab.qml:576", - "comment": "" - }, { "term": "Font Weight", "context": "Font Weight", "reference": "Modules/Settings/TypographyMotionTab.qml:114", "comment": "" }, + { + "term": "Font used on the login screen", + "context": "Font used on the login screen", + "reference": "Modules/Settings/GreeterTab.qml:576", + "comment": "" + }, { "term": "Force HDR", "context": "Force HDR", @@ -5285,12 +4973,6 @@ "reference": "Modules/ProcessList/ProcessContextMenu.qml:48", "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:2151", - "comment": "" - }, { "term": "Force Wide Color", "context": "Force Wide Color", @@ -5298,15 +4980,9 @@ "comment": "" }, { - "term": "Forecast", - "context": "Forecast", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:27", - "comment": "" - }, - { - "term": "Forecast Days", - "context": "Forecast Days", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:127", + "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:2151", "comment": "" }, { @@ -5354,7 +5030,19 @@ { "term": "Format Legend", "context": "Format Legend", - "reference": "Modules/Settings/TimeWeatherTab.qml:303", + "reference": "Modules/Settings/TimeWeatherTab.qml:313", + "comment": "" + }, + { + "term": "Found %1 package to update:", + "context": "Found %1 package to update:", + "reference": "Modules/SystemUpdatePopout.qml:153", + "comment": "" + }, + { + "term": "Found %1 packages to update:", + "context": "Found %1 packages to update:", + "reference": "Modules/SystemUpdatePopout.qml:154", "comment": "" }, { @@ -5396,13 +5084,13 @@ { "term": "Full Day & Month", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:426, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:156, Modules/Settings/TimeWeatherTab.qml:172, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:243, Modules/Settings/TimeWeatherTab.qml:259", + "reference": "Modules/Settings/GreeterTab.qml:426, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:166, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:253, Modules/Settings/TimeWeatherTab.qml:269", "comment": "" }, { "term": "Full with Year", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:418, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:148, Modules/Settings/TimeWeatherTab.qml:170, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:235, Modules/Settings/TimeWeatherTab.qml:257", + "reference": "Modules/Settings/GreeterTab.qml:418, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:158, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:245, Modules/Settings/TimeWeatherTab.qml:267", "comment": "" }, { @@ -5435,16 +5123,46 @@ "reference": "Modules/Plugins/DesktopPluginWrapper.qml:746", "comment": "" }, + { + "term": "GPU", + "context": "GPU", + "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:138", + "comment": "" + }, + { + "term": "GPU Monitoring", + "context": "gpu section header in system monitor", + "reference": "Modules/ProcessList/SystemView.qml:117", + "comment": "" + }, + { + "term": "GPU Temperature", + "context": "GPU Temperature", + "reference": "Modules/Settings/WidgetsTab.qml:140, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", + "comment": "" + }, + { + "term": "GPU temperature display", + "context": "GPU temperature display", + "reference": "Modules/Settings/WidgetsTab.qml:141", + "comment": "" + }, + { + "term": "GTK, Qt, IDEs, more", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:99", + "comment": "" + }, { "term": "Games", "context": "Games", - "reference": "Services/AppSearchService.qml:629", + "reference": "Services/AppSearchService.qml:643", "comment": "" }, { "term": "Gamma Control", "context": "Gamma Control", - "reference": "Modals/Settings/SettingsSidebar.qml:218, Modules/Settings/GammaControlTab.qml:64", + "reference": "Modules/Settings/GammaControlTab.qml:64, Modals/Settings/SettingsSidebar.qml:218", "comment": "" }, { @@ -5453,6 +5171,12 @@ "reference": "Modules/Settings/GammaControlTab.qml:77", "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:2857", + "comment": "" + }, { "term": "Generic", "context": "theme category option", @@ -5486,7 +5210,7 @@ { "term": "Good", "context": "Good", - "reference": "Modules/Settings/TimeWeatherTab.qml:1124", + "reference": "Modules/Settings/TimeWeatherTab.qml:1134", "comment": "" }, { @@ -5501,24 +5225,6 @@ "reference": "Modules/Settings/DankBarTab.qml:1336", "comment": "" }, - { - "term": "GPU", - "context": "GPU", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:138", - "comment": "" - }, - { - "term": "GPU Monitoring", - "context": "gpu section header in system monitor", - "reference": "Modules/ProcessList/SystemView.qml:117", - "comment": "" - }, - { - "term": "GPU Temperature", - "context": "GPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:140, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", - "comment": "" - }, { "term": "Gradually fade the screen before locking with a configurable grace period", "context": "Gradually fade the screen before locking with a configurable grace period", @@ -5540,19 +5246,13 @@ { "term": "Graphics", "context": "Graphics", - "reference": "Services/AppSearchService.qml:630, Services/AppSearchService.qml:631", + "reference": "Services/AppSearchService.qml:644, Services/AppSearchService.qml:645", "comment": "" }, { "term": "Greeter", "context": "Greeter", - "reference": "Modals/Settings/SettingsSidebar.qml:292", - "comment": "" - }, - { - "term": "Greeter activated. greetd is now enabled.", - "context": "Greeter activated. greetd is now enabled.", - "reference": "Modules/Settings/GreeterTab.qml:381", + "reference": "Modals/Settings/SettingsSidebar.qml:298", "comment": "" }, { @@ -5567,6 +5267,18 @@ "reference": "Modules/Settings/GreeterTab.qml:720", "comment": "" }, + { + "term": "Greeter Status", + "context": "Greeter Status", + "reference": "Modules/Settings/GreeterTab.qml:447", + "comment": "" + }, + { + "term": "Greeter activated. greetd is now enabled.", + "context": "Greeter activated. greetd is now enabled.", + "reference": "Modules/Settings/GreeterTab.qml:381", + "comment": "" + }, { "term": "Greeter font", "context": "Greeter font", @@ -5585,16 +5297,10 @@ "reference": "Modules/Settings/GreeterTab.qml:636", "comment": "" }, - { - "term": "Greeter Status", - "context": "Greeter Status", - "reference": "Modules/Settings/GreeterTab.qml:447", - "comment": "" - }, { "term": "Grid", "context": "Grid", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:48, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:355, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:364", + "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:355, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:364, Modules/DankBar/Popouts/DWLLayoutPopout.qml:48", "comment": "" }, { @@ -5621,10 +5327,16 @@ "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:240", "comment": "" }, + { + "term": "Group Workspace Apps", + "context": "Group Workspace Apps", + "reference": "Modules/Settings/WorkspacesTab.qml:121", + "comment": "" + }, { "term": "Group by App", "context": "Group by App", - "reference": "Modules/Settings/DockTab.qml:157, Modules/Settings/WidgetsTabSection.qml:1795", + "reference": "Modules/Settings/DockTab.qml:157, Modules/Settings/WidgetsTabSection.qml:2140", "comment": "" }, { @@ -5645,30 +5357,24 @@ "reference": "Modules/Settings/WorkspacesTab.qml:122", "comment": "" }, - { - "term": "Group Workspace Apps", - "context": "Group Workspace Apps", - "reference": "Modules/Settings/WorkspacesTab.qml:121", - "comment": "" - }, { "term": "Groups", "context": "Groups", "reference": "Modules/Settings/DesktopWidgetsTab.qml:112", "comment": "" }, - { - "term": "GTK, Qt, IDEs, more", - "context": "greeter feature card description", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:99", - "comment": "" - }, { "term": "HDR (EDID)", "context": "HDR (EDID)", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:145, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:155, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:166", "comment": "" }, + { + "term": "HDR Tone Mapping", + "context": "HDR Tone Mapping", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:229", + "comment": "" + }, { "term": "HDR mode is experimental. Verify your monitor supports HDR before enabling.", "context": "HDR mode is experimental. Verify your monitor supports HDR before enabling.", @@ -5676,9 +5382,15 @@ "comment": "" }, { - "term": "HDR Tone Mapping", - "context": "HDR Tone Mapping", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:229", + "term": "HSV", + "context": "HSV", + "reference": "Modals/DankColorPickerModal.qml:685", + "comment": "" + }, + { + "term": "HTML copied to clipboard", + "context": "HTML copied to clipboard", + "reference": "Modules/Notepad/NotepadTextEditor.qml:275", "comment": "" }, { @@ -5732,7 +5444,7 @@ { "term": "Hibernate", "context": "Hibernate", - "reference": "Modals/PowerMenuModal.qml:210, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:128", + "reference": "Modals/PowerMenuModal.qml:210, Modules/Lock/LockPowerMenu.qml:128, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378", "comment": "" }, { @@ -5753,18 +5465,18 @@ "reference": "Modules/Settings/LauncherTab.qml:840", "comment": "" }, - { - "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", - "context": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", - "reference": "Modules/Settings/LauncherTab.qml:870", - "comment": "" - }, { "term": "Hidden Network", "context": "Hidden Network", "reference": "Modals/WifiPasswordModal.qml:252", "comment": "" }, + { + "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", + "context": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", + "reference": "Modules/Settings/LauncherTab.qml:870", + "comment": "" + }, { "term": "Hide", "context": "Hide", @@ -5783,58 +5495,16 @@ "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:112", "comment": "" }, - { - "term": "Hide cursor after inactivity (0 = disabled)", - "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2311", - "comment": "" - }, - { - "term": "Hide cursor when pressing keyboard keys", - "context": "Hide cursor when pressing keyboard keys", - "reference": "Modules/Settings/ThemeColorsTab.qml:2265", - "comment": "" - }, - { - "term": "Hide cursor when using touch input", - "context": "Hide cursor when using touch input", - "reference": "Modules/Settings/ThemeColorsTab.qml:2294", - "comment": "" - }, { "term": "Hide Delay", "context": "Hide Delay", "reference": "Modules/Settings/DankBarTab.qml:620", "comment": "" }, - { - "term": "Hide device", - "context": "Hide device", - "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", - "comment": "" - }, { "term": "Hide Indicators", "context": "Hide Indicators", - "reference": "Modules/Settings/WidgetsTabSection.qml:2189", - "comment": "" - }, - { - "term": "Hide notification content until expanded", - "context": "Hide notification content until expanded", - "reference": "Modules/Notifications/Center/NotificationSettings.qml:293", - "comment": "" - }, - { - "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:289", - "comment": "" - }, - { - "term": "Hide on Touch", - "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:2293", + "reference": "Modules/Settings/WidgetsTabSection.qml:2534", "comment": "" }, { @@ -5855,6 +5525,48 @@ "reference": "Modules/Settings/DankBarTab.qml:643", "comment": "" }, + { + "term": "Hide cursor after inactivity (0 = disabled)", + "context": "Hide cursor after inactivity (0 = disabled)", + "reference": "Modules/Settings/ThemeColorsTab.qml:2311", + "comment": "" + }, + { + "term": "Hide cursor when pressing keyboard keys", + "context": "Hide cursor when pressing keyboard keys", + "reference": "Modules/Settings/ThemeColorsTab.qml:2265", + "comment": "" + }, + { + "term": "Hide cursor when using touch input", + "context": "Hide cursor when using touch input", + "reference": "Modules/Settings/ThemeColorsTab.qml:2294", + "comment": "" + }, + { + "term": "Hide device", + "context": "Hide device", + "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", + "comment": "" + }, + { + "term": "Hide notification content until expanded", + "context": "Hide notification content until expanded", + "reference": "Modules/Notifications/Center/NotificationSettings.qml:306", + "comment": "" + }, + { + "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:289", + "comment": "" + }, + { + "term": "Hide on Touch", + "context": "Hide on Touch", + "reference": "Modules/Settings/ThemeColorsTab.qml:2293", + "comment": "" + }, { "term": "High-fidelity palette that preserves source hues.", "context": "High-fidelity palette that preserves source hues.", @@ -5876,13 +5588,7 @@ { "term": "History", "context": "notification center tab", - "reference": "Modals/Clipboard/ClipboardHeader.qml:60, Modules/Notifications/Center/NotificationHeader.qml:151", - "comment": "" - }, - { - "term": "History cleared. %1 pinned entries kept.", - "context": "History cleared. %1 pinned entries kept.", - "reference": "Services/ClipboardService.qml:232", + "reference": "Modules/Notifications/Center/NotificationHeader.qml:151, Modals/Clipboard/ClipboardHeader.qml:60", "comment": "" }, { @@ -5894,7 +5600,13 @@ { "term": "History Settings", "context": "History Settings", - "reference": "Modules/Settings/NotificationsTab.qml:803, Modules/Settings/ClipboardTab.qml:278, Modules/Notifications/Center/NotificationSettings.qml:316", + "reference": "Modules/Settings/ClipboardTab.qml:278, Modules/Settings/NotificationsTab.qml:803, Modules/Notifications/Center/NotificationSettings.qml:330", + "comment": "" + }, + { + "term": "History cleared. %1 pinned entries kept.", + "context": "History cleared. %1 pinned entries kept.", + "reference": "Services/ClipboardService.qml:232", "comment": "" }, { @@ -5909,6 +5621,12 @@ "reference": "Modals/PowerMenuModal.qml:792, Modules/Lock/LockPowerMenu.qml:800", "comment": "" }, + { + "term": "Hold to Confirm Power Actions", + "context": "Hold to Confirm Power Actions", + "reference": "Modules/Settings/PowerSleepTab.qml:472", + "comment": "" + }, { "term": "Hold to confirm (%1 ms)", "context": "Hold to confirm (%1 ms)", @@ -5921,12 +5639,6 @@ "reference": "Modals/PowerMenuModal.qml:796, Modals/PowerMenuModal.qml:800, Modules/Lock/LockPowerMenu.qml:804, Modules/Lock/LockPowerMenu.qml:808", "comment": "" }, - { - "term": "Hold to Confirm Power Actions", - "context": "Hold to Confirm Power Actions", - "reference": "Modules/Settings/PowerSleepTab.qml:472", - "comment": "" - }, { "term": "Home", "context": "Home", @@ -5948,7 +5660,7 @@ { "term": "Hot Corners", "context": "Hot Corners", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77", "comment": "" }, { @@ -5960,7 +5672,7 @@ { "term": "Hour", "context": "Hour", - "reference": "Modules/Settings/ThemeColorsTab.qml:1116, Modules/Settings/GammaControlTab.qml:232", + "reference": "Modules/Settings/GammaControlTab.qml:232, Modules/Settings/ThemeColorsTab.qml:1116", "comment": "" }, { @@ -5969,12 +5681,6 @@ "reference": "Modules/DankDash/WeatherTab.qml:860", "comment": "" }, - { - "term": "Hourly Forecast Count", - "context": "Hourly Forecast Count", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:142", - "comment": "" - }, { "term": "How often to change wallpaper", "context": "How often to change wallpaper", @@ -5987,22 +5693,16 @@ "reference": "Modules/Settings/GreeterTab.qml:693", "comment": "" }, - { - "term": "HSV", - "context": "HSV", - "reference": "Modals/DankColorPickerModal.qml:685", - "comment": "" - }, - { - "term": "HTML copied to clipboard", - "context": "HTML copied to clipboard", - "reference": "Modules/Notepad/NotepadTextEditor.qml:275", - "comment": "" - }, { "term": "Humidity", "context": "Humidity", - "reference": "Modules/Settings/TimeWeatherTab.qml:923, Modules/DankDash/WeatherForecastCard.qml:80, Modules/DankDash/WeatherTab.qml:84, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413", + "reference": "Modules/DankDash/WeatherForecastCard.qml:80, Modules/DankDash/WeatherTab.qml:84, Modules/Settings/TimeWeatherTab.qml:933", + "comment": "" + }, + { + "term": "Hyprland Discord Server", + "context": "Hyprland Discord Server", + "reference": "Modules/Settings/AboutTab.qml:98", "comment": "" }, { @@ -6017,16 +5717,46 @@ "reference": "Modals/WindowRuleModal.qml:928", "comment": "" }, + { + "term": "Hyprland Website", + "context": "Hyprland Website", + "reference": "Modules/Settings/AboutTab.qml:71", + "comment": "" + }, { "term": "I Understand", "context": "I Understand", "reference": "Modules/Settings/PluginBrowser.qml:838", "comment": "" }, + { + "term": "IP", + "context": "IP", + "reference": "Modules/Settings/NetworkTab.qml:582", + "comment": "" + }, + { + "term": "IP Address:", + "context": "IP Address:", + "reference": "Modules/Settings/NetworkTab.qml:945", + "comment": "" + }, + { + "term": "IP address or hostname", + "context": "Placeholder text for manual printer address input", + "reference": "Modules/Settings/PrinterTab.qml:511", + "comment": "" + }, + { + "term": "ISO Date", + "context": "date format option", + "reference": "Modules/Settings/GreeterTab.qml:422, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:162, Modules/Settings/TimeWeatherTab.qml:181, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:249, Modules/Settings/TimeWeatherTab.qml:268", + "comment": "" + }, { "term": "Icon", "context": "Icon", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:864, Modules/Settings/DockTab.qml:247", + "reference": "Modules/Settings/DockTab.qml:247, Modals/DankLauncherV2/LauncherContent.qml:894", "comment": "" }, { @@ -6038,13 +5768,13 @@ { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/WorkspacesTab.qml:109, Modules/Settings/DockTab.qml:518", + "reference": "Modules/Settings/DockTab.qml:518, Modules/Settings/WorkspacesTab.qml:109", "comment": "" }, { "term": "Icon Size %", "context": "Icon Size %", - "reference": "Modules/Settings/WidgetsTabSection.qml:2431", + "reference": "Modules/Settings/WidgetsTabSection.qml:2776", "comment": "" }, { @@ -6062,13 +5792,7 @@ { "term": "Idle Inhibitor", "context": "Idle Inhibitor", - "reference": "Modules/Settings/WidgetsTab.qml:190, Modules/Settings/OSDTab.qml:125", - "comment": "" - }, - { - "term": "Idle monitoring not supported - requires newer Quickshell version", - "context": "Idle monitoring not supported - requires newer Quickshell version", - "reference": "Modules/Settings/PowerSleepTab.qml:342", + "reference": "Modules/Settings/OSDTab.qml:125, Modules/Settings/WidgetsTab.qml:190", "comment": "" }, { @@ -6077,6 +5801,12 @@ "reference": "Modules/Settings/PowerSleepTab.qml:34", "comment": "" }, + { + "term": "Idle monitoring not supported - requires newer Quickshell version", + "context": "Idle monitoring not supported - requires newer Quickshell version", + "reference": "Modules/Settings/PowerSleepTab.qml:342", + "comment": "" + }, { "term": "If the field is hidden, it will appear as soon as a key is pressed.", "context": "If the field is hidden, it will appear as soon as a key is pressed.", @@ -6119,18 +5849,18 @@ "reference": "Modules/Settings/LockScreenTab.qml:406, Modules/Settings/LockScreenTab.qml:437", "comment": "" }, - { - "term": "Include desktop actions (shortcuts) in search results.", - "context": "Include desktop actions (shortcuts) in search results.", - "reference": "Modules/Settings/LauncherTab.qml:830", - "comment": "" - }, { "term": "Include Transitions", "context": "Include Transitions", "reference": "Modules/Settings/WallpaperTab.qml:1201", "comment": "" }, + { + "term": "Include desktop actions (shortcuts) in search results.", + "context": "Include desktop actions (shortcuts) in search results.", + "reference": "Modules/Settings/LauncherTab.qml:830", + "comment": "" + }, { "term": "Incompatible Plugins Loaded", "context": "Incompatible Plugins Loaded", @@ -6140,7 +5870,19 @@ { "term": "Incorrect password", "context": "Incorrect password", - "reference": "Modals/WifiPasswordModal.qml:369", + "reference": "Modals/WifiPasswordModal.qml:369, Modules/Greetd/GreeterContent.qml:245", + "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:241", + "comment": "" + }, + { + "term": "Incorrect password - next failures may trigger account lockout", + "context": "Incorrect password - next failures may trigger account lockout", + "reference": "Modules/Greetd/GreeterContent.qml:243", "comment": "" }, { @@ -6149,18 +5891,18 @@ "reference": "Modules/Settings/DockTab.qml:176", "comment": "" }, - { - "term": "Individual bar configuration", - "context": "Individual bar configuration", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:19", - "comment": "" - }, { "term": "Individual Batteries", "context": "Individual Batteries", "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:358", "comment": "" }, + { + "term": "Individual bar configuration", + "context": "Individual bar configuration", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:19", + "comment": "" + }, { "term": "Info", "context": "greeter doctor page status card", @@ -6200,7 +5942,25 @@ { "term": "Install", "context": "install action button", - "reference": "Modules/Settings/ThemeBrowser.qml:120, Modules/Settings/ThemeBrowser.qml:648, Modules/Settings/GreeterTab.qml:120, Modules/Settings/GreeterTab.qml:166, Modules/Settings/PluginBrowser.qml:121, Modules/Settings/PluginBrowser.qml:634", + "reference": "Modules/Settings/GreeterTab.qml:120, Modules/Settings/GreeterTab.qml:166, Modules/Settings/PluginBrowser.qml:121, Modules/Settings/PluginBrowser.qml:634, Modules/Settings/ThemeBrowser.qml:120, Modules/Settings/ThemeBrowser.qml:648", + "comment": "" + }, + { + "term": "Install Greeter", + "context": "greeter action confirmation", + "reference": "Modules/Settings/GreeterTab.qml:164", + "comment": "" + }, + { + "term": "Install Plugin", + "context": "plugin installation dialog title", + "reference": "Modules/Settings/PluginBrowser.qml:119", + "comment": "" + }, + { + "term": "Install Theme", + "context": "theme installation dialog title", + "reference": "Modules/Settings/ThemeBrowser.qml:118", "comment": "" }, { @@ -6218,13 +5978,7 @@ { "term": "Install failed: %1", "context": "installation error", - "reference": "Modules/Settings/ThemeBrowser.qml:68, Modules/Settings/PluginBrowser.qml:85", - "comment": "" - }, - { - "term": "Install Greeter", - "context": "greeter action confirmation", - "reference": "Modules/Settings/GreeterTab.qml:164", + "reference": "Modules/Settings/PluginBrowser.qml:85, Modules/Settings/ThemeBrowser.qml:68", "comment": "" }, { @@ -6233,12 +5987,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:476", "comment": "" }, - { - "term": "Install Plugin", - "context": "plugin installation dialog title", - "reference": "Modules/Settings/PluginBrowser.qml:119", - "comment": "" - }, { "term": "Install plugin '%1' from the DMS registry?", "context": "plugin installation confirmation", @@ -6257,12 +6005,6 @@ "reference": "Modules/Settings/GreeterTab.qml:165", "comment": "" }, - { - "term": "Install Theme", - "context": "theme installation dialog title", - "reference": "Modules/Settings/ThemeBrowser.qml:118", - "comment": "" - }, { "term": "Install theme '%1' from the DMS registry?", "context": "theme installation confirmation", @@ -6278,19 +6020,19 @@ { "term": "Installed", "context": "installed status", - "reference": "Modules/Settings/ThemeBrowser.qml:651, Modules/Settings/PluginBrowser.qml:630", + "reference": "Modules/Settings/PluginBrowser.qml:630, Modules/Settings/ThemeBrowser.qml:651", "comment": "" }, { "term": "Installed: %1", "context": "installation success", - "reference": "Modules/Settings/ThemeBrowser.qml:71, Modules/Settings/PluginBrowser.qml:88", + "reference": "Modules/Settings/PluginBrowser.qml:88, Modules/Settings/ThemeBrowser.qml:71", "comment": "" }, { "term": "Installing: %1", "context": "installation progress", - "reference": "Modules/Settings/ThemeBrowser.qml:65, Modules/Settings/PluginBrowser.qml:82", + "reference": "Modules/Settings/PluginBrowser.qml:82, Modules/Settings/ThemeBrowser.qml:65", "comment": "" }, { @@ -6320,7 +6062,7 @@ { "term": "Internet", "context": "Internet", - "reference": "Services/AppSearchService.qml:632, Services/AppSearchService.qml:633, Services/AppSearchService.qml:634", + "reference": "Services/AppSearchService.qml:646, Services/AppSearchService.qml:647, Services/AppSearchService.qml:648", "comment": "" }, { @@ -6341,36 +6083,12 @@ "reference": "Modules/Settings/LauncherTab.qml:300", "comment": "" }, - { - "term": "IP", - "context": "IP", - "reference": "Modules/Settings/NetworkTab.qml:582", - "comment": "" - }, - { - "term": "IP address or hostname", - "context": "Placeholder text for manual printer address input", - "reference": "Modules/Settings/PrinterTab.qml:511", - "comment": "" - }, - { - "term": "IP Address:", - "context": "IP Address:", - "reference": "Modules/Settings/NetworkTab.qml:945", - "comment": "" - }, { "term": "Iris Bloom", "context": "wallpaper transition option", "reference": "Modules/Settings/WallpaperTab.qml:1171", "comment": "" }, - { - "term": "ISO Date", - "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:422, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:152, Modules/Settings/TimeWeatherTab.qml:171, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:239, Modules/Settings/TimeWeatherTab.qml:258", - "comment": "" - }, { "term": "Isolate Displays", "context": "Isolate Displays", @@ -6392,7 +6110,7 @@ { "term": "Keep Awake", "context": "Keep Awake", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:93, Modules/ControlCenter/Components/DragDropGrid.qml:624", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:624, Modules/ControlCenter/Models/WidgetModel.qml:93", "comment": "" }, { @@ -6419,30 +6137,12 @@ "reference": "Widgets/KeybindItem.qml:621", "comment": "" }, - { - "term": "Keybind Sources", - "context": "Keybind Sources", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:144", - "comment": "" - }, { "term": "Keybinds", "context": "greeter settings link", "reference": "Modals/Greeter/GreeterCompletePage.qml:413", "comment": "" }, - { - "term": "Keybinds Search Settings", - "context": "Keybinds Search Settings", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:70", - "comment": "" - }, - { - "term": "Keybinds shown alongside regular search results", - "context": "Keybinds shown alongside regular search results", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", - "comment": "" - }, { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", @@ -6452,7 +6152,7 @@ { "term": "Keyboard Shortcuts", "context": "Keyboard Shortcuts", - "reference": "Modals/Settings/SettingsSidebar.qml:199, Modals/Settings/SettingsSidebar.qml:551, Modals/Clipboard/ClipboardHeader.qml:68, Modules/Settings/KeybindsTab.qml:232", + "reference": "Modules/Settings/KeybindsTab.qml:232, Modals/Clipboard/ClipboardHeader.qml:68, Modals/Settings/SettingsSidebar.qml:199, Modals/Settings/SettingsSidebar.qml:557", "comment": "" }, { @@ -6464,7 +6164,7 @@ { "term": "Kill", "context": "Kill", - "reference": "Modals/MuxModal.qml:127, Modals/MuxModal.qml:603", + "reference": "Modals/MuxModal.qml:102, Modals/MuxModal.qml:593", "comment": "" }, { @@ -6476,7 +6176,7 @@ { "term": "Kill Session", "context": "Kill Session", - "reference": "Modals/MuxModal.qml:125", + "reference": "Modals/MuxModal.qml:100", "comment": "" }, { @@ -6485,16 +6185,34 @@ "reference": "Modules/Settings/AboutTab.qml:322, Modules/Settings/AboutTab.qml:330", "comment": "" }, + { + "term": "LED device", + "context": "LED device", + "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:335", + "comment": "" + }, + { + "term": "LabWC IRC Channel", + "context": "LabWC IRC Channel", + "reference": "Modules/Settings/AboutTab.qml:108", + "comment": "" + }, + { + "term": "LabWC Website", + "context": "LabWC Website", + "reference": "Modules/Settings/AboutTab.qml:81", + "comment": "" + }, { "term": "Large", "context": "Large", - "reference": "Modules/Settings/WidgetsTabSection.qml:1603", + "reference": "Modules/Settings/WidgetsTabSection.qml:1948", "comment": "" }, { "term": "Largest", "context": "Largest", - "reference": "Modules/Settings/WidgetsTabSection.qml:1608", + "reference": "Modules/Settings/WidgetsTabSection.qml:1953", "comment": "" }, { @@ -6515,12 +6233,6 @@ "reference": "Modules/Settings/LauncherTab.qml:1201", "comment": "" }, - { - "term": "Last launched %1 day%2 ago", - "context": "Last launched %1 day%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:1185", - "comment": "" - }, { "term": "Last launched %1 days ago", "context": "Last launched %1 days ago", @@ -6533,12 +6245,6 @@ "reference": "Modules/Settings/LauncherTab.qml:1197", "comment": "" }, - { - "term": "Last launched %1 hour%2 ago", - "context": "Last launched %1 hour%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:1183", - "comment": "" - }, { "term": "Last launched %1 hours ago", "context": "Last launched %1 hours ago", @@ -6551,12 +6257,6 @@ "reference": "Modules/Settings/LauncherTab.qml:1193", "comment": "" }, - { - "term": "Last launched %1 minute%2 ago", - "context": "Last launched %1 minute%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:1181", - "comment": "" - }, { "term": "Last launched %1 minutes ago", "context": "Last launched %1 minutes ago", @@ -6572,19 +6272,13 @@ { "term": "Latitude", "context": "Latitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1261, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:492", + "reference": "Modules/Settings/GammaControlTab.qml:379, Modules/Settings/ThemeColorsTab.qml:1261, Modules/Settings/TimeWeatherTab.qml:502", "comment": "" }, { "term": "Launch", "context": "Launch", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:154, Modals/DankLauncherV2/Controller.qml:1033, Modals/DankLauncherV2/Controller.qml:1426", - "comment": "" - }, - { - "term": "Launch on dGPU", - "context": "Launch on dGPU", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:146, Modals/DankLauncherV2/ActionPanel.qml:61, Modules/Dock/DockContextMenu.qml:482, Modules/DankBar/Widgets/AppsDockContextMenu.qml:401", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:154, Modals/DankLauncherV2/Controller.qml:1036, Modals/DankLauncherV2/Controller.qml:1429", "comment": "" }, { @@ -6593,6 +6287,12 @@ "reference": "Modules/Settings/LauncherTab.qml:311", "comment": "" }, + { + "term": "Launch on dGPU", + "context": "Launch on dGPU", + "reference": "Modules/Dock/DockContextMenu.qml:482, Modules/DankBar/Widgets/AppsDockContextMenu.qml:401, Modals/DankLauncherV2/LauncherContextMenu.qml:146, Modals/DankLauncherV2/ActionPanel.qml:61", + "comment": "" + }, { "term": "Launcher", "context": "Launcher", @@ -6614,13 +6314,7 @@ { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240", - "comment": "" - }, - { - "term": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", - "context": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", - "reference": "Modules/Settings/GreeterTab.qml:708", + "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167", "comment": "" }, { @@ -6630,21 +6324,15 @@ "comment": "" }, { - "term": "leave empty for default", - "context": "leave empty for default", - "reference": "Widgets/KeybindItem.qml:1045", - "comment": "" - }, - { - "term": "LED device", - "context": "LED device", - "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:335", + "term": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", + "context": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", + "reference": "Modules/Settings/GreeterTab.qml:708", "comment": "" }, { "term": "Left", "context": "Left", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:288, Modules/Settings/DankBarTab.qml:542, Modules/DankBar/Popouts/BatteryPopout.qml:520", + "reference": "Modules/Settings/DankBarTab.qml:288, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DockTab.qml:102, Modules/DankBar/Popouts/BatteryPopout.qml:520", "comment": "" }, { @@ -6656,7 +6344,7 @@ { "term": "Left Section", "context": "Left Section", - "reference": "Modules/Settings/WidgetsTab.qml:922", + "reference": "Modules/Settings/WidgetsTab.qml:951", "comment": "" }, { @@ -6668,19 +6356,7 @@ { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/WallpaperTab.qml:392, Modules/Settings/ThemeColorsTab.qml:1389, Modules/Settings/ThemeColorsTab.qml:1459", - "comment": "" - }, - { - "term": "Light mode base", - "context": "Light mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2606", - "comment": "" - }, - { - "term": "Light mode harmony", - "context": "Light mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2638", + "reference": "Modules/Settings/ThemeColorsTab.qml:1389, Modules/Settings/ThemeColorsTab.qml:1459, Modules/Settings/WallpaperTab.qml:392", "comment": "" }, { @@ -6701,12 +6377,30 @@ "reference": "Services/WeatherService.qml:145", "comment": "" }, + { + "term": "Light mode base", + "context": "Light mode base", + "reference": "Modules/Settings/ThemeColorsTab.qml:2607", + "comment": "" + }, + { + "term": "Light mode harmony", + "context": "Light mode harmony", + "reference": "Modules/Settings/ThemeColorsTab.qml:2641", + "comment": "" + }, { "term": "Line", "context": "dock indicator style option", "reference": "Modules/Settings/DockTab.qml:177", "comment": "" }, + { + "term": "Line: %1", + "context": "Line: %1", + "reference": "Modules/Notepad/NotepadTextEditor.qml:848", + "comment": "" + }, { "term": "Linear", "context": "Linear", @@ -6716,7 +6410,7 @@ { "term": "Lines: %1", "context": "Lines: %1", - "reference": "Modules/Notepad/NotepadTextEditor.qml:841", + "reference": "Modules/Notepad/NotepadTextEditor.qml:849", "comment": "" }, { @@ -6746,19 +6440,13 @@ { "term": "Loading keybinds...", "context": "Loading keybinds...", - "reference": "Modules/Settings/KeybindsTab.qml:575", - "comment": "" - }, - { - "term": "Loading trending...", - "context": "Loading trending...", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/DankStickerSearch/DankStickerSearch.qml:153", + "reference": "Modules/Settings/KeybindsTab.qml:582", "comment": "" }, { "term": "Loading...", "context": "loading indicator", - "reference": "Widgets/VpnProfileDelegate.qml:220, Modules/Settings/PrinterTab.qml:707, Modules/Settings/NetworkTab.qml:681, Modules/Settings/NetworkTab.qml:1398, Modules/Settings/NetworkTab.qml:1884, Modules/Settings/ThemeBrowser.qml:357, Modules/Settings/PluginBrowser.qml:389", + "reference": "Widgets/VpnProfileDelegate.qml:220, Modules/Settings/NetworkTab.qml:681, Modules/Settings/NetworkTab.qml:1398, Modules/Settings/NetworkTab.qml:1884, Modules/Settings/PluginBrowser.qml:389, Modules/Settings/PrinterTab.qml:707, Modules/Settings/ThemeBrowser.qml:357, Modules/DankDash/Overview/WeatherOverviewCard.qml:31", "comment": "" }, { @@ -6782,13 +6470,13 @@ { "term": "Location", "context": "theme auto mode tab", - "reference": "Modules/Settings/PrinterTab.qml:775, Modules/Settings/PrinterTab.qml:1164, Modules/Settings/ThemeColorsTab.qml:1072", + "reference": "Modules/Settings/GammaControlTab.qml:188, Modules/Settings/PrinterTab.qml:775, Modules/Settings/PrinterTab.qml:1164, Modules/Settings/ThemeColorsTab.qml:1072", "comment": "" }, { "term": "Location Search", "context": "Location Search", - "reference": "Modules/Settings/TimeWeatherTab.qml:592", + "reference": "Modules/Settings/TimeWeatherTab.qml:602", "comment": "" }, { @@ -6797,6 +6485,36 @@ "reference": "Modals/PowerMenuModal.qml:198, Modules/Settings/PowerSleepTab.qml:378", "comment": "" }, + { + "term": "Lock Screen", + "context": "greeter feature card title | lock screen notifications settings card", + "reference": "Modules/Settings/NotificationsTab.qml:721, Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:292", + "comment": "" + }, + { + "term": "Lock Screen Display", + "context": "Lock Screen Display", + "reference": "Modules/Settings/LockScreenTab.qml:339", + "comment": "" + }, + { + "term": "Lock Screen Format", + "context": "Lock Screen Format", + "reference": "Modules/Settings/TimeWeatherTab.qml:216", + "comment": "" + }, + { + "term": "Lock Screen behaviour", + "context": "Lock Screen behaviour", + "reference": "Modules/Settings/LockScreenTab.qml:162", + "comment": "" + }, + { + "term": "Lock Screen layout", + "context": "Lock Screen layout", + "reference": "Modules/Settings/LockScreenTab.qml:83", + "comment": "" + }, { "term": "Lock at startup", "context": "Lock at startup", @@ -6815,36 +6533,6 @@ "reference": "Modules/Settings/PowerSleepTab.qml:106", "comment": "" }, - { - "term": "Lock Screen", - "context": "greeter feature card title | lock screen notifications settings card", - "reference": "Modals/Settings/SettingsSidebar.qml:286, Modals/Greeter/GreeterWelcomePage.qml:158, Modules/Settings/NotificationsTab.qml:721", - "comment": "" - }, - { - "term": "Lock Screen behaviour", - "context": "Lock Screen behaviour", - "reference": "Modules/Settings/LockScreenTab.qml:162", - "comment": "" - }, - { - "term": "Lock Screen Display", - "context": "Lock Screen Display", - "reference": "Modules/Settings/LockScreenTab.qml:339", - "comment": "" - }, - { - "term": "Lock Screen Format", - "context": "Lock Screen Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:206", - "comment": "" - }, - { - "term": "Lock Screen layout", - "context": "Lock Screen layout", - "reference": "Modules/Settings/LockScreenTab.qml:83", - "comment": "" - }, { "term": "Locked", "context": "Locked", @@ -6854,7 +6542,13 @@ { "term": "Log Out", "context": "Log Out", - "reference": "Modals/PowerMenuModal.qml:186, Modules/Settings/PowerSleepTab.qml:378, Modules/Settings/PowerSleepTab.qml:384, Modules/Lock/LockPowerMenu.qml:110", + "reference": "Modals/PowerMenuModal.qml:186, Modules/Lock/LockPowerMenu.qml:110, Modules/Settings/PowerSleepTab.qml:378, Modules/Settings/PowerSleepTab.qml:384", + "comment": "" + }, + { + "term": "Logging in...", + "context": "Logging in...", + "reference": "Modules/Greetd/GreeterContent.qml:1015", "comment": "" }, { @@ -6863,22 +6557,10 @@ "reference": "Modules/Settings/GreeterTab.qml:524", "comment": "" }, - { - "term": "loginctl not available - lock integration requires DMS socket connection", - "context": "loginctl not available - lock integration requires DMS socket connection", - "reference": "Modules/Settings/LockScreenTab.qml:166", - "comment": "" - }, { "term": "Long", "context": "Long", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337", - "comment": "" - }, - { - "term": "Long press", - "context": "Long press", - "reference": "Widgets/KeybindItem.qml:1645", + "reference": "Modules/Settings/NotificationsTab.qml:337, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399", "comment": "" }, { @@ -6887,16 +6569,22 @@ "reference": "Modals/Clipboard/ClipboardEntry.qml:118", "comment": "" }, + { + "term": "Long press", + "context": "Long press", + "reference": "Widgets/KeybindItem.qml:1645", + "comment": "" + }, { "term": "Longitude", "context": "Longitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1284, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:541", + "reference": "Modules/Settings/GammaControlTab.qml:402, Modules/Settings/ThemeColorsTab.qml:1284, Modules/Settings/TimeWeatherTab.qml:551", "comment": "" }, { "term": "Low Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:751, Modules/Settings/NotificationsTab.qml:874, Modules/Notifications/Center/NotificationSettings.qml:171, Modules/Notifications/Center/NotificationSettings.qml:340", + "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:751, Modules/Settings/NotificationsTab.qml:874, Modules/Notifications/Center/NotificationSettings.qml:171, Modules/Notifications/Center/NotificationSettings.qml:354", "comment": "" }, { @@ -6906,9 +6594,9 @@ "comment": "" }, { - "term": "Make sure KDE Connect or Valent is running on your other devices", - "context": "Phone Connect hint message", - "reference": "dms-plugins/DankKDEConnect/components/EmptyState.qml:18", + "term": "MTU", + "context": "MTU", + "reference": "Widgets/VpnProfileDelegate.qml:69, Modules/Settings/NetworkTab.qml:1930", "comment": "" }, { @@ -6944,7 +6632,7 @@ { "term": "Manual Coordinates", "context": "Manual Coordinates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1246, Modules/Settings/GammaControlTab.qml:367", + "reference": "Modules/Settings/GammaControlTab.qml:367, Modules/Settings/ThemeColorsTab.qml:1246", "comment": "" }, { @@ -7019,18 +6707,18 @@ "reference": "Modals/DankColorPickerModal.qml:410", "comment": "" }, - { - "term": "Material colors generated from wallpaper", - "context": "dynamic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:235", - "comment": "" - }, { "term": "Material Design inspired color themes", "context": "generic theme description", "reference": "Modules/Settings/ThemeColorsTab.qml:240", "comment": "" }, + { + "term": "Material colors generated from wallpaper", + "context": "dynamic theme description", + "reference": "Modules/Settings/ThemeColorsTab.qml:235", + "comment": "" + }, { "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", "context": "Material inspired shadows and elevation on modals, popouts, and dialogs", @@ -7043,12 +6731,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:459", "comment": "" }, - { - "term": "matugen not found - install matugen package for dynamic theming", - "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:299", - "comment": "" - }, { "term": "Matugen Palette", "context": "Matugen Palette", @@ -7067,12 +6749,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:2376", "comment": "" }, - { - "term": "Max apps to show", - "context": "Max apps to show", - "reference": "Modules/Settings/WorkspacesTab.qml:79", - "comment": "" - }, { "term": "Max Edges", "context": "Max Edges", @@ -7088,7 +6764,7 @@ { "term": "Max Pinned Apps", "context": "Max Pinned Apps", - "reference": "Modules/Settings/WidgetsTabSection.qml:1990", + "reference": "Modules/Settings/WidgetsTabSection.qml:2335", "comment": "" }, { @@ -7100,7 +6776,7 @@ { "term": "Max Running Apps", "context": "Max Running Apps", - "reference": "Modules/Settings/WidgetsTabSection.qml:2044", + "reference": "Modules/Settings/WidgetsTabSection.qml:2389", "comment": "" }, { @@ -7109,12 +6785,6 @@ "reference": "Modules/Settings/DockTab.qml:204", "comment": "" }, - { - "term": "Max to Edges", - "context": "Max to Edges", - "reference": "Modals/WindowRuleModal.qml:539", - "comment": "" - }, { "term": "Max Volume", "context": "Audio settings: maximum volume limit per device", @@ -7127,6 +6797,18 @@ "reference": "Modals/WindowRuleModal.qml:850, Modules/Settings/WindowRulesTab.qml:552", "comment": "" }, + { + "term": "Max apps to show", + "context": "Max apps to show", + "reference": "Modules/Settings/WorkspacesTab.qml:79", + "comment": "" + }, + { + "term": "Max to Edges", + "context": "Max to Edges", + "reference": "Modals/WindowRuleModal.qml:539", + "comment": "" + }, { "term": "Maximize", "context": "Maximize", @@ -7160,7 +6842,13 @@ { "term": "Maximum History", "context": "Maximum History", - "reference": "Modules/Settings/NotificationsTab.qml:818, Modules/Settings/ClipboardTab.qml:287", + "reference": "Modules/Settings/ClipboardTab.qml:287, Modules/Settings/NotificationsTab.qml:818", + "comment": "" + }, + { + "term": "Maximum Pinned Entries", + "context": "Maximum Pinned Entries", + "reference": "Modules/Settings/ClipboardTab.qml:377", "comment": "" }, { @@ -7181,12 +6869,6 @@ "reference": "Modules/Settings/NotificationsTab.qml:819", "comment": "" }, - { - "term": "Maximum Pinned Entries", - "context": "Maximum Pinned Entries", - "reference": "Modules/Settings/ClipboardTab.qml:377", - "comment": "" - }, { "term": "Maximum pinned entries reached", "context": "Maximum pinned entries reached", @@ -7202,7 +6884,7 @@ { "term": "Media", "context": "Media", - "reference": "Services/AppSearchService.qml:622, Services/AppSearchService.qml:623, Services/AppSearchService.qml:624, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1095, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1110, Modules/DankDash/DankDashPopout.qml:274", + "reference": "Services/AppSearchService.qml:636, Services/AppSearchService.qml:637, Services/AppSearchService.qml:638, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1095, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1110, Modules/DankDash/DankDashPopout.qml:275", "comment": "" }, { @@ -7253,6 +6935,12 @@ "reference": "Modules/Settings/MediaPlayerTab.qml:25", "comment": "" }, + { + "term": "Media Players", + "context": "Media Players", + "reference": "Modules/DankDash/MediaPlayerTab.qml:672", + "comment": "" + }, { "term": "Media Players (", "context": "Media Players (", @@ -7268,13 +6956,13 @@ { "term": "Medium", "context": "Medium", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WidgetsTabSection.qml:1598, Modules/Settings/NotificationsTab.qml:337", + "reference": "Modules/Settings/NotificationsTab.qml:337, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WidgetsTabSection.qml:1943", "comment": "" }, { "term": "Memory", "context": "Memory", - "reference": "Modules/ProcessList/PerformanceView.qml:91, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/ProcessListPopout.qml:319, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", + "reference": "Modules/ProcessList/PerformanceView.qml:91, Modules/ProcessList/ProcessListPopout.qml:319, Modules/ProcessList/ProcessesView.qml:268, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", "comment": "" }, { @@ -7295,12 +6983,6 @@ "reference": "Modules/Settings/WidgetsTab.qml:117", "comment": "" }, - { - "term": "Message", - "context": "KDE Connect SMS message input placeholder", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:73", - "comment": "" - }, { "term": "Message Content", "context": "notification privacy mode placeholder", @@ -7310,7 +6992,7 @@ { "term": "Microphone", "context": "Microphone", - "reference": "Modules/Settings/WidgetsTabSection.qml:1107, Modules/Settings/WidgetsTabSection.qml:1313", + "reference": "Modules/Settings/WidgetsTabSection.qml:1125, Modules/Settings/WidgetsTabSection.qml:1325, Modules/Settings/WidgetsTabSection.qml:1658", "comment": "" }, { @@ -7320,15 +7002,15 @@ "comment": "" }, { - "term": "Microphone settings", - "context": "Microphone settings", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:128", + "term": "Microphone Volume", + "context": "Microphone Volume", + "reference": "Modules/Settings/WidgetsTabSection.qml:1130, Modules/Settings/WidgetsTabSection.qml:1326", "comment": "" }, { - "term": "Microphone Volume", - "context": "Microphone Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:1112", + "term": "Microphone settings", + "context": "Microphone settings", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:128", "comment": "" }, { @@ -7340,7 +7022,7 @@ { "term": "Middle Section", "context": "Middle Section", - "reference": "Modules/Settings/WidgetsTab.qml:986", + "reference": "Modules/Settings/WidgetsTab.qml:1018", "comment": "" }, { @@ -7364,13 +7046,7 @@ { "term": "Minute", "context": "Minute", - "reference": "Modules/Settings/ThemeColorsTab.qml:1124, Modules/Settings/GammaControlTab.qml:240", - "comment": "" - }, - { - "term": "minutes", - "context": "minutes", - "reference": "Modules/Settings/NotificationsTab.qml:171", + "reference": "Modules/Settings/GammaControlTab.qml:240, Modules/Settings/ThemeColorsTab.qml:1124", "comment": "" }, { @@ -7418,13 +7094,13 @@ { "term": "Model", "context": "Model", - "reference": "Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", + "reference": "Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", "comment": "" }, { "term": "Modified", "context": "Modified", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:662, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:675, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240, Modals/DankLauncherV2/LauncherContent.qml:692, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:705", "comment": "" }, { @@ -7478,7 +7154,7 @@ { "term": "Month Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:406, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:136, Modules/Settings/TimeWeatherTab.qml:167, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:223, Modules/Settings/TimeWeatherTab.qml:254", + "reference": "Modules/Settings/GreeterTab.qml:406, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:146, Modules/Settings/TimeWeatherTab.qml:177, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:233, Modules/Settings/TimeWeatherTab.qml:264", "comment": "" }, { @@ -7523,18 +7199,6 @@ "reference": "Services/CupsService.qml:830", "comment": "" }, - { - "term": "ms", - "context": "ms", - "reference": "Widgets/KeybindItem.qml:1695", - "comment": "" - }, - { - "term": "MTU", - "context": "MTU", - "reference": "Widgets/VpnProfileDelegate.qml:69, Modules/Settings/NetworkTab.qml:1930", - "comment": "" - }, { "term": "Multi-Monitor", "context": "greeter feature card title", @@ -7544,19 +7208,19 @@ { "term": "Multiplexer", "context": "Multiplexer", - "reference": "Modules/Settings/MuxTab.qml:45", + "reference": "Modules/Settings/MuxTab.qml:31", "comment": "" }, { "term": "Multiplexer Type", "context": "Multiplexer Type", - "reference": "Modules/Settings/MuxTab.qml:52", + "reference": "Modules/Settings/MuxTab.qml:38", "comment": "" }, { "term": "Multiplexers", "context": "Multiplexers", - "reference": "Modals/Settings/SettingsSidebar.qml:265", + "reference": "Modals/Settings/SettingsSidebar.qml:271", "comment": "" }, { @@ -7574,7 +7238,7 @@ { "term": "Mute popups for %1", "context": "Mute popups for %1", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Center/NotificationCard.qml:1016", + "reference": "Modules/Notifications/Center/NotificationCard.qml:1016, Modules/Notifications/Popup/NotificationPopup.qml:1096", "comment": "" }, { @@ -7595,10 +7259,16 @@ "reference": "Common/Theme.qml:496", "comment": "" }, + { + "term": "NM not supported", + "context": "NM not supported", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:221", + "comment": "" + }, { "term": "Name", "context": "Name", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:660, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:674, Modals/DankLauncherV2/LauncherContent.qml:844, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DisplayConfigTab.qml:422, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", + "reference": "Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144, Modals/DankLauncherV2/LauncherContent.qml:690, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:704, Modals/DankLauncherV2/LauncherContent.qml:874", "comment": "" }, { @@ -7607,16 +7277,10 @@ "reference": "Modules/Settings/WorkspacesTab.qml:417", "comment": "" }, - { - "term": "nav", - "context": "nav", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:377", - "comment": "" - }, { "term": "Navigate", "context": "Navigate", - "reference": "Modals/MuxModal.qml:600", + "reference": "Modals/MuxModal.qml:590", "comment": "" }, { @@ -7628,13 +7292,7 @@ { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:232, Modules/Settings/WidgetsTabSection.qml:1082, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Models/WidgetModel.qml:101, Modules/ControlCenter/Details/NetworkDetail.qml:88", - "comment": "" - }, - { - "term": "Network download and upload speed display", - "context": "Network download and upload speed display", - "reference": "Modules/Settings/WidgetsTab.qml:219", + "reference": "Services/CupsService.qml:134, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1080, Modules/Settings/WidgetsTabSection.qml:1320, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:101, Modals/Settings/SettingsSidebar.qml:232", "comment": "" }, { @@ -7673,6 +7331,12 @@ "reference": "Modules/Settings/NetworkTab.qml:139", "comment": "" }, + { + "term": "Network download and upload speed display", + "context": "Network download and upload speed display", + "reference": "Modules/Settings/WidgetsTab.qml:219", + "comment": "" + }, { "term": "Neutral", "context": "matugen color scheme option", @@ -7682,7 +7346,7 @@ { "term": "Never", "context": "Never", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:33, Modules/Settings/NotificationsTab.qml:166, Modules/Settings/ClipboardTab.qml:99, Modules/Notifications/Center/NotificationSettings.qml:37", + "reference": "Modules/Settings/ClipboardTab.qml:99, Modules/Settings/NotificationsTab.qml:33, Modules/Settings/NotificationsTab.qml:166, Modules/Settings/PowerSleepTab.qml:10, Modules/Notifications/Center/NotificationSettings.qml:37, Modules/Notifications/Center/NotificationSettings.qml:97", "comment": "" }, { @@ -7694,7 +7358,7 @@ { "term": "New", "context": "New", - "reference": "Modals/MuxModal.qml:602, Modules/Notepad/NotepadTextEditor.qml:795", + "reference": "Modals/MuxModal.qml:592, Modules/Notepad/NotepadTextEditor.qml:795", "comment": "" }, { @@ -7718,7 +7382,7 @@ { "term": "New Session", "context": "New Session", - "reference": "Modals/MuxModal.qml:137, Modals/MuxModal.qml:395", + "reference": "Modals/MuxModal.qml:112, Modals/MuxModal.qml:381", "comment": "" }, { @@ -7730,7 +7394,13 @@ { "term": "New York, NY", "context": "New York, NY", - "reference": "Modules/Settings/TimeWeatherTab.qml:602", + "reference": "Modules/Settings/TimeWeatherTab.qml:612", + "comment": "" + }, + { + "term": "New group name...", + "context": "New group name...", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:137", "comment": "" }, { @@ -7742,7 +7412,7 @@ { "term": "Next Transition", "context": "Next Transition", - "reference": "Modules/Settings/ThemeColorsTab.qml:1425, Modules/Settings/GammaControlTab.qml:643", + "reference": "Modules/Settings/GammaControlTab.qml:643, Modules/Settings/ThemeColorsTab.qml:1425", "comment": "" }, { @@ -7754,13 +7424,7 @@ { "term": "Night Mode", "context": "Night Mode", - "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:68, Modules/ControlCenter/Components/DragDropGrid.qml:618", - "comment": "" - }, - { - "term": "Night mode & gamma", - "context": "greeter feature card description", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:142", + "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Components/DragDropGrid.qml:618, Modules/ControlCenter/Models/WidgetModel.qml:68", "comment": "" }, { @@ -7770,9 +7434,9 @@ "comment": "" }, { - "term": "Niri compositor actions (focus, move, etc.)", - "context": "Niri compositor actions (focus, move, etc.)", - "reference": "Widgets/KeybindItem.qml:855", + "term": "Night mode & gamma", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:142", "comment": "" }, { @@ -7788,15 +7452,9 @@ "comment": "" }, { - "term": "niri shortcuts config", - "context": "greeter keybinds niri description", - "reference": "Modals/Greeter/GreeterCompletePage.qml:414", - "comment": "" - }, - { - "term": "NM not supported", - "context": "NM not supported", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:221", + "term": "Niri compositor actions (focus, move, etc.)", + "context": "Niri compositor actions (focus, move, etc.)", + "reference": "Widgets/KeybindItem.qml:855", "comment": "" }, { @@ -7805,66 +7463,18 @@ "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1256, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1258", "comment": "" }, - { - "term": "No action", - "context": "No action", - "reference": "Widgets/KeybindItem.qml:372", - "comment": "" - }, - { - "term": "No active %1 sessions", - "context": "No active %1 sessions", - "reference": "Modals/MuxModal.qml:573", - "comment": "" - }, { "term": "No Active Players", "context": "No Active Players", "reference": "Modules/DankDash/MediaPlayerTab.qml:277", "comment": "" }, - { - "term": "No adapter", - "context": "bluetooth status", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:315", - "comment": "" - }, - { - "term": "No adapters", - "context": "bluetooth status", - "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:353", - "comment": "" - }, { "term": "No Anim", "context": "No Anim", "reference": "Modals/WindowRuleModal.qml:963, Modules/Settings/WindowRulesTab.qml:561", "comment": "" }, - { - "term": "No app customizations.", - "context": "No app customizations.", - "reference": "Modules/Settings/LauncherTab.qml:1055", - "comment": "" - }, - { - "term": "No apps found", - "context": "No apps found", - "reference": "Modals/DankLauncherV2/ResultsList.qml:488", - "comment": "" - }, - { - "term": "No apps have been launched yet.", - "context": "No apps have been launched yet.", - "reference": "Modules/Settings/LauncherTab.qml:1231", - "comment": "" - }, - { - "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:641", - "comment": "" - }, { "term": "No Background", "context": "No Background", @@ -7877,12 +7487,6 @@ "reference": "Services/BatteryService.qml:155", "comment": "" }, - { - "term": "No battery", - "context": "No battery", - "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:15", - "comment": "" - }, { "term": "No Bluetooth adapter found", "context": "No Bluetooth adapter found", @@ -7922,7 +7526,7 @@ { "term": "No GPU detected", "context": "No GPU detected", - "reference": "Modules/Settings/WidgetsTabSection.qml:192", + "reference": "Modules/Settings/WidgetsTabSection.qml:148", "comment": "" }, { @@ -7934,7 +7538,7 @@ { "term": "No History", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:113", + "reference": "Modules/Settings/NotificationsTab.qml:135", "comment": "" }, { @@ -7964,13 +7568,19 @@ { "term": "No VPN profiles", "context": "No VPN profiles", - "reference": "Modules/Settings/NetworkTab.qml:1660, Widgets/VpnDetailContent.qml:177", + "reference": "Widgets/VpnDetailContent.qml:177, Modules/Settings/NetworkTab.qml:1671", + "comment": "" + }, + { + "term": "No Weather", + "context": "No Weather", + "reference": "Modules/DankDash/Overview/WeatherOverviewCard.qml:31", "comment": "" }, { "term": "No Weather Data Available", "context": "No Weather Data Available", - "reference": "Modules/DankDash/WeatherTab.qml:135, Modules/Settings/TimeWeatherTab.qml:598", + "reference": "Modules/DankDash/WeatherTab.qml:135, Modules/Settings/TimeWeatherTab.qml:651", "comment": "" }, { @@ -7982,37 +7592,43 @@ { "term": "No active %1 sessions", "context": "No active %1 sessions", - "reference": "Modals/MuxModal.qml:572", + "reference": "Modals/MuxModal.qml:562", "comment": "" }, { "term": "No adapter", "context": "bluetooth status", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:299", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:315", "comment": "" }, { "term": "No adapters", "context": "bluetooth status", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:337, Modules/Settings/NetworkTab.qml:341", + "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:353", "comment": "" }, { "term": "No app customizations.", "context": "No app customizations.", - "reference": "Modules/Settings/LauncherTab.qml:1044", + "reference": "Modules/Settings/LauncherTab.qml:1055", "comment": "" }, { "term": "No apps found", "context": "No apps found", - "reference": "Modals/DankLauncherV2/ResultsList.qml:479", + "reference": "Modals/DankLauncherV2/ResultsList.qml:488", "comment": "" }, { "term": "No apps have been launched yet.", "context": "No apps have been launched yet.", - "reference": "Modules/Settings/LauncherTab.qml:1214", + "reference": "Modules/Settings/LauncherTab.qml:1231", + "comment": "" + }, + { + "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:641", "comment": "" }, { @@ -8047,26 +7663,14 @@ }, { "term": "No devices", - "context": "Phone Connect no devices status | bluetooth status", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:368, dms-plugins/DankKDEConnect/DankKDEConnect.qml:33", - "comment": "" - }, - { - "term": "No devices connected", - "context": "KDE Connect status", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:35", + "context": "bluetooth status", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:368", "comment": "" }, { "term": "No devices found", - "context": "KDE Connect no devices message", - "reference": "Modules/Settings/PrinterTab.qml:436, dms-plugins/DankKDEConnect/components/EmptyState.qml:11, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:124", - "comment": "" - }, - { - "term": "No Dim", - "context": "No Dim", - "reference": "Modals/WindowRuleModal.qml:955, Modules/Settings/WindowRulesTab.qml:559", + "context": "No devices found", + "reference": "Modules/Settings/PrinterTab.qml:436", "comment": "" }, { @@ -8078,13 +7682,7 @@ { "term": "No disk data available", "context": "No disk data available", - "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:48, Modules/ControlCenter/Details/DiskUsageDetail.qml:65", - "comment": "" - }, - { - "term": "No DMS shortcuts configured", - "context": "greeter no keybinds message", - "reference": "Modals/Greeter/GreeterCompletePage.qml:265", + "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:48", "comment": "" }, { @@ -8114,13 +7712,7 @@ { "term": "No fingerprint reader detected.", "context": "No fingerprint reader detected.", - "reference": "Modules/Settings/LockScreenTab.qml:24, Modules/Settings/GreeterTab.qml:45", - "comment": "" - }, - { - "term": "No Focus", - "context": "No Focus", - "reference": "Modals/WindowRuleModal.qml:943, Modules/Settings/WindowRulesTab.qml:556", + "reference": "Modules/Settings/GreeterTab.qml:45, Modules/Settings/LockScreenTab.qml:24", "comment": "" }, { @@ -8129,36 +7721,24 @@ "reference": "Modals/DankLauncherV2/ResultsList.qml:479", "comment": "" }, - { - "term": "No GPU detected", - "context": "No GPU detected", - "reference": "Modules/Settings/WidgetsTabSection.qml:148", - "comment": "" - }, - { - "term": "No GPUs detected", - "context": "empty state in gpu list", - "reference": "Modules/ProcessList/SystemView.qml:350", - "comment": "" - }, { "term": "No hidden apps.", "context": "No hidden apps.", "reference": "Modules/Settings/LauncherTab.qml:945", "comment": "" }, - { - "term": "No History", - "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:135", - "comment": "" - }, { "term": "No info items", "context": "greeter doctor page empty state", "reference": "Modals/Greeter/GreeterDoctorPage.qml:336", "comment": "" }, + { + "term": "No information available", + "context": "No information available", + "reference": "Modals/NetworkInfoModal.qml:105, Modals/NetworkWiredInfoModal.qml:105", + "comment": "" + }, { "term": "No input device", "context": "audio status", @@ -8180,7 +7760,7 @@ { "term": "No keybinds found", "context": "No keybinds found", - "reference": "Modules/Settings/KeybindsTab.qml:583", + "reference": "Modules/Settings/KeybindsTab.qml:590", "comment": "" }, { @@ -8198,7 +7778,7 @@ { "term": "No matches", "context": "No matches", - "reference": "Modals/Settings/SettingsSidebar.qml:797, Modules/Notepad/NotepadTextEditor.qml:382", + "reference": "Modules/Notepad/NotepadTextEditor.qml:382, Modals/Settings/SettingsSidebar.qml:803", "comment": "" }, { @@ -8207,12 +7787,6 @@ "reference": "Modules/ProcessList/ProcessesView.qml:361", "comment": "" }, - { - "term": "No Media", - "context": "No Media", - "reference": "Modules/DankDash/Overview/MediaOverviewCard.qml:56", - "comment": "" - }, { "term": "No monitors", "context": "no monitors available label", @@ -8237,6 +7811,12 @@ "reference": "Modules/Settings/AudioTab.qml:228", "comment": "" }, + { + "term": "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.", + "context": "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.", + "reference": "Modules/SystemUpdatePopout.qml:144", + "comment": "" + }, { "term": "No plugin results", "context": "No plugin results", @@ -8288,19 +7868,7 @@ { "term": "No results found", "context": "No results found", - "reference": "Modals/DankLauncherV2/ResultsList.qml:483, Modals/DankLauncherV2/ResultsList.qml:490, dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/DankStickerSearch/DankStickerSearch.qml:153", - "comment": "" - }, - { - "term": "No Round", - "context": "No Round", - "reference": "Modules/Settings/WindowRulesTab.qml:562", - "comment": "" - }, - { - "term": "No Rounding", - "context": "No Rounding", - "reference": "Modals/WindowRuleModal.qml:967", + "reference": "Modals/DankLauncherV2/ResultsList.qml:483, Modals/DankLauncherV2/ResultsList.qml:490", "comment": "" }, { @@ -8312,13 +7880,7 @@ { "term": "No sessions found", "context": "No sessions found", - "reference": "Modals/MuxModal.qml:572", - "comment": "" - }, - { - "term": "No Shadow", - "context": "No Shadow", - "reference": "Modals/WindowRuleModal.qml:951, Modules/Settings/WindowRulesTab.qml:558", + "reference": "Modals/MuxModal.qml:562", "comment": "" }, { @@ -8342,7 +7904,7 @@ { "term": "No trigger", "context": "No trigger", - "reference": "Modals/DankLauncherV2/Controller.qml:1168, Modules/Settings/LauncherTab.qml:742", + "reference": "Modules/Settings/LauncherTab.qml:742, Modals/DankLauncherV2/Controller.qml:1171", "comment": "" }, { @@ -8352,15 +7914,15 @@ "comment": "" }, { - "term": "No VPN profiles", - "context": "No VPN profiles", - "reference": "Widgets/VpnDetailContent.qml:177, Modules/Settings/NetworkTab.qml:1671", + "term": "No wallpaper selected", + "context": "no wallpaper status", + "reference": "Modules/Settings/ThemeColorsTab.qml:462, Modules/Settings/WallpaperTab.qml:240", "comment": "" }, { - "term": "No wallpaper selected", - "context": "no wallpaper status", - "reference": "Modules/Settings/WallpaperTab.qml:240, Modules/Settings/ThemeColorsTab.qml:462", + "term": "No wallpapers", + "context": "No wallpapers", + "reference": "Modules/DankDash/WallpaperTab.qml:545", "comment": "" }, { @@ -8375,18 +7937,6 @@ "reference": "Modals/Greeter/GreeterDoctorPage.qml:334", "comment": "" }, - { - "term": "No Weather Data", - "context": "No Weather Data", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:166", - "comment": "" - }, - { - "term": "No Weather Data Available", - "context": "No Weather Data Available", - "reference": "Modules/Settings/TimeWeatherTab.qml:641, Modules/DankDash/WeatherTab.qml:135", - "comment": "" - }, { "term": "No widgets added. Click \"Add Widget\" to get started.", "context": "No widgets added. Click \"Add Widget\" to get started.", @@ -8414,13 +7964,13 @@ { "term": "None", "context": "wallpaper transition option", - "reference": "Services/CupsService.qml:784, Modals/WindowRuleModal.qml:740, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", + "reference": "Modals/WindowRuleModal.qml:740, Services/CupsService.qml:784, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/NotificationsTab.qml:337, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", "comment": "" }, { "term": "Normal", "context": "Normal", - "reference": "Modals/WindowRuleModal.qml:762, Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1793, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1809, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1814", + "reference": "Modals/WindowRuleModal.qml:762, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1793, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1809, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1814, Modules/Settings/DisplayConfig/OutputCard.qml:257", "comment": "" }, { @@ -8432,7 +7982,7 @@ { "term": "Normal Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:768, Modules/Settings/NotificationsTab.qml:883, Modules/Notifications/Center/NotificationSettings.qml:186, Modules/Notifications/Center/NotificationSettings.qml:374", + "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:768, Modules/Settings/NotificationsTab.qml:883, Modules/Notifications/Center/NotificationSettings.qml:186, Modules/Notifications/Center/NotificationSettings.qml:388", "comment": "" }, { @@ -8477,12 +8027,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:118, Modules/Settings/ThemeColorsTab.qml:119", "comment": "" }, - { - "term": "Not paired", - "context": "KDE Connect not paired status", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:214, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:207", - "comment": "" - }, { "term": "Not set", "context": "wallpaper not set label", @@ -8498,7 +8042,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:810, Services/AppSearchService.qml:179, Modules/Settings/WidgetsTab.qml:232", + "reference": "DMSShell.qml:815, Services/AppSearchService.qml:179, Modules/Settings/WidgetsTab.qml:232", "comment": "" }, { @@ -8540,7 +8084,7 @@ { "term": "Notification Overlay", "context": "Notification Overlay", - "reference": "Modules/Settings/NotificationsTab.qml:261, Modules/Notifications/Center/NotificationSettings.qml:243", + "reference": "Modules/Settings/NotificationsTab.qml:261, Modules/Notifications/Center/NotificationSettings.qml:247", "comment": "" }, { @@ -8576,13 +8120,7 @@ { "term": "Notifications", "context": "greeter settings link", - "reference": "Modals/Settings/SettingsSidebar.qml:146, Modals/Greeter/GreeterCompletePage.qml:397, Modules/Notifications/Center/NotificationHeader.qml:49", - "comment": "" - }, - { - "term": "now", - "context": "now", - "reference": "Services/NotificationService.qml:268", + "reference": "Modules/Notifications/Center/NotificationHeader.qml:49, Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:146", "comment": "" }, { @@ -8594,13 +8132,31 @@ { "term": "Numeric (D/M)", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:414, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:144, Modules/Settings/TimeWeatherTab.qml:169, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:231, Modules/Settings/TimeWeatherTab.qml:256", + "reference": "Modules/Settings/GreeterTab.qml:414, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:154, Modules/Settings/TimeWeatherTab.qml:179, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:241, Modules/Settings/TimeWeatherTab.qml:266", "comment": "" }, { "term": "Numeric (M/D)", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:410, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:140, Modules/Settings/TimeWeatherTab.qml:168, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:227, Modules/Settings/TimeWeatherTab.qml:255", + "reference": "Modules/Settings/GreeterTab.qml:410, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:150, Modules/Settings/TimeWeatherTab.qml:178, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:237, Modules/Settings/TimeWeatherTab.qml:265", + "comment": "" + }, + { + "term": "OK", + "context": "greeter doctor page status card", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:281", + "comment": "" + }, + { + "term": "OS Logo", + "context": "OS Logo", + "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", + "comment": "" + }, + { + "term": "OSD Position", + "context": "OSD Position", + "reference": "Modules/Settings/OSDTab.qml:30", "comment": "" }, { @@ -8618,19 +8174,7 @@ { "term": "Office", "context": "Office", - "reference": "Services/AppSearchService.qml:635, Services/AppSearchService.qml:636, Services/AppSearchService.qml:637, Services/AppSearchService.qml:638", - "comment": "" - }, - { - "term": "official", - "context": "official", - "reference": "Modules/Settings/ThemeBrowser.qml:494, Modules/Settings/PluginBrowser.qml:509", - "comment": "" - }, - { - "term": "Offline", - "context": "KDE Connect offline status | Phone Connect offline status", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:40, dms-plugins/DankKDEConnect/components/DeviceCard.qml:216, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:209", + "reference": "Services/AppSearchService.qml:649, Services/AppSearchService.qml:650, Services/AppSearchService.qml:651, Services/AppSearchService.qml:652", "comment": "" }, { @@ -8639,12 +8183,6 @@ "reference": "Services/CupsService.qml:829", "comment": "" }, - { - "term": "OK", - "context": "greeter doctor page status card", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:281", - "comment": "" - }, { "term": "Older", "context": "notification history filter for content older than other filters", @@ -8657,42 +8195,6 @@ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:280, Modules/Settings/DisplayConfig/OutputCard.qml:288, Modules/Settings/DisplayConfig/OutputCard.qml:303, Modules/Settings/DisplayConfig/OutputCard.qml:312", "comment": "" }, - { - "term": "on Hyprland", - "context": "on Hyprland", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:69", - "comment": "" - }, - { - "term": "on MangoWC", - "context": "on MangoWC", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:72", - "comment": "" - }, - { - "term": "on Miracle WM", - "context": "on Miracle WM", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:78", - "comment": "" - }, - { - "term": "on Niri", - "context": "on Niri", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:67", - "comment": "" - }, - { - "term": "on Scroll", - "context": "on Scroll", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:76", - "comment": "" - }, - { - "term": "on Sway", - "context": "on Sway", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:74", - "comment": "" - }, { "term": "On-Demand", "context": "On-Demand", @@ -8708,7 +8210,7 @@ { "term": "On-screen Displays", "context": "On-screen Displays", - "reference": "Modals/Settings/SettingsSidebar.qml:152, Modules/Settings/OSDTab.qml:25", + "reference": "Modules/Settings/OSDTab.qml:25, Modals/Settings/SettingsSidebar.qml:152", "comment": "" }, { @@ -8738,7 +8240,7 @@ { "term": "Opacity", "context": "Opacity", - "reference": "Modals/WindowRuleModal.qml:679, Modals/DankColorPickerModal.qml:514, Modules/Settings/DankBarTab.qml:1104, Modules/Settings/DankBarTab.qml:1429, Modules/Settings/DankBarTab.qml:1519, Modules/Settings/WindowRulesTab.qml:534", + "reference": "Modals/DankColorPickerModal.qml:514, Modals/WindowRuleModal.qml:679, Modules/Settings/DankBarTab.qml:1104, Modules/Settings/DankBarTab.qml:1429, Modules/Settings/DankBarTab.qml:1519, Modules/Settings/WindowRulesTab.qml:534", "comment": "" }, { @@ -8750,13 +8252,13 @@ { "term": "Open", "context": "Open", - "reference": "Modals/DankLauncherV2/Controller.qml:1037, Modals/DankLauncherV2/Controller.qml:1041, Modals/DankLauncherV2/Controller.qml:1045, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1448, Modules/Notepad/NotepadTextEditor.qml:779, Modules/ControlCenter/Details/NetworkDetail.qml:609", + "reference": "Modules/Notepad/NotepadTextEditor.qml:779, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1448, Modules/Notifications/Center/NotificationCard.qml:716, Modules/Notifications/Center/NotificationCard.qml:852, Modules/ControlCenter/Details/NetworkDetail.qml:609, Modals/DankLauncherV2/Controller.qml:1040, Modals/DankLauncherV2/Controller.qml:1044, Modals/DankLauncherV2/Controller.qml:1048", "comment": "" }, { - "term": "open", - "context": "open", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:384", + "term": "Open Notepad File", + "context": "Open Notepad File", + "reference": "Modules/Notepad/Notepad.qml:333", "comment": "" }, { @@ -8765,40 +8267,16 @@ "reference": "Modules/DankBar/Widgets/NotepadButton.qml:347", "comment": "" }, - { - "term": "Open App", - "context": "KDE Connect open SMS app button", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:91", - "comment": "" - }, { "term": "Open folder", "context": "Open folder", - "reference": "Modals/DankLauncherV2/Controller.qml:1045", - "comment": "" - }, - { - "term": "Open in Browser", - "context": "Open in Browser", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:248, dms-plugins/DankStickerSearch/DankStickerSearch.qml:301", + "reference": "Modals/DankLauncherV2/Controller.qml:1048", "comment": "" }, { "term": "Open in terminal", "context": "Open in terminal", - "reference": "Modals/DankLauncherV2/Controller.qml:1045", - "comment": "" - }, - { - "term": "Open KDE Connect on your phone", - "context": "KDE Connect open app hint", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:131", - "comment": "" - }, - { - "term": "Open Notepad File", - "context": "Open Notepad File", - "reference": "Modules/Notepad/Notepad.qml:333", + "reference": "Modals/DankLauncherV2/Controller.qml:1048", "comment": "" }, { @@ -8810,31 +8288,7 @@ { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:644, Modals/BrowserPickerModal.qml:11", - "comment": "" - }, - { - "term": "Opening file browser", - "context": "Phone Connect browse action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:146", - "comment": "" - }, - { - "term": "Opening files", - "context": "KDE Connect browse action", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:328", - "comment": "" - }, - { - "term": "Opening SMS", - "context": "KDE Connect SMS action", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:344", - "comment": "" - }, - { - "term": "Opening SMS app", - "context": "Phone Connect SMS action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:136", + "reference": "DMSShell.qml:649, Modals/BrowserPickerModal.qml:11", "comment": "" }, { @@ -8861,12 +8315,6 @@ "reference": "Widgets/KeybindItem.qml:1222, Widgets/KeybindItem.qml:1711", "comment": "" }, - { - "term": "or run ", - "context": "or run ", - "reference": "Modules/Settings/GreeterTab.qml:765", - "comment": "" - }, { "term": "Organize widgets into collapsible groups", "context": "Organize widgets into collapsible groups", @@ -8879,18 +8327,6 @@ "reference": "Modules/Settings/AudioTab.qml:600, Modules/Settings/Widgets/DeviceAliasRow.qml:103", "comment": "" }, - { - "term": "OS Logo", - "context": "OS Logo", - "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", - "comment": "" - }, - { - "term": "OSD Position", - "context": "OSD Position", - "reference": "Modules/Settings/OSDTab.qml:30", - "comment": "" - }, { "term": "Other", "context": "Other", @@ -8921,6 +8357,12 @@ "reference": "Services/CupsService.qml:810", "comment": "" }, + { + "term": "Output Device", + "context": "Output Device", + "reference": "Modules/DankDash/MediaPlayerTab.qml:791", + "comment": "" + }, { "term": "Output Devices", "context": "Audio settings: speaker/headphone devices", @@ -8948,7 +8390,7 @@ { "term": "Overflow", "context": "Overflow", - "reference": "Modules/Settings/WidgetsTabSection.qml:1974", + "reference": "Modules/Settings/WidgetsTabSection.qml:2319", "comment": "" }, { @@ -8990,7 +8432,7 @@ { "term": "Override terminal with a custom command or script", "context": "Override terminal with a custom command or script", - "reference": "Modules/Settings/MuxTab.qml:71", + "reference": "Modules/Settings/MuxTab.qml:57", "comment": "" }, { @@ -9008,7 +8450,7 @@ { "term": "Overview", "context": "Overview", - "reference": "Widgets/KeybindItem.qml:1101, Widgets/KeybindItem.qml:1104, Modules/DankDash/DankDashPopout.qml:270", + "reference": "Widgets/KeybindItem.qml:1101, Widgets/KeybindItem.qml:1104, Modules/DankDash/DankDashPopout.qml:271", "comment": "" }, { @@ -9023,84 +8465,6 @@ "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:108", "comment": "" }, - { - "term": "Pad", - "context": "wallpaper fill mode", - "reference": "Modules/Settings/WallpaperTab.qml:312", - "comment": "" - }, - { - "term": "Pad Hours", - "context": "Pad Hours", - "reference": "Modules/Settings/TimeWeatherTab.qml:73", - "comment": "" - }, - { - "term": "Pad hours (02:00 vs 2:00)", - "context": "Pad hours (02:00 vs 2:00)", - "reference": "Modules/Settings/GreeterTab.qml:618", - "comment": "" - }, - { - "term": "Padding", - "context": "Padding", - "reference": "Modules/Settings/DockTab.qml:537, Modules/Settings/DankBarTab.qml:872", - "comment": "" - }, - { - "term": "Pair", - "context": "KDE Connect pair button", - "reference": "Modals/BluetoothPairingModal.qml:324, Modules/ControlCenter/Details/BluetoothDetail.qml:558, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:391", - "comment": "" - }, - { - "term": "Pair Bluetooth Device", - "context": "Pair Bluetooth Device", - "reference": "Modals/BluetoothPairingModal.qml:121", - "comment": "" - }, - { - "term": "Paired", - "context": "Paired", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:299", - "comment": "" - }, - { - "term": "Pairing", - "context": "KDE Connect pairing in progress status", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:212, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:205", - "comment": "" - }, - { - "term": "Pairing failed", - "context": "Phone Connect error", - "reference": "Modals/BluetoothPairingModal.qml:400, Modules/ControlCenter/Details/BluetoothDetail.qml:50, dms-plugins/DankKDEConnect/DankKDEConnect.qml:152", - "comment": "" - }, - { - "term": "Pairing request from", - "context": "Phone Connect pairing request notification", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:71", - "comment": "" - }, - { - "term": "Pairing request sent", - "context": "Phone Connect pairing action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:155", - "comment": "" - }, - { - "term": "Pairing requested", - "context": "KDE Connect pairing requested status", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:210, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:203", - "comment": "" - }, - { - "term": "Pairing...", - "context": "Pairing...", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:530, Modules/ControlCenter/Details/BluetoothDetail.qml:555", - "comment": "" - }, { "term": "PAM already provides fingerprint auth. Enable this to show it at login.", "context": "PAM already provides fingerprint auth. Enable this to show it at login.", @@ -9131,6 +8495,66 @@ "reference": "Modules/Settings/GreeterTab.qml:31", "comment": "" }, + { + "term": "PIN", + "context": "PIN", + "reference": "Modals/WifiPasswordModal.qml:182", + "comment": "" + }, + { + "term": "Pad", + "context": "wallpaper fill mode", + "reference": "Modules/Settings/WallpaperTab.qml:312", + "comment": "" + }, + { + "term": "Pad Hours", + "context": "Pad Hours", + "reference": "Modules/Settings/TimeWeatherTab.qml:73", + "comment": "" + }, + { + "term": "Pad hours (02:00 vs 2:00)", + "context": "Pad hours (02:00 vs 2:00)", + "reference": "Modules/Settings/GreeterTab.qml:618", + "comment": "" + }, + { + "term": "Padding", + "context": "Padding", + "reference": "Modules/Settings/DankBarTab.qml:872, Modules/Settings/DockTab.qml:537", + "comment": "" + }, + { + "term": "Pair", + "context": "Pair", + "reference": "Modals/BluetoothPairingModal.qml:324, Modules/ControlCenter/Details/BluetoothDetail.qml:558", + "comment": "" + }, + { + "term": "Pair Bluetooth Device", + "context": "Pair Bluetooth Device", + "reference": "Modals/BluetoothPairingModal.qml:121", + "comment": "" + }, + { + "term": "Paired", + "context": "Paired", + "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:299", + "comment": "" + }, + { + "term": "Pairing failed", + "context": "Pairing failed", + "reference": "Modals/BluetoothPairingModal.qml:400, Modules/ControlCenter/Details/BluetoothDetail.qml:50", + "comment": "" + }, + { + "term": "Pairing...", + "context": "Pairing...", + "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:530, Modules/ControlCenter/Details/BluetoothDetail.qml:555", + "comment": "" + }, { "term": "Partly Cloudy", "context": "Partly Cloudy", @@ -9150,9 +8574,9 @@ "comment": "" }, { - "term": "Paste", - "context": "Paste", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:195, dms-plugins/DankStickerSearch/DankStickerSearch.qml:248", + "term": "Password...", + "context": "Password...", + "reference": "Modules/Greetd/GreeterContent.qml:1021", "comment": "" }, { @@ -9164,7 +8588,7 @@ { "term": "Pattern", "context": "Pattern", - "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:522, Modules/Settings/NotificationsTab.qml:531", + "reference": "Modules/Settings/NotificationsTab.qml:522, Modules/Settings/NotificationsTab.qml:531, Modules/Settings/RunningAppsTab.qml:87", "comment": "" }, { @@ -9218,7 +8642,7 @@ { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTab.qml:125, Modules/Settings/WidgetsTabSection.qml:983", + "reference": "Modules/Settings/WidgetsTab.qml:125, Modules/Settings/WidgetsTabSection.qml:984", "comment": "" }, { @@ -9236,25 +8660,7 @@ { "term": "Personalization", "context": "Personalization", - "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:569", - "comment": "" - }, - { - "term": "Phone Connect Not Available", - "context": "Phone Connect unavailable error title", - "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:30", - "comment": "" - }, - { - "term": "Phone Connect unavailable", - "context": "Phone Connect service unavailable message", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:97", - "comment": "" - }, - { - "term": "Phone number", - "context": "KDE Connect SMS phone input placeholder", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:67", + "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:575", "comment": "" }, { @@ -9269,46 +8675,22 @@ "reference": "Modals/FileBrowser/FileBrowserContent.qml:256", "comment": "" }, - { - "term": "PIN", - "context": "PIN", - "reference": "Modals/WifiPasswordModal.qml:182", - "comment": "" - }, { "term": "Pin", "context": "Pin", - "reference": "Modals/WindowRuleModal.qml:971, Modules/Settings/WindowRulesTab.qml:563, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/NetworkDetail.qml:676, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/AudioInputDetail.qml:295, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165", + "reference": "Modals/WindowRuleModal.qml:971, Modules/Settings/WindowRulesTab.qml:563, Modules/ControlCenter/Details/AudioInputDetail.qml:295, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/NetworkDetail.qml:676", "comment": "" }, { "term": "Pin to Dock", "context": "Pin to Dock", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:103, Modules/Dock/DockContextMenu.qml:409, Modules/DankBar/Widgets/AppsDockContextMenu.qml:341", - "comment": "" - }, - { - "term": "Ping", - "context": "KDE Connect ping tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:124, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:281", - "comment": "" - }, - { - "term": "Ping sent", - "context": "KDE Connect ping action", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:286", - "comment": "" - }, - { - "term": "Ping sent to", - "context": "Phone Connect ping action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:108", + "reference": "Modules/Dock/DockContextMenu.qml:409, Modules/DankBar/Widgets/AppsDockContextMenu.qml:341, Modals/DankLauncherV2/LauncherContextMenu.qml:103", "comment": "" }, { "term": "Pinned", "context": "Pinned", - "reference": "Modals/DankLauncherV2/Controller.qml:143, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/NetworkDetail.qml:676, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/AudioInputDetail.qml:295", + "reference": "Modules/ControlCenter/Details/AudioInputDetail.qml:295, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/NetworkDetail.qml:676, Modals/DankLauncherV2/Controller.qml:143", "comment": "" }, { @@ -9386,7 +8768,7 @@ { "term": "Please write a name for your new %1 session", "context": "Please write a name for your new %1 session", - "reference": "Modals/MuxModal.qml:138", + "reference": "Modals/MuxModal.qml:113", "comment": "" }, { @@ -9404,7 +8786,7 @@ { "term": "Plugin", "context": "Plugin", - "reference": "Modals/DankLauncherV2/ResultItem.qml:183, Modules/Settings/DesktopWidgetBrowser.qml:408, Modules/ControlCenter/Models/WidgetModel.qml:242", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:408, Modules/ControlCenter/Models/WidgetModel.qml:242, Modals/DankLauncherV2/ResultItem.qml:183", "comment": "" }, { @@ -9413,12 +8795,6 @@ "reference": "Modules/Settings/PluginsTab.qml:257", "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:269", - "comment": "" - }, { "term": "Plugin Management", "context": "Plugin Management", @@ -9431,10 +8807,16 @@ "reference": "Modules/Settings/LauncherTab.qml:603", "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:269", + "comment": "" + }, { "term": "Plugins", "context": "greeter feature card title | greeter plugins link", - "reference": "Modals/Settings/SettingsSidebar.qml:306, Modals/DankLauncherV2/LauncherContent.qml:322, Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", + "reference": "Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298, Modals/DankLauncherV2/LauncherContent.qml:352, Modals/Greeter/GreeterCompletePage.qml:476, Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Settings/SettingsSidebar.qml:312", "comment": "" }, { @@ -9461,12 +8843,6 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:285", "comment": "" }, - { - "term": "Popup behavior, position", - "context": "greeter notifications description", - "reference": "Modals/Greeter/GreeterCompletePage.qml:398", - "comment": "" - }, { "term": "Popup Only", "context": "notification rule action option", @@ -9491,6 +8867,12 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1594", "comment": "" }, + { + "term": "Popup behavior, position", + "context": "greeter notifications description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:398", + "comment": "" + }, { "term": "Port", "context": "Label for printer port number input field", @@ -9506,7 +8888,7 @@ { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:92, Modules/Settings/DankBarTab.qml:531, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1218", + "reference": "Modules/Settings/DankBarTab.qml:531, Modules/Settings/DockTab.qml:92, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1218", "comment": "" }, { @@ -9524,19 +8906,19 @@ { "term": "Power", "context": "Power", - "reference": "Modules/Settings/WidgetsTab.qml:253, Modules/ControlCenter/Details/BatteryDetail.qml:72", + "reference": "Modules/Settings/WidgetsTab.qml:253, Modules/DankBar/Popouts/BatteryPopout.qml:191, Modules/ControlCenter/Details/BatteryDetail.qml:72", "comment": "" }, { "term": "Power & Security", "context": "Power & Security", - "reference": "Modals/Settings/SettingsSidebar.qml:280, Modals/Settings/SettingsSidebar.qml:557", + "reference": "Modals/Settings/SettingsSidebar.qml:286, Modals/Settings/SettingsSidebar.qml:563", "comment": "" }, { "term": "Power & Sleep", "context": "Power & Sleep", - "reference": "Modals/Settings/SettingsSidebar.qml:298", + "reference": "Modals/Settings/SettingsSidebar.qml:304", "comment": "" }, { @@ -9554,13 +8936,7 @@ { "term": "Power Off", "context": "Power Off", - "reference": "Modals/PowerMenuModal.qml:192, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:116", - "comment": "" - }, - { - "term": "Power off monitors on lock", - "context": "Power off monitors on lock", - "reference": "Modules/Settings/LockScreenTab.qml:201", + "reference": "Modals/PowerMenuModal.qml:192, Modules/Lock/LockPowerMenu.qml:116, Modules/Settings/PowerSleepTab.qml:378", "comment": "" }, { @@ -9581,18 +8957,24 @@ "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:613, Modules/ControlCenter/Details/BatteryDetail.qml:246", "comment": "" }, - { - "term": "Power profile management available", - "context": "Power profile management available", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:106", - "comment": "" - }, { "term": "Power Saver", "context": "power profile option", "reference": "Common/Theme.qml:1470", "comment": "" }, + { + "term": "Power off monitors on lock", + "context": "Power off monitors on lock", + "reference": "Modules/Settings/LockScreenTab.qml:201", + "comment": "" + }, + { + "term": "Power profile management available", + "context": "Power profile management available", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:176, Modules/ControlCenter/Details/BatteryDetail.qml:106", + "comment": "" + }, { "term": "Power source", "context": "Power source", @@ -9611,12 +8993,6 @@ "reference": "Modules/Settings/GreeterTab.qml:735", "comment": "" }, - { - "term": "Precip", - "context": "Precip", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:437", - "comment": "" - }, { "term": "Precipitation", "context": "Precipitation", @@ -9644,7 +9020,7 @@ { "term": "Press 'n' or click 'New Session' to create one", "context": "Press 'n' or click 'New Session' to create one", - "reference": "Modals/MuxModal.qml:579", + "reference": "Modals/MuxModal.qml:569", "comment": "" }, { @@ -9668,7 +9044,7 @@ { "term": "Pressure", "context": "Pressure", - "reference": "Modules/Settings/TimeWeatherTab.qml:1024, Modules/DankDash/WeatherForecastCard.qml:90, Modules/DankDash/WeatherTab.qml:94, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449", + "reference": "Modules/DankDash/WeatherForecastCard.qml:90, Modules/DankDash/WeatherTab.qml:94, Modules/Settings/TimeWeatherTab.qml:1034", "comment": "" }, { @@ -9686,7 +9062,7 @@ { "term": "Primary", "context": "button color option | color option | primary color | shadow color option | tile color option", - "reference": "Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/NetworkTab.qml:227, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1542, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1574, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1670, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/Widgets/SettingsColorPicker.qml:42, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39", + "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/NetworkTab.qml:227, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1542, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1574, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1670, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/Widgets/SettingsColorPicker.qml:42", "comment": "" }, { @@ -9710,7 +9086,7 @@ { "term": "Printer", "context": "Printer", - "reference": "Modules/Settings/WidgetsTabSection.qml:1132", + "reference": "Modules/Settings/WidgetsTabSection.qml:1165, Modules/Settings/WidgetsTabSection.qml:1330", "comment": "" }, { @@ -9746,7 +9122,7 @@ { "term": "Printers", "context": "Printers", - "reference": "Modals/Settings/SettingsSidebar.qml:264, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16, Modules/ControlCenter/Models/WidgetModel.qml:197", + "reference": "Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16, Modules/ControlCenter/Models/WidgetModel.qml:197, Modals/Settings/SettingsSidebar.qml:264", "comment": "" }, { @@ -9776,7 +9152,7 @@ { "term": "Privacy Mode", "context": "Privacy Mode", - "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:287", + "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:298", "comment": "" }, { @@ -9794,7 +9170,7 @@ { "term": "Processes", "context": "Processes", - "reference": "Modals/ProcessListModal.qml:307, Modules/ProcessList/SystemView.qml:88, Modules/ProcessList/ProcessListPopout.qml:140", + "reference": "Modals/ProcessListModal.qml:307, Modules/ProcessList/ProcessListPopout.qml:140, Modules/ProcessList/SystemView.qml:88", "comment": "" }, { @@ -9810,9 +9186,9 @@ "comment": "" }, { - "term": "procs", - "context": "short for processes", - "reference": "Modules/ProcessList/ProcessListPopout.qml:288", + "term": "Profile Image Error", + "context": "Profile Image Error", + "reference": "Services/PortalService.qml:157", "comment": "" }, { @@ -9833,12 +9209,6 @@ "reference": "Modules/Settings/DisplayConfigTab.qml:70", "comment": "" }, - { - "term": "Profile Image Error", - "context": "Profile Image Error", - "reference": "Services/PortalService.qml:157", - "comment": "" - }, { "term": "Profile image is too large. Please use a smaller image.", "context": "Profile image is too large. Please use a smaller image.", @@ -9866,7 +9236,7 @@ { "term": "Protocol", "context": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket", - "reference": "Widgets/VpnProfileDelegate.qml:63, Modules/Settings/PrinterTab.qml:549, Modules/Settings/NetworkTab.qml:1925", + "reference": "Widgets/VpnProfileDelegate.qml:63, Modules/Settings/NetworkTab.qml:1925, Modules/Settings/PrinterTab.qml:549", "comment": "" }, { @@ -9917,6 +9287,12 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:150", "comment": "" }, + { + "term": "RGB", + "context": "RGB", + "reference": "Modals/DankColorPickerModal.qml:620", + "comment": "" + }, { "term": "Radius", "context": "Radius", @@ -9932,7 +9308,7 @@ { "term": "Rain Chance", "context": "Rain Chance", - "reference": "Modules/Settings/TimeWeatherTab.qml:1074", + "reference": "Modules/Settings/TimeWeatherTab.qml:1084", "comment": "" }, { @@ -9968,7 +9344,7 @@ { "term": "Reboot", "context": "Reboot", - "reference": "Modals/PowerMenuModal.qml:180, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:104", + "reference": "Modals/PowerMenuModal.qml:180, Modules/Lock/LockPowerMenu.qml:104, Modules/Settings/PowerSleepTab.qml:378", "comment": "" }, { @@ -9991,8 +9367,8 @@ }, { "term": "Refresh", - "context": "Phone Connect refresh tooltip", - "reference": "Modules/Settings/GreeterTab.qml:504, Modules/DankDash/Overview/WeatherOverviewCard.qml:38, dms-plugins/DankKDEConnect/DankKDEConnect.qml:296", + "context": "Refresh", + "reference": "Modules/Settings/GreeterTab.qml:504, Modules/DankDash/Overview/WeatherOverviewCard.qml:38", "comment": "" }, { @@ -10007,12 +9383,6 @@ "reference": "Modules/Settings/NotificationsTab.qml:112", "comment": "" }, - { - "term": "Reject", - "context": "KDE Connect reject pairing button", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:188, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:377", - "comment": "" - }, { "term": "Reject Jobs", "context": "Reject Jobs", @@ -10034,13 +9404,13 @@ { "term": "Remaining", "context": "Remaining", - "reference": "Modules/Settings/WidgetsTabSection.qml:985", + "reference": "Modules/Settings/WidgetsTabSection.qml:986", "comment": "" }, { "term": "Remaining / Total", "context": "Remaining / Total", - "reference": "Modules/Settings/WidgetsTabSection.qml:986", + "reference": "Modules/Settings/WidgetsTabSection.qml:987", "comment": "" }, { @@ -10061,28 +9431,28 @@ "reference": "Modules/Plugins/ListSetting.qml:114, Modules/Plugins/ListSettingWithInput.qml:230", "comment": "" }, - { - "term": "Remove gaps and border when windows are maximized", - "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:709", - "comment": "" - }, { "term": "Remove Widget Padding", "context": "Remove Widget Padding", "reference": "Modules/Settings/DankBarTab.qml:1321", "comment": "" }, + { + "term": "Remove gaps and border when windows are maximized", + "context": "Remove gaps and border when windows are maximized", + "reference": "Modules/Settings/DankBarTab.qml:709", + "comment": "" + }, { "term": "Rename", "context": "Rename", - "reference": "Modals/WorkspaceRenameModal.qml:185, Modals/MuxModal.qml:607", + "reference": "Modals/WorkspaceRenameModal.qml:185, Modals/MuxModal.qml:597", "comment": "" }, { "term": "Rename Session", "context": "Rename Session", - "reference": "Modals/MuxModal.qml:114", + "reference": "Modals/MuxModal.qml:89", "comment": "" }, { @@ -10109,12 +9479,6 @@ "reference": "Services/CupsService.qml:836", "comment": "" }, - { - "term": "Request Pairing", - "context": "KDE Connect request pairing button", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:199", - "comment": "" - }, { "term": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "context": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", @@ -10160,7 +9524,7 @@ { "term": "Reset", "context": "Reset", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:961, Modules/Settings/WidgetsTab.qml:868, Modules/ControlCenter/Components/EditControls.qml:232", + "reference": "Modules/Settings/WidgetsTab.qml:897, Modules/ControlCenter/Components/EditControls.qml:232, Modals/DankLauncherV2/LauncherContent.qml:991", "comment": "" }, { @@ -10247,16 +9611,10 @@ "reference": "Modals/DisplayConfirmationModal.qml:139", "comment": "" }, - { - "term": "RGB", - "context": "RGB", - "reference": "Modals/DankColorPickerModal.qml:620", - "comment": "" - }, { "term": "Right", "context": "Right", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:290, Modules/Settings/DankBarTab.qml:542", + "reference": "Modules/Settings/DankBarTab.qml:290, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DockTab.qml:102", "comment": "" }, { @@ -10268,7 +9626,7 @@ { "term": "Right Section", "context": "Right Section", - "reference": "Modules/Settings/WidgetsTab.qml:1050", + "reference": "Modules/Settings/WidgetsTab.qml:1085", "comment": "" }, { @@ -10295,18 +9653,6 @@ "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:292", "comment": "" }, - { - "term": "Ring", - "context": "KDE Connect ring tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:115, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:267", - "comment": "" - }, - { - "term": "Ringing", - "context": "KDE Connect ring action | Phone Connect ring action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:99, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", - "comment": "" - }, { "term": "Ripple Effects", "context": "Ripple Effects", @@ -10355,18 +9701,6 @@ "reference": "Modules/Settings/WindowRulesTab.qml:402", "comment": "" }, - { - "term": "Run a program (e.g., firefox, kitty)", - "context": "Run a program (e.g., firefox, kitty)", - "reference": "Widgets/KeybindItem.qml:856", - "comment": "" - }, - { - "term": "Run a shell command (e.g., notify-send)", - "context": "Run a shell command (e.g., notify-send)", - "reference": "Widgets/KeybindItem.qml:857", - "comment": "" - }, { "term": "Run Again", "context": "greeter doctor page button", @@ -10397,16 +9731,28 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:2387", "comment": "" }, + { + "term": "Run a program (e.g., firefox, kitty)", + "context": "Run a program (e.g., firefox, kitty)", + "reference": "Widgets/KeybindItem.qml:856", + "comment": "" + }, + { + "term": "Run a shell command (e.g., notify-send)", + "context": "Run a shell command (e.g., notify-send)", + "reference": "Widgets/KeybindItem.qml:857", + "comment": "" + }, { "term": "Running Apps", "context": "Running Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:158, Modules/Settings/WidgetsTab.qml:66", + "reference": "Modules/Settings/WidgetsTab.qml:66, Modals/Settings/SettingsSidebar.qml:158", "comment": "" }, { "term": "Running Apps Settings", "context": "Running Apps Settings", - "reference": "Modules/Settings/WidgetsTabSection.qml:1716", + "reference": "Modules/Settings/WidgetsTabSection.qml:2061", "comment": "" }, { @@ -10415,10 +9761,34 @@ "reference": "Modules/Settings/GreeterTab.qml:332", "comment": "" }, + { + "term": "SDR Brightness", + "context": "SDR Brightness", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1252, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246", + "comment": "" + }, + { + "term": "SDR Saturation", + "context": "SDR Saturation", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1254, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:279", + "comment": "" + }, { "term": "Save", "context": "Save", - "reference": "Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modals/DankColorPickerModal.qml:750, Modals/DankLauncherV2/LauncherContent.qml:1009, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Settings/AudioTab.qml:693, Modules/Notepad/NotepadTextEditor.qml:763, Modules/Notepad/Notepad.qml:472", + "reference": "Modals/DankColorPickerModal.qml:750, Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modules/Notepad/Notepad.qml:472, Modules/Notepad/NotepadTextEditor.qml:763, Modules/Settings/AudioTab.qml:693, Modals/DankLauncherV2/LauncherContent.qml:1039, Modals/FileBrowser/FileBrowserSaveRow.qml:55", + "comment": "" + }, + { + "term": "Save Notepad File", + "context": "Save Notepad File", + "reference": "Modules/Notepad/Notepad.qml:267", + "comment": "" + }, + { + "term": "Save QR Code", + "context": "Save QR Code", + "reference": "Modals/WifiQRCodeModal.qml:81", "comment": "" }, { @@ -10451,28 +9821,16 @@ "reference": "Modules/Settings/NotificationsTab.qml:884", "comment": "" }, - { - "term": "Save Notepad File", - "context": "Save Notepad File", - "reference": "Modules/Notepad/Notepad.qml:267", - "comment": "" - }, { "term": "Save password", "context": "Save password", "reference": "Modals/WifiPasswordModal.qml:664", "comment": "" }, - { - "term": "Save QR Code", - "context": "Save QR Code", - "reference": "Modals/WifiQRCodeModal.qml:81", - "comment": "" - }, { "term": "Saved", "context": "Saved", - "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Settings/NetworkTab.qml:1214, Modules/Notepad/NotepadTextEditor.qml:861, Modules/ControlCenter/Details/NetworkDetail.qml:615", + "reference": "Modules/Notepad/NotepadTextEditor.qml:869, Modules/Settings/NetworkTab.qml:1214, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modals/Clipboard/ClipboardHeader.qml:52", "comment": "" }, { @@ -10481,18 +9839,18 @@ "reference": "Modules/Settings/NetworkTab.qml:707", "comment": "" }, - { - "term": "Saved item deleted", - "context": "Saved item deleted", - "reference": "Services/ClipboardService.qml:177", - "comment": "" - }, { "term": "Saved Note", "context": "Saved Note", "reference": "Modules/DankBar/Widgets/NotepadButton.qml:305", "comment": "" }, + { + "term": "Saved item deleted", + "context": "Saved item deleted", + "reference": "Services/ClipboardService.qml:177", + "comment": "" + }, { "term": "Saving...", "context": "Saving...", @@ -10502,13 +9860,7 @@ { "term": "Scale", "context": "Scale", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:154, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1222", - "comment": "" - }, - { - "term": "Scale all font sizes throughout the shell", - "context": "Scale all font sizes throughout the shell", - "reference": "Modules/Settings/TypographyMotionTab.qml:184", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1222, Modules/Settings/DisplayConfig/OutputCard.qml:154", "comment": "" }, { @@ -10523,6 +9875,12 @@ "reference": "Modules/Settings/DankBarTab.qml:977", "comment": "" }, + { + "term": "Scale all font sizes throughout the shell", + "context": "Scale all font sizes throughout the shell", + "reference": "Modules/Settings/TypographyMotionTab.qml:184", + "comment": "" + }, { "term": "Scan", "context": "Scan", @@ -10538,31 +9896,31 @@ { "term": "Scanning...", "context": "Scanning...", - "reference": "Modules/Settings/PrinterTab.qml:439, Modules/Settings/NetworkTab.qml:1069", + "reference": "Modules/Settings/NetworkTab.qml:1069, Modules/Settings/PrinterTab.qml:439", "comment": "" }, { "term": "Science", "context": "Science", - "reference": "Services/AppSearchService.qml:639", + "reference": "Services/AppSearchService.qml:653", "comment": "" }, { "term": "Score", "context": "Score", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:658, Modals/DankLauncherV2/LauncherContent.qml:666, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:673", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:688, Modals/DankLauncherV2/LauncherContent.qml:696, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:703", "comment": "" }, { "term": "Screen Sharing", "context": "Screen Sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:1137", + "reference": "Modules/Settings/WidgetsTabSection.qml:1175, Modules/Settings/WidgetsTabSection.qml:1331", "comment": "" }, { "term": "Screen sharing", "context": "Screen sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:1417", + "reference": "Modules/Settings/WidgetsTabSection.qml:1762", "comment": "" }, { @@ -10577,6 +9935,18 @@ "reference": "Modals/WindowRuleModal.qml:774", "comment": "" }, + { + "term": "Scroll GitHub", + "context": "Scroll GitHub", + "reference": "Modules/Settings/AboutTab.qml:75, Modules/Settings/AboutTab.qml:77", + "comment": "" + }, + { + "term": "Scroll Wheel", + "context": "Scroll Wheel", + "reference": "Modules/Settings/DankBarTab.qml:719, Modules/Settings/MediaPlayerTab.qml:53", + "comment": "" + }, { "term": "Scroll song title", "context": "Scroll song title", @@ -10589,12 +9959,6 @@ "reference": "Modules/Settings/MediaPlayerTab.qml:37", "comment": "" }, - { - "term": "Scroll Wheel", - "context": "Scroll Wheel", - "reference": "Modules/Settings/DankBarTab.qml:719, Modules/Settings/MediaPlayerTab.qml:53", - "comment": "" - }, { "term": "Scroll wheel behavior on media widget", "context": "Scroll wheel behavior on media widget", @@ -10607,18 +9971,6 @@ "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:52", "comment": "" }, - { - "term": "SDR Brightness", - "context": "SDR Brightness", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1252, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246", - "comment": "" - }, - { - "term": "SDR Saturation", - "context": "SDR Saturation", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1254, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:279", - "comment": "" - }, { "term": "Search App Actions", "context": "Search App Actions", @@ -10626,9 +9978,9 @@ "comment": "" }, { - "term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", - "context": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:217", + "term": "Search Options", + "context": "Search Options", + "reference": "Modules/Settings/LauncherTab.qml:823", "comment": "" }, { @@ -10643,18 +9995,6 @@ "reference": "Modules/Settings/KeybindsTab.qml:259", "comment": "" }, - { - "term": "Search keyboard shortcuts from your compositor and applications", - "context": "Search keyboard shortcuts from your compositor and applications", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:78", - "comment": "" - }, - { - "term": "Search Options", - "context": "Search Options", - "reference": "Modules/Settings/LauncherTab.qml:823", - "comment": "" - }, { "term": "Search plugins...", "context": "plugin search placeholder", @@ -10670,7 +10010,7 @@ { "term": "Search sessions...", "context": "Search sessions...", - "reference": "Modals/MuxModal.qml:353", + "reference": "Modals/MuxModal.qml:339", "comment": "" }, { @@ -10688,13 +10028,7 @@ { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:301, Modals/Settings/SettingsSidebar.qml:629, Modules/ProcessList/ProcessListPopout.qml:185", - "comment": "" - }, - { - "term": "Searching...", - "context": "Searching...", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:83, dms-plugins/DankStickerSearch/DankStickerSearch.qml:140", + "reference": "Widgets/DankDropdown.qml:301, Modules/ProcessList/ProcessListPopout.qml:185, Modals/Settings/SettingsSidebar.qml:635", "comment": "" }, { @@ -10706,13 +10040,7 @@ { "term": "Secondary", "context": "button color option | color option | secondary color | tile color option", - "reference": "Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DockTab.qml:600, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1538, Modules/Settings/ThemeColorsTab.qml:1548, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1570, Modules/Settings/ThemeColorsTab.qml:1580, Modules/Settings/LauncherTab.qml:477, Modules/Settings/Widgets/SettingsColorPicker.qml:47, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43", - "comment": "" - }, - { - "term": "seconds", - "context": "seconds", - "reference": "Modules/Settings/NotificationsTab.qml:170", + "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/DockTab.qml:600, Modules/Settings/LauncherTab.qml:477, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1538, Modules/Settings/ThemeColorsTab.qml:1548, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1570, Modules/Settings/ThemeColorsTab.qml:1580, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/Widgets/SettingsColorPicker.qml:47", "comment": "" }, { @@ -10742,19 +10070,73 @@ { "term": "Security-key availability could not be confirmed.", "context": "Security-key availability could not be confirmed.", - "reference": "Modules/Settings/LockScreenTab.qml:43, Modules/Settings/GreeterTab.qml:71", + "reference": "Modules/Settings/GreeterTab.qml:71, Modules/Settings/LockScreenTab.qml:43", "comment": "" }, { "term": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", "context": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", - "reference": "Modules/Settings/LockScreenTab.qml:39, Modules/Settings/GreeterTab.qml:67", + "reference": "Modules/Settings/GreeterTab.qml:67, Modules/Settings/LockScreenTab.qml:39", "comment": "" }, { "term": "Select", "context": "Select", - "reference": "Modals/DankLauncherV2/Controller.qml:1301", + "reference": "Modals/DankLauncherV2/Controller.qml:1304", + "comment": "" + }, + { + "term": "Select Application", + "context": "Select Application", + "reference": "Modals/AppPickerModal.qml:11", + "comment": "" + }, + { + "term": "Select Bar", + "context": "Select Bar", + "reference": "Modules/Settings/WidgetsTab.qml:812", + "comment": "" + }, + { + "term": "Select Custom Theme", + "context": "custom theme file browser title", + "reference": "Modules/Settings/ThemeColorsTab.qml:2880", + "comment": "" + }, + { + "term": "Select Dock Launcher Logo", + "context": "Select Dock Launcher Logo", + "reference": "Modules/Settings/DockTab.qml:13", + "comment": "" + }, + { + "term": "Select Launcher Logo", + "context": "Select Launcher Logo", + "reference": "Modules/Settings/LauncherTab.qml:13", + "comment": "" + }, + { + "term": "Select Profile Image", + "context": "profile image file browser title", + "reference": "Modals/Settings/SettingsModal.qml:127", + "comment": "" + }, + { + "term": "Select Video or Folder", + "context": "Select Video or Folder", + "reference": "Modules/Settings/LockScreenTab.qml:59", + "comment": "" + }, + { + "term": "Select Wallpaper", + "context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", + "reference": "Modules/Settings/WallpaperTab.qml:1313, Modules/Settings/WallpaperTab.qml:1335, Modules/Settings/WallpaperTab.qml:1355, Modals/Settings/SettingsModal.qml:151", + "comment": "" + }, + { + "term": "Select Wallpaper Directory", + "context": "wallpaper directory file browser title", + "reference": "Modules/DankDash/WallpaperTab.qml:320", "comment": "" }, { @@ -10787,30 +10169,6 @@ "reference": "Modules/Settings/DockTab.qml:340, Modules/Settings/LauncherTab.qml:132", "comment": "" }, - { - "term": "Select Application", - "context": "Select Application", - "reference": "Modals/AppPickerModal.qml:11", - "comment": "" - }, - { - "term": "Select at least one provider", - "context": "Select at least one provider", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:178", - "comment": "" - }, - { - "term": "Select Bar", - "context": "Select Bar", - "reference": "Modules/Settings/WidgetsTab.qml:783", - "comment": "" - }, - { - "term": "Select Custom Theme", - "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2876", - "comment": "" - }, { "term": "Select device", "context": "audio status", @@ -10823,24 +10181,12 @@ "reference": "Modules/Settings/PrinterTab.qml:442", "comment": "" }, - { - "term": "Select Dock Launcher Logo", - "context": "Select Dock Launcher Logo", - "reference": "Modules/Settings/DockTab.qml:13", - "comment": "" - }, { "term": "Select driver...", "context": "Select driver...", "reference": "Modules/Settings/PrinterTab.qml:716", "comment": "" }, - { - "term": "Select File to Send", - "context": "KDE Connect file browser title", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:101", - "comment": "" - }, { "term": "Select font weight for UI text", "context": "Select font weight for UI text", @@ -10853,12 +10199,6 @@ "reference": "Modules/Settings/GreeterTab.qml:90", "comment": "" }, - { - "term": "Select Launcher Logo", - "context": "Select Launcher Logo", - "reference": "Modules/Settings/LauncherTab.qml:13", - "comment": "" - }, { "term": "Select monitor to configure wallpaper", "context": "Select monitor to configure wallpaper", @@ -10877,12 +10217,6 @@ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:347", "comment": "" }, - { - "term": "Select Profile Image", - "context": "profile image file browser title", - "reference": "Modals/Settings/SettingsModal.qml:127", - "comment": "" - }, { "term": "Select system sound theme", "context": "Select system sound theme", @@ -10901,30 +10235,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:496", "comment": "" }, - { - "term": "Select Video or Folder", - "context": "Select Video or Folder", - "reference": "Modules/Settings/LockScreenTab.qml:59", - "comment": "" - }, - { - "term": "Select Wallpaper", - "context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", - "reference": "Modals/Settings/SettingsModal.qml:151, Modules/Settings/WallpaperTab.qml:1313, Modules/Settings/WallpaperTab.qml:1335, Modules/Settings/WallpaperTab.qml:1355", - "comment": "" - }, - { - "term": "Select Wallpaper Directory", - "context": "wallpaper directory file browser title", - "reference": "Modules/DankDash/WallpaperTab.qml:320", - "comment": "" - }, - { - "term": "Select which keybind providers to include", - "context": "Select which keybind providers to include", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:151", - "comment": "" - }, { "term": "Select which transitions to include in randomization", "context": "Select which transitions to include in randomization", @@ -10943,36 +10253,6 @@ "reference": "Services/PortalService.qml:152", "comment": "" }, - { - "term": "Send", - "context": "KDE Connect SMS send button", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:80", - "comment": "" - }, - { - "term": "Send Clipboard", - "context": "KDE Connect clipboard tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:133, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:295", - "comment": "" - }, - { - "term": "Send File", - "context": "KDE Connect send file button", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:91", - "comment": "" - }, - { - "term": "Send SMS", - "context": "KDE Connect SMS dialog title", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:28", - "comment": "" - }, - { - "term": "Sending", - "context": "Phone Connect file send", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:365, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:424", - "comment": "" - }, { "term": "Separator", "context": "Separator", @@ -10988,7 +10268,7 @@ { "term": "Session Filter", "context": "Session Filter", - "reference": "Modules/Settings/MuxTab.qml:113", + "reference": "Modules/Settings/MuxTab.qml:88", "comment": "" }, { @@ -11036,13 +10316,13 @@ { "term": "Set notification rules", "context": "Set notification rules", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1070, Modules/Notifications/Center/NotificationCard.qml:990", + "reference": "Modules/Notifications/Center/NotificationCard.qml:990, Modules/Notifications/Popup/NotificationPopup.qml:1070", "comment": "" }, { "term": "Settings", "context": "settings window title", - "reference": "Services/PopoutService.qml:405, Services/PopoutService.qml:422, Services/AppSearchService.qml:168, Services/AppSearchService.qml:201, Services/AppSearchService.qml:640, Modals/Settings/SettingsModal.qml:82, Modals/Settings/SettingsModal.qml:222, Modals/Settings/SettingsSidebar.qml:114, Modules/DankDash/DankDashPopout.qml:291", + "reference": "Services/AppSearchService.qml:168, Services/AppSearchService.qml:212, Services/AppSearchService.qml:654, Services/PopoutService.qml:405, Services/PopoutService.qml:422, Modules/DankDash/DankDashPopout.qml:292, Modals/Settings/SettingsModal.qml:82, Modals/Settings/SettingsModal.qml:222, Modals/Settings/SettingsSidebar.qml:114", "comment": "" }, { @@ -11054,13 +10334,7 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/KeybindsTab.qml:370, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83", - "comment": "" - }, - { - "term": "Shadow", - "context": "bar shadow settings card", - "reference": "Modules/Settings/DankBarTab.qml:1107", + "reference": "Modules/Settings/KeybindsTab.qml:370, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83", "comment": "" }, { @@ -11069,24 +10343,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:130, Modules/Settings/ThemeColorsTab.qml:1662", "comment": "" }, - { - "term": "Shadow elevation on bars and panels", - "context": "Shadow elevation on bars and panels", - "reference": "Modules/Settings/ThemeColorsTab.qml:1795", - "comment": "" - }, - { - "term": "Shadow elevation on modals and dialogs", - "context": "Shadow elevation on modals and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1773", - "comment": "" - }, - { - "term": "Shadow elevation on popouts, OSDs, and dropdowns", - "context": "Shadow elevation on popouts, OSDs, and dropdowns", - "reference": "Modules/Settings/ThemeColorsTab.qml:1784", - "comment": "" - }, { "term": "Shadow Intensity", "context": "Shadow Intensity", @@ -11105,42 +10361,36 @@ "reference": "Modules/Settings/DankBarTab.qml:1052", "comment": "" }, + { + "term": "Shadow elevation on bars and panels", + "context": "Shadow elevation on bars and panels", + "reference": "Modules/Settings/ThemeColorsTab.qml:1795", + "comment": "" + }, + { + "term": "Shadow elevation on modals and dialogs", + "context": "Shadow elevation on modals and dialogs", + "reference": "Modules/Settings/ThemeColorsTab.qml:1773", + "comment": "" + }, + { + "term": "Shadow elevation on popouts, OSDs, and dropdowns", + "context": "Shadow elevation on popouts, OSDs, and dropdowns", + "reference": "Modules/Settings/ThemeColorsTab.qml:1784", + "comment": "" + }, { "term": "Shadows", "context": "Shadows", "reference": "Modules/Settings/ThemeColorsTab.qml:1622", "comment": "" }, - { - "term": "Share", - "context": "KDE Connect share dialog title | KDE Connect share tooltip", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:34, dms-plugins/DankKDEConnect/components/DeviceCard.qml:142, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:309", - "comment": "" - }, { "term": "Share Gamma Control Settings", "context": "Share Gamma Control Settings", "reference": "Modules/Settings/ThemeColorsTab.qml:1050", "comment": "" }, - { - "term": "Share Text", - "context": "KDE Connect share button", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:81", - "comment": "" - }, - { - "term": "Share URL", - "context": "KDE Connect share URL button", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:81", - "comment": "" - }, - { - "term": "Shared", - "context": "Phone Connect share success", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:344, dms-plugins/DankKDEConnect/DankKDEConnect.qml:352, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:410", - "comment": "" - }, { "term": "Shell", "context": "Shell", @@ -11153,12 +10403,6 @@ "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:12", "comment": "" }, - { - "term": "Shift+Enter to paste", - "context": "Shift+Enter to paste", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:119, dms-plugins/DankStickerSearch/DankStickerSearch.qml:176", - "comment": "" - }, { "term": "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close", "context": "Keyboard hints when enter-to-paste is enabled", @@ -11174,19 +10418,25 @@ { "term": "Short", "context": "Short", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337", + "reference": "Modules/Settings/NotificationsTab.qml:337, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399", + "comment": "" + }, + { + "term": "Shortcut (%1)", + "context": "Shortcut (%1)", + "reference": "Modules/Settings/KeybindsTab.qml:550", "comment": "" }, { "term": "Shortcuts", "context": "Shortcuts", - "reference": "Modules/Settings/KeybindsTab.qml:545", + "reference": "Modules/Settings/KeybindsTab.qml:547", "comment": "" }, { "term": "Shortcuts (%1)", "context": "Shortcuts (%1)", - "reference": "Modules/Settings/KeybindsTab.qml:545", + "reference": "Modules/Settings/KeybindsTab.qml:551", "comment": "" }, { @@ -11201,34 +10451,16 @@ "reference": "Modules/Settings/PluginBrowser.qml:273", "comment": "" }, - { - "term": "Show all 9 tags instead of only occupied tags (DWL only)", - "context": "Show all 9 tags instead of only occupied tags (DWL only)", - "reference": "Modules/Settings/WorkspacesTab.qml:182", - "comment": "" - }, { "term": "Show All Tags", "context": "Show All Tags", "reference": "Modules/Settings/WorkspacesTab.qml:181", "comment": "" }, - { - "term": "Show an outline ring around the focused workspace indicator", - "context": "Show an outline ring around the focused workspace indicator", - "reference": "Modules/Settings/WorkspacesTab.qml:355", - "comment": "" - }, { "term": "Show Badge", "context": "Show Badge", - "reference": "Modules/Settings/WidgetsTabSection.qml:2120", - "comment": "" - }, - { - "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/WidgetsTabSection.qml:2465", "comment": "" }, { @@ -11249,22 +10481,10 @@ "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:194", "comment": "" }, - { - "term": "Show darkened overlay behind modal dialogs", - "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:2123", - "comment": "" - }, { "term": "Show Date", "context": "Show Date", - "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:90, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:33", - "comment": "" - }, - { - "term": "Show device", - "context": "Show device", - "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:33, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:90", "comment": "" }, { @@ -11279,36 +10499,12 @@ "reference": "Modules/Settings/DockTab.qml:42", "comment": "" }, - { - "term": "Show dock when floating windows don't overlap its area", - "context": "Show dock when floating windows don't overlap its area", - "reference": "Modules/Settings/DockTab.qml:67", - "comment": "" - }, - { - "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:280", - "comment": "" - }, - { - "term": "Show Feels Like Temperature", - "context": "Show Feels Like Temperature", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:84", - "comment": "" - }, { "term": "Show Footer", "context": "launcher footer visibility", "reference": "Modules/Settings/LauncherTab.qml:413", "comment": "" }, - { - "term": "Show Forecast", - "context": "Show Forecast", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:120", - "comment": "" - }, { "term": "Show GPU Temperature", "context": "Show GPU Temperature", @@ -11333,48 +10529,18 @@ "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:60", "comment": "" }, - { - "term": "Show Hourly Forecast", - "context": "Show Hourly Forecast", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:135", - "comment": "" - }, - { - "term": "Show Humidity", - "context": "Show Humidity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90", - "comment": "" - }, - { - "term": "Show in GB", - "context": "Show in GB", - "reference": "Modules/Settings/WidgetsTabSection.qml:899", - "comment": "" - }, { "term": "Show Launcher Button", "context": "Show Launcher Button", "reference": "Modules/Settings/DockTab.qml:232", "comment": "" }, - { - "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", - "context": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", - "reference": "Modules/Settings/LauncherTab.qml:509", - "comment": "" - }, { "term": "Show Line Numbers", "context": "Show Line Numbers", "reference": "Modules/Notepad/NotepadSettings.qml:142", "comment": "" }, - { - "term": "Show Location", - "context": "Show Location", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:72", - "comment": "" - }, { "term": "Show Lock", "context": "Show Lock", @@ -11417,12 +10583,6 @@ "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:222", "comment": "" }, - { - "term": "Show mode tabs and keyboard hints at the bottom.", - "context": "launcher footer description", - "reference": "Modules/Settings/LauncherTab.qml:414", - "comment": "" - }, { "term": "Show Network", "context": "Show Network", @@ -11435,6 +10595,180 @@ "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:241", "comment": "" }, + { + "term": "Show Occupied Workspaces Only", + "context": "Show Occupied Workspaces Only", + "reference": "Modules/Settings/WorkspacesTab.qml:151", + "comment": "" + }, + { + "term": "Show Overflow Badge Count", + "context": "Show Overflow Badge Count", + "reference": "Modules/Settings/DockTab.qml:216", + "comment": "" + }, + { + "term": "Show Password Field", + "context": "Enable password field display on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:129", + "comment": "" + }, + { + "term": "Show Power Actions", + "context": "Enable power action icon on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:89", + "comment": "" + }, + { + "term": "Show Power Off", + "context": "Show Power Off", + "reference": "Modules/Settings/PowerSleepTab.qml:418", + "comment": "" + }, + { + "term": "Show Profile Image", + "context": "Enable profile image display on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:121", + "comment": "" + }, + { + "term": "Show Reboot", + "context": "Show Reboot", + "reference": "Modules/Settings/PowerSleepTab.qml:410", + "comment": "" + }, + { + "term": "Show Restart DMS", + "context": "Show Restart DMS", + "reference": "Modules/Settings/PowerSleepTab.qml:430", + "comment": "" + }, + { + "term": "Show Saved Items", + "context": "Show Saved Items", + "reference": "Modules/DankBar/Widgets/ClipboardButton.qml:284", + "comment": "" + }, + { + "term": "Show Seconds", + "context": "Show Seconds", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27, Modules/Settings/TimeWeatherTab.qml:63, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82", + "comment": "" + }, + { + "term": "Show Suspend", + "context": "Show Suspend", + "reference": "Modules/Settings/PowerSleepTab.qml:426", + "comment": "" + }, + { + "term": "Show Swap", + "context": "Show Swap", + "reference": "Modules/Settings/WidgetsTabSection.qml:847", + "comment": "" + }, + { + "term": "Show System Date", + "context": "Enable system date display on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:113", + "comment": "" + }, + { + "term": "Show System Icons", + "context": "Enable system status icons on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:97", + "comment": "" + }, + { + "term": "Show System Time", + "context": "Enable system time display on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:105", + "comment": "" + }, + { + "term": "Show Top Processes", + "context": "Show Top Processes", + "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:332", + "comment": "" + }, + { + "term": "Show Week Number", + "context": "Show Week Number", + "reference": "Modules/Settings/TimeWeatherTab.qml:92", + "comment": "" + }, + { + "term": "Show Welcome", + "context": "Show Welcome", + "reference": "Modules/Settings/AboutTab.qml:806", + "comment": "" + }, + { + "term": "Show Workspace Apps", + "context": "Show Workspace Apps", + "reference": "Modules/Settings/WorkspacesTab.qml:59", + "comment": "" + }, + { + "term": "Show all 9 tags instead of only occupied tags (DWL only)", + "context": "Show all 9 tags instead of only occupied tags (DWL only)", + "reference": "Modules/Settings/WorkspacesTab.qml:182", + "comment": "" + }, + { + "term": "Show an outline ring around the focused workspace indicator", + "context": "Show an outline ring around the focused workspace indicator", + "reference": "Modules/Settings/WorkspacesTab.qml:355", + "comment": "" + }, + { + "term": "Show cava audio visualizer in media widget", + "context": "Show cava audio visualizer in media widget", + "reference": "Modules/Settings/MediaPlayerTab.qml:44", + "comment": "" + }, + { + "term": "Show darkened overlay behind modal dialogs", + "context": "Show darkened overlay behind modal dialogs", + "reference": "Modules/Settings/ThemeColorsTab.qml:2123", + "comment": "" + }, + { + "term": "Show device", + "context": "Show device", + "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", + "comment": "" + }, + { + "term": "Show dock when floating windows don't overlap its area", + "context": "Show dock when floating windows don't overlap its area", + "reference": "Modules/Settings/DockTab.qml:67", + "comment": "" + }, + { + "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:280", + "comment": "" + }, + { + "term": "Show in GB", + "context": "Show in GB", + "reference": "Modules/Settings/WidgetsTabSection.qml:900", + "comment": "" + }, + { + "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", + "context": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", + "reference": "Modules/Settings/LauncherTab.qml:509", + "comment": "" + }, + { + "term": "Show mode tabs and keyboard hints at the bottom.", + "context": "launcher footer description", + "reference": "Modules/Settings/LauncherTab.qml:414", + "comment": "" + }, { "term": "Show notification popups only on the currently focused monitor", "context": "Show notification popups only on the currently focused monitor", @@ -11447,22 +10781,10 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:423", "comment": "" }, - { - "term": "Show Occupied Workspaces Only", - "context": "Show Occupied Workspaces Only", - "reference": "Modules/Settings/WorkspacesTab.qml:151", - "comment": "" - }, - { - "term": "Show on all connected displays", - "context": "Show on all connected displays", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:402", - "comment": "" - }, { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:462", + "reference": "Modules/Settings/DankBarTab.qml:462, Modules/Settings/DisplayWidgetsTab.qml:431", "comment": "" }, { @@ -11474,7 +10796,7 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DockTab.qml:81, Modules/Settings/DankBarTab.qml:696", + "reference": "Modules/Settings/DankBarTab.qml:696, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DockTab.qml:81", "comment": "" }, { @@ -11483,6 +10805,12 @@ "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:329", "comment": "" }, + { + "term": "Show on all connected displays", + "context": "Show on all connected displays", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:402", + "comment": "" + }, { "term": "Show on screens:", "context": "Show on screens:", @@ -11543,148 +10871,22 @@ "reference": "Modules/Settings/OSDTab.qml:94", "comment": "" }, - { - "term": "Show Overflow Badge Count", - "context": "Show Overflow Badge Count", - "reference": "Modules/Settings/DockTab.qml:216", - "comment": "" - }, - { - "term": "Show Password Field", - "context": "Enable password field display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:129", - "comment": "" - }, - { - "term": "Show Power Actions", - "context": "Enable power action icon on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:89", - "comment": "" - }, - { - "term": "Show Power Off", - "context": "Show Power Off", - "reference": "Modules/Settings/PowerSleepTab.qml:418", - "comment": "" - }, - { - "term": "Show Precipitation Probability", - "context": "Show Precipitation Probability", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:108", - "comment": "" - }, - { - "term": "Show Pressure", - "context": "Show Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:102", - "comment": "" - }, - { - "term": "Show Profile Image", - "context": "Enable profile image display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:121", - "comment": "" - }, - { - "term": "Show Reboot", - "context": "Show Reboot", - "reference": "Modules/Settings/PowerSleepTab.qml:410", - "comment": "" - }, - { - "term": "Show Restart DMS", - "context": "Show Restart DMS", - "reference": "Modules/Settings/PowerSleepTab.qml:430", - "comment": "" - }, - { - "term": "Show Saved Items", - "context": "Show Saved Items", - "reference": "Modules/DankBar/Widgets/ClipboardButton.qml:284", - "comment": "" - }, - { - "term": "Show Seconds", - "context": "Show Seconds", - "reference": "Modules/Settings/TimeWeatherTab.qml:63, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27", - "comment": "" - }, { "term": "Show seconds", "context": "Show seconds", "reference": "Modules/Settings/GreeterTab.qml:610", "comment": "" }, - { - "term": "Show Sunrise/Sunset", - "context": "Show Sunrise/Sunset", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:114", - "comment": "" - }, - { - "term": "Show Suspend", - "context": "Show Suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:426", - "comment": "" - }, - { - "term": "Show Swap", - "context": "Show Swap", - "reference": "Modules/Settings/WidgetsTabSection.qml:846", - "comment": "" - }, - { - "term": "Show System Date", - "context": "Enable system date display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:113", - "comment": "" - }, - { - "term": "Show System Icons", - "context": "Enable system status icons on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:97", - "comment": "" - }, - { - "term": "Show System Time", - "context": "Enable system time display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:105", - "comment": "" - }, - { - "term": "Show Top Processes", - "context": "Show Top Processes", - "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:332", - "comment": "" - }, - { - "term": "Show Weather Condition", - "context": "Show Weather Condition", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:78", - "comment": "" - }, { "term": "Show weather information in top bar and control center", "context": "Show weather information in top bar and control center", - "reference": "Modules/Settings/TimeWeatherTab.qml:391", + "reference": "Modules/Settings/TimeWeatherTab.qml:401", "comment": "" }, { - "term": "Show Welcome", - "context": "Show Welcome", - "reference": "Modules/Settings/AboutTab.qml:808", - "comment": "" - }, - { - "term": "Show Wind Speed", - "context": "Show Wind Speed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:96", - "comment": "" - }, - { - "term": "Show Workspace Apps", - "context": "Show Workspace Apps", - "reference": "Modules/Settings/WorkspacesTab.qml:59", + "term": "Show week number in the calendar", + "context": "Show week number in the calendar", + "reference": "Modules/Settings/TimeWeatherTab.qml:93", "comment": "" }, { @@ -11750,7 +10952,7 @@ { "term": "Size", "context": "launcher size option", - "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:664, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:676, Modules/Settings/DankBarTab.qml:851, Modules/Settings/WindowRulesTab.qml:565, Modules/Settings/LauncherTab.qml:369", + "reference": "Modals/WindowRuleModal.qml:989, Modules/Settings/DankBarTab.qml:851, Modules/Settings/LauncherTab.qml:369, Modules/Settings/WindowRulesTab.qml:565, Modals/DankLauncherV2/LauncherContent.qml:694, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:706", "comment": "" }, { @@ -11792,7 +10994,7 @@ { "term": "Small", "context": "Small", - "reference": "Modules/Settings/WidgetsTabSection.qml:1593", + "reference": "Modules/Settings/WidgetsTabSection.qml:1938", "comment": "" }, { @@ -11807,12 +11009,6 @@ "reference": "Modals/WifiPasswordModal.qml:248", "comment": "" }, - { - "term": "SMS", - "context": "KDE Connect SMS tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:161, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:338", - "comment": "" - }, { "term": "Snap", "context": "Snap", @@ -11861,12 +11057,6 @@ "reference": "Modals/Settings/SettingsSidebar.qml:100", "comment": "" }, - { - "term": "source", - "context": "source code link", - "reference": "Modules/Settings/PluginBrowser.qml:540", - "comment": "" - }, { "term": "Space between windows", "context": "Space between windows", @@ -11894,7 +11084,7 @@ { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:531, Modules/Settings/DankBarTab.qml:803", + "reference": "Modules/Settings/DankBarTab.qml:803, Modules/Settings/DockTab.qml:531", "comment": "" }, { @@ -11927,28 +11117,10 @@ "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:35, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:45", "comment": "" }, - { - "term": "Standard", - "context": "Standard", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:19", - "comment": "" - }, { "term": "Start", "context": "Start", - "reference": "Modules/Settings/ThemeColorsTab.qml:1136, Modules/Settings/GammaControlTab.qml:252", - "comment": "" - }, - { - "term": "Start KDE Connect or Valent", - "context": "Phone Connect start daemon hint", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:104", - "comment": "" - }, - { - "term": "Start KDE Connect or Valent to use this plugin", - "context": "Phone Connect daemon hint", - "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:39", + "reference": "Modules/Settings/GammaControlTab.qml:252, Modules/Settings/ThemeColorsTab.qml:1136", "comment": "" }, { @@ -11960,13 +11132,13 @@ { "term": "State", "context": "State", - "reference": "Modules/Settings/PrinterTab.qml:1149, Modules/Settings/NetworkTab.qml:601", + "reference": "Modules/Settings/NetworkTab.qml:601, Modules/Settings/PrinterTab.qml:1149", "comment": "" }, { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:55, Modules/Settings/PrinterTab.qml:186, Modules/Settings/NetworkTab.qml:182, Modules/Settings/AboutTab.qml:700", + "reference": "Widgets/DankIconPicker.qml:55, Modules/Settings/AboutTab.qml:698, Modules/Settings/NetworkTab.qml:182, Modules/Settings/PrinterTab.qml:186", "comment": "" }, { @@ -12008,13 +11180,13 @@ { "term": "Sunrise", "context": "Sunrise", - "reference": "Services/WeatherService.qml:245, Modules/Settings/GammaControlTab.qml:574, Modules/DankDash/WeatherTab.qml:104", + "reference": "Services/WeatherService.qml:245, Modules/DankDash/WeatherTab.qml:104, Modules/Settings/GammaControlTab.qml:574", "comment": "" }, { "term": "Sunset", "context": "Sunset", - "reference": "Services/WeatherService.qml:270, Modules/Settings/GammaControlTab.qml:610, Modules/DankDash/WeatherTab.qml:109", + "reference": "Services/WeatherService.qml:270, Modules/DankDash/WeatherTab.qml:109, Modules/Settings/GammaControlTab.qml:610", "comment": "" }, { @@ -12026,7 +11198,7 @@ { "term": "Surface", "context": "color option | shadow color option", - "reference": "Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/LauncherTab.qml:181", + "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/LauncherTab.qml:181, Modules/Settings/WorkspacesTab.qml:369", "comment": "" }, { @@ -12038,7 +11210,7 @@ { "term": "Suspend", "context": "Suspend", - "reference": "Modals/PowerMenuModal.qml:204, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:122", + "reference": "Modals/PowerMenuModal.qml:204, Modules/Lock/LockPowerMenu.qml:122, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378", "comment": "" }, { @@ -12059,24 +11231,48 @@ "reference": "Modules/Settings/PowerSleepTab.qml:311", "comment": "" }, + { + "term": "Sway Website", + "context": "Sway Website", + "reference": "Modules/Settings/AboutTab.qml:73", + "comment": "" + }, + { + "term": "Switch User", + "context": "Switch User", + "reference": "Modules/Greetd/GreeterContent.qml:1206", + "comment": "" + }, { "term": "Switch to power profile", "context": "Switch to power profile", "reference": "Modules/Settings/PowerSleepTab.qml:159", "comment": "" }, - { - "term": "Switch User", - "context": "Switch User", - "reference": "Modules/Greetd/GreeterContent.qml:1174", - "comment": "" - }, { "term": "Sync", "context": "Sync", "reference": "Modules/Settings/GreeterTab.qml:512", "comment": "" }, + { + "term": "Sync Mode with Portal", + "context": "Sync Mode with Portal", + "reference": "Modules/Settings/ThemeColorsTab.qml:2140", + "comment": "" + }, + { + "term": "Sync Popouts & Modals", + "context": "Sync Popouts & Modals", + "reference": "Modules/Settings/TypographyMotionTab.qml:284", + "comment": "" + }, + { + "term": "Sync Position Across Screens", + "context": "Sync Position Across Screens", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:358", + "comment": "" + }, { "term": "Sync completed successfully.", "context": "Sync completed successfully.", @@ -12095,52 +11291,34 @@ "reference": "Modules/Settings/GreeterTab.qml:308", "comment": "" }, - { - "term": "Sync Mode with Portal", - "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:2140", - "comment": "" - }, { "term": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "context": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "reference": "Modules/Settings/GreeterTab.qml:337", "comment": "" }, - { - "term": "Sync Popouts & Modals", - "context": "Sync Popouts & Modals", - "reference": "Modules/Settings/TypographyMotionTab.qml:284", - "comment": "" - }, - { - "term": "Sync Position Across Screens", - "context": "Sync Position Across Screens", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:358", - "comment": "" - }, { "term": "System", "context": "System", - "reference": "Services/AppSearchService.qml:641, Widgets/DankIconPicker.qml:43, Modals/ProcessListModal.qml:319, Modals/ProcessListModal.qml:377, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/ProcessListPopout.qml:155", + "reference": "Modals/ProcessListModal.qml:319, Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:655, Widgets/DankIconPicker.qml:43, Modules/ProcessList/ProcessListPopout.qml:155, Modals/Settings/SettingsSidebar.qml:239", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:2774", + "reference": "Modules/Settings/ThemeColorsTab.qml:2778", "comment": "" }, { "term": "System Check", "context": "greeter doctor page title", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:157, Modals/Greeter/GreeterDoctorPage.qml:221, Modules/Settings/AboutTab.qml:816", + "reference": "Modules/Settings/AboutTab.qml:814, Modals/Greeter/GreeterDoctorPage.qml:157, Modals/Greeter/GreeterDoctorPage.qml:221", "comment": "" }, { "term": "System Default", "context": "date format option", - "reference": "Modules/Settings/LocaleTab.qml:9, Modules/Settings/GreeterTab.qml:394, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:124, Modules/Settings/TimeWeatherTab.qml:164, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:211, Modules/Settings/TimeWeatherTab.qml:251", + "reference": "Modules/Settings/GreeterTab.qml:394, Modules/Settings/LocaleTab.qml:9, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:134, Modules/Settings/TimeWeatherTab.qml:174, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:221, Modules/Settings/TimeWeatherTab.qml:261", "comment": "" }, { @@ -12152,7 +11330,7 @@ { "term": "System Monitor", "context": "System monitor widget name | sysmon window title", - "reference": "Services/DesktopWidgetRegistry.qml:54, Services/AppSearchService.qml:190, Modals/ProcessListModal.qml:51, Modals/ProcessListModal.qml:85, Modals/ProcessListModal.qml:261", + "reference": "Modals/ProcessListModal.qml:51, Modals/ProcessListModal.qml:85, Modals/ProcessListModal.qml:261, Services/AppSearchService.qml:190, Services/DesktopWidgetRegistry.qml:54", "comment": "" }, { @@ -12161,18 +11339,42 @@ "reference": "Modals/ProcessListModal.qml:214", "comment": "" }, - { - "term": "System notification area icons", - "context": "System notification area icons", - "reference": "Modules/Settings/WidgetsTab.qml:149", - "comment": "" - }, { "term": "System Sounds", "context": "System Sounds", "reference": "Modules/Settings/SoundsTab.qml:27", "comment": "" }, + { + "term": "System Tray", + "context": "System Tray", + "reference": "Modules/Settings/WidgetsTab.qml:148", + "comment": "" + }, + { + "term": "System Update", + "context": "System Update", + "reference": "Modules/Settings/WidgetsTab.qml:246", + "comment": "" + }, + { + "term": "System Updater", + "context": "System Updater", + "reference": "Modules/Settings/SystemUpdaterTab.qml:25, Modals/Settings/SettingsSidebar.qml:165", + "comment": "" + }, + { + "term": "System Updates", + "context": "System Updates", + "reference": "Modules/SystemUpdatePopout.qml:53", + "comment": "" + }, + { + "term": "System notification area icons", + "context": "System notification area icons", + "reference": "Modules/Settings/WidgetsTab.qml:149", + "comment": "" + }, { "term": "System sounds are not available. Install %1 for sound support.", "context": "System sounds are not available. Install %1 for sound support.", @@ -12191,36 +11393,12 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:56", "comment": "" }, - { - "term": "System Tray", - "context": "System Tray", - "reference": "Modules/Settings/WidgetsTab.qml:148", - "comment": "" - }, - { - "term": "System Update", - "context": "System Update", - "reference": "Modules/Settings/WidgetsTab.qml:246", - "comment": "" - }, { "term": "System update custom command", "context": "System update custom command", "reference": "Modules/Settings/SystemUpdaterTab.qml:64", "comment": "" }, - { - "term": "System Updater", - "context": "System Updater", - "reference": "Modals/Settings/SettingsSidebar.qml:165, Modules/Settings/SystemUpdaterTab.qml:25", - "comment": "" - }, - { - "term": "System Updates", - "context": "System Updates", - "reference": "Modules/SystemUpdatePopout.qml:53", - "comment": "" - }, { "term": "Tab", "context": "Tab", @@ -12236,7 +11414,7 @@ { "term": "Terminal", "context": "Terminal", - "reference": "Modules/Settings/MuxTab.qml:63", + "reference": "Modules/Settings/MuxTab.qml:49", "comment": "" }, { @@ -12245,12 +11423,6 @@ "reference": "Modules/Settings/SystemUpdaterTab.qml:108", "comment": "" }, - { - "term": "Terminal Emulator", - "context": "Terminal Emulator", - "reference": "Modules/Settings/MuxTab.qml:101", - "comment": "" - }, { "term": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "context": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", @@ -12266,7 +11438,7 @@ { "term": "Terminal multiplexer backend to use", "context": "Terminal multiplexer backend to use", - "reference": "Modules/Settings/MuxTab.qml:53", + "reference": "Modules/Settings/MuxTab.qml:39", "comment": "" }, { @@ -12275,12 +11447,6 @@ "reference": "Modules/Settings/GreeterTab.qml:356", "comment": "" }, - { - "term": "Terminal used to open multiplexer sessions", - "context": "Terminal used to open multiplexer sessions", - "reference": "Modules/Settings/MuxTab.qml:102", - "comment": "" - }, { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", @@ -12314,7 +11480,7 @@ { "term": "Text", "context": "text color", - "reference": "Modals/Clipboard/ClipboardEntry.qml:120, Modules/Settings/LauncherTab.qml:477", + "reference": "Modules/Settings/LauncherTab.qml:477, Modals/Clipboard/ClipboardEntry.qml:120", "comment": "" }, { @@ -12329,22 +11495,22 @@ "reference": "Modals/ProcessListModal.qml:222", "comment": "" }, + { + "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", + "context": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", + "reference": "Modules/Settings/PluginsTab.qml:124", + "comment": "" + }, { "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:2763", + "reference": "Modules/Settings/ThemeColorsTab.qml:2767", "comment": "" }, { "term": "The custom command used when attaching to sessions (receives the session name as the first argument)", "context": "The custom command used when attaching to sessions (receives the session name as the first argument)", - "reference": "Modules/Settings/MuxTab.qml:83", - "comment": "" - }, - { - "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", - "context": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", - "reference": "Modules/Settings/PluginsTab.qml:124", + "reference": "Modules/Settings/MuxTab.qml:69", "comment": "" }, { @@ -12356,7 +11522,7 @@ { "term": "Theme & Colors", "context": "greeter settings link", - "reference": "Modals/Settings/SettingsSidebar.qml:82, Modals/Greeter/GreeterCompletePage.qml:389", + "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:82", "comment": "" }, { @@ -12380,7 +11546,7 @@ { "term": "Thickness", "context": "border thickness", - "reference": "Modules/Settings/WorkspacesTab.qml:403, Modules/Settings/DankBarTab.qml:1451, Modules/Settings/DankBarTab.qml:1541, Modules/Settings/LauncherTab.qml:445", + "reference": "Modules/Settings/DankBarTab.qml:1451, Modules/Settings/DankBarTab.qml:1541, Modules/Settings/LauncherTab.qml:445, Modules/Settings/WorkspacesTab.qml:403", "comment": "" }, { @@ -12395,12 +11561,6 @@ "reference": "Modules/Settings/PluginBrowser.qml:793", "comment": "" }, - { - "term": "this app", - "context": "this app", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Center/NotificationCard.qml:1016, Modules/Notifications/Center/NotificationCard.qml:1016", - "comment": "" - }, { "term": "This bind is overridden by config.kdl", "context": "This bind is overridden by config.kdl", @@ -12428,13 +11588,13 @@ { "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/ClipboardContent.qml:37, Modules/DankBar/DankBarContent.qml:600", + "reference": "Modules/DankBar/DankBarContent.qml:600, Modals/Clipboard/ClipboardContent.qml:37", "comment": "" }, { "term": "This will permanently delete all clipboard history.", "context": "This will permanently delete all clipboard history.", - "reference": "Modals/Clipboard/ClipboardContent.qml:37, Modules/DankBar/DankBarContent.qml:600", + "reference": "Modules/DankBar/DankBarContent.qml:600, Modals/Clipboard/ClipboardContent.qml:37", "comment": "" }, { @@ -12494,7 +11654,7 @@ { "term": "Time", "context": "theme auto mode tab | wallpaper cycling mode tab", - "reference": "Modules/Settings/WallpaperTab.qml:960, Modules/Settings/ThemeColorsTab.qml:1068", + "reference": "Modules/Settings/GammaControlTab.qml:184, Modules/Settings/ThemeColorsTab.qml:1068, Modules/Settings/WallpaperTab.qml:960", "comment": "" }, { @@ -12524,13 +11684,13 @@ { "term": "Time remaining: %1", "context": "Time remaining: %1", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:109", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:179, Modules/ControlCenter/Details/BatteryDetail.qml:109", "comment": "" }, { "term": "Time until full: %1", "context": "Time until full: %1", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:109", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:179, Modules/ControlCenter/Details/BatteryDetail.qml:109", "comment": "" }, { @@ -12542,19 +11702,19 @@ { "term": "Timeout for critical priority notifications", "context": "Timeout for critical priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:786", + "reference": "Modules/Settings/NotificationsTab.qml:786, Modules/Notifications/Center/NotificationSettings.qml:202", "comment": "" }, { "term": "Timeout for low priority notifications", "context": "Timeout for low priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:752", + "reference": "Modules/Settings/NotificationsTab.qml:752, Modules/Notifications/Center/NotificationSettings.qml:172", "comment": "" }, { "term": "Timeout for normal priority notifications", "context": "Timeout for normal priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:769", + "reference": "Modules/Settings/NotificationsTab.qml:769, Modules/Notifications/Center/NotificationSettings.qml:187", "comment": "" }, { @@ -12635,16 +11795,22 @@ "reference": "Services/CupsService.qml:789", "comment": "" }, + { + "term": "Too many failed attempts - account may be locked", + "context": "Too many failed attempts - account may be locked", + "reference": "Modules/Greetd/GreeterContent.qml:235", + "comment": "" + }, { "term": "Tools", "context": "Tools", - "reference": "Modules/Settings/AboutTab.qml:795", + "reference": "Modules/Settings/AboutTab.qml:793", "comment": "" }, { "term": "Top", "context": "shadow direction option", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:284, Modules/Settings/DankBarTab.qml:292, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1163", + "reference": "Modules/Settings/DankBarTab.qml:284, Modules/Settings/DankBarTab.qml:292, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1163, Modules/Settings/DockTab.qml:102", "comment": "" }, { @@ -12656,7 +11822,7 @@ { "term": "Top Bar Format", "context": "Top Bar Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:119", + "reference": "Modules/Settings/TimeWeatherTab.qml:129", "comment": "" }, { @@ -12668,7 +11834,7 @@ { "term": "Top Left", "context": "screen position option | shadow direction option", - "reference": "Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1157, Modules/Settings/DankBarTab.qml:1167, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/NotificationsTab.qml:223, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:238, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "reference": "Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1157, Modules/Settings/DankBarTab.qml:1167, Modules/Settings/NotificationsTab.qml:223, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:238, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", "comment": "" }, { @@ -12680,19 +11846,19 @@ { "term": "Top Right", "context": "screen position option | shadow direction option", - "reference": "Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1159, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/ThemeColorsTab.qml:1723, Modules/Settings/NotificationsTab.qml:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "reference": "Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1159, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/NotificationsTab.qml:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/ThemeColorsTab.qml:1723, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", "comment": "" }, { "term": "Top Section", "context": "Top Section", - "reference": "Modules/Settings/WidgetsTab.qml:922", + "reference": "Modules/Settings/WidgetsTab.qml:951", "comment": "" }, { "term": "Total", "context": "Total", - "reference": "Modules/Settings/WidgetsTabSection.qml:984", + "reference": "Modules/Settings/WidgetsTabSection.qml:985", "comment": "" }, { @@ -12704,7 +11870,7 @@ { "term": "Transform", "context": "Transform", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:240, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1224", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1224, Modules/Settings/DisplayConfig/OutputCard.qml:240", "comment": "" }, { @@ -12716,19 +11882,7 @@ { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:567, Modules/Settings/DankBarTab.qml:1000, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", - "comment": "" - }, - { - "term": "Trending GIFs", - "context": "Trending GIFs", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:85", - "comment": "" - }, - { - "term": "Trending Stickers", - "context": "Trending Stickers", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:142", + "reference": "Modules/Settings/DankBarTab.qml:1000, Modules/Settings/DockTab.qml:567, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", "comment": "" }, { @@ -12737,16 +11891,10 @@ "reference": "Modules/Settings/LauncherTab.qml:582", "comment": "" }, - { - "term": "Trigger Prefix", - "context": "Trigger Prefix", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:123", - "comment": "" - }, { "term": "Trigger: %1", "context": "Trigger: %1", - "reference": "Modals/DankLauncherV2/Controller.qml:1167, Modules/Settings/LauncherTab.qml:742", + "reference": "Modules/Settings/LauncherTab.qml:742, Modals/DankLauncherV2/Controller.qml:1170", "comment": "" }, { @@ -12758,7 +11906,7 @@ { "term": "Try a different search", "context": "Try a different search", - "reference": "Modals/MuxModal.qml:579", + "reference": "Modals/MuxModal.qml:569", "comment": "" }, { @@ -12776,7 +11924,7 @@ { "term": "Type", "context": "Type", - "reference": "Widgets/KeybindItem.qml:834, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:566", + "reference": "Widgets/KeybindItem.qml:834, Modules/Settings/NotificationsTab.qml:566, Modules/Settings/RunningAppsTab.qml:154", "comment": "" }, { @@ -12785,12 +11933,6 @@ "reference": "Modals/DankLauncherV2/ResultsList.qml:475", "comment": "" }, - { - "term": "Type this prefix to search keybinds", - "context": "Type this prefix to search keybinds", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:124", - "comment": "" - }, { "term": "Type to search", "context": "Type to search", @@ -12818,13 +11960,13 @@ { "term": "Typography & Motion", "context": "Typography & Motion", - "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:545", + "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:551", "comment": "" }, { "term": "Unavailable", - "context": "Phone Connect unavailable status", - "reference": "Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkTab.qml:452, dms-plugins/DankKDEConnect/DankKDEConnect.qml:31", + "context": "Unavailable", + "reference": "Modules/Settings/NetworkTab.qml:452, Modules/Settings/PrinterTab.qml:202", "comment": "" }, { @@ -12842,19 +11984,7 @@ { "term": "Uninstall", "context": "uninstall action button", - "reference": "Modules/Settings/ThemeBrowser.qml:650, Modules/Settings/GreeterTab.qml:123, Modules/Settings/GreeterTab.qml:174", - "comment": "" - }, - { - "term": "Uninstall complete. Greeter has been removed.", - "context": "Uninstall complete. Greeter has been removed.", - "reference": "Modules/Settings/GreeterTab.qml:383", - "comment": "" - }, - { - "term": "Uninstall failed: %1", - "context": "uninstallation error", - "reference": "Modules/Settings/ThemeColorsTab.qml:740, Modules/Settings/ThemeBrowser.qml:97", + "reference": "Modules/Settings/GreeterTab.qml:123, Modules/Settings/GreeterTab.qml:174, Modules/Settings/ThemeBrowser.qml:650", "comment": "" }, { @@ -12869,6 +11999,18 @@ "reference": "Modules/Settings/PluginListItem.qml:260", "comment": "" }, + { + "term": "Uninstall complete. Greeter has been removed.", + "context": "Uninstall complete. Greeter has been removed.", + "reference": "Modules/Settings/GreeterTab.qml:383", + "comment": "" + }, + { + "term": "Uninstall failed: %1", + "context": "uninstallation error", + "reference": "Modules/Settings/ThemeBrowser.qml:97, Modules/Settings/ThemeColorsTab.qml:740", + "comment": "" + }, { "term": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "context": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", @@ -12878,19 +12020,19 @@ { "term": "Uninstalled: %1", "context": "uninstallation success", - "reference": "Modules/Settings/ThemeColorsTab.qml:743, Modules/Settings/ThemeBrowser.qml:100", + "reference": "Modules/Settings/ThemeBrowser.qml:100, Modules/Settings/ThemeColorsTab.qml:743", "comment": "" }, { "term": "Uninstalling: %1", "context": "uninstallation progress", - "reference": "Modules/Settings/ThemeColorsTab.qml:737, Modules/Settings/ThemeBrowser.qml:94", + "reference": "Modules/Settings/ThemeBrowser.qml:94, Modules/Settings/ThemeColorsTab.qml:737", "comment": "" }, { "term": "Unknown", - "context": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status", - "reference": "Services/BatteryService.qml:148, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Common/Theme.qml:1476, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:431, Modules/Settings/NetworkTab.qml:454, Modules/Settings/NetworkTab.qml:602, Modules/Settings/NetworkTab.qml:747, Modules/Settings/NetworkTab.qml:1172, Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/NotificationsTab.qml:666, Modules/Settings/PluginBrowser.qml:539, Modules/Lock/LockScreenContent.qml:364, Modules/Lock/LockScreenContent.qml:484, Modules/Lock/LockScreenContent.qml:580, Modules/ControlCenter/Components/DragDropGrid.qml:325, Modules/ControlCenter/Components/DragDropGrid.qml:626, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Details/BatteryDetail.qml:183, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201", + "context": "battery status | power profile option | unknown author | widget status", + "reference": "Common/Theme.qml:1476, Services/BatteryService.qml:148, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Modules/Lock/LockScreenContent.qml:364, Modules/Lock/LockScreenContent.qml:484, Modules/Lock/LockScreenContent.qml:580, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:431, Modules/Settings/NetworkTab.qml:454, Modules/Settings/NetworkTab.qml:602, Modules/Settings/NetworkTab.qml:747, Modules/Settings/NetworkTab.qml:1172, Modules/Settings/NotificationsTab.qml:666, Modules/Settings/PluginBrowser.qml:539, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:527, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:325, Modules/ControlCenter/Components/DragDropGrid.qml:626, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Details/BatteryDetail.qml:183", "comment": "" }, { @@ -12902,7 +12044,7 @@ { "term": "Unknown Artist", "context": "Unknown Artist", - "reference": "Modules/OSD/MediaPlaybackOSD.qml:268", + "reference": "Modules/DankDash/MediaPlayerTab.qml:335, Modules/OSD/MediaPlaybackOSD.qml:268, Modules/DankDash/Overview/MediaOverviewCard.qml:102", "comment": "" }, { @@ -12941,6 +12083,12 @@ "reference": "Modules/OSD/MediaPlaybackOSD.qml:257", "comment": "" }, + { + "term": "Unknown Track", + "context": "Unknown Track", + "reference": "Modules/DankDash/MediaPlayerTab.qml:323", + "comment": "" + }, { "term": "Unload on Close", "context": "Unload on Close", @@ -12956,7 +12104,7 @@ { "term": "Unmute popups for %1", "context": "Unmute popups for %1", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Center/NotificationCard.qml:1016", + "reference": "Modules/Notifications/Center/NotificationCard.qml:1016, Modules/Notifications/Popup/NotificationPopup.qml:1096", "comment": "" }, { @@ -12965,28 +12113,10 @@ "reference": "Modules/Settings/WindowRulesTab.qml:471", "comment": "" }, - { - "term": "Unpair", - "context": "KDE Connect unpair tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:171, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:354", - "comment": "" - }, - { - "term": "Unpair failed", - "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:176", - "comment": "" - }, - { - "term": "Unpin", - "context": "Unpin", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165", - "comment": "" - }, { "term": "Unpin from Dock", "context": "Unpin from Dock", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:103, Modules/Dock/DockContextMenu.qml:409, Modules/DankBar/Widgets/AppsDockContextMenu.qml:341", + "reference": "Modules/Dock/DockContextMenu.qml:409, Modules/DankBar/Widgets/AppsDockContextMenu.qml:341, Modals/DankLauncherV2/LauncherContextMenu.qml:103", "comment": "" }, { @@ -12998,13 +12128,13 @@ { "term": "Unsaved changes", "context": "Unsaved changes", - "reference": "Widgets/KeybindItem.qml:1807, Modules/Notepad/NotepadTextEditor.qml:858", + "reference": "Widgets/KeybindItem.qml:1807, Modules/Notepad/NotepadTextEditor.qml:866", "comment": "" }, { "term": "Unsaved note...", "context": "Unsaved note...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:856", + "reference": "Modules/Notepad/NotepadTextEditor.qml:864", "comment": "" }, { @@ -13020,9 +12150,9 @@ "comment": "" }, { - "term": "up", - "context": "up", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:102", + "term": "Up to date", + "context": "Up to date", + "reference": "Modules/SystemUpdatePopout.qml:74", "comment": "" }, { @@ -13034,13 +12164,7 @@ { "term": "Update All", "context": "Update All", - "reference": "Modules/SystemUpdatePopout.qml:258", - "comment": "" - }, - { - "term": "update dms for NM integration.", - "context": "update dms for NM integration.", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:223", + "reference": "Modules/SystemUpdatePopout.qml:262", "comment": "" }, { @@ -13067,18 +12191,54 @@ "reference": "Modules/Settings/WorkspacesTab.qml:313", "comment": "" }, - { - "term": "Usage Tips", - "context": "Usage Tips", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:208", - "comment": "" - }, { "term": "Use 24-hour time format instead of 12-hour AM/PM", "context": "Use 24-hour time format instead of 12-hour AM/PM", "reference": "Modules/Settings/TimeWeatherTab.qml:54", "comment": "" }, + { + "term": "Use Custom Command", + "context": "Use Custom Command", + "reference": "Modules/Settings/SystemUpdaterTab.qml:38, Modules/Settings/MuxTab.qml:56", + "comment": "" + }, + { + "term": "Use Grid Layout", + "context": "Use Grid Layout", + "reference": "Modules/Settings/PowerSleepTab.qml:367", + "comment": "" + }, + { + "term": "Use IP Location", + "context": "Use IP Location", + "reference": "Modules/Settings/GammaControlTab.qml:345, Modules/Settings/ThemeColorsTab.qml:1226", + "comment": "" + }, + { + "term": "Use Imperial Units", + "context": "Use Imperial Units", + "reference": "Modules/Settings/TimeWeatherTab.qml:422", + "comment": "" + }, + { + "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", + "context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", + "reference": "Modules/Settings/TimeWeatherTab.qml:423", + "comment": "" + }, + { + "term": "Use Monospace Font", + "context": "Use Monospace Font", + "reference": "Modules/Notepad/NotepadSettings.qml:130", + "comment": "" + }, + { + "term": "Use System Theme", + "context": "Use System Theme", + "reference": "Modules/Settings/SoundsTab.qml:59", + "comment": "" + }, { "term": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "context": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", @@ -13121,12 +12281,6 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1878", "comment": "" }, - { - "term": "Use Custom Command", - "context": "Use Custom Command", - "reference": "Modules/Settings/SystemUpdaterTab.qml:38", - "comment": "" - }, { "term": "Use custom command for update your system", "context": "Use custom command for update your system", @@ -13163,36 +12317,6 @@ "reference": "Modules/Settings/LockScreenTab.qml:18", "comment": "" }, - { - "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "context": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "reference": "Modules/Settings/LockScreenTab.qml:164", - "comment": "" - }, - { - "term": "Use Grid Layout", - "context": "Use Grid Layout", - "reference": "Modules/Settings/PowerSleepTab.qml:367", - "comment": "" - }, - { - "term": "Use Imperial Units", - "context": "Use Imperial Units", - "reference": "Modules/Settings/TimeWeatherTab.qml:412", - "comment": "" - }, - { - "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", - "context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", - "reference": "Modules/Settings/TimeWeatherTab.qml:413", - "comment": "" - }, - { - "term": "Use IP Location", - "context": "Use IP Location", - "reference": "Modules/Settings/ThemeColorsTab.qml:1226, Modules/Settings/GammaControlTab.qml:345", - "comment": "" - }, { "term": "Use light theme instead of dark theme", "context": "Use light theme instead of dark theme", @@ -13202,13 +12326,7 @@ { "term": "Use meters per second instead of km/h for wind speed", "context": "Use meters per second instead of km/h for wind speed", - "reference": "Modules/Settings/TimeWeatherTab.qml:431", - "comment": "" - }, - { - "term": "Use Monospace Font", - "context": "Use Monospace Font", - "reference": "Modules/Notepad/NotepadSettings.qml:130", + "reference": "Modules/Settings/TimeWeatherTab.qml:441", "comment": "" }, { @@ -13223,30 +12341,12 @@ "reference": "Modules/Settings/SoundsTab.qml:60", "comment": "" }, - { - "term": "Use System Theme", - "context": "Use System Theme", - "reference": "Modules/Settings/SoundsTab.qml:59", - "comment": "" - }, { "term": "Use the same position and size on all displays", "context": "Use the same position and size on all displays", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:359", "comment": "" }, - { - "term": "Use trigger prefix to activate", - "context": "Use trigger prefix to activate", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", - "comment": "" - }, - { - "term": "Used when accent color is set to Custom", - "context": "Used when accent color is set to Custom", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:57", - "comment": "" - }, { "term": "User", "context": "User", @@ -13256,7 +12356,13 @@ { "term": "Username", "context": "Username", - "reference": "Widgets/VpnProfileDelegate.qml:45, Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Modules/Settings/NetworkTab.qml:1910", + "reference": "Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Widgets/VpnProfileDelegate.qml:45, Modules/Settings/NetworkTab.qml:1910", + "comment": "" + }, + { + "term": "Username...", + "context": "Username...", + "reference": "Modules/Greetd/GreeterContent.qml:1023", "comment": "" }, { @@ -13280,13 +12386,79 @@ { "term": "Utilities", "context": "Utilities", - "reference": "Services/AppSearchService.qml:642, Services/AppSearchService.qml:643, Services/AppSearchService.qml:644, Services/AppSearchService.qml:645", + "reference": "Services/AppSearchService.qml:656, Services/AppSearchService.qml:657, Services/AppSearchService.qml:658, Services/AppSearchService.qml:659", "comment": "" }, { - "term": "v%1 by %2", - "context": "v%1 by %2", - "reference": "Modules/Settings/PluginListItem.qml:169", + "term": "VPN", + "context": "VPN", + "reference": "Modules/Settings/NetworkTab.qml:1544, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/WidgetsTabSection.qml:1090, Modules/Settings/WidgetsTabSection.qml:1321, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15, Modules/ControlCenter/Models/WidgetModel.qml:187", + "comment": "" + }, + { + "term": "VPN Connections", + "context": "VPN Connections", + "reference": "Modules/DankBar/Popouts/VpnPopout.qml:64", + "comment": "" + }, + { + "term": "VPN Password", + "context": "VPN Password", + "reference": "Modals/WifiPasswordModal.qml:250", + "comment": "" + }, + { + "term": "VPN configuration updated", + "context": "VPN configuration updated", + "reference": "Services/VPNService.qml:143", + "comment": "" + }, + { + "term": "VPN connections", + "context": "VPN connections", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:188", + "comment": "" + }, + { + "term": "VPN deleted", + "context": "VPN deleted", + "reference": "Services/VPNService.qml:160", + "comment": "" + }, + { + "term": "VPN imported: %1", + "context": "VPN imported: %1", + "reference": "Services/VPNService.qml:91", + "comment": "" + }, + { + "term": "VPN not available", + "context": "VPN not available", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:192", + "comment": "" + }, + { + "term": "VPN status and quick connect", + "context": "VPN status and quick connect", + "reference": "Modules/Settings/WidgetsTab.qml:184", + "comment": "" + }, + { + "term": "VRR", + "context": "VRR", + "reference": "Modules/Settings/WindowRulesTab.qml:544, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226", + "comment": "" + }, + { + "term": "VRR Fullscreen Only", + "context": "VRR Fullscreen Only", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260", + "comment": "" + }, + { + "term": "VRR On-Demand", + "context": "VRR On-Demand", + "reference": "Modals/WindowRuleModal.qml:701, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234", "comment": "" }, { @@ -13295,16 +12467,10 @@ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:265, Modules/Settings/DisplayConfig/OutputCard.qml:278, Modules/Settings/DisplayConfig/OutputCard.qml:301", "comment": "" }, - { - "term": "Verification", - "context": "Phone Connect pairing verification key label", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:70", - "comment": "" - }, { "term": "Version", "context": "Version", - "reference": "Modules/Settings/AboutTab.qml:650", + "reference": "Modules/Settings/AboutTab.qml:648", "comment": "" }, { @@ -13352,7 +12518,7 @@ { "term": "Video Screensaver", "context": "Video Screensaver", - "reference": "Modules/Settings/LockScreenTab.qml:258, Modules/Lock/VideoScreensaver.qml:57, Modules/Lock/VideoScreensaver.qml:102, Modules/Lock/VideoScreensaver.qml:126", + "reference": "Modules/Lock/VideoScreensaver.qml:57, Modules/Lock/VideoScreensaver.qml:102, Modules/Lock/VideoScreensaver.qml:126, Modules/Settings/LockScreenTab.qml:258", "comment": "" }, { @@ -13362,15 +12528,15 @@ "comment": "" }, { - "term": "View Mode", - "context": "View Mode", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:11", + "term": "Visibility", + "context": "Visibility", + "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/DankBarTab.qml:589, Modules/Settings/TimeWeatherTab.qml:1128", "comment": "" }, { - "term": "Visibility", - "context": "Visibility", - "reference": "Modules/Settings/DankBarTab.qml:589, Modules/Settings/TimeWeatherTab.qml:1118, Modules/DankDash/WeatherForecastCard.qml:100", + "term": "Visual Effects", + "context": "Visual Effects", + "reference": "Modules/Settings/WidgetsTabSection.qml:2506", "comment": "" }, { @@ -13385,16 +12551,10 @@ "reference": "Modules/Settings/WallpaperTab.qml:1154", "comment": "" }, - { - "term": "Visual Effects", - "context": "Visual Effects", - "reference": "Modules/Settings/WidgetsTabSection.qml:2161", - "comment": "" - }, { "term": "Volume", "context": "Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:1102, Modules/Settings/OSDTab.qml:93", + "reference": "Modules/Settings/OSDTab.qml:93, Modules/Settings/WidgetsTabSection.qml:1115, Modules/Settings/WidgetsTabSection.qml:1324", "comment": "" }, { @@ -13416,81 +12576,15 @@ "comment": "" }, { - "term": "VPN", - "context": "VPN", - "reference": "Modules/Settings/NetworkTab.qml:1544, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/WidgetsTabSection.qml:1087, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15, Modules/ControlCenter/Models/WidgetModel.qml:187", - "comment": "" - }, - { - "term": "VPN configuration updated", - "context": "VPN configuration updated", - "reference": "Services/VPNService.qml:143", - "comment": "" - }, - { - "term": "VPN Connections", - "context": "VPN Connections", - "reference": "Modules/DankBar/Popouts/VpnPopout.qml:64", - "comment": "" - }, - { - "term": "VPN connections", - "context": "VPN connections", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:188", - "comment": "" - }, - { - "term": "VPN deleted", - "context": "VPN deleted", - "reference": "Services/VPNService.qml:160", - "comment": "" - }, - { - "term": "VPN imported: %1", - "context": "VPN imported: %1", - "reference": "Services/VPNService.qml:91", - "comment": "" - }, - { - "term": "VPN not available", - "context": "VPN not available", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:192", - "comment": "" - }, - { - "term": "VPN Password", - "context": "VPN Password", - "reference": "Modals/WifiPasswordModal.qml:250", - "comment": "" - }, - { - "term": "VPN status and quick connect", - "context": "VPN status and quick connect", - "reference": "Modules/Settings/WidgetsTab.qml:184", - "comment": "" - }, - { - "term": "VRR", - "context": "VRR", - "reference": "Modules/Settings/WindowRulesTab.qml:544, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226", - "comment": "" - }, - { - "term": "VRR Fullscreen Only", - "context": "VRR Fullscreen Only", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260", - "comment": "" - }, - { - "term": "VRR On-Demand", - "context": "VRR On-Demand", - "reference": "Modals/WindowRuleModal.qml:701, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234", + "term": "WPA/WPA2", + "context": "WPA/WPA2", + "reference": "Modules/Settings/NetworkTab.qml:1448", "comment": "" }, { "term": "Wallpaper", "context": "greeter settings link", - "reference": "Widgets/KeybindItem.qml:1097, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1113, Modals/Settings/SettingsSidebar.qml:76, Modals/Greeter/GreeterCompletePage.qml:381, Modules/Settings/WallpaperTab.qml:63, Modules/Settings/DisplayWidgetsTab.qml:43", + "reference": "Widgets/KeybindItem.qml:1097, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1113, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:76", "comment": "" }, { @@ -13499,18 +12593,18 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:457", "comment": "" }, - { - "term": "Wallpaper fill mode", - "context": "Wallpaper fill mode", - "reference": "Modules/Settings/GreeterTab.qml:692", - "comment": "" - }, { "term": "Wallpaper Monitor", "context": "Wallpaper Monitor", "reference": "Modules/Settings/WallpaperTab.qml:819", "comment": "" }, + { + "term": "Wallpaper fill mode", + "context": "Wallpaper fill mode", + "reference": "Modules/Settings/GreeterTab.qml:692", + "comment": "" + }, { "term": "Wallpaper processing failed", "context": "wallpaper processing error", @@ -13526,7 +12620,7 @@ { "term": "Wallpapers", "context": "Wallpapers", - "reference": "Modules/DankDash/DankDashPopout.qml:278", + "reference": "Modules/DankDash/DankDashPopout.qml:279", "comment": "" }, { @@ -13556,7 +12650,7 @@ { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/Settings/TimeWeatherTab.qml:382, Modules/DankDash/DankDashPopout.qml:285", + "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/DankDash/DankDashPopout.qml:286, Modules/Settings/TimeWeatherTab.qml:392", "comment": "" }, { @@ -13601,6 +12695,12 @@ "reference": "Modules/Settings/SystemUpdaterTab.qml:30", "comment": "" }, + { + "term": "Wi-Fi Password", + "context": "Wi-Fi Password", + "reference": "Modals/WifiPasswordModal.qml:253", + "comment": "" + }, { "term": "Wi-Fi and Ethernet connection", "context": "Wi-Fi and Ethernet connection", @@ -13614,9 +12714,45 @@ "comment": "" }, { - "term": "Wi-Fi Password", - "context": "Wi-Fi Password", - "reference": "Modals/WifiPasswordModal.qml:253", + "term": "WiFi", + "context": "WiFi", + "reference": "Modules/Settings/NetworkTab.qml:213, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:810, Modules/ControlCenter/Details/NetworkDetail.qml:136", + "comment": "" + }, + { + "term": "WiFi Device", + "context": "WiFi Device", + "reference": "Modules/Settings/NetworkTab.qml:868, Modules/Settings/NetworkTab.qml:900", + "comment": "" + }, + { + "term": "WiFi QR code for ", + "context": "WiFi QR code for ", + "reference": "Modals/WifiQRCodeModal.qml:125", + "comment": "" + }, + { + "term": "WiFi disabled", + "context": "WiFi disabled", + "reference": "Services/DMSNetworkService.qml:571", + "comment": "" + }, + { + "term": "WiFi enabled", + "context": "WiFi enabled", + "reference": "Services/DMSNetworkService.qml:571, Services/DMSNetworkService.qml:583", + "comment": "" + }, + { + "term": "WiFi is off", + "context": "WiFi is off", + "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:225", + "comment": "" + }, + { + "term": "WiFi off", + "context": "network status", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:308", "comment": "" }, { @@ -13625,12 +12761,6 @@ "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:145, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:149, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:160", "comment": "" }, - { - "term": "Widget added", - "context": "Widget added", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:44", - "comment": "" - }, { "term": "Widget Background Color", "context": "Widget Background Color", @@ -13640,7 +12770,7 @@ { "term": "Widget Management", "context": "Widget Management", - "reference": "Modules/Settings/WidgetsTab.qml:835", + "reference": "Modules/Settings/WidgetsTab.qml:864", "comment": "" }, { @@ -13649,12 +12779,6 @@ "reference": "Modules/Settings/DankBarTab.qml:1474", "comment": "" }, - { - "term": "Widget removed", - "context": "Widget removed", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:371, Modules/Settings/DesktopWidgetsTab.qml:544", - "comment": "" - }, { "term": "Widget Style", "context": "Widget Style", @@ -13673,6 +12797,18 @@ "reference": "Modules/Settings/DankBarTab.qml:1028", "comment": "" }, + { + "term": "Widget added", + "context": "Widget added", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:44", + "comment": "" + }, + { + "term": "Widget removed", + "context": "Widget removed", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:371, Modules/Settings/DesktopWidgetsTab.qml:544", + "comment": "" + }, { "term": "Widgets", "context": "settings_displays", @@ -13709,52 +12845,10 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1894", "comment": "" }, - { - "term": "WiFi", - "context": "WiFi", - "reference": "Modules/Settings/NetworkTab.qml:213, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:810, Modules/ControlCenter/Details/NetworkDetail.qml:136", - "comment": "" - }, - { - "term": "WiFi Device", - "context": "WiFi Device", - "reference": "Modules/Settings/NetworkTab.qml:868, Modules/Settings/NetworkTab.qml:900", - "comment": "" - }, - { - "term": "WiFi disabled", - "context": "WiFi disabled", - "reference": "Services/DMSNetworkService.qml:571", - "comment": "" - }, - { - "term": "WiFi enabled", - "context": "WiFi enabled", - "reference": "Services/DMSNetworkService.qml:571, Services/DMSNetworkService.qml:583", - "comment": "" - }, - { - "term": "WiFi is off", - "context": "WiFi is off", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:225", - "comment": "" - }, - { - "term": "WiFi off", - "context": "network status", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:308", - "comment": "" - }, - { - "term": "WiFi QR code for ", - "context": "WiFi QR code for ", - "reference": "Modals/WifiQRCodeModal.qml:125", - "comment": "" - }, { "term": "Wind", "context": "Wind", - "reference": "Modules/Settings/TimeWeatherTab.qml:967, Modules/DankDash/WeatherTab.qml:89, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425", + "reference": "Modules/DankDash/WeatherTab.qml:89, Modules/Settings/TimeWeatherTab.qml:977", "comment": "" }, { @@ -13766,7 +12860,7 @@ { "term": "Wind Speed in m/s", "context": "Wind Speed in m/s", - "reference": "Modules/Settings/TimeWeatherTab.qml:430", + "reference": "Modules/Settings/TimeWeatherTab.qml:440", "comment": "" }, { @@ -13808,7 +12902,7 @@ { "term": "Window Rules", "context": "Window Rules", - "reference": "Modals/Settings/SettingsSidebar.qml:271, Modules/Settings/WindowRulesTab.qml:247", + "reference": "Modules/Settings/WindowRulesTab.qml:247, Modals/Settings/SettingsSidebar.qml:277", "comment": "" }, { @@ -13832,7 +12926,7 @@ { "term": "Workspace", "context": "Workspace", - "reference": "Widgets/DankIconPicker.qml:27, Modals/WindowRuleModal.qml:586, Modals/WindowRuleModal.qml:1076, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/WindowRulesTab.qml:541, Modules/Settings/WindowRulesTab.qml:568", + "reference": "Modals/WindowRuleModal.qml:586, Modals/WindowRuleModal.qml:1076, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/WindowRulesTab.qml:541, Modules/Settings/WindowRulesTab.qml:568", "comment": "" }, { @@ -13847,12 +12941,6 @@ "reference": "Modules/Settings/WorkspacesTab.qml:32", "comment": "" }, - { - "term": "Workspace name", - "context": "Workspace name", - "reference": "Modals/WorkspaceRenameModal.qml:134", - "comment": "" - }, { "term": "Workspace Names", "context": "Workspace Names", @@ -13877,6 +12965,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:52", "comment": "" }, + { + "term": "Workspace name", + "context": "Workspace name", + "reference": "Modals/WorkspaceRenameModal.qml:134", + "comment": "" + }, { "term": "Workspaces", "context": "Workspaces", @@ -13886,13 +12980,7 @@ { "term": "Workspaces & Widgets", "context": "Workspaces & Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsSidebar.qml:539", - "comment": "" - }, - { - "term": "WPA/WPA2", - "context": "WPA/WPA2", - "reference": "Modules/Settings/NetworkTab.qml:1448", + "reference": "Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsSidebar.qml:545", "comment": "" }, { @@ -13901,12 +12989,6 @@ "reference": "Modules/ProcessList/DisksView.qml:91", "comment": "" }, - { - "term": "wtype not available - install wtype for paste support", - "context": "wtype not available - install wtype for paste support", - "reference": "Services/ClipboardService.qml:118", - "comment": "" - }, { "term": "X Axis", "context": "X Axis", @@ -13931,12 +13013,6 @@ "reference": "Modules/Notifications/Center/HistoryNotificationList.qml:102", "comment": "" }, - { - "term": "yesterday", - "context": "yesterday", - "reference": "Services/NotificationService.qml:255", - "comment": "" - }, { "term": "You have unsaved changes. Save before closing this tab?", "context": "You have unsaved changes. Save before closing this tab?", @@ -13973,34 +13049,46 @@ "reference": "Modals/Greeter/GreeterCompletePage.qml:105", "comment": "" }, + { + "term": "Your system is up to date!", + "context": "Your system is up to date!", + "reference": "Modules/SystemUpdatePopout.qml:150", + "comment": "" + }, { "term": "actions", "context": "actions", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:391", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:421", "comment": "" }, { "term": "attached", "context": "attached", - "reference": "Modals/MuxModal.qml:494", + "reference": "Modals/MuxModal.qml:484", + "comment": "" + }, + { + "term": "brandon", + "context": "brandon", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:44", "comment": "" }, { "term": "by %1", "context": "author attribution", - "reference": "Modules/Settings/PluginBrowser.qml:537, Modules/Settings/ThemeBrowser.qml:527", + "reference": "Modules/Settings/PluginBrowser.qml:539, Modules/Settings/ThemeBrowser.qml:527", "comment": "" }, { "term": "days", "context": "days", - "reference": "Modules/Settings/ClipboardTab.qml:179, Modules/Settings/NotificationsTab.qml:613", + "reference": "Modules/Settings/ClipboardTab.qml:179, Modules/Settings/NotificationsTab.qml:849", "comment": "" }, { "term": "detached", "context": "detached", - "reference": "Modals/MuxModal.qml:494", + "reference": "Modals/MuxModal.qml:484", "comment": "" }, { @@ -14009,10 +13097,16 @@ "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:45", "comment": "" }, + { + "term": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", + "context": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", + "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:2005", + "reference": "Modules/Settings/ThemeColorsTab.qml:2209", "comment": "" }, { @@ -14042,19 +13136,25 @@ { "term": "e.g., scratch, /^tmp_.*/, build", "context": "e.g., scratch, /^tmp_.*/, build", - "reference": "Modules/Settings/MuxTab.qml:131", + "reference": "Modules/Settings/MuxTab.qml:106", "comment": "" }, { "term": "events", "context": "events", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:135", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:178", + "comment": "" + }, + { + "term": "ext", + "context": "ext", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:716", "comment": "" }, { "term": "featured", "context": "featured", - "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:485", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:487", "comment": "" }, { @@ -14066,19 +13166,31 @@ { "term": "loginctl not available - lock integration requires DMS socket connection", "context": "loginctl not available - lock integration requires DMS socket connection", - "reference": "Modules/Settings/LockScreenTab.qml:110", + "reference": "Modules/Settings/LockScreenTab.qml:166", + "comment": "" + }, + { + "term": "mangowc Discord Server", + "context": "mangowc Discord Server", + "reference": "Modules/Settings/AboutTab.qml:100", + "comment": "" + }, + { + "term": "mangowc GitHub", + "context": "mangowc GitHub", + "reference": "Modules/Settings/AboutTab.qml:79", "comment": "" }, { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:303", + "reference": "Modules/Settings/ThemeColorsTab.qml:299", "comment": "" }, { "term": "minutes", "context": "minutes", - "reference": "Modules/Settings/NotificationsTab.qml:149", + "reference": "Modules/Settings/NotificationsTab.qml:171, Modules/Notifications/Center/NotificationSettings.qml:105", "comment": "" }, { @@ -14090,7 +13202,19 @@ { "term": "nav", "context": "nav", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:377", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:407", + "comment": "" + }, + { + "term": "niri GitHub", + "context": "niri GitHub", + "reference": "Modules/Settings/AboutTab.qml:82", + "comment": "" + }, + { + "term": "niri Matrix Chat", + "context": "niri Matrix Chat", + "reference": "Modules/Settings/AboutTab.qml:399", "comment": "" }, { @@ -14099,46 +13223,118 @@ "reference": "Modals/Greeter/GreeterCompletePage.qml:414", "comment": "" }, + { + "term": "niri/dms Discord", + "context": "niri/dms Discord", + "reference": "Modules/Settings/AboutTab.qml:86", + "comment": "" + }, { "term": "now", "context": "now", - "reference": "Services/NotificationService.qml:245", + "reference": "Services/NotificationService.qml:268", "comment": "" }, { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:507, Modules/Settings/ThemeBrowser.qml:494", + "reference": "Modules/Settings/PluginBrowser.qml:509, Modules/Settings/ThemeBrowser.qml:494", + "comment": "" + }, + { + "term": "on Hyprland", + "context": "on Hyprland", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:69", + "comment": "" + }, + { + "term": "on MangoWC", + "context": "on MangoWC", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:72", + "comment": "" + }, + { + "term": "on Miracle WM", + "context": "on Miracle WM", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:78", + "comment": "" + }, + { + "term": "on Niri", + "context": "on Niri", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:67", + "comment": "" + }, + { + "term": "on Scroll", + "context": "on Scroll", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:76", + "comment": "" + }, + { + "term": "on Sway", + "context": "on Sway", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:74", "comment": "" }, { "term": "open", "context": "open", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:384", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:414", + "comment": "" + }, + { + "term": "or run ", + "context": "or run ", + "reference": "Modules/Settings/GreeterTab.qml:765", + "comment": "" + }, + { + "term": "power-profiles-daemon not available", + "context": "power-profiles-daemon not available", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:25", "comment": "" }, { "term": "procs", "context": "short for processes", - "reference": "Modules/ProcessList/ProcessListPopout.qml:256", + "reference": "Modules/ProcessList/ProcessListPopout.qml:288", + "comment": "" + }, + { + "term": "r/niri Subreddit", + "context": "r/niri Subreddit", + "reference": "Modules/Settings/AboutTab.qml:105", "comment": "" }, { "term": "seconds", "context": "seconds", - "reference": "Modules/Settings/NotificationsTab.qml:148", + "reference": "Modules/Settings/NotificationsTab.qml:170, Modules/Notifications/Center/NotificationSettings.qml:103", "comment": "" }, { "term": "source", "context": "source code link", - "reference": "Modules/Settings/PluginBrowser.qml:538", + "reference": "Modules/Settings/PluginBrowser.qml:540", + "comment": "" + }, + { + "term": "this app", + "context": "this app", + "reference": "Modules/Notifications/Center/NotificationCard.qml:1016, Modules/Notifications/Center/NotificationCard.qml:1016, Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Popup/NotificationPopup.qml:1096", + "comment": "" + }, + { + "term": "up", + "context": "up", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:102", "comment": "" }, { "term": "update dms for NM integration.", "context": "update dms for NM integration.", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:207", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:223", "comment": "" }, { @@ -14153,78 +13349,6 @@ "reference": "Services/ClipboardService.qml:118", "comment": "" }, - { - "term": "yesterday", - "context": "yesterday", - "reference": "Services/NotificationService.qml:255", - "comment": "" - }, - { - "term": "• Install only from trusted sources", - "context": "• Install only from trusted sources", - "reference": "Modules/Settings/PluginBrowser.qml:814", - "comment": "" - }, - { - "term": "• M - Month (1-12)", - "context": "• M - Month (1-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:295", - "comment": "" - }, - { - "term": "• MM - Month (01-12)", - "context": "• MM - Month (01-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:306", - "comment": "" - }, - { - "term": "• MMM - Month (Jan)", - "context": "• MMM - Month (Jan)", - "reference": "Modules/Settings/TimeWeatherTab.qml:311", - "comment": "" - }, - { - "term": "• MMMM - Month (January)", - "context": "• MMMM - Month (January)", - "reference": "Modules/Settings/TimeWeatherTab.qml:316", - "comment": "" - }, - { - "term": "• Plugins may contain bugs or security issues", - "context": "• Plugins may contain bugs or security issues", - "reference": "Modules/Settings/PluginBrowser.qml:802", - "comment": "" - }, - { - "term": "• Review code before installation when possible", - "context": "• Review code before installation when possible", - "reference": "Modules/Settings/PluginBrowser.qml:808", - "comment": "" - }, - { - "term": "• d - Day (1-31)", - "context": "• d - Day (1-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:318", - "comment": "" - }, - { - "term": "• dd - Day (01-31)", - "context": "• dd - Day (01-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:323", - "comment": "" - }, - { - "term": "• ddd - Day name (Mon)", - "context": "• ddd - Day name (Mon)", - "reference": "Modules/Settings/TimeWeatherTab.qml:328", - "comment": "" - }, - { - "term": "• dddd - Day name (Monday)", - "context": "• dddd - Day name (Monday)", - "reference": "Modules/Settings/TimeWeatherTab.qml:333", - "comment": "" - }, { "term": "• Install only from trusted sources", "context": "• Install only from trusted sources", @@ -14234,25 +13358,25 @@ { "term": "• M - Month (1-12)", "context": "• M - Month (1-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:338", + "reference": "Modules/Settings/TimeWeatherTab.qml:348", "comment": "" }, { "term": "• MM - Month (01-12)", "context": "• MM - Month (01-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:349", + "reference": "Modules/Settings/TimeWeatherTab.qml:359", "comment": "" }, { "term": "• MMM - Month (Jan)", "context": "• MMM - Month (Jan)", - "reference": "Modules/Settings/TimeWeatherTab.qml:354", + "reference": "Modules/Settings/TimeWeatherTab.qml:364", "comment": "" }, { "term": "• MMMM - Month (January)", "context": "• MMMM - Month (January)", - "reference": "Modules/Settings/TimeWeatherTab.qml:359", + "reference": "Modules/Settings/TimeWeatherTab.qml:369", "comment": "" }, { @@ -14267,16 +13391,40 @@ "reference": "Modules/Settings/PluginBrowser.qml:810", "comment": "" }, + { + "term": "• d - Day (1-31)", + "context": "• d - Day (1-31)", + "reference": "Modules/Settings/TimeWeatherTab.qml:328", + "comment": "" + }, + { + "term": "• dd - Day (01-31)", + "context": "• dd - Day (01-31)", + "reference": "Modules/Settings/TimeWeatherTab.qml:333", + "comment": "" + }, + { + "term": "• ddd - Day name (Mon)", + "context": "• ddd - Day name (Mon)", + "reference": "Modules/Settings/TimeWeatherTab.qml:338", + "comment": "" + }, + { + "term": "• dddd - Day name (Monday)", + "context": "• dddd - Day name (Monday)", + "reference": "Modules/Settings/TimeWeatherTab.qml:343", + "comment": "" + }, { "term": "• yy - Year (24)", "context": "• yy - Year (24)", - "reference": "Modules/Settings/TimeWeatherTab.qml:364", + "reference": "Modules/Settings/TimeWeatherTab.qml:374", "comment": "" }, { "term": "• yyyy - Year (2024)", "context": "• yyyy - Year (2024)", - "reference": "Modules/Settings/TimeWeatherTab.qml:369", + "reference": "Modules/Settings/TimeWeatherTab.qml:379", "comment": "" }, { @@ -14285,10 +13433,16 @@ "reference": "Modules/Notifications/Center/NotificationKeyboardHints.qml:26", "comment": "" }, + { + "term": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help", + "context": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help", + "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:31", + "comment": "" + }, { "term": "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help", "context": "Keyboard hints when enter-to-paste is enabled", - "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:29", + "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:30", "comment": "" } ] diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 079457e4..8c5ad398 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -1,13 +1,27 @@ [ { - "term": "%1 active, %2 filtered", + "term": "%1 Animation Speed", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "%1 adapter(s), none connected", + "term": "%1 Sessions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "%1 active session", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "%1 active sessions", "translation": "", "context": "", "reference": "", @@ -28,7 +42,7 @@ "comment": "" }, { - "term": "%1 Animation Speed", + "term": "%1 character", "translation": "", "context": "", "reference": "", @@ -41,13 +55,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 class(es)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "%1 connected", "translation": "", @@ -62,13 +69,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 days ago", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "%1 disconnected", "translation": "", @@ -90,13 +90,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 display(s)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "%1 displays", "translation": "", @@ -104,13 +97,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 DMS bind(s) may be overridden by config binds that come after the include.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.", "translation": "", @@ -125,6 +111,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 filtered", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 is now included in config", "translation": "", @@ -139,13 +132,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 issue(s) found", - "translation": "", - "context": "greeter doctor page error count", - "reference": "", - "comment": "" - }, { "term": "%1 issues found", "translation": "", @@ -153,13 +139,6 @@ "reference": "", "comment": "" }, - { - "term": "%1 job(s)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "%1 notifications", "translation": "", @@ -168,14 +147,14 @@ "comment": "" }, { - "term": "%1 printer(s)", + "term": "%1 update", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "%1 Sessions", + "term": "%1 updates", "translation": "", "context": "", "reference": "", @@ -188,6 +167,20 @@ "reference": "", "comment": "" }, + { + "term": "%1 wallpaper • %2 / %3", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "%1 wallpapers • %2 / %3", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 widgets", "translation": "", @@ -195,6 +188,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 window", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 windows", "translation": "", @@ -258,13 +258,6 @@ "reference": "", "comment": "" }, - { - "term": "1 device connected", - "translation": "", - "context": "KDE Connect status single device", - "reference": "", - "comment": "" - }, { "term": "1 event", "translation": "", @@ -399,14 +392,14 @@ "comment": "" }, { - "term": "24-hour clock", + "term": "24-Hour Format", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "24-Hour Format", + "term": "24-hour clock", "translation": "", "context": "", "reference": "", @@ -615,6 +608,13 @@ "reference": "", "comment": "" }, + { + "term": "MIT License", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "A file with this name already exists. Do you want to overwrite it?", "translation": "", @@ -629,6 +629,20 @@ "reference": "", "comment": "" }, + { + "term": "AC Power", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "API", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Aborted", "translation": "", @@ -643,27 +657,6 @@ "reference": "", "comment": "" }, - { - "term": "AC Power", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Accent Color", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Accept", - "translation": "", - "context": "KDE Connect accept pairing button", - "reference": "", - "comment": "" - }, { "term": "Accept Jobs", "translation": "", @@ -720,13 +713,6 @@ "reference": "", "comment": "" }, - { - "term": "actions", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Activate", "translation": "", @@ -748,13 +734,6 @@ "reference": "", "comment": "" }, - { - "term": "Activation", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Active", "translation": "", @@ -818,27 +797,6 @@ "reference": "", "comment": "" }, - { - "term": "Add a border around the dock", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Add and configure widgets that appear on your desktop", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Add Bar", "translation": "", @@ -846,13 +804,6 @@ "reference": "", "comment": "" }, - { - "term": "Add by Address", - "translation": "", - "context": "Toggle button to manually add a printer by IP or hostname", - "reference": "", - "comment": "" - }, { "term": "Add Desktop Widget", "translation": "", @@ -888,6 +839,34 @@ "reference": "", "comment": "" }, + { + "term": "Add a border around the dock", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Add and configure widgets that appear on your desktop", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Add by Address", + "translation": "", + "context": "Toggle button to manually add a printer by IP or hostname", + "reference": "", + "comment": "" + }, { "term": "Adjust the number of columns in grid view mode.", "translation": "", @@ -923,6 +902,13 @@ "reference": "", "comment": "" }, + { + "term": "All Monitors", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "All checks passed", "translation": "", @@ -944,13 +930,6 @@ "reference": "", "comment": "" }, - { - "term": "All Monitors", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Allow clicks to pass through the widget", "translation": "", @@ -973,7 +952,7 @@ "comment": "" }, { - "term": "Always Active", + "term": "Always Show Percentage", "translation": "", "context": "", "reference": "", @@ -1000,13 +979,6 @@ "reference": "", "comment": "" }, - { - "term": "Always Show Percentage", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Always show the dock when niri's overview is open", "translation": "", @@ -1077,13 +1049,6 @@ "reference": "", "comment": "" }, - { - "term": "API", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "App Customizations", "translation": "", @@ -1092,14 +1057,14 @@ "comment": "" }, { - "term": "App ID regex (e.g. ^firefox$)", + "term": "App ID Substitutions", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "App ID Substitutions", + "term": "App ID regex (e.g. ^firefox$)", "translation": "", "context": "", "reference": "", @@ -1182,13 +1147,6 @@ "reference": "", "comment": "" }, - { - "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Apps Dock", "translation": "", @@ -1210,6 +1168,13 @@ "reference": "", "comment": "" }, + { + "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", "translation": "", @@ -1252,13 +1217,6 @@ "reference": "", "comment": "" }, - { - "term": "attached", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Audio", "translation": "", @@ -1316,14 +1274,14 @@ "comment": "" }, { - "term": "Audio system restarted", + "term": "Audio Visualizer", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Audio Visualizer", + "term": "Audio system restarted", "translation": "", "context": "", "reference": "", @@ -1357,6 +1315,13 @@ "reference": "", "comment": "" }, + { + "term": "Authenticating...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Authentication", "translation": "", @@ -1365,14 +1330,21 @@ "comment": "" }, { - "term": "Authentication failed, please try again", + "term": "Authentication Required", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Authentication Required", + "term": "Authentication error - try again", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Authentication failed, please try again", "translation": "", "context": "", "reference": "", @@ -1441,6 +1413,13 @@ "reference": "", "comment": "" }, + { + "term": "Auto-Hide Timeout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Auto-close Niri overview when launching apps.", "translation": "", @@ -1469,13 +1448,6 @@ "reference": "", "comment": "" }, - { - "term": "Auto-Hide Timeout", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Auto-saving...", "translation": "", @@ -1588,13 +1560,6 @@ "reference": "", "comment": "" }, - { - "term": "Available in Detailed and Forecast view modes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Available Layouts", "translation": "", @@ -1630,6 +1595,13 @@ "reference": "", "comment": "" }, + { + "term": "BSSID", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Back", "translation": "", @@ -1652,16 +1624,16 @@ "comment": "" }, { - "term": "Background image", + "term": "Background Opacity", "translation": "", - "context": "greeter wallpaper description", + "context": "", "reference": "", "comment": "" }, { - "term": "Background Opacity", + "term": "Background image", "translation": "", - "context": "", + "context": "greeter wallpaper description", "reference": "", "comment": "" }, @@ -1736,7 +1708,7 @@ "comment": "" }, { - "term": "Battery and power management", + "term": "Battery %1", "translation": "", "context": "", "reference": "", @@ -1749,6 +1721,13 @@ "reference": "", "comment": "" }, + { + "term": "Battery and power management", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Battery level and power management", "translation": "", @@ -1770,13 +1749,6 @@ "reference": "", "comment": "" }, - { - "term": "Binds include added", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Binds Include Missing", "translation": "", @@ -1785,14 +1757,14 @@ "comment": "" }, { - "term": "Bit Depth", + "term": "Binds include added", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Block notifications", + "term": "Bit Depth", "translation": "", "context": "", "reference": "", @@ -1812,6 +1784,13 @@ "reference": "", "comment": "" }, + { + "term": "Block notifications", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Blocked", "translation": "", @@ -1833,13 +1812,6 @@ "reference": "", "comment": "" }, - { - "term": "Bluetooth not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Bluetooth Settings", "translation": "", @@ -1848,7 +1820,7 @@ "comment": "" }, { - "term": "Blur on Overview", + "term": "Bluetooth not available", "translation": "", "context": "", "reference": "", @@ -1861,6 +1833,13 @@ "reference": "", "comment": "" }, + { + "term": "Blur on Overview", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Blur wallpaper when niri overview is open", "translation": "", @@ -1931,13 +1910,6 @@ "reference": "", "comment": "" }, - { - "term": "Bottom dock for pinned and running applications", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Bottom Left", "translation": "", @@ -1960,7 +1932,7 @@ "comment": "" }, { - "term": "brandon", + "term": "Bottom dock for pinned and running applications", "translation": "", "context": "", "reference": "", @@ -1973,13 +1945,6 @@ "reference": "", "comment": "" }, - { - "term": "Brightness control not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Brightness Slider", "translation": "", @@ -1994,6 +1959,13 @@ "reference": "", "comment": "" }, + { + "term": "Brightness control not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Browse", "translation": "", @@ -2001,20 +1973,6 @@ "reference": "", "comment": "" }, - { - "term": "Browse Files", - "translation": "", - "context": "KDE Connect browse tooltip", - "reference": "", - "comment": "" - }, - { - "term": "Browse or search plugins", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Browse Plugins", "translation": "", @@ -2030,7 +1988,7 @@ "comment": "" }, { - "term": "BSSID", + "term": "Browse or search plugins", "translation": "", "context": "", "reference": "", @@ -2044,21 +2002,77 @@ "comment": "" }, { - "term": "by %1", - "translation": "", - "context": "author attribution", - "reference": "", - "comment": "" - }, - { - "term": "Calc", + "term": "CPU", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Calculator", + "term": "CPU Graph", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CPU Temperature", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CPU Usage", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CPU temperature display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CPU usage indicator", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CPU, memory, network, and disk monitoring", + "translation": "", + "context": "System monitor widget description", + "reference": "", + "comment": "" + }, + { + "term": "CUPS Insecure Filter Warning", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CUPS Missing Filter Warning", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CUPS Print Server", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "CUPS not available", "translation": "", "context": "", "reference": "", @@ -2163,19 +2177,26 @@ "comment": "" }, { - "term": "Change bar appearance", + "term": "Change Song", "translation": "", - "context": "", + "context": "media scroll wheel option", "reference": "", "comment": "" }, { - "term": "Change Song", + "term": "Change Volume", "translation": "", "context": "media scroll wheel option", "reference": "", "comment": "" }, + { + "term": "Change bar appearance", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Change the locale used by the DMS interface.", "translation": "", @@ -2190,13 +2211,6 @@ "reference": "", "comment": "" }, - { - "term": "Change Volume", - "translation": "", - "context": "media scroll wheel option", - "reference": "", - "comment": "" - }, { "term": "Channel", "translation": "", @@ -2225,6 +2239,13 @@ "reference": "", "comment": "" }, + { + "term": "Checking for updates...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Checking whether sudo authentication is needed…", "translation": "", @@ -2232,6 +2253,13 @@ "reference": "", "comment": "" }, + { + "term": "Checking...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Checking…", "translation": "", @@ -2239,13 +2267,6 @@ "reference": "", "comment": "" }, - { - "term": "Choose a color", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Choose Color", "translation": "", @@ -2253,13 +2274,6 @@ "reference": "", "comment": "" }, - { - "term": "Choose colors from palette", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Choose Dark Mode Color", "translation": "", @@ -2275,7 +2289,35 @@ "comment": "" }, { - "term": "Choose how the weather widget is displayed", + "term": "Choose Launcher Logo Color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Choose Light Mode Color", + "translation": "", + "context": "light mode wallpaper color picker title", + "reference": "", + "comment": "" + }, + { + "term": "Choose Wallpaper Color", + "translation": "", + "context": "wallpaper color picker title", + "reference": "", + "comment": "" + }, + { + "term": "Choose a color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Choose colors from palette", "translation": "", "context": "", "reference": "", @@ -2295,20 +2337,6 @@ "reference": "", "comment": "" }, - { - "term": "Choose Launcher Logo Color", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Choose Light Mode Color", - "translation": "", - "context": "light mode wallpaper color picker title", - "reference": "", - "comment": "" - }, { "term": "Choose the background color for widgets", "translation": "", @@ -2330,13 +2358,6 @@ "reference": "", "comment": "" }, - { - "term": "Choose Wallpaper Color", - "translation": "", - "context": "wallpaper color picker title", - "reference": "", - "comment": "" - }, { "term": "Choose where notification popups appear on screen", "translation": "", @@ -2365,13 +2386,6 @@ "reference": "", "comment": "" }, - { - "term": "Chroma Style", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Cipher", "translation": "", @@ -2407,13 +2421,6 @@ "reference": "", "comment": "" }, - { - "term": "Clear all history when server starts", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Clear All Jobs", "translation": "", @@ -2421,13 +2428,6 @@ "reference": "", "comment": "" }, - { - "term": "Clear at Startup", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Clear History?", "translation": "", @@ -2442,6 +2442,20 @@ "reference": "", "comment": "" }, + { + "term": "Clear all history when server starts", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Clear at Startup", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Click 'Setup' to create %1 and add include to config.", "translation": "", @@ -2470,13 +2484,6 @@ "reference": "", "comment": "" }, - { - "term": "Click any shortcut to edit. Changes save to %1", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Click Import to add a .ovpn or .conf", "translation": "", @@ -2498,6 +2505,13 @@ "reference": "", "comment": "" }, + { + "term": "Click any shortcut to edit. Changes save to %1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Click to capture", "translation": "", @@ -2547,13 +2561,6 @@ "reference": "", "comment": "" }, - { - "term": "Clipboard sent", - "translation": "", - "context": "KDE Connect clipboard action | Phone Connect clipboard action", - "reference": "", - "comment": "" - }, { "term": "Clipboard service not available", "translation": "", @@ -2617,20 +2624,6 @@ "reference": "", "comment": "" }, - { - "term": "Color displayed on monitors without the lock screen", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Color for primary action buttons", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Color Gamut", "translation": "", @@ -2673,6 +2666,20 @@ "reference": "", "comment": "" }, + { + "term": "Color displayed on monitors without the lock screen", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Color for primary action buttons", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Color temperature for day time", "translation": "", @@ -2687,20 +2694,6 @@ "reference": "", "comment": "" }, - { - "term": "Color theme for syntax highlighting.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Color theme for syntax highlighting. %1 themes available.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Color theme from DMS registry", "translation": "", @@ -2820,13 +2813,6 @@ "reference": "", "comment": "" }, - { - "term": "Compositor not supported", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Compositor Settings", "translation": "", @@ -2835,7 +2821,7 @@ "comment": "" }, { - "term": "Config action: %1", + "term": "Compositor not supported", "translation": "", "context": "", "reference": "", @@ -2848,6 +2834,13 @@ "reference": "", "comment": "" }, + { + "term": "Config action: %1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Config validation failed", "translation": "", @@ -2883,6 +2876,13 @@ "reference": "", "comment": "" }, + { + "term": "Configure Keybinds", + "translation": "", + "context": "greeter configure keybinds link", + "reference": "", + "comment": "" + }, { "term": "Configure a new printer", "translation": "", @@ -2897,13 +2897,6 @@ "reference": "", "comment": "" }, - { - "term": "Configure Keybinds", - "translation": "", - "context": "greeter configure keybinds link", - "reference": "", - "comment": "" - }, { "term": "Configure match criteria and actions", "translation": "", @@ -3044,13 +3037,6 @@ "reference": "", "comment": "" }, - { - "term": "Content copied", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Contrast", "translation": "", @@ -3058,13 +3044,6 @@ "reference": "", "comment": "" }, - { - "term": "Control animation duration for notification popups and history", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Control Center", "translation": "", @@ -3079,6 +3058,13 @@ "reference": "", "comment": "" }, + { + "term": "Control animation duration for notification popups and history", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Control currently playing media", "translation": "", @@ -3149,20 +3135,6 @@ "reference": "", "comment": "" }, - { - "term": "Copied GIF", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Copied MP4", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Copied to clipboard", "translation": "", @@ -3170,13 +3142,6 @@ "reference": "", "comment": "" }, - { - "term": "Copied WebP", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Copied!", "translation": "", @@ -3184,20 +3149,6 @@ "reference": "", "comment": "" }, - { - "term": "Copy", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Copy Content", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Copy Full Command", "translation": "", @@ -3219,13 +3170,6 @@ "reference": "", "comment": "" }, - { - "term": "Copy path", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Copy PID", "translation": "", @@ -3240,6 +3184,13 @@ "reference": "", "comment": "" }, + { + "term": "Copy path", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Corner Radius", "translation": "", @@ -3275,55 +3226,6 @@ "reference": "", "comment": "" }, - { - "term": "CPU", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CPU Graph", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CPU Temperature", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CPU temperature display", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CPU Usage", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CPU usage indicator", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CPU, memory, network, and disk monitoring", - "translation": "", - "context": "System monitor widget description", - "reference": "", - "comment": "" - }, { "term": "Create", "translation": "", @@ -3331,13 +3233,6 @@ "reference": "", "comment": "" }, - { - "term": "Create a new %1 session (n)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Create Dir", "translation": "", @@ -3352,6 +3247,20 @@ "reference": "", "comment": "" }, + { + "term": "Create Window Rule", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Create a new %1 session (n)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Create rule for:", "translation": "", @@ -3359,13 +3268,6 @@ "reference": "", "comment": "" }, - { - "term": "Create rules to mute, ignore, hide from history, or override notification priority.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", "translation": "", @@ -3373,13 +3275,6 @@ "reference": "", "comment": "" }, - { - "term": "Create Window Rule", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Creating...", "translation": "", @@ -3394,34 +3289,6 @@ "reference": "", "comment": "" }, - { - "term": "CUPS Insecure Filter Warning", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CUPS Missing Filter Warning", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CUPS not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "CUPS Print Server", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Current", "translation": "", @@ -3478,13 +3345,6 @@ "reference": "", "comment": "" }, - { - "term": "Current time and date display", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Current Weather", "translation": "", @@ -3492,13 +3352,6 @@ "reference": "", "comment": "" }, - { - "term": "Current weather conditions and temperature", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Current Workspace", "translation": "", @@ -3506,6 +3359,20 @@ "reference": "", "comment": "" }, + { + "term": "Current time and date display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Current weather conditions and temperature", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Current: %1", "translation": "", @@ -3548,13 +3415,6 @@ "reference": "", "comment": "" }, - { - "term": "Custom Color", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Custom Duration", "translation": "", @@ -3611,13 +3471,6 @@ "reference": "", "comment": "" }, - { - "term": "Custom power profile", - "translation": "", - "context": "power profile description", - "reference": "", - "comment": "" - }, { "term": "Custom Reboot Command", "translation": "", @@ -3647,16 +3500,23 @@ "comment": "" }, { - "term": "Custom theme loaded from JSON file", + "term": "Custom Transparency", "translation": "", - "context": "custom theme description", + "context": "", "reference": "", "comment": "" }, { - "term": "Custom Transparency", + "term": "Custom power profile", "translation": "", - "context": "", + "context": "power profile description", + "reference": "", + "comment": "" + }, + { + "term": "Custom theme loaded from JSON file", + "translation": "", + "context": "custom theme description", "reference": "", "comment": "" }, @@ -3688,6 +3548,76 @@ "reference": "", "comment": "" }, + { + "term": "DDC/CI monitor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DEMO MODE - Click anywhere to exit", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DMS Plugin Manager Unavailable", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DMS Shortcuts", + "translation": "", + "context": "greeter keybinds section header", + "reference": "", + "comment": "" + }, + { + "term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DMS out of date", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DMS service is not connected. Clipboard settings are unavailable.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DMS shell actions (launcher, clipboard, etc.)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DMS_SOCKET not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "DWL service not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Daily", "translation": "", @@ -3828,13 +3758,6 @@ "reference": "", "comment": "" }, - { - "term": "days", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Daytime", "translation": "", @@ -3842,13 +3765,6 @@ "reference": "", "comment": "" }, - { - "term": "DDC/CI monitor", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Deck", "translation": "", @@ -3871,14 +3787,14 @@ "comment": "" }, { - "term": "Default selected action", + "term": "Default Width (%)", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Default Width (%)", + "term": "Default selected action", "translation": "", "context": "", "reference": "", @@ -3926,13 +3842,6 @@ "reference": "", "comment": "" }, - { - "term": "Delete class \"%1\"?", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Delete Printer", "translation": "", @@ -3940,13 +3849,6 @@ "reference": "", "comment": "" }, - { - "term": "Delete profile \"%1\"?", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Delete Saved Item?", "translation": "", @@ -3962,7 +3864,14 @@ "comment": "" }, { - "term": "DEMO MODE - Click anywhere to exit", + "term": "Delete class \"%1\"?", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Delete profile \"%1\"?", "translation": "", "context": "", "reference": "", @@ -3996,13 +3905,6 @@ "reference": "", "comment": "" }, - { - "term": "Desktop background images", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Desktop Clock", "translation": "", @@ -4032,14 +3934,14 @@ "comment": "" }, { - "term": "detached", + "term": "Desktop background images", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Detailed", + "term": "Details for \"%1\"", "translation": "", "context": "", "reference": "", @@ -4059,13 +3961,6 @@ "reference": "", "comment": "" }, - { - "term": "device", - "translation": "", - "context": "Generic device name | Generic device name fallback", - "reference": "", - "comment": "" - }, { "term": "Device connections", "translation": "", @@ -4083,27 +3978,6 @@ { "term": "Device paired", "translation": "", - "context": "Phone Connect pairing action", - "reference": "", - "comment": "" - }, - { - "term": "Device unpaired", - "translation": "", - "context": "KDE Connect unpair action | Phone Connect unpair action", - "reference": "", - "comment": "" - }, - { - "term": "devices connected", - "translation": "", - "context": "KDE Connect status multiple devices", - "reference": "", - "comment": "" - }, - { - "term": "dgop not available", - "translation": "", "context": "", "reference": "", "comment": "" @@ -4262,6 +4136,41 @@ "reference": "", "comment": "" }, + { + "term": "Display Assignment", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Display Control", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, + { + "term": "Display Name Format", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Display Profiles", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Display Settings", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display a dock with pinned and running applications", "translation": "", @@ -4290,13 +4199,6 @@ "reference": "", "comment": "" }, - { - "term": "Display Assignment", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Display brightness control", "translation": "", @@ -4311,13 +4213,6 @@ "reference": "", "comment": "" }, - { - "term": "Display Control", - "translation": "", - "context": "greeter feature card title", - "reference": "", - "comment": "" - }, { "term": "Display currently focused application title", "translation": "", @@ -4325,20 +4220,6 @@ "reference": "", "comment": "" }, - { - "term": "Display hourly weather predictions", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Display Name Format", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Display only workspaces that contain windows", "translation": "", @@ -4353,13 +4234,6 @@ "reference": "", "comment": "" }, - { - "term": "Display Profiles", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Display seconds in the clock", "translation": "", @@ -4367,13 +4241,6 @@ "reference": "", "comment": "" }, - { - "term": "Display Settings", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Display the power system menu", "translation": "", @@ -4423,69 +4290,6 @@ "reference": "", "comment": "" }, - { - "term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "DMS out of date", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "DMS Plugin Manager Unavailable", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "DMS service is not connected. Clipboard settings are unavailable.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "DMS shell actions (launcher, clipboard, etc.)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "DMS Shortcuts", - "translation": "", - "context": "greeter keybinds section header", - "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": "DMS_SOCKET not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Do Not Disturb", "translation": "", @@ -4647,13 +4451,6 @@ "reference": "", "comment": "" }, - { - "term": "DWL service not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Dynamic", "translation": "", @@ -4661,20 +4458,6 @@ "reference": "", "comment": "" }, - { - "term": "Dynamic colors from wallpaper", - "translation": "", - "context": "dynamic colors description", - "reference": "", - "comment": "" - }, - { - "term": "Dynamic colors, presets", - "translation": "", - "context": "greeter theme description", - "reference": "", - "comment": "" - }, { "term": "Dynamic Properties", "translation": "", @@ -4690,30 +4473,16 @@ "comment": "" }, { - "term": "e.g., firefox, kitty --title foo", + "term": "Dynamic colors from wallpaper", "translation": "", - "context": "", + "context": "dynamic colors description", "reference": "", "comment": "" }, { - "term": "e.g., focus-workspace 3, resize-column -10", + "term": "Dynamic colors, presets", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "e.g., notify-send 'Hello' && sleep 1", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "e.g., scratch, /^tmp_.*/, build", - "translation": "", - "context": "", + "context": "greeter theme description", "reference": "", "comment": "" }, @@ -4759,13 +4528,6 @@ "reference": "", "comment": "" }, - { - "term": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Enable Autoconnect", "translation": "", @@ -4780,13 +4542,6 @@ "reference": "", "comment": "" }, - { - "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Enable Do Not Disturb", "translation": "", @@ -4794,27 +4549,6 @@ "reference": "", "comment": "" }, - { - "term": "Enable fingerprint at login", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enable fingerprint authentication", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Enable History", "translation": "", @@ -4822,13 +4556,6 @@ "reference": "", "comment": "" }, - { - "term": "Enable loginctl lock integration", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Enable Overview Overlay", "translation": "", @@ -4843,20 +4570,6 @@ "reference": "", "comment": "" }, - { - "term": "Enable security key at login", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enable security key authentication", - "translation": "", - "context": "Enable FIDO2/U2F hardware security key for lock screen", - "reference": "", - "comment": "" - }, { "term": "Enable System Sounds", "translation": "", @@ -4885,6 +4598,62 @@ "reference": "", "comment": "" }, + { + "term": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable fingerprint at login", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable fingerprint authentication", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable loginctl lock integration", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable security key at login", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enable security key authentication", + "translation": "", + "context": "Enable FIDO2/U2F hardware security key for lock screen", + "reference": "", + "comment": "" + }, { "term": "Enabled", "translation": "", @@ -4997,6 +4766,20 @@ "reference": "", "comment": "" }, + { + "term": "Enter PIN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enter PIN for ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enter a new name for session \"%1\"", "translation": "", @@ -5081,20 +4864,6 @@ "reference": "", "comment": "" }, - { - "term": "Enter PIN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enter PIN for ", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Enter this passkey on ", "translation": "", @@ -5109,13 +4878,6 @@ "reference": "", "comment": "" }, - { - "term": "Enter URL or text to share", - "translation": "", - "context": "KDE Connect share input placeholder", - "reference": "", - "comment": "" - }, { "term": "Enterprise", "translation": "", @@ -5165,13 +4927,6 @@ "reference": "", "comment": "" }, - { - "term": "events", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Exact", "translation": "", @@ -5214,13 +4969,6 @@ "reference": "", "comment": "" }, - { - "term": "ext", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Extend battery life", "translation": "", @@ -5277,13 +5025,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to accept pairing", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, { "term": "Failed to activate configuration", "translation": "", @@ -5312,13 +5053,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to browse device", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, { "term": "Failed to cancel all jobs", "translation": "", @@ -5333,6 +5067,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to check for updates:\n%1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to check pin limit", "translation": "", @@ -5341,14 +5082,14 @@ "comment": "" }, { - "term": "Failed to connect to %1", + "term": "Failed to connect VPN", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Failed to connect VPN", + "term": "Failed to connect to %1", "translation": "", "context": "", "reference": "", @@ -5375,6 +5116,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to delete VPN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to delete class", "translation": "", @@ -5389,13 +5137,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to delete VPN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to disable job acceptance", "translation": "", @@ -5438,6 +5179,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to enable WiFi", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to enable job acceptance", "translation": "", @@ -5452,13 +5200,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to enable WiFi", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to hold job", "translation": "", @@ -5474,21 +5215,14 @@ "comment": "" }, { - "term": "Failed to launch SMS app", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, - { - "term": "Failed to load clipboard configuration.", + "term": "Failed to load VPN config", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Failed to load VPN config", + "term": "Failed to load clipboard configuration.", "translation": "", "context": "", "reference": "", @@ -5543,13 +5277,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to reject pairing", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, { "term": "Failed to remove device", "translation": "", @@ -5592,13 +5319,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to ring device", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, { "term": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "translation": "", @@ -5634,27 +5354,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to send clipboard", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, - { - "term": "Failed to send file", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, - { - "term": "Failed to send ping", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, { "term": "Failed to set brightness", "translation": "", @@ -5683,6 +5382,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to set power profile", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to set profile image", "translation": "", @@ -5697,13 +5403,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to share", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, { "term": "Failed to start connection to %1", "translation": "", @@ -5718,6 +5417,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to update VPN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to update autoconnect", "translation": "", @@ -5746,13 +5452,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to update VPN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to write temp file for validation", "translation": "", @@ -5760,13 +5459,6 @@ "reference": "", "comment": "" }, - { - "term": "featured", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Features", "translation": "", @@ -5774,13 +5466,6 @@ "reference": "", "comment": "" }, - { - "term": "Feels", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Feels Like", "translation": "", @@ -5830,13 +5515,6 @@ "reference": "", "comment": "" }, - { - "term": "File received from", - "translation": "", - "context": "Phone Connect file share notification", - "reference": "", - "comment": "" - }, { "term": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "translation": "", @@ -5844,13 +5522,6 @@ "reference": "", "comment": "" }, - { - "term": "File search requires dsearch\nInstall from github.com/morelazers/dsearch", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Files", "translation": "", @@ -5873,14 +5544,14 @@ "comment": "" }, { - "term": "Find in note...", + "term": "Find in Text", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Find in Text", + "term": "Find in note...", "translation": "", "context": "", "reference": "", @@ -6027,14 +5698,14 @@ "comment": "" }, { - "term": "Focused monitor only", + "term": "Focused Window", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Focused Window", + "term": "Focused monitor only", "translation": "", "context": "", "reference": "", @@ -6062,14 +5733,14 @@ "comment": "" }, { - "term": "Follow focus", + "term": "Follow Monitor Focus", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Follow Monitor Focus", + "term": "Follow focus", "translation": "", "context": "", "reference": "", @@ -6104,14 +5775,14 @@ "comment": "" }, { - "term": "Font used on the login screen", + "term": "Font Weight", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Font Weight", + "term": "Font used on the login screen", "translation": "", "context": "", "reference": "", @@ -6131,13 +5802,6 @@ "reference": "", "comment": "" }, - { - "term": "Force terminal applications to always use dark color schemes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Force Wide Color", "translation": "", @@ -6146,14 +5810,7 @@ "comment": "" }, { - "term": "Forecast", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Forecast Days", + "term": "Force terminal applications to always use dark color schemes", "translation": "", "context": "", "reference": "", @@ -6215,6 +5872,20 @@ "reference": "", "comment": "" }, + { + "term": "Found %1 package to update:", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Found %1 packages to update:", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.", "translation": "", @@ -6306,6 +5977,41 @@ "reference": "", "comment": "" }, + { + "term": "GPU", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "GPU Monitoring", + "translation": "", + "context": "gpu section header in system monitor", + "reference": "", + "comment": "" + }, + { + "term": "GPU Temperature", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "GPU temperature display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "GTK, Qt, IDEs, more", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Games", "translation": "", @@ -6327,6 +6033,13 @@ "reference": "", "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.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Generic", "translation": "", @@ -6383,27 +6096,6 @@ "reference": "", "comment": "" }, - { - "term": "GPU", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "GPU Monitoring", - "translation": "", - "context": "gpu section header in system monitor", - "reference": "", - "comment": "" - }, - { - "term": "GPU Temperature", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Gradually fade the screen before locking with a configurable grace period", "translation": "", @@ -6439,13 +6131,6 @@ "reference": "", "comment": "" }, - { - "term": "Greeter activated. greetd is now enabled.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Greeter Appearance", "translation": "", @@ -6460,6 +6145,20 @@ "reference": "", "comment": "" }, + { + "term": "Greeter Status", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter activated. greetd is now enabled.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Greeter font", "translation": "", @@ -6481,13 +6180,6 @@ "reference": "", "comment": "" }, - { - "term": "Greeter Status", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Grid", "translation": "", @@ -6523,6 +6215,13 @@ "reference": "", "comment": "" }, + { + "term": "Group Workspace Apps", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Group by App", "translation": "", @@ -6551,13 +6250,6 @@ "reference": "", "comment": "" }, - { - "term": "Group Workspace Apps", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Groups", "translation": "", @@ -6566,14 +6258,14 @@ "comment": "" }, { - "term": "GTK, Qt, IDEs, more", + "term": "HDR (EDID)", "translation": "", - "context": "greeter feature card description", + "context": "", "reference": "", "comment": "" }, { - "term": "HDR (EDID)", + "term": "HDR Tone Mapping", "translation": "", "context": "", "reference": "", @@ -6587,7 +6279,14 @@ "comment": "" }, { - "term": "HDR Tone Mapping", + "term": "HSV", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "HTML copied to clipboard", "translation": "", "context": "", "reference": "", @@ -6678,14 +6377,14 @@ "comment": "" }, { - "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", + "term": "Hidden Network", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Hidden Network", + "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", "translation": "", "context": "", "reference": "", @@ -6712,27 +6411,6 @@ "reference": "", "comment": "" }, - { - "term": "Hide cursor after inactivity (0 = disabled)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide cursor when pressing keyboard keys", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide cursor when using touch input", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Hide Delay", "translation": "", @@ -6740,13 +6418,6 @@ "reference": "", "comment": "" }, - { - "term": "Hide device", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Hide Indicators", "translation": "", @@ -6754,27 +6425,6 @@ "reference": "", "comment": "" }, - { - "term": "Hide notification content until expanded", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide notification content until expanded; popups show collapsed by default", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide on Touch", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Hide Updater Widget", "translation": "", @@ -6796,6 +6446,55 @@ "reference": "", "comment": "" }, + { + "term": "Hide cursor after inactivity (0 = disabled)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide cursor when pressing keyboard keys", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide cursor when using touch input", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide notification content until expanded", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide notification content until expanded; popups show collapsed by default", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide on Touch", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "High-fidelity palette that preserves source hues.", "translation": "", @@ -6824,13 +6523,6 @@ "reference": "", "comment": "" }, - { - "term": "History cleared. %1 pinned entries kept.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "History Retention", "translation": "", @@ -6845,6 +6537,13 @@ "reference": "", "comment": "" }, + { + "term": "History cleared. %1 pinned entries kept.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hold Duration", "translation": "", @@ -6859,6 +6558,13 @@ "reference": "", "comment": "" }, + { + "term": "Hold to Confirm Power Actions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hold to confirm (%1 ms)", "translation": "", @@ -6873,13 +6579,6 @@ "reference": "", "comment": "" }, - { - "term": "Hold to Confirm Power Actions", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Home", "translation": "", @@ -6929,13 +6628,6 @@ "reference": "", "comment": "" }, - { - "term": "Hourly Forecast Count", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "How often to change wallpaper", "translation": "", @@ -6950,20 +6642,6 @@ "reference": "", "comment": "" }, - { - "term": "HSV", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "HTML copied to clipboard", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Humidity", "translation": "", @@ -6971,6 +6649,13 @@ "reference": "", "comment": "" }, + { + "term": "Hyprland Discord Server", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hyprland Layout Overrides", "translation": "", @@ -6985,6 +6670,13 @@ "reference": "", "comment": "" }, + { + "term": "Hyprland Website", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "I Understand", "translation": "", @@ -6992,6 +6684,34 @@ "reference": "", "comment": "" }, + { + "term": "IP", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "IP Address:", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "IP address or hostname", + "translation": "", + "context": "Placeholder text for manual printer address input", + "reference": "", + "comment": "" + }, + { + "term": "ISO Date", + "translation": "", + "context": "date format option", + "reference": "", + "comment": "" + }, { "term": "Icon", "translation": "", @@ -7042,14 +6762,14 @@ "comment": "" }, { - "term": "Idle monitoring not supported - requires newer Quickshell version", + "term": "Idle Settings", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Idle Settings", + "term": "Idle monitoring not supported - requires newer Quickshell version", "translation": "", "context": "", "reference": "", @@ -7105,14 +6825,14 @@ "comment": "" }, { - "term": "Include desktop actions (shortcuts) in search results.", + "term": "Include Transitions", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Include Transitions", + "term": "Include desktop actions (shortcuts) in search results.", "translation": "", "context": "", "reference": "", @@ -7132,6 +6852,20 @@ "reference": "", "comment": "" }, + { + "term": "Incorrect password - attempt %1 of %2 (lockout may follow)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Incorrect password - next failures may trigger account lockout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Indicator Style", "translation": "", @@ -7140,14 +6874,14 @@ "comment": "" }, { - "term": "Individual bar configuration", + "term": "Individual Batteries", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Individual Batteries", + "term": "Individual bar configuration", "translation": "", "context": "", "reference": "", @@ -7202,6 +6936,27 @@ "reference": "", "comment": "" }, + { + "term": "Install Greeter", + "translation": "", + "context": "greeter action confirmation", + "reference": "", + "comment": "" + }, + { + "term": "Install Plugin", + "translation": "", + "context": "plugin installation dialog title", + "reference": "", + "comment": "" + }, + { + "term": "Install Theme", + "translation": "", + "context": "theme installation dialog title", + "reference": "", + "comment": "" + }, { "term": "Install color themes from the DMS theme registry", "translation": "", @@ -7223,13 +6978,6 @@ "reference": "", "comment": "" }, - { - "term": "Install Greeter", - "translation": "", - "context": "greeter action confirmation", - "reference": "", - "comment": "" - }, { "term": "Install matugen package for dynamic theming", "translation": "", @@ -7237,13 +6985,6 @@ "reference": "", "comment": "" }, - { - "term": "Install Plugin", - "translation": "", - "context": "plugin installation dialog title", - "reference": "", - "comment": "" - }, { "term": "Install plugin '%1' from the DMS registry?", "translation": "", @@ -7265,13 +7006,6 @@ "reference": "", "comment": "" }, - { - "term": "Install Theme", - "translation": "", - "context": "theme installation dialog title", - "reference": "", - "comment": "" - }, { "term": "Install theme '%1' from the DMS registry?", "translation": "", @@ -7363,27 +7097,6 @@ "reference": "", "comment": "" }, - { - "term": "IP", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "IP address or hostname", - "translation": "", - "context": "Placeholder text for manual printer address input", - "reference": "", - "comment": "" - }, - { - "term": "IP Address:", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Iris Bloom", "translation": "", @@ -7391,13 +7104,6 @@ "reference": "", "comment": "" }, - { - "term": "ISO Date", - "translation": "", - "context": "date format option", - "reference": "", - "comment": "" - }, { "term": "Isolate Displays", "translation": "", @@ -7454,13 +7160,6 @@ "reference": "", "comment": "" }, - { - "term": "Keybind Sources", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Keybinds", "translation": "", @@ -7468,20 +7167,6 @@ "reference": "", "comment": "" }, - { - "term": "Keybinds Search Settings", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Keybinds shown alongside regular search results", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Keyboard Layout Name", "translation": "", @@ -7531,6 +7216,27 @@ "reference": "", "comment": "" }, + { + "term": "LED device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "LabWC IRC Channel", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "LabWC Website", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Large", "translation": "", @@ -7566,13 +7272,6 @@ "reference": "", "comment": "" }, - { - "term": "Last launched %1 day%2 ago", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Last launched %1 days ago", "translation": "", @@ -7587,13 +7286,6 @@ "reference": "", "comment": "" }, - { - "term": "Last launched %1 hour%2 ago", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Last launched %1 hours ago", "translation": "", @@ -7608,13 +7300,6 @@ "reference": "", "comment": "" }, - { - "term": "Last launched %1 minute%2 ago", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Last launched %1 minutes ago", "translation": "", @@ -7644,14 +7329,14 @@ "comment": "" }, { - "term": "Launch on dGPU", + "term": "Launch Prefix", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Launch Prefix", + "term": "Launch on dGPU", "translation": "", "context": "", "reference": "", @@ -7685,13 +7370,6 @@ "reference": "", "comment": "" }, - { - "term": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Layout Overrides", "translation": "", @@ -7700,14 +7378,7 @@ "comment": "" }, { - "term": "leave empty for default", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "LED device", + "term": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", "translation": "", "context": "", "reference": "", @@ -7748,20 +7419,6 @@ "reference": "", "comment": "" }, - { - "term": "Light mode base", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Light mode harmony", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Light Rain", "translation": "", @@ -7783,6 +7440,20 @@ "reference": "", "comment": "" }, + { + "term": "Light mode base", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Light mode harmony", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Line", "translation": "", @@ -7790,6 +7461,13 @@ "reference": "", "comment": "" }, + { + "term": "Line: %1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Linear", "translation": "", @@ -7839,13 +7517,6 @@ "reference": "", "comment": "" }, - { - "term": "Loading trending...", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Loading...", "translation": "", @@ -7895,6 +7566,41 @@ "reference": "", "comment": "" }, + { + "term": "Lock Screen", + "translation": "", + "context": "greeter feature card title | lock screen notifications settings card", + "reference": "", + "comment": "" + }, + { + "term": "Lock Screen Display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Lock Screen Format", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Lock Screen behaviour", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Lock Screen layout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Lock at startup", "translation": "", @@ -7916,41 +7622,6 @@ "reference": "", "comment": "" }, - { - "term": "Lock Screen", - "translation": "", - "context": "greeter feature card title | lock screen notifications settings card", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen behaviour", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen Display", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen Format", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen layout", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Locked", "translation": "", @@ -7966,14 +7637,14 @@ "comment": "" }, { - "term": "Login Authentication", + "term": "Logging in...", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "loginctl not available - lock integration requires DMS socket connection", + "term": "Login Authentication", "translation": "", "context": "", "reference": "", @@ -7987,14 +7658,14 @@ "comment": "" }, { - "term": "Long press", + "term": "Long Text", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Long Text", + "term": "Long press", "translation": "", "context": "", "reference": "", @@ -8022,9 +7693,9 @@ "comment": "" }, { - "term": "Make sure KDE Connect or Valent is running on your other devices", + "term": "MTU", "translation": "", - "context": "Phone Connect hint message", + "context": "", "reference": "", "comment": "" }, @@ -8155,16 +7826,16 @@ "comment": "" }, { - "term": "Material colors generated from wallpaper", + "term": "Material Design inspired color themes", "translation": "", - "context": "dynamic theme description", + "context": "generic theme description", "reference": "", "comment": "" }, { - "term": "Material Design inspired color themes", + "term": "Material colors generated from wallpaper", "translation": "", - "context": "generic theme description", + "context": "dynamic theme description", "reference": "", "comment": "" }, @@ -8182,13 +7853,6 @@ "reference": "", "comment": "" }, - { - "term": "matugen not found - install matugen package for dynamic theming", - "translation": "", - "context": "matugen error", - "reference": "", - "comment": "" - }, { "term": "Matugen Palette", "translation": "", @@ -8210,13 +7874,6 @@ "reference": "", "comment": "" }, - { - "term": "Max apps to show", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Max Edges", "translation": "", @@ -8259,13 +7916,6 @@ "reference": "", "comment": "" }, - { - "term": "Max to Edges", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Max Volume", "translation": "", @@ -8280,6 +7930,20 @@ "reference": "", "comment": "" }, + { + "term": "Max apps to show", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Max to Edges", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Maximize", "translation": "", @@ -8322,6 +7986,13 @@ "reference": "", "comment": "" }, + { + "term": "Maximum Pinned Entries", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Maximum number of clipboard entries to keep", "translation": "", @@ -8343,13 +8014,6 @@ "reference": "", "comment": "" }, - { - "term": "Maximum Pinned Entries", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Maximum pinned entries reached", "translation": "", @@ -8427,6 +8091,13 @@ "reference": "", "comment": "" }, + { + "term": "Media Players", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Media Players (", "translation": "", @@ -8476,13 +8147,6 @@ "reference": "", "comment": "" }, - { - "term": "Message", - "translation": "", - "context": "KDE Connect SMS message input placeholder", - "reference": "", - "comment": "" - }, { "term": "Message Content", "translation": "", @@ -8505,14 +8169,14 @@ "comment": "" }, { - "term": "Microphone settings", + "term": "Microphone Volume", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Microphone Volume", + "term": "Microphone settings", "translation": "", "context": "", "reference": "", @@ -8560,13 +8224,6 @@ "reference": "", "comment": "" }, - { - "term": "minutes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Mirror Display", "translation": "", @@ -8742,20 +8399,6 @@ "reference": "", "comment": "" }, - { - "term": "ms", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "MTU", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Multi-Monitor", "translation": "", @@ -8826,6 +8469,13 @@ "reference": "", "comment": "" }, + { + "term": "NM not supported", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Name", "translation": "", @@ -8840,13 +8490,6 @@ "reference": "", "comment": "" }, - { - "term": "nav", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Navigate", "translation": "", @@ -8868,13 +8511,6 @@ "reference": "", "comment": "" }, - { - "term": "Network download and upload speed display", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Network Graph", "translation": "", @@ -8917,6 +8553,13 @@ "reference": "", "comment": "" }, + { + "term": "Network download and upload speed display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Neutral", "translation": "", @@ -8945,13 +8588,6 @@ "reference": "", "comment": "" }, - { - "term": "New group name...", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "New Key", "translation": "", @@ -8994,6 +8630,13 @@ "reference": "", "comment": "" }, + { + "term": "New group name...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Next", "translation": "", @@ -9022,13 +8665,6 @@ "reference": "", "comment": "" }, - { - "term": "Night mode & gamma", - "translation": "", - "context": "greeter feature card description", - "reference": "", - "comment": "" - }, { "term": "Night Temperature", "translation": "", @@ -9037,9 +8673,9 @@ "comment": "" }, { - "term": "Niri compositor actions (focus, move, etc.)", + "term": "Night mode & gamma", "translation": "", - "context": "", + "context": "greeter feature card description", "reference": "", "comment": "" }, @@ -9058,14 +8694,7 @@ "comment": "" }, { - "term": "niri shortcuts config", - "translation": "", - "context": "greeter keybinds niri description", - "reference": "", - "comment": "" - }, - { - "term": "NM not supported", + "term": "Niri compositor actions (focus, move, etc.)", "translation": "", "context": "", "reference": "", @@ -9078,6 +8707,146 @@ "reference": "", "comment": "" }, + { + "term": "No Active Players", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Anim", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Background", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Battery", + "translation": "", + "context": "battery status", + "reference": "", + "comment": "" + }, + { + "term": "No Bluetooth adapter found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Blur", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Border", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No DMS shortcuts configured", + "translation": "", + "context": "greeter no keybinds message", + "reference": "", + "comment": "" + }, + { + "term": "No Dim", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Focus", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No GPU detected", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No GPUs detected", + "translation": "", + "context": "empty state in gpu list", + "reference": "", + "comment": "" + }, + { + "term": "No History", + "translation": "", + "context": "notification rule action option", + "reference": "", + "comment": "" + }, + { + "term": "No Media", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Round", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Rounding", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Shadow", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No VPN profiles", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Weather", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Weather Data Available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No action", "translation": "", @@ -9092,13 +8861,6 @@ "reference": "", "comment": "" }, - { - "term": "No Active Players", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No adapter", "translation": "", @@ -9113,13 +8875,6 @@ "reference": "", "comment": "" }, - { - "term": "No Anim", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No app customizations.", "translation": "", @@ -9148,20 +8903,6 @@ "reference": "", "comment": "" }, - { - "term": "No Background", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No Battery", - "translation": "", - "context": "battery status", - "reference": "", - "comment": "" - }, { "term": "No battery", "translation": "", @@ -9169,27 +8910,6 @@ "reference": "", "comment": "" }, - { - "term": "No Bluetooth adapter found", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No Blur", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No Border", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No brightness devices available", "translation": "", @@ -9221,27 +8941,13 @@ { "term": "No devices", "translation": "", - "context": "Phone Connect no devices status | bluetooth status", - "reference": "", - "comment": "" - }, - { - "term": "No devices connected", - "translation": "", - "context": "KDE Connect status", + "context": "bluetooth status", "reference": "", "comment": "" }, { "term": "No devices found", "translation": "", - "context": "KDE Connect no devices message", - "reference": "", - "comment": "" - }, - { - "term": "No Dim", - "translation": "", "context": "", "reference": "", "comment": "" @@ -9260,13 +8966,6 @@ "reference": "", "comment": "" }, - { - "term": "No DMS shortcuts configured", - "translation": "", - "context": "greeter no keybinds message", - "reference": "", - "comment": "" - }, { "term": "No drivers found", "translation": "", @@ -9302,13 +9001,6 @@ "reference": "", "comment": "" }, - { - "term": "No Focus", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No folders found", "translation": "", @@ -9316,20 +9008,6 @@ "reference": "", "comment": "" }, - { - "term": "No GPU detected", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No GPUs detected", - "translation": "", - "context": "empty state in gpu list", - "reference": "", - "comment": "" - }, { "term": "No hidden apps.", "translation": "", @@ -9338,16 +9016,16 @@ "comment": "" }, { - "term": "No History", + "term": "No info items", "translation": "", - "context": "notification rule action option", + "context": "greeter doctor page empty state", "reference": "", "comment": "" }, { - "term": "No info items", + "term": "No information available", "translation": "", - "context": "greeter doctor page empty state", + "context": "", "reference": "", "comment": "" }, @@ -9407,13 +9085,6 @@ "reference": "", "comment": "" }, - { - "term": "No Media", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No monitors", "translation": "", @@ -9442,6 +9113,13 @@ "reference": "", "comment": "" }, + { + "term": "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No plugin results", "translation": "", @@ -9505,20 +9183,6 @@ "reference": "", "comment": "" }, - { - "term": "No Round", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No Rounding", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No saved clipboard entries", "translation": "", @@ -9533,13 +9197,6 @@ "reference": "", "comment": "" }, - { - "term": "No Shadow", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No status output.", "translation": "", @@ -9576,16 +9233,16 @@ "comment": "" }, { - "term": "No VPN profiles", + "term": "No wallpaper selected", "translation": "", - "context": "", + "context": "no wallpaper status", "reference": "", "comment": "" }, { - "term": "No wallpaper selected", + "term": "No wallpapers", "translation": "", - "context": "no wallpaper status", + "context": "", "reference": "", "comment": "" }, @@ -9603,20 +9260,6 @@ "reference": "", "comment": "" }, - { - "term": "No Weather Data", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No Weather Data Available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No widgets added. Click \"Add Widget\" to get started.", "translation": "", @@ -9722,13 +9365,6 @@ "reference": "", "comment": "" }, - { - "term": "Not paired", - "translation": "", - "context": "KDE Connect not paired status", - "reference": "", - "comment": "" - }, { "term": "Not set", "translation": "", @@ -9841,13 +9477,6 @@ "reference": "", "comment": "" }, - { - "term": "now", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Numbers", "translation": "", @@ -9869,6 +9498,27 @@ "reference": "", "comment": "" }, + { + "term": "OK", + "translation": "", + "context": "greeter doctor page status card", + "reference": "", + "comment": "" + }, + { + "term": "OS Logo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "OSD Position", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Occupied Color", "translation": "", @@ -9890,20 +9540,6 @@ "reference": "", "comment": "" }, - { - "term": "official", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Offline", - "translation": "", - "context": "KDE Connect offline status | Phone Connect offline status", - "reference": "", - "comment": "" - }, { "term": "Offline Report", "translation": "", @@ -9911,13 +9547,6 @@ "reference": "", "comment": "" }, - { - "term": "OK", - "translation": "", - "context": "greeter doctor page status card", - "reference": "", - "comment": "" - }, { "term": "Older", "translation": "", @@ -9932,48 +9561,6 @@ "reference": "", "comment": "" }, - { - "term": "on Hyprland", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "on MangoWC", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "on Miracle WM", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "on Niri", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "on Scroll", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "on Sway", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "On-Demand", "translation": "", @@ -10045,7 +9632,7 @@ "comment": "" }, { - "term": "open", + "term": "Open Notepad File", "translation": "", "context": "", "reference": "", @@ -10058,13 +9645,6 @@ "reference": "", "comment": "" }, - { - "term": "Open App", - "translation": "", - "context": "KDE Connect open SMS app button", - "reference": "", - "comment": "" - }, { "term": "Open folder", "translation": "", @@ -10072,13 +9652,6 @@ "reference": "", "comment": "" }, - { - "term": "Open in Browser", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Open in terminal", "translation": "", @@ -10086,20 +9659,6 @@ "reference": "", "comment": "" }, - { - "term": "Open KDE Connect on your phone", - "translation": "", - "context": "KDE Connect open app hint", - "reference": "", - "comment": "" - }, - { - "term": "Open Notepad File", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Open search bar to find text", "translation": "", @@ -10114,34 +9673,6 @@ "reference": "", "comment": "" }, - { - "term": "Opening file browser", - "translation": "", - "context": "Phone Connect browse action", - "reference": "", - "comment": "" - }, - { - "term": "Opening files", - "translation": "", - "context": "KDE Connect browse action", - "reference": "", - "comment": "" - }, - { - "term": "Opening SMS", - "translation": "", - "context": "KDE Connect SMS action", - "reference": "", - "comment": "" - }, - { - "term": "Opening SMS app", - "translation": "", - "context": "Phone Connect SMS action", - "reference": "", - "comment": "" - }, { "term": "Opening terminal: ", "translation": "", @@ -10170,13 +9701,6 @@ "reference": "", "comment": "" }, - { - "term": "or run ", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Organize widgets into collapsible groups", "translation": "", @@ -10191,20 +9715,6 @@ "reference": "", "comment": "" }, - { - "term": "OS Logo", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "OSD Position", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Other", "translation": "", @@ -10240,6 +9750,13 @@ "reference": "", "comment": "" }, + { + "term": "Output Device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Output Devices", "translation": "", @@ -10359,97 +9876,6 @@ "reference": "", "comment": "" }, - { - "term": "Pad", - "translation": "", - "context": "wallpaper fill mode", - "reference": "", - "comment": "" - }, - { - "term": "Pad Hours", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Pad hours (02:00 vs 2:00)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Padding", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Pair", - "translation": "", - "context": "KDE Connect pair button", - "reference": "", - "comment": "" - }, - { - "term": "Pair Bluetooth Device", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Paired", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Pairing", - "translation": "", - "context": "KDE Connect pairing in progress status", - "reference": "", - "comment": "" - }, - { - "term": "Pairing failed", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, - { - "term": "Pairing request from", - "translation": "", - "context": "Phone Connect pairing request notification", - "reference": "", - "comment": "" - }, - { - "term": "Pairing request sent", - "translation": "", - "context": "Phone Connect pairing action", - "reference": "", - "comment": "" - }, - { - "term": "Pairing requested", - "translation": "", - "context": "KDE Connect pairing requested status", - "reference": "", - "comment": "" - }, - { - "term": "Pairing...", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "PAM already provides fingerprint auth. Enable this to show it at login.", "translation": "", @@ -10485,6 +9911,76 @@ "reference": "", "comment": "" }, + { + "term": "PIN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pad", + "translation": "", + "context": "wallpaper fill mode", + "reference": "", + "comment": "" + }, + { + "term": "Pad Hours", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pad hours (02:00 vs 2:00)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Padding", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pair", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pair Bluetooth Device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Paired", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pairing failed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pairing...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Partly Cloudy", "translation": "", @@ -10507,7 +10003,7 @@ "comment": "" }, { - "term": "Paste", + "term": "Password...", "translation": "", "context": "", "reference": "", @@ -10611,27 +10107,6 @@ "reference": "", "comment": "" }, - { - "term": "Phone Connect Not Available", - "translation": "", - "context": "Phone Connect unavailable error title", - "reference": "", - "comment": "" - }, - { - "term": "Phone Connect unavailable", - "translation": "", - "context": "Phone Connect service unavailable message", - "reference": "", - "comment": "" - }, - { - "term": "Phone number", - "translation": "", - "context": "KDE Connect SMS phone input placeholder", - "reference": "", - "comment": "" - }, { "term": "Pick a different random video each time from the same folder", "translation": "", @@ -10646,13 +10121,6 @@ "reference": "", "comment": "" }, - { - "term": "PIN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Pin", "translation": "", @@ -10667,27 +10135,6 @@ "reference": "", "comment": "" }, - { - "term": "Ping", - "translation": "", - "context": "KDE Connect ping tooltip", - "reference": "", - "comment": "" - }, - { - "term": "Ping sent", - "translation": "", - "context": "KDE Connect ping action", - "reference": "", - "comment": "" - }, - { - "term": "Ping sent to", - "translation": "", - "context": "Phone Connect ping action", - "reference": "", - "comment": "" - }, { "term": "Pinned", "translation": "", @@ -10814,13 +10261,6 @@ "reference": "", "comment": "" }, - { - "term": "Plugin is disabled - enable in Plugins settings to use", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Plugin Management", "translation": "", @@ -10835,6 +10275,13 @@ "reference": "", "comment": "" }, + { + "term": "Plugin is disabled - enable in Plugins settings to use", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Plugins", "translation": "", @@ -10870,13 +10317,6 @@ "reference": "", "comment": "" }, - { - "term": "Popup behavior, position", - "translation": "", - "context": "greeter notifications description", - "reference": "", - "comment": "" - }, { "term": "Popup Only", "translation": "", @@ -10905,6 +10345,13 @@ "reference": "", "comment": "" }, + { + "term": "Popup behavior, position", + "translation": "", + "context": "greeter notifications description", + "reference": "", + "comment": "" + }, { "term": "Port", "translation": "", @@ -10982,13 +10429,6 @@ "reference": "", "comment": "" }, - { - "term": "Power off monitors on lock", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Power Options", "translation": "", @@ -11011,16 +10451,23 @@ "comment": "" }, { - "term": "Power profile management available", + "term": "Power Saver", + "translation": "", + "context": "power profile option", + "reference": "", + "comment": "" + }, + { + "term": "Power off monitors on lock", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Power Saver", + "term": "Power profile management available", "translation": "", - "context": "power profile option", + "context": "", "reference": "", "comment": "" }, @@ -11045,13 +10492,6 @@ "reference": "", "comment": "" }, - { - "term": "Precip", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Precipitation", "translation": "", @@ -11277,9 +10717,9 @@ "comment": "" }, { - "term": "procs", + "term": "Profile Image Error", "translation": "", - "context": "short for processes", + "context": "", "reference": "", "comment": "" }, @@ -11304,13 +10744,6 @@ "reference": "", "comment": "" }, - { - "term": "Profile Image Error", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Profile image is too large. Please use a smaller image.", "translation": "", @@ -11402,6 +10835,13 @@ "reference": "", "comment": "" }, + { + "term": "RGB", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Radius", "translation": "", @@ -11489,7 +10929,7 @@ { "term": "Refresh", "translation": "", - "context": "Phone Connect refresh tooltip", + "context": "", "reference": "", "comment": "" }, @@ -11507,13 +10947,6 @@ "reference": "", "comment": "" }, - { - "term": "Reject", - "translation": "", - "context": "KDE Connect reject pairing button", - "reference": "", - "comment": "" - }, { "term": "Reject Jobs", "translation": "", @@ -11571,14 +11004,14 @@ "comment": "" }, { - "term": "Remove gaps and border when windows are maximized", + "term": "Remove Widget Padding", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Remove Widget Padding", + "term": "Remove gaps and border when windows are maximized", "translation": "", "context": "", "reference": "", @@ -11626,13 +11059,6 @@ "reference": "", "comment": "" }, - { - "term": "Request Pairing", - "translation": "", - "context": "KDE Connect request pairing button", - "reference": "", - "comment": "" - }, { "term": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "translation": "", @@ -11787,13 +11213,6 @@ "reference": "", "comment": "" }, - { - "term": "RGB", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Right", "translation": "", @@ -11843,20 +11262,6 @@ "reference": "", "comment": "" }, - { - "term": "Ring", - "translation": "", - "context": "KDE Connect ring tooltip", - "reference": "", - "comment": "" - }, - { - "term": "Ringing", - "translation": "", - "context": "KDE Connect ring action | Phone Connect ring action", - "reference": "", - "comment": "" - }, { "term": "Ripple Effects", "translation": "", @@ -11913,20 +11318,6 @@ "reference": "", "comment": "" }, - { - "term": "Run a program (e.g., firefox, kitty)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Run a shell command (e.g., notify-send)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Run Again", "translation": "", @@ -11962,6 +11353,20 @@ "reference": "", "comment": "" }, + { + "term": "Run a program (e.g., firefox, kitty)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Run a shell command (e.g., notify-send)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Running Apps", "translation": "", @@ -11983,6 +11388,20 @@ "reference": "", "comment": "" }, + { + "term": "SDR Brightness", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "SDR Saturation", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Save", "translation": "", @@ -11990,6 +11409,20 @@ "reference": "", "comment": "" }, + { + "term": "Save Notepad File", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Save QR Code", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Save and switch between display configurations", "translation": "", @@ -12025,13 +11458,6 @@ "reference": "", "comment": "" }, - { - "term": "Save Notepad File", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Save password", "translation": "", @@ -12039,13 +11465,6 @@ "reference": "", "comment": "" }, - { - "term": "Save QR Code", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Saved", "translation": "", @@ -12061,14 +11480,14 @@ "comment": "" }, { - "term": "Saved item deleted", + "term": "Saved Note", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Saved Note", + "term": "Saved item deleted", "translation": "", "context": "", "reference": "", @@ -12088,13 +11507,6 @@ "reference": "", "comment": "" }, - { - "term": "Scale all font sizes throughout the shell", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Scale DankBar font sizes independently", "translation": "", @@ -12109,6 +11521,13 @@ "reference": "", "comment": "" }, + { + "term": "Scale all font sizes throughout the shell", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Scan", "translation": "", @@ -12172,6 +11591,20 @@ "reference": "", "comment": "" }, + { + "term": "Scroll GitHub", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Scroll Wheel", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Scroll song title", "translation": "", @@ -12186,13 +11619,6 @@ "reference": "", "comment": "" }, - { - "term": "Scroll Wheel", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Scroll wheel behavior on media widget", "translation": "", @@ -12207,20 +11633,6 @@ "reference": "", "comment": "" }, - { - "term": "SDR Brightness", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "SDR Saturation", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Search App Actions", "translation": "", @@ -12229,7 +11641,7 @@ "comment": "" }, { - "term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", + "term": "Search Options", "translation": "", "context": "", "reference": "", @@ -12249,20 +11661,6 @@ "reference": "", "comment": "" }, - { - "term": "Search keyboard shortcuts from your compositor and applications", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Search Options", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Search plugins...", "translation": "", @@ -12305,13 +11703,6 @@ "reference": "", "comment": "" }, - { - "term": "Searching...", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Second Factor (AND)", "translation": "", @@ -12326,13 +11717,6 @@ "reference": "", "comment": "" }, - { - "term": "seconds", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Secured", "translation": "", @@ -12382,6 +11766,69 @@ "reference": "", "comment": "" }, + { + "term": "Select Application", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select Bar", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select Custom Theme", + "translation": "", + "context": "custom theme file browser title", + "reference": "", + "comment": "" + }, + { + "term": "Select Dock Launcher Logo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select Launcher Logo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select Profile Image", + "translation": "", + "context": "profile image file browser title", + "reference": "", + "comment": "" + }, + { + "term": "Select Video or Folder", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select Wallpaper", + "translation": "", + "context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", + "reference": "", + "comment": "" + }, + { + "term": "Select Wallpaper Directory", + "translation": "", + "context": "wallpaper directory file browser title", + "reference": "", + "comment": "" + }, { "term": "Select a color from the palette or use custom sliders", "translation": "", @@ -12417,34 +11864,6 @@ "reference": "", "comment": "" }, - { - "term": "Select Application", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Select at least one provider", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Select Bar", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Select Custom Theme", - "translation": "", - "context": "custom theme file browser title", - "reference": "", - "comment": "" - }, { "term": "Select device", "translation": "", @@ -12459,13 +11878,6 @@ "reference": "", "comment": "" }, - { - "term": "Select Dock Launcher Logo", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Select driver...", "translation": "", @@ -12473,13 +11885,6 @@ "reference": "", "comment": "" }, - { - "term": "Select File to Send", - "translation": "", - "context": "KDE Connect file browser title", - "reference": "", - "comment": "" - }, { "term": "Select font weight for UI text", "translation": "", @@ -12494,13 +11899,6 @@ "reference": "", "comment": "" }, - { - "term": "Select Launcher Logo", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Select monitor to configure wallpaper", "translation": "", @@ -12522,13 +11920,6 @@ "reference": "", "comment": "" }, - { - "term": "Select Profile Image", - "translation": "", - "context": "profile image file browser title", - "reference": "", - "comment": "" - }, { "term": "Select system sound theme", "translation": "", @@ -12550,34 +11941,6 @@ "reference": "", "comment": "" }, - { - "term": "Select Video or Folder", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Select Wallpaper", - "translation": "", - "context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", - "reference": "", - "comment": "" - }, - { - "term": "Select Wallpaper Directory", - "translation": "", - "context": "wallpaper directory file browser title", - "reference": "", - "comment": "" - }, - { - "term": "Select which keybind providers to include", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Select which transitions to include in randomization", "translation": "", @@ -12599,41 +11962,6 @@ "reference": "", "comment": "" }, - { - "term": "Send", - "translation": "", - "context": "KDE Connect SMS send button", - "reference": "", - "comment": "" - }, - { - "term": "Send Clipboard", - "translation": "", - "context": "KDE Connect clipboard tooltip", - "reference": "", - "comment": "" - }, - { - "term": "Send File", - "translation": "", - "context": "KDE Connect send file button", - "reference": "", - "comment": "" - }, - { - "term": "Send SMS", - "translation": "", - "context": "KDE Connect SMS dialog title", - "reference": "", - "comment": "" - }, - { - "term": "Sending", - "translation": "", - "context": "Phone Connect file send", - "reference": "", - "comment": "" - }, { "term": "Separator", "translation": "", @@ -12732,13 +12060,6 @@ "reference": "", "comment": "" }, - { - "term": "Shadow", - "translation": "", - "context": "bar shadow settings card", - "reference": "", - "comment": "" - }, { "term": "Shadow Color", "translation": "", @@ -12746,27 +12067,6 @@ "reference": "", "comment": "" }, - { - "term": "Shadow elevation on bars and panels", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Shadow elevation on modals and dialogs", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Shadow elevation on popouts, OSDs, and dropdowns", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Shadow Intensity", "translation": "", @@ -12788,6 +12088,27 @@ "reference": "", "comment": "" }, + { + "term": "Shadow elevation on bars and panels", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Shadow elevation on modals and dialogs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Shadow elevation on popouts, OSDs, and dropdowns", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Shadows", "translation": "", @@ -12795,13 +12116,6 @@ "reference": "", "comment": "" }, - { - "term": "Share", - "translation": "", - "context": "KDE Connect share dialog title | KDE Connect share tooltip", - "reference": "", - "comment": "" - }, { "term": "Share Gamma Control Settings", "translation": "", @@ -12809,27 +12123,6 @@ "reference": "", "comment": "" }, - { - "term": "Share Text", - "translation": "", - "context": "KDE Connect share button", - "reference": "", - "comment": "" - }, - { - "term": "Share URL", - "translation": "", - "context": "KDE Connect share URL button", - "reference": "", - "comment": "" - }, - { - "term": "Shared", - "translation": "", - "context": "Phone Connect share success", - "reference": "", - "comment": "" - }, { "term": "Shell", "translation": "", @@ -12844,13 +12137,6 @@ "reference": "", "comment": "" }, - { - "term": "Shift+Enter to paste", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close", "translation": "", @@ -12872,6 +12158,13 @@ "reference": "", "comment": "" }, + { + "term": "Shortcut (%1)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Shortcuts", "translation": "", @@ -12900,13 +12193,6 @@ "reference": "", "comment": "" }, - { - "term": "Show all 9 tags instead of only occupied tags (DWL only)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show All Tags", "translation": "", @@ -12914,13 +12200,6 @@ "reference": "", "comment": "" }, - { - "term": "Show an outline ring around the focused workspace indicator", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Badge", "translation": "", @@ -12928,13 +12207,6 @@ "reference": "", "comment": "" }, - { - "term": "Show cava audio visualizer in media widget", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show CPU", "translation": "", @@ -12956,13 +12228,6 @@ "reference": "", "comment": "" }, - { - "term": "Show darkened overlay behind modal dialogs", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Date", "translation": "", @@ -12970,13 +12235,6 @@ "reference": "", "comment": "" }, - { - "term": "Show device", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Disk", "translation": "", @@ -12991,27 +12249,6 @@ "reference": "", "comment": "" }, - { - "term": "Show dock when floating windows don't overlap its area", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Feels Like Temperature", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Footer", "translation": "", @@ -13019,13 +12256,6 @@ "reference": "", "comment": "" }, - { - "term": "Show Forecast", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show GPU Temperature", "translation": "", @@ -13054,27 +12284,6 @@ "reference": "", "comment": "" }, - { - "term": "Show Hourly Forecast", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Humidity", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show in GB", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Launcher Button", "translation": "", @@ -13082,13 +12291,6 @@ "reference": "", "comment": "" }, - { - "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Line Numbers", "translation": "", @@ -13096,13 +12298,6 @@ "reference": "", "comment": "" }, - { - "term": "Show Location", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show Lock", "translation": "", @@ -13152,13 +12347,6 @@ "reference": "", "comment": "" }, - { - "term": "Show mode tabs and keyboard hints at the bottom.", - "translation": "", - "context": "launcher footer description", - "reference": "", - "comment": "" - }, { "term": "Show Network", "translation": "", @@ -13173,6 +12361,209 @@ "reference": "", "comment": "" }, + { + "term": "Show Occupied Workspaces Only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Overflow Badge Count", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Password Field", + "translation": "", + "context": "Enable password field display on the lock screen window", + "reference": "", + "comment": "" + }, + { + "term": "Show Power Actions", + "translation": "", + "context": "Enable power action icon on the lock screen window", + "reference": "", + "comment": "" + }, + { + "term": "Show Power Off", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Profile Image", + "translation": "", + "context": "Enable profile image display on the lock screen window", + "reference": "", + "comment": "" + }, + { + "term": "Show Reboot", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Restart DMS", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Saved Items", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Seconds", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Suspend", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Swap", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show System Date", + "translation": "", + "context": "Enable system date display on the lock screen window", + "reference": "", + "comment": "" + }, + { + "term": "Show System Icons", + "translation": "", + "context": "Enable system status icons on the lock screen window", + "reference": "", + "comment": "" + }, + { + "term": "Show System Time", + "translation": "", + "context": "Enable system time display on the lock screen window", + "reference": "", + "comment": "" + }, + { + "term": "Show Top Processes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Week Number", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Welcome", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Workspace Apps", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show all 9 tags instead of only occupied tags (DWL only)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show an outline ring around the focused workspace indicator", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show cava audio visualizer in media widget", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show darkened overlay behind modal dialogs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show dock when floating windows don't overlap its area", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show in GB", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show mode tabs and keyboard hints at the bottom.", + "translation": "", + "context": "launcher footer description", + "reference": "", + "comment": "" + }, { "term": "Show notification popups only on the currently focused monitor", "translation": "", @@ -13187,20 +12578,6 @@ "reference": "", "comment": "" }, - { - "term": "Show Occupied Workspaces Only", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on all connected displays", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show on Last Display", "translation": "", @@ -13229,6 +12606,13 @@ "reference": "", "comment": "" }, + { + "term": "Show on all connected displays", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show on screens:", "translation": "", @@ -13299,83 +12683,6 @@ "reference": "", "comment": "" }, - { - "term": "Show Overflow Badge Count", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Password Field", - "translation": "", - "context": "Enable password field display on the lock screen window", - "reference": "", - "comment": "" - }, - { - "term": "Show Power Actions", - "translation": "", - "context": "Enable power action icon on the lock screen window", - "reference": "", - "comment": "" - }, - { - "term": "Show Power Off", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Precipitation Probability", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Pressure", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Profile Image", - "translation": "", - "context": "Enable profile image display on the lock screen window", - "reference": "", - "comment": "" - }, - { - "term": "Show Reboot", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Restart DMS", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Saved Items", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Seconds", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show seconds", "translation": "", @@ -13383,62 +12690,6 @@ "reference": "", "comment": "" }, - { - "term": "Show Sunrise/Sunset", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Suspend", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Swap", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show System Date", - "translation": "", - "context": "Enable system date display on the lock screen window", - "reference": "", - "comment": "" - }, - { - "term": "Show System Icons", - "translation": "", - "context": "Enable system status icons on the lock screen window", - "reference": "", - "comment": "" - }, - { - "term": "Show System Time", - "translation": "", - "context": "Enable system time display on the lock screen window", - "reference": "", - "comment": "" - }, - { - "term": "Show Top Processes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Weather Condition", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show weather information in top bar and control center", "translation": "", @@ -13447,21 +12698,7 @@ "comment": "" }, { - "term": "Show Welcome", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Wind Speed", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show Workspace Apps", + "term": "Show week number in the calendar", "translation": "", "context": "", "reference": "", @@ -13607,13 +12844,6 @@ "reference": "", "comment": "" }, - { - "term": "SMS", - "translation": "", - "context": "KDE Connect SMS tooltip", - "reference": "", - "comment": "" - }, { "term": "Snap", "translation": "", @@ -13670,13 +12900,6 @@ "reference": "", "comment": "" }, - { - "term": "source", - "translation": "", - "context": "source code link", - "reference": "", - "comment": "" - }, { "term": "Space between windows", "translation": "", @@ -13747,13 +12970,6 @@ "reference": "", "comment": "" }, - { - "term": "Standard", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Start", "translation": "", @@ -13761,20 +12977,6 @@ "reference": "", "comment": "" }, - { - "term": "Start KDE Connect or Valent", - "translation": "", - "context": "Phone Connect start daemon hint", - "reference": "", - "comment": "" - }, - { - "term": "Start KDE Connect or Valent to use this plugin", - "translation": "", - "context": "Phone Connect daemon hint", - "reference": "", - "comment": "" - }, { "term": "Start typing your notes here...", "translation": "", @@ -13902,7 +13104,7 @@ "comment": "" }, { - "term": "Switch to power profile", + "term": "Sway Website", "translation": "", "context": "", "reference": "", @@ -13915,6 +13117,13 @@ "reference": "", "comment": "" }, + { + "term": "Switch to power profile", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Sync", "translation": "", @@ -13922,6 +13131,27 @@ "reference": "", "comment": "" }, + { + "term": "Sync Mode with Portal", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Sync Popouts & Modals", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Sync Position Across Screens", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Sync completed successfully.", "translation": "", @@ -13943,13 +13173,6 @@ "reference": "", "comment": "" }, - { - "term": "Sync Mode with Portal", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "translation": "", @@ -13957,20 +13180,6 @@ "reference": "", "comment": "" }, - { - "term": "Sync Popouts & Modals", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Sync Position Across Screens", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "System", "translation": "", @@ -14021,14 +13230,42 @@ "comment": "" }, { - "term": "System notification area icons", + "term": "System Sounds", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "System Sounds", + "term": "System Tray", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "System Update", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "System Updater", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "System Updates", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "System notification area icons", "translation": "", "context": "", "reference": "", @@ -14055,20 +13292,6 @@ "reference": "", "comment": "" }, - { - "term": "System Tray", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "System Update", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "System update custom command", "translation": "", @@ -14076,20 +13299,6 @@ "reference": "", "comment": "" }, - { - "term": "System Updater", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "System Updates", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Tab", "translation": "", @@ -14118,13 +13327,6 @@ "reference": "", "comment": "" }, - { - "term": "Terminal Emulator", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "translation": "", @@ -14153,13 +13355,6 @@ "reference": "", "comment": "" }, - { - "term": "Terminal used to open multiplexer sessions", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Terminals - Always use Dark Theme", "translation": "", @@ -14216,6 +13411,13 @@ "reference": "", "comment": "" }, + { + "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "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).", "translation": "", @@ -14230,13 +13432,6 @@ "reference": "", "comment": "" }, - { - "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "The job queue of this printer is empty", "translation": "", @@ -14293,13 +13488,6 @@ "reference": "", "comment": "" }, - { - "term": "this app", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "This bind is overridden by config.kdl", "translation": "", @@ -14573,6 +13761,13 @@ "reference": "", "comment": "" }, + { + "term": "Too many failed attempts - account may be locked", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Tools", "translation": "", @@ -14671,20 +13866,6 @@ "reference": "", "comment": "" }, - { - "term": "Trending GIFs", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Trending Stickers", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Trigger", "translation": "", @@ -14692,13 +13873,6 @@ "reference": "", "comment": "" }, - { - "term": "Trigger Prefix", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Trigger: %1", "translation": "", @@ -14748,13 +13922,6 @@ "reference": "", "comment": "" }, - { - "term": "Type this prefix to search keybinds", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Type to search", "translation": "", @@ -14793,7 +13960,7 @@ { "term": "Unavailable", "translation": "", - "context": "Phone Connect unavailable status", + "context": "", "reference": "", "comment": "" }, @@ -14818,20 +13985,6 @@ "reference": "", "comment": "" }, - { - "term": "Uninstall complete. Greeter has been removed.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Uninstall failed: %1", - "translation": "", - "context": "uninstallation error", - "reference": "", - "comment": "" - }, { "term": "Uninstall Greeter", "translation": "", @@ -14846,6 +13999,20 @@ "reference": "", "comment": "" }, + { + "term": "Uninstall complete. Greeter has been removed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Uninstall failed: %1", + "translation": "", + "context": "uninstallation error", + "reference": "", + "comment": "" + }, { "term": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "translation": "", @@ -14870,7 +14037,7 @@ { "term": "Unknown", "translation": "", - "context": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status", + "context": "battery status | power profile option | unknown author | widget status", "reference": "", "comment": "" }, @@ -14930,6 +14097,13 @@ "reference": "", "comment": "" }, + { + "term": "Unknown Track", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Unload on Close", "translation": "", @@ -14958,27 +14132,6 @@ "reference": "", "comment": "" }, - { - "term": "Unpair", - "translation": "", - "context": "KDE Connect unpair tooltip", - "reference": "", - "comment": "" - }, - { - "term": "Unpair failed", - "translation": "", - "context": "Phone Connect error", - "reference": "", - "comment": "" - }, - { - "term": "Unpin", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Unpin from Dock", "translation": "", @@ -15022,7 +14175,7 @@ "comment": "" }, { - "term": "up", + "term": "Up to date", "translation": "", "context": "", "reference": "", @@ -15042,13 +14195,6 @@ "reference": "", "comment": "" }, - { - "term": "update dms for NM integration.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Update Plugin", "translation": "", @@ -15078,14 +14224,56 @@ "comment": "" }, { - "term": "Usage Tips", + "term": "Use 24-hour time format instead of 12-hour AM/PM", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Use 24-hour time format instead of 12-hour AM/PM", + "term": "Use Custom Command", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use Grid Layout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use IP Location", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use Imperial Units", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use Monospace Font", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use System Theme", "translation": "", "context": "", "reference": "", @@ -15140,13 +14328,6 @@ "reference": "", "comment": "" }, - { - "term": "Use Custom Command", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Use custom command for update your system", "translation": "", @@ -15189,41 +14370,6 @@ "reference": "", "comment": "" }, - { - "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Use Grid Layout", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Use Imperial Units", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Use IP Location", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Use light theme instead of dark theme", "translation": "", @@ -15238,13 +14384,6 @@ "reference": "", "comment": "" }, - { - "term": "Use Monospace Font", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Use smaller notification cards", "translation": "", @@ -15259,13 +14398,6 @@ "reference": "", "comment": "" }, - { - "term": "Use System Theme", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Use the same position and size on all displays", "translation": "", @@ -15273,20 +14405,6 @@ "reference": "", "comment": "" }, - { - "term": "Use trigger prefix to activate", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Used when accent color is set to Custom", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "User", "translation": "", @@ -15301,6 +14419,13 @@ "reference": "", "comment": "" }, + { + "term": "Username...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Uses sunrise/sunset times based on your location.", "translation": "", @@ -15330,7 +14455,84 @@ "comment": "" }, { - "term": "v%1 by %2", + "term": "VPN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN Connections", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN Password", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN configuration updated", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN connections", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN deleted", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN imported: %1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VPN status and quick connect", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VRR", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VRR Fullscreen Only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "VRR On-Demand", "translation": "", "context": "", "reference": "", @@ -15343,13 +14545,6 @@ "reference": "", "comment": "" }, - { - "term": "Verification", - "translation": "", - "context": "Phone Connect pairing verification key label", - "reference": "", - "comment": "" - }, { "term": "Version", "translation": "", @@ -15421,14 +14616,14 @@ "comment": "" }, { - "term": "View Mode", + "term": "Visibility", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Visibility", + "term": "Visual Effects", "translation": "", "context": "", "reference": "", @@ -15448,13 +14643,6 @@ "reference": "", "comment": "" }, - { - "term": "Visual Effects", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Volume", "translation": "", @@ -15484,84 +14672,7 @@ "comment": "" }, { - "term": "VPN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN configuration updated", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN Connections", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN connections", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN deleted", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN imported: %1", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN Password", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VPN status and quick connect", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VRR", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VRR Fullscreen Only", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "VRR On-Demand", + "term": "WPA/WPA2", "translation": "", "context": "", "reference": "", @@ -15582,14 +14693,14 @@ "comment": "" }, { - "term": "Wallpaper fill mode", + "term": "Wallpaper Monitor", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Wallpaper Monitor", + "term": "Wallpaper fill mode", "translation": "", "context": "", "reference": "", @@ -15700,6 +14811,13 @@ "reference": "", "comment": "" }, + { + "term": "Wi-Fi Password", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Wi-Fi and Ethernet connection", "translation": "", @@ -15715,12 +14833,54 @@ "comment": "" }, { - "term": "Wi-Fi Password", + "term": "WiFi", "translation": "", "context": "", "reference": "", "comment": "" }, + { + "term": "WiFi Device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "WiFi QR code for ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "WiFi disabled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "WiFi enabled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "WiFi is off", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "WiFi off", + "translation": "", + "context": "network status", + "reference": "", + "comment": "" + }, { "term": "Wide (BT2020)", "translation": "", @@ -15728,13 +14888,6 @@ "reference": "", "comment": "" }, - { - "term": "Widget added", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Widget Background Color", "translation": "", @@ -15756,13 +14909,6 @@ "reference": "", "comment": "" }, - { - "term": "Widget removed", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Widget Style", "translation": "", @@ -15784,6 +14930,20 @@ "reference": "", "comment": "" }, + { + "term": "Widget added", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Widget removed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Widgets", "translation": "", @@ -15826,55 +14986,6 @@ "reference": "", "comment": "" }, - { - "term": "WiFi", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "WiFi Device", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "WiFi disabled", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "WiFi enabled", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "WiFi is off", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "WiFi off", - "translation": "", - "context": "network status", - "reference": "", - "comment": "" - }, - { - "term": "WiFi QR code for ", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Wind", "translation": "", @@ -15987,13 +15098,6 @@ "reference": "", "comment": "" }, - { - "term": "Workspace name", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Workspace Names", "translation": "", @@ -16022,6 +15126,13 @@ "reference": "", "comment": "" }, + { + "term": "Workspace name", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Workspaces", "translation": "", @@ -16036,13 +15147,6 @@ "reference": "", "comment": "" }, - { - "term": "WPA/WPA2", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Write:", "translation": "", @@ -16050,13 +15154,6 @@ "reference": "", "comment": "" }, - { - "term": "wtype not available - install wtype for paste support", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "X Axis", "translation": "", @@ -16085,13 +15182,6 @@ "reference": "", "comment": "" }, - { - "term": "yesterday", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "You have unsaved changes. Save before closing this tab?", "translation": "", @@ -16135,28 +15225,350 @@ "comment": "" }, { - "term": "• d - Day (1-31)", + "term": "Your system is up to date!", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "• dd - Day (01-31)", + "term": "actions", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "• ddd - Day name (Mon)", + "term": "attached", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "• dddd - Day name (Monday)", + "term": "brandon", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "by %1", + "translation": "", + "context": "author attribution", + "reference": "", + "comment": "" + }, + { + "term": "days", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "detached", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "dgop not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", + "translation": "", + "context": "", + "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., firefox, kitty --title foo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "e.g., focus-workspace 3, resize-column -10", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "e.g., notify-send 'Hello' && sleep 1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "e.g., scratch, /^tmp_.*/, build", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "events", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "ext", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "featured", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "leave empty for default", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "loginctl not available - lock integration requires DMS socket connection", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "mangowc Discord Server", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "mangowc GitHub", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "matugen not found - install matugen package for dynamic theming", + "translation": "", + "context": "matugen error", + "reference": "", + "comment": "" + }, + { + "term": "minutes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "ms", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "nav", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "niri GitHub", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "niri Matrix Chat", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "niri shortcuts config", + "translation": "", + "context": "greeter keybinds niri description", + "reference": "", + "comment": "" + }, + { + "term": "niri/dms Discord", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "now", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "official", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "on Hyprland", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "on MangoWC", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "on Miracle WM", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "on Niri", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "on Scroll", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "on Sway", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "open", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "or run ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "power-profiles-daemon not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "procs", + "translation": "", + "context": "short for processes", + "reference": "", + "comment": "" + }, + { + "term": "r/niri Subreddit", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "seconds", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "source", + "translation": "", + "context": "source code link", + "reference": "", + "comment": "" + }, + { + "term": "this app", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "up", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "update dms for NM integration.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "v%1 by %2", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "wtype not available - install wtype for paste support", "translation": "", "context": "", "reference": "", @@ -16211,6 +15623,34 @@ "reference": "", "comment": "" }, + { + "term": "• d - Day (1-31)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "• dd - Day (01-31)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "• ddd - Day name (Mon)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "• dddd - Day name (Monday)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "• yy - Year (24)", "translation": "", @@ -16232,6 +15672,13 @@ "reference": "", "comment": "" }, + { + "term": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help", "translation": "",