diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index f297f038..faca72a1 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -442,6 +442,11 @@ Singleton { property bool syncModeWithPortal: true property bool terminalsAlwaysDark: false + property string muxType: "tmux" + property bool muxUseCustomCommand: false + property string muxCustomCommand: "" + property string muxSessionFilter: "" + property bool runDmsMatugenTemplates: true property bool matugenTemplateGtk: true property bool matugenTemplateNiri: true diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index 9a998492..881bc8da 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -260,6 +260,11 @@ var SPEC = { syncModeWithPortal: { def: true }, terminalsAlwaysDark: { def: false, onChange: "regenSystemThemes" }, + muxType: { def: "tmux" }, + muxUseCustomCommand: { def: false }, + muxCustomCommand: { def: "" }, + muxSessionFilter: { def: "" }, + runDmsMatugenTemplates: { def: true }, matugenTemplateGtk: { def: true }, matugenTemplateNiri: { def: true }, diff --git a/quickshell/DMSShell.qml b/quickshell/DMSShell.qml index 3b3f69e0..0ca217bb 100644 --- a/quickshell/DMSShell.qml +++ b/quickshell/DMSShell.qml @@ -7,6 +7,7 @@ import qs.Modals.Clipboard import qs.Modals.Greeter import qs.Modals.Settings import qs.Modals.DankLauncherV2 +import qs.Modals import qs.Modules import qs.Modules.AppDrawer import qs.Modules.DankDash @@ -638,6 +639,10 @@ Item { } } + MuxModal { + id: muxModal + } + ClipboardHistoryModal { id: clipboardHistoryModalPopup diff --git a/quickshell/Modals/Common/InputModal.qml b/quickshell/Modals/Common/InputModal.qml new file mode 100644 index 00000000..c65f3e09 --- /dev/null +++ b/quickshell/Modals/Common/InputModal.qml @@ -0,0 +1,312 @@ +import QtQuick +import qs.Common +import qs.Modals.Common +import qs.Widgets + +DankModal { + id: root + + layerNamespace: "dms:input-modal" + keepPopoutsOpen: true + + property string inputTitle: "" + property string inputMessage: "" + property string inputPlaceholder: "" + property string inputText: "" + property string confirmButtonText: "Confirm" + property string cancelButtonText: "Cancel" + property color confirmButtonColor: Theme.primary + property var onConfirm: function (text) {} + property var onCancel: function () {} + property int selectedButton: -1 + property bool keyboardNavigation: false + + function show(title, message, onConfirmCallback, onCancelCallback) { + inputTitle = title || ""; + inputMessage = message || ""; + inputPlaceholder = ""; + inputText = ""; + confirmButtonText = "Confirm"; + cancelButtonText = "Cancel"; + confirmButtonColor = Theme.primary; + onConfirm = onConfirmCallback || ((text) => {}); + onCancel = onCancelCallback || (() => {}); + selectedButton = -1; + keyboardNavigation = false; + open(); + } + + function showWithOptions(options) { + inputTitle = options.title || ""; + inputMessage = options.message || ""; + inputPlaceholder = options.placeholder || ""; + inputText = options.initialText || ""; + confirmButtonText = options.confirmText || "Confirm"; + cancelButtonText = options.cancelText || "Cancel"; + confirmButtonColor = options.confirmColor || Theme.primary; + onConfirm = options.onConfirm || ((text) => {}); + onCancel = options.onCancel || (() => {}); + selectedButton = -1; + keyboardNavigation = false; + open(); + } + + function confirmAndClose() { + const text = inputText; + close(); + if (onConfirm) { + onConfirm(text); + } + } + + function cancelAndClose() { + close(); + if (onCancel) { + onCancel(); + } + } + + function selectButton() { + if (selectedButton === 0) { + cancelAndClose(); + } else { + confirmAndClose(); + } + } + + shouldBeVisible: false + allowStacking: true + modalWidth: 350 + modalHeight: contentLoader.item ? contentLoader.item.implicitHeight + Theme.spacingM * 2 : 200 + enableShadow: true + shouldHaveFocus: true + onBackgroundClicked: cancelAndClose() + onOpened: { + Qt.callLater(function () { + if (contentLoader.item && contentLoader.item.textInputRef) { + contentLoader.item.textInputRef.forceActiveFocus(); + } + }); + } + + content: Component { + FocusScope { + anchors.fill: parent + implicitHeight: mainColumn.implicitHeight + focus: true + + property alias textInputRef: textInput + + Keys.onPressed: function (event) { + const textFieldFocused = textInput.activeFocus; + + switch (event.key) { + case Qt.Key_Escape: + root.cancelAndClose(); + event.accepted = true; + break; + case Qt.Key_Tab: + if (textFieldFocused) { + root.keyboardNavigation = true; + root.selectedButton = 0; + textInput.focus = false; + } else { + root.keyboardNavigation = true; + if (root.selectedButton === -1) { + root.selectedButton = 0; + } else if (root.selectedButton === 0) { + root.selectedButton = 1; + } else { + root.selectedButton = -1; + textInput.forceActiveFocus(); + } + } + event.accepted = true; + break; + case Qt.Key_Left: + if (!textFieldFocused) { + root.keyboardNavigation = true; + root.selectedButton = 0; + event.accepted = true; + } + break; + case Qt.Key_Right: + if (!textFieldFocused) { + root.keyboardNavigation = true; + root.selectedButton = 1; + event.accepted = true; + } + break; + case Qt.Key_Return: + case Qt.Key_Enter: + if (root.selectedButton !== -1) { + root.selectButton(); + } else { + root.confirmAndClose(); + } + event.accepted = true; + break; + } + } + + Column { + id: mainColumn + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + anchors.leftMargin: Theme.spacingL + anchors.rightMargin: Theme.spacingL + anchors.topMargin: Theme.spacingL + spacing: 0 + + StyledText { + text: root.inputTitle + font.pixelSize: Theme.fontSizeLarge + color: Theme.surfaceText + font.weight: Font.Medium + width: parent.width + horizontalAlignment: Text.AlignHCenter + } + + Item { + width: 1 + height: Theme.spacingL + } + + StyledText { + text: root.inputMessage + font.pixelSize: Theme.fontSizeMedium + color: Theme.surfaceText + width: parent.width + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.WordWrap + visible: root.inputMessage !== "" + } + + Item { + width: 1 + height: root.inputMessage !== "" ? Theme.spacingL : 0 + visible: root.inputMessage !== "" + } + + Rectangle { + width: parent.width + height: 40 + radius: Theme.cornerRadius + color: Theme.surfaceVariantAlpha + border.color: textInput.activeFocus ? Theme.primary : "transparent" + border.width: textInput.activeFocus ? 1 : 0 + + TextInput { + id: textInput + + anchors.fill: parent + anchors.leftMargin: Theme.spacingM + anchors.rightMargin: Theme.spacingM + verticalAlignment: TextInput.AlignVCenter + font.pixelSize: Theme.fontSizeMedium + color: Theme.surfaceText + selectionColor: Theme.primary + selectedTextColor: Theme.primaryText + clip: true + text: root.inputText + onTextChanged: root.inputText = text + + StyledText { + anchors.fill: parent + verticalAlignment: Text.AlignVCenter + font.pixelSize: Theme.fontSizeMedium + color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.4) + text: root.inputPlaceholder + visible: textInput.text === "" && !textInput.activeFocus + } + } + } + + Item { + width: 1 + height: Theme.spacingL * 1.5 + } + + Row { + anchors.horizontalCenter: parent.horizontalCenter + spacing: Theme.spacingM + + Rectangle { + width: 120 + height: 40 + radius: Theme.cornerRadius + color: { + if (root.keyboardNavigation && root.selectedButton === 0) { + return Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.12); + } else if (cancelButton.containsMouse) { + return Theme.surfacePressed; + } else { + return Theme.surfaceVariantAlpha; + } + } + border.color: (root.keyboardNavigation && root.selectedButton === 0) ? Theme.primary : "transparent" + border.width: (root.keyboardNavigation && root.selectedButton === 0) ? 1 : 0 + + StyledText { + text: root.cancelButtonText + font.pixelSize: Theme.fontSizeMedium + color: Theme.surfaceText + font.weight: Font.Medium + anchors.centerIn: parent + } + + MouseArea { + id: cancelButton + + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: root.cancelAndClose() + } + } + + Rectangle { + width: 120 + height: 40 + radius: Theme.cornerRadius + color: { + const baseColor = root.confirmButtonColor; + if (root.keyboardNavigation && root.selectedButton === 1) { + return Qt.rgba(baseColor.r, baseColor.g, baseColor.b, 1); + } else if (confirmButton.containsMouse) { + return Qt.rgba(baseColor.r, baseColor.g, baseColor.b, 0.9); + } else { + return baseColor; + } + } + border.color: (root.keyboardNavigation && root.selectedButton === 1) ? "white" : "transparent" + border.width: (root.keyboardNavigation && root.selectedButton === 1) ? 1 : 0 + + StyledText { + text: root.confirmButtonText + font.pixelSize: Theme.fontSizeMedium + color: Theme.primaryText + font.weight: Font.Medium + anchors.centerIn: parent + } + + MouseArea { + id: confirmButton + + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: root.confirmAndClose() + } + } + } + + Item { + width: 1 + height: Theme.spacingL + } + } + } + } +} diff --git a/quickshell/Modals/MuxModal.qml b/quickshell/Modals/MuxModal.qml new file mode 100644 index 00000000..03d44f9a --- /dev/null +++ b/quickshell/Modals/MuxModal.qml @@ -0,0 +1,621 @@ +pragma ComponentBehavior: Bound + +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Quickshell.Hyprland +import Quickshell.Io +import Quickshell +import qs.Common +import qs.Modals.Common +import qs.Services +import qs.Widgets + +DankModal { + id: muxModal + + layerNamespace: "dms:mux" + + property int selectedIndex: -1 + property string searchText: "" + property var filteredSessions: [] + + function updateFilteredSessions() { + var filtered = [] + var lowerSearch = searchText.trim().toLowerCase() + for (var i = 0; i < MuxService.sessions.length; i++) { + var session = MuxService.sessions[i] + if (lowerSearch.length > 0 && !session.name.toLowerCase().includes(lowerSearch)) + continue + filtered.push(session) + } + filteredSessions = filtered + + if (selectedIndex >= filteredSessions.length) { + selectedIndex = Math.max(0, filteredSessions.length - 1) + } + } + + onSearchTextChanged: updateFilteredSessions() + + Connections { + target: MuxService + function onSessionsChanged() { + updateFilteredSessions() + } + } + + HyprlandFocusGrab { + id: grab + windows: [muxModal.contentWindow] + active: CompositorService.isHyprland && muxModal.shouldHaveFocus + } + + function toggle() { + if (shouldBeVisible) { + hide() + } else { + show() + } + } + + function show() { + open() + selectedIndex = -1 + searchText = "" + MuxService.refreshSessions() + shouldHaveFocus = true + + Qt.callLater(() => { + if (muxPanel && muxPanel.searchField) { + muxPanel.searchField.forceActiveFocus(); + } + }) + } + + function hide() { + close() + selectedIndex = -1 + searchText = "" + } + + function attachToSession(name) { + MuxService.attachToSession(name) + hide() + } + + function renameSession(name) { + inputModal.showWithOptions({ + title: I18n.tr("Rename Session"), + message: I18n.tr("Enter a new name for session \"%1\"").arg(name), + initialText: name, + onConfirm: function (newName) { + MuxService.renameSession(name, newName) + } + }) + } + + function killSession(name) { + confirmModal.showWithOptions({ + title: I18n.tr("Kill Session"), + message: I18n.tr("Are you sure you want to kill session \"%1\"?").arg(name), + confirmText: I18n.tr("Kill"), + confirmColor: Theme.primary, + onConfirm: function () { + MuxService.killSession(name) + } + }) + } + + function createNewSession() { + inputModal.showWithOptions({ + title: I18n.tr("New Session"), + message: I18n.tr("Please write a name for your new %1 session").arg(MuxService.displayName), + onConfirm: function (name) { + MuxService.createSession(name) + hide() + } + }) + } + + function selectNext() { + selectedIndex = Math.min(selectedIndex + 1, filteredSessions.length - 1) + } + + function selectPrevious() { + selectedIndex = Math.max(selectedIndex - 1, -1) + } + + function activateSelected() { + if (selectedIndex === -1) { + createNewSession() + } else if (selectedIndex >= 0 && selectedIndex < filteredSessions.length) { + attachToSession(filteredSessions[selectedIndex].name) + } + } + + visible: false + modalWidth: 600 + modalHeight: 600 + backgroundColor: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency) + cornerRadius: Theme.cornerRadius + borderColor: Theme.outlineMedium + borderWidth: 1 + enableShadow: true + keepContentLoaded: true + + onBackgroundClicked: hide() + + Timer { + interval: 3000 + running: muxModal.shouldBeVisible + repeat: true + onTriggered: MuxService.refreshSessions() + } + + IpcHandler { + function open(): string { + muxModal.show() + return "MUX_OPEN_SUCCESS" + } + + function close(): string { + muxModal.hide() + return "MUX_CLOSE_SUCCESS" + } + + function toggle(): string { + muxModal.toggle() + return "MUX_TOGGLE_SUCCESS" + } + + target: "mux" + } + + // Backwards compatibility + IpcHandler { + function open(): string { + muxModal.show() + return "TMUX_OPEN_SUCCESS" + } + + function close(): string { + muxModal.hide() + return "TMUX_CLOSE_SUCCESS" + } + + function toggle(): string { + muxModal.toggle() + return "TMUX_TOGGLE_SUCCESS" + } + + target: "tmux" + } + + InputModal { + id: inputModal + onShouldBeVisibleChanged: { + if (shouldBeVisible) { + muxModal.shouldHaveFocus = false; + muxModal.contentWindow.visible = false; + return; + } + if (muxModal.shouldBeVisible) { + muxModal.contentWindow.visible = true; + } + Qt.callLater(function () { + if (!muxModal.shouldBeVisible) { + return; + } + muxModal.shouldHaveFocus = true; + muxModal.modalFocusScope.forceActiveFocus(); + if (muxPanel.searchField) { + muxPanel.searchField.forceActiveFocus(); + } + }); + } + } + + ConfirmModal { + id: confirmModal + onShouldBeVisibleChanged: { + if (shouldBeVisible) { + muxModal.shouldHaveFocus = false; + muxModal.contentWindow.visible = false; + return; + } + if (muxModal.shouldBeVisible) { + muxModal.contentWindow.visible = true; + } + Qt.callLater(function () { + if (!muxModal.shouldBeVisible) { + return; + } + muxModal.shouldHaveFocus = true; + muxModal.modalFocusScope.forceActiveFocus(); + if (muxPanel.searchField) { + muxPanel.searchField.forceActiveFocus(); + } + }); + } + } + + directContent: Item { + id: muxPanel + + clip: false + + property alias searchField: searchField + + Keys.onPressed: event => { + if ((event.key === Qt.Key_J && (event.modifiers & Qt.ControlModifier)) || + (event.key === Qt.Key_Down)) { + selectNext() + event.accepted = true + } else if ((event.key === Qt.Key_K && (event.modifiers & Qt.ControlModifier)) || + (event.key === Qt.Key_Up)) { + selectPrevious() + event.accepted = true + } else if (event.key === Qt.Key_N && (event.modifiers & Qt.ControlModifier)) { + createNewSession() + event.accepted = true + } else if (event.key === Qt.Key_R && (event.modifiers & Qt.ControlModifier)) { + if (MuxService.supportsRename && selectedIndex >= 0 && selectedIndex < filteredSessions.length) { + renameSession(filteredSessions[selectedIndex].name) + } + event.accepted = true + } else if (event.key === Qt.Key_D && (event.modifiers & Qt.ControlModifier)) { + if (selectedIndex >= 0 && selectedIndex < filteredSessions.length) { + killSession(filteredSessions[selectedIndex].name) + } + event.accepted = true + } else if (event.key === Qt.Key_Escape) { + hide() + event.accepted = true + } else if (event.key === Qt.Key_Return || event.key === Qt.Key_Enter) { + activateSelected() + event.accepted = true + } + } + + Column { + width: parent.width - Theme.spacingM * 2 + height: parent.height - Theme.spacingM * 2 + x: Theme.spacingM + y: Theme.spacingM + spacing: Theme.spacingS + + // Header + Item { + width: parent.width + height: 40 + + StyledText { + anchors.left: parent.left + anchors.leftMargin: Theme.spacingS + anchors.verticalCenter: parent.verticalCenter + text: I18n.tr("%1 Sessions").arg(MuxService.displayName) + font.pixelSize: Theme.fontSizeLarge + 4 + font.weight: Font.Bold + color: Theme.surfaceText + } + + StyledText { + 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) + font.pixelSize: Theme.fontSizeMedium + color: Theme.surfaceVariantText + } + } + + // Search field + DankTextField { + id: searchField + + width: parent.width + height: 48 + cornerRadius: Theme.cornerRadius + backgroundColor: Theme.surfaceContainerHigh + normalBorderColor: Theme.outlineMedium + focusedBorderColor: Theme.primary + leftIconName: "search" + leftIconSize: Theme.iconSize + leftIconColor: Theme.surfaceVariantText + leftIconFocusedColor: Theme.primary + showClearButton: true + font.pixelSize: Theme.fontSizeMedium + placeholderText: I18n.tr("Search sessions...") + keyForwardTargets: [muxPanel] + + onTextEdited: { + muxModal.searchText = text + muxModal.selectedIndex = 0 + } + } + + // New Session Button + Rectangle { + width: parent.width + height: 56 + radius: Theme.cornerRadius + color: muxModal.selectedIndex === -1 ? Theme.primaryContainer : + (newMouse.containsMouse ? Theme.surfaceContainerHigh : Theme.surfaceContainer) + + RowLayout { + anchors.fill: parent + anchors.leftMargin: Theme.spacingM + anchors.rightMargin: Theme.spacingM + spacing: Theme.spacingM + + Rectangle { + Layout.preferredWidth: 40 + Layout.preferredHeight: 40 + radius: 20 + color: Theme.primaryContainer + + DankIcon { + anchors.centerIn: parent + name: "add" + size: Theme.iconSize + color: Theme.primary + } + } + + Column { + Layout.fillWidth: true + spacing: 2 + + StyledText { + text: I18n.tr("New Session") + font.pixelSize: Theme.fontSizeMedium + font.weight: Font.Medium + color: Theme.surfaceText + } + + StyledText { + text: I18n.tr("Create a new %1 session (n)").arg(MuxService.displayName) + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + } + } + } + + MouseArea { + id: newMouse + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: muxModal.createNewSession() + } + } + + // Sessions List + Rectangle { + width: parent.width + height: parent.height - 88 - 48 - shortcutsBar.height - Theme.spacingS * 3 + radius: Theme.cornerRadius + color: "transparent" + + ScrollView { + anchors.fill: parent + clip: true + + Column { + width: parent.width + spacing: Theme.spacingXS + + Repeater { + model: ScriptModel { + values: muxModal.filteredSessions + } + + delegate: Rectangle { + required property var modelData + required property int index + + width: parent.width + height: 64 + radius: Theme.cornerRadius + color: muxModal.selectedIndex === index ? Theme.primaryContainer : + (sessionMouse.containsMouse ? Theme.surfaceContainerHigh : "transparent") + + MouseArea { + id: sessionMouse + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: muxModal.attachToSession(modelData.name) + } + + RowLayout { + anchors.fill: parent + anchors.leftMargin: Theme.spacingM + anchors.rightMargin: Theme.spacingM + spacing: Theme.spacingM + + // Avatar + Rectangle { + Layout.preferredWidth: 40 + Layout.preferredHeight: 40 + radius: 20 + color: modelData.attached ? Theme.primaryContainer : Theme.surfaceContainerHigh + + StyledText { + anchors.centerIn: parent + text: modelData.name.charAt(0).toUpperCase() + font.pixelSize: Theme.fontSizeLarge + font.weight: Font.Bold + color: modelData.attached ? Theme.primary : Theme.surfaceText + } + } + + // Info + Column { + Layout.fillWidth: true + spacing: 2 + + StyledText { + text: modelData.name + font.pixelSize: Theme.fontSizeMedium + font.weight: Font.Medium + color: Theme.surfaceText + elide: Text.ElideRight + } + + StyledText { + text: { + var parts = [] + if (modelData.windows !== "N/A") + parts.push(I18n.tr("%1 windows").arg(modelData.windows)) + parts.push(modelData.attached ? I18n.tr("attached") : I18n.tr("detached")) + return parts.join(" \u2022 ") + } + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + } + } + + // Rename button (tmux only) + Rectangle { + Layout.preferredWidth: 36 + Layout.preferredHeight: 36 + radius: 18 + visible: MuxService.supportsRename + color: renameMouse.containsMouse ? Theme.surfaceContainerHighest : "transparent" + + DankIcon { + anchors.centerIn: parent + name: "edit" + size: Theme.iconSizeSmall + color: renameMouse.containsMouse ? Theme.primary : Theme.surfaceVariantText + } + + MouseArea { + id: renameMouse + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: muxModal.renameSession(modelData.name) + } + } + + // Delete button + Rectangle { + Layout.preferredWidth: 36 + Layout.preferredHeight: 36 + radius: 18 + color: deleteMouse.containsMouse ? Theme.errorContainer : "transparent" + + DankIcon { + anchors.centerIn: parent + name: "delete" + size: Theme.iconSizeSmall + color: deleteMouse.containsMouse ? Theme.error : Theme.surfaceVariantText + } + + MouseArea { + id: deleteMouse + anchors.fill: parent + hoverEnabled: true + cursorShape: Qt.PointingHandCursor + onClicked: { + muxModal.killSession(modelData.name) + } + } + } + } + } + } + + // Empty state + Item { + width: parent.width + height: muxModal.filteredSessions.length === 0 ? 200 : 0 + visible: muxModal.filteredSessions.length === 0 + + Column { + anchors.centerIn: parent + spacing: Theme.spacingM + + DankIcon { + name: muxModal.searchText.length > 0 ? "search_off" : "terminal" + size: 48 + color: Theme.surfaceVariantText + anchors.horizontalCenter: parent.horizontalCenter + } + + StyledText { + text: muxModal.searchText.length > 0 ? I18n.tr("No sessions found") : I18n.tr("No active %1 sessions").arg(MuxService.displayName) + font.pixelSize: Theme.fontSizeMedium + color: Theme.surfaceVariantText + anchors.horizontalCenter: parent.horizontalCenter + } + + StyledText { + text: muxModal.searchText.length > 0 ? I18n.tr("Try a different search") : I18n.tr("Press 'n' or click 'New Session' to create one") + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + anchors.horizontalCenter: parent.horizontalCenter + } + } + } + } + } + } + + // Shortcuts bar + Row { + id: shortcutsBar + width: parent.width + spacing: Theme.spacingM + bottomPadding: Theme.spacingS + + Repeater { + model: { + var shortcuts = [ + { key: "↑↓", label: I18n.tr("Navigate") }, + { key: "↵", label: I18n.tr("Attach") }, + { key: "^N", label: I18n.tr("New") }, + { key: "^D", label: I18n.tr("Kill") }, + { key: "Esc", label: I18n.tr("Close") } + ] + if (MuxService.supportsRename) + shortcuts.splice(3, 0, { key: "^R", label: I18n.tr("Rename") }) + return shortcuts + } + + delegate: Row { + required property var modelData + spacing: 4 + + Rectangle { + width: keyText.width + Theme.spacingS + height: keyText.height + 4 + radius: 4 + color: Theme.surfaceContainerHighest + anchors.verticalCenter: parent.verticalCenter + + StyledText { + id: keyText + anchors.centerIn: parent + text: modelData.key + font.pixelSize: Theme.fontSizeSmall - 1 + font.weight: Font.Medium + color: Theme.surfaceVariantText + } + } + + StyledText { + text: modelData.label + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + anchors.verticalCenter: parent.verticalCenter + } + } + } + } + } + } +} diff --git a/quickshell/Modals/Settings/SettingsContent.qml b/quickshell/Modals/Settings/SettingsContent.qml index 107e0534..e43fa4ff 100644 --- a/quickshell/Modals/Settings/SettingsContent.qml +++ b/quickshell/Modals/Settings/SettingsContent.qml @@ -473,5 +473,20 @@ FocusScope { Qt.callLater(() => item.forceActiveFocus()); } } + + Loader { + id: muxLoader + anchors.fill: parent + active: root.currentIndex === 30 + visible: active + focus: active + + sourceComponent: MuxTab {} + + onActiveChanged: { + if (active && item) + Qt.callLater(() => item.forceActiveFocus()); + } + } } } diff --git a/quickshell/Modals/Settings/SettingsSidebar.qml b/quickshell/Modals/Settings/SettingsSidebar.qml index 1b93b531..da230a13 100644 --- a/quickshell/Modals/Settings/SettingsSidebar.qml +++ b/quickshell/Modals/Settings/SettingsSidebar.qml @@ -260,6 +260,12 @@ Rectangle { "tabIndex": 8, "cupsOnly": true }, + { + "id": "multiplexers", + "text": I18n.tr("Multiplexers"), + "icon": "terminal", + "tabIndex": 30 + }, { "id": "window_rules", "text": I18n.tr("Window Rules"), diff --git a/quickshell/Modules/Settings/MuxTab.qml b/quickshell/Modules/Settings/MuxTab.qml new file mode 100644 index 00000000..07fc0bcc --- /dev/null +++ b/quickshell/Modules/Settings/MuxTab.qml @@ -0,0 +1,113 @@ +import QtQuick +import qs.Common +import qs.Services +import qs.Widgets +import qs.Modules.Settings.Widgets + +Item { + id: root + + readonly property var muxTypeOptions: [ + "tmux", + "zellij" + ] + +DankFlickable { + anchors.fill: parent + clip: true + contentHeight: mainColumn.height + Theme.spacingXL + contentWidth: width + + Column { + id: mainColumn + topPadding: 4 + width: Math.min(550, parent.width - Theme.spacingL * 2) + anchors.horizontalCenter: parent.horizontalCenter + spacing: Theme.spacingXL + + SettingsCard { + tab: "mux" + tags: ["mux", "multiplexer", "tmux", "zellij", "type"] + title: I18n.tr("Multiplexer") + iconName: "terminal" + + SettingsDropdownRow { + tab: "mux" + tags: ["mux", "multiplexer", "tmux", "zellij", "type", "backend"] + settingKey: "muxType" + text: I18n.tr("Multiplexer Type") + description: I18n.tr("Terminal multiplexer backend to use") + options: root.muxTypeOptions + currentValue: SettingsData.muxType + onValueChanged: value => SettingsData.set("muxType", value) + } + } + + SettingsCard { + tab: "mux" + tags: ["mux", "terminal", "custom", "command", "script"] + title: I18n.tr("Terminal") + iconName: "desktop_windows" + + SettingsToggleRow { + tab: "mux" + tags: ["mux", "custom", "command", "override"] + settingKey: "muxUseCustomCommand" + text: I18n.tr("Use Custom Command") + description: I18n.tr("Override terminal with a custom command or script") + checked: SettingsData.muxUseCustomCommand + onToggled: checked => SettingsData.set("muxUseCustomCommand", checked) + } + + Column { + width: parent?.width ?? 0 + spacing: Theme.spacingS + visible: SettingsData.muxUseCustomCommand + + StyledText { + width: parent.width + text: I18n.tr("The custom command used when attaching to sessions (receives the session name as the first argument)") + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + wrapMode: Text.WordWrap + } + + DankTextField { + width: parent.width + text: SettingsData.muxCustomCommand + placeholderText: I18n.tr("Enter command or script path") + onTextEdited: SettingsData.set("muxCustomCommand", text) + } + } + + } + + SettingsCard { + tab: "mux" + tags: ["mux", "session", "filter", "exclude", "hide"] + title: I18n.tr("Session Filter") + iconName: "filter_list" + + Column { + width: parent?.width ?? 0 + spacing: Theme.spacingS + + StyledText { + width: parent.width + text: I18n.tr("Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).") + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + wrapMode: Text.WordWrap + } + + DankTextField { + width: parent.width + text: SettingsData.muxSessionFilter + placeholderText: I18n.tr("e.g., scratch, /^tmp_.*/, build") + onTextEdited: SettingsData.set("muxSessionFilter", text) + } + } + } + } + } +} diff --git a/quickshell/Services/MuxService.qml b/quickshell/Services/MuxService.qml new file mode 100644 index 00000000..c2f941cc --- /dev/null +++ b/quickshell/Services/MuxService.qml @@ -0,0 +1,230 @@ +pragma Singleton +pragma ComponentBehavior: Bound + +import QtQuick +import Quickshell +import Quickshell.Io +import qs.Common + +Singleton { + id: root + + property var sessions: [] + property bool loading: false + + property bool tmuxAvailable: false + property bool zellijAvailable: false + readonly property bool currentMuxAvailable: muxType === "zellij" ? zellijAvailable : tmuxAvailable + + readonly property string muxType: SettingsData.muxType + readonly property string displayName: muxType === "zellij" ? "Zellij" : "Tmux" + + readonly property var terminalFlags: ({ + "ghostty": ["-e"], + "kitty": ["-e"], + "alacritty": ["-e"], + "foot": [], + "wezterm": ["start", "--"], + "gnome-terminal": ["--"], + "xterm": ["-e"], + "konsole": ["-e"], + "st": ["-e"], + "terminator": ["-e"], + "xfce4-terminal": ["-e"] + }) + + function getTerminalFlag(terminal) { + return terminalFlags[terminal] ?? ["-e"] + } + + readonly property string terminal: Quickshell.env("TERMINAL") || "ghostty" + + function _terminalPrefix() { + return [terminal].concat(getTerminalFlag(terminal)) + } + + Process { + id: tmuxCheckProcess + command: ["which", "tmux"] + running: false + onExited: (code) => { root.tmuxAvailable = (code === 0) } + } + + Process { + id: zellijCheckProcess + command: ["which", "zellij"] + running: false + onExited: (code) => { root.zellijAvailable = (code === 0) } + } + + function checkAvailability() { + tmuxCheckProcess.running = true + zellijCheckProcess.running = true + } + + Component.onCompleted: checkAvailability() + + Process { + id: listProcess + running: false + + stdout: StdioCollector { + onStreamFinished: { + try { + if (root.muxType === "zellij") + root._parseZellijSessions(text) + else + root._parseTmuxSessions(text) + } catch (e) { + console.error("[MuxService] Error parsing sessions:", e) + root.sessions = [] + } + root.loading = false + } + } + + stderr: SplitParser { + onRead: (line) => { + if (line.trim()) + console.error("[MuxService] stderr:", line) + } + } + + onExited: (code) => { + if (code !== 0 && code !== 1) { + console.warn("[MuxService] Process exited with code:", code) + root.sessions = [] + } + root.loading = false + } + } + + function refreshSessions() { + if (!root.currentMuxAvailable) { + root.sessions = [] + return + } + + root.loading = true + + if (listProcess.running) + listProcess.running = false + + if (root.muxType === "zellij") + listProcess.command = ["zellij", "list-sessions", "--no-formatting"] + else + listProcess.command = ["tmux", "list-sessions", "-F", "#{session_name}|#{session_windows}|#{session_attached}"] + + Qt.callLater(function () { + listProcess.running = true + }) + } + + function _isSessionExcluded(name) { + var filter = SettingsData.muxSessionFilter.trim() + if (filter.length === 0) + return false + var parts = filter.split(",") + for (var i = 0; i < parts.length; i++) { + var pattern = parts[i].trim() + if (pattern.length === 0) + continue + if (pattern.startsWith("/") && pattern.endsWith("/") && pattern.length > 2) { + try { + var re = new RegExp(pattern.slice(1, -1)) + if (re.test(name)) + return true + } catch (e) {} + } else { + if (name.toLowerCase() === pattern.toLowerCase()) + return true + } + } + return false + } + + function _parseTmuxSessions(output) { + var sessionList = [] + var lines = output.trim().split('\n') + + for (var i = 0; i < lines.length; i++) { + var line = lines[i].trim() + if (line.length === 0) + continue + + var parts = line.split('|') + if (parts.length >= 3 && !_isSessionExcluded(parts[0])) { + sessionList.push({ + name: parts[0], + windows: parts[1], + attached: parts[2] === "1" + }) + } + } + + root.sessions = sessionList + } + + function _parseZellijSessions(output) { + var sessionList = [] + var lines = output.trim().split('\n') + + for (var i = 0; i < lines.length; i++) { + var line = lines[i].trim() + if (line.length === 0) + continue + + var exited = line.includes("(EXITED") + var bracketIdx = line.indexOf(" [") + var name = (bracketIdx > 0 ? line.substring(0, bracketIdx) : line).trim() + + if (!_isSessionExcluded(name)) { + sessionList.push({ + name: name, + windows: "N/A", + attached: !exited + }) + } + } + + root.sessions = sessionList + } + + function attachToSession(name) { + if (SettingsData.muxUseCustomCommand && SettingsData.muxCustomCommand) { + Quickshell.execDetached([SettingsData.muxCustomCommand, name]) + } else if (root.muxType === "zellij") { + Quickshell.execDetached(_terminalPrefix().concat(["zellij", "attach", name])) + } else { + Quickshell.execDetached(_terminalPrefix().concat(["tmux", "attach", "-t", name])) + } + } + + function createSession(name) { + if (SettingsData.muxUseCustomCommand && SettingsData.muxCustomCommand) { + Quickshell.execDetached([SettingsData.muxCustomCommand, name]) + } else if (root.muxType === "zellij") { + Quickshell.execDetached(_terminalPrefix().concat(["zellij", "-s", name])) + } else { + Quickshell.execDetached(_terminalPrefix().concat(["tmux", "new-session", "-s", name])) + } + } + + readonly property bool supportsRename: muxType !== "zellij" + + function renameSession(oldName, newName) { + if (root.muxType === "zellij") + return + Quickshell.execDetached(["tmux", "rename-session", "-t", oldName, newName]) + Qt.callLater(refreshSessions) + } + + function killSession(name) { + if (root.muxType === "zellij") { + Quickshell.execDetached(["zellij", "kill-session", name]) + } else { + Quickshell.execDetached(["tmux", "kill-session", "-t", name]) + } + Qt.callLater(refreshSessions) + } +} diff --git a/quickshell/Widgets/DankTextField.qml b/quickshell/Widgets/DankTextField.qml index a8a78a97..7aa677f9 100644 --- a/quickshell/Widgets/DankTextField.qml +++ b/quickshell/Widgets/DankTextField.qml @@ -161,6 +161,13 @@ StyledRect { if (root.keyForwardTargets[i]) root.keyForwardTargets[i].Keys.pressed(event); } + return; + } + if ((event.modifiers & (Qt.ControlModifier | Qt.AltModifier | Qt.MetaModifier)) && root.keyForwardTargets.length > 0) { + for (var i = 0; i < root.keyForwardTargets.length; i++) { + if (root.keyForwardTargets[i]) + root.keyForwardTargets[i].Keys.pressed(event); + } } } diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index f70830b2..60724464 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -8,7 +8,19 @@ { "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:347", + "reference": "Modules/Settings/KeybindsTab.qml:327", + "comment": "" + }, + { + "term": "%1 Sessions", + "context": "%1 Sessions", + "reference": "Modals/MuxModal.qml:321", + "comment": "" + }, + { + "term": "%1 active, %2 filtered", + "context": "%1 active, %2 filtered", + "reference": "Modals/MuxModal.qml:331", "comment": "" }, { @@ -17,6 +29,24 @@ "reference": "Modules/Settings/NetworkTab.qml:343", "comment": "" }, + { + "term": "%1 adapter, none connected", + "context": "%1 adapter, none connected", + "reference": "Modules/Settings/NetworkTab.qml:344", + "comment": "" + }, + { + "term": "%1 adapters, none connected", + "context": "%1 adapters, none connected", + "reference": "Modules/Settings/NetworkTab.qml:345", + "comment": "" + }, + { + "term": "%1 Animation Speed", + "context": "%1 Animation Speed", + "reference": "Modules/Settings/TypographyMotionTab.qml:300, Modules/Settings/TypographyMotionTab.qml:384", + "comment": "" + }, { "term": "%1 characters", "context": "%1 characters", @@ -32,7 +62,7 @@ { "term": "%1 connected", "context": "%1 connected", - "reference": "Modules/Settings/NetworkTab.qml:344", + "reference": "Modules/Settings/NetworkTab.qml:346", "comment": "" }, { @@ -41,6 +71,12 @@ "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", @@ -53,10 +89,28 @@ "reference": "Modules/Settings/DisplayConfigTab.qml:465", "comment": "" }, + { + "term": "%1 display", + "context": "%1 display", + "reference": "Modules/Settings/DankBarTab.qml:315", + "comment": "" + }, { "term": "%1 display(s)", "context": "%1 display(s)", - "reference": "Modules/Settings/DankBarTab.qml:275", + "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": "" }, { @@ -77,12 +131,24 @@ "reference": "Services/KeybindsService.qml:265", "comment": "" }, + { + "term": "%1 issue found", + "context": "greeter doctor page error count", + "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)", @@ -101,6 +167,12 @@ "reference": "Modules/Settings/PrinterTab.qml:551, Modules/Settings/PrinterTab.qml:1313", "comment": "" }, + { + "term": "%1 Sessions", + "context": "%1 Sessions", + "reference": "Modals/MuxModal.qml:322", + "comment": "" + }, { "term": "%1 variants", "context": "%1 variants", @@ -110,19 +182,31 @@ { "term": "%1 widgets", "context": "%1 widgets", - "reference": "Modules/Settings/DankBarTab.qml:296", + "reference": "Modules/Settings/DankBarTab.qml:337", + "comment": "" + }, + { + "term": "%1 windows", + "context": "%1 windows", + "reference": "Modals/MuxModal.qml:493", "comment": "" }, { "term": "%1m ago", "context": "%1m ago", - "reference": "Services/NotificationService.qml:243", + "reference": "Services/NotificationService.qml:269", + "comment": "" + }, + { + "term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", + "context": "lock screen U2F security key mode setting", + "reference": "Modules/Settings/LockScreenTab.qml:242", "comment": "" }, { "term": "(Default)", "context": "default monitor label suffix", - "reference": "Modules/Settings/WallpaperTab.qml:847, Modules/Settings/WallpaperTab.qml:862, Modules/Settings/WallpaperTab.qml:869", + "reference": "Modules/Settings/WallpaperTab.qml:859, Modules/Settings/WallpaperTab.qml:874, Modules/Settings/WallpaperTab.qml:881", "comment": "" }, { @@ -137,16 +221,22 @@ "reference": "Modules/Lock/LockScreenContent.qml:514, Modules/Lock/LockScreenContent.qml:629", "comment": "" }, + { + "term": "/path/to/videos", + "context": "/path/to/videos", + "reference": "Modules/Settings/LockScreenTab.qml:306", + "comment": "" + }, { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:1577", + "reference": "Modules/Settings/ThemeColorsTab.qml:1609", "comment": "" }, { "term": "1 day", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:819, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:837, Modules/Settings/ClipboardTab.qml:103", + "reference": "Modules/Settings/NotificationsTab.qml:839, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:857, Modules/Settings/ClipboardTab.qml:103", "comment": "" }, { @@ -158,25 +248,25 @@ { "term": "1 event", "context": "1 event", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:135", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:142", "comment": "" }, { "term": "1 hour", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", "comment": "" }, { "term": "1 hour 30 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", "comment": "" }, { "term": "1 minute", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:62", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:69", "comment": "" }, { @@ -188,19 +278,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:34", + "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", "comment": "" }, { "term": "10 minutes", "context": "10 minutes", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:74", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:77, Modules/Notifications/Center/NotificationSettings.qml:81", "comment": "" }, { "term": "10 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:50", + "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", "comment": "" }, { @@ -212,43 +302,43 @@ { "term": "12 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "14 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:825, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:843, Modules/Settings/ClipboardTab.qml:115", + "reference": "Modules/Settings/NotificationsTab.qml:845, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:863, Modules/Settings/ClipboardTab.qml:115", "comment": "" }, { "term": "15 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", "comment": "" }, { "term": "15 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:54", + "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", "comment": "" }, { "term": "180°", "context": "180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1794, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1815", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1797, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1818", "comment": "" }, { "term": "2 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", "comment": "" }, { "term": "2 minutes", "context": "2 minutes", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:66", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:69, Modules/Notifications/Center/NotificationSettings.qml:73", "comment": "" }, { @@ -266,25 +356,31 @@ { "term": "20 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", + "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", "comment": "" }, { "term": "24-Hour Format", "context": "24-Hour Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:37", + "reference": "Modules/Settings/TimeWeatherTab.qml:53", "comment": "" }, { "term": "24-hour format", "context": "24-hour format", - "reference": "Modules/Settings/WallpaperTab.qml:1122", + "reference": "Modules/Settings/WallpaperTab.qml:1134", "comment": "" }, { "term": "25 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { @@ -296,19 +392,19 @@ { "term": "270°", "context": "270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1796, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1817", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1799, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1820", "comment": "" }, { "term": "3 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:821, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:839, Modules/Settings/ClipboardTab.qml:107", + "reference": "Modules/Settings/NotificationsTab.qml:841, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:859, Modules/Settings/ClipboardTab.qml:107", "comment": "" }, { "term": "3 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", "comment": "" }, { @@ -320,43 +416,43 @@ { "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:38", + "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", "comment": "" }, { "term": "30 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:827, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:845, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", + "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", "comment": "" }, { "term": "30 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10", "comment": "" }, { "term": "30 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:58", + "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", "comment": "" }, { "term": "35 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "3rd party", "context": "3rd party", - "reference": "Modules/Settings/PluginBrowser.qml:527", + "reference": "Modules/Settings/PluginBrowser.qml:529", "comment": "" }, { "term": "4 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { @@ -368,31 +464,31 @@ { "term": "40 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "45 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "5 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, Modules/Settings/WallpaperTab.qml:1008, Modules/Settings/WallpaperTab.qml:1032, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:70", + "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", "comment": "" }, { "term": "5 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984, 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:42, Modules/Settings/NotificationsTab.qml:157", + "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", "comment": "" }, { "term": "50 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { @@ -404,19 +500,19 @@ { "term": "55 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "6 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "7 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:823, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:841, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", + "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", "comment": "" }, { @@ -428,13 +524,13 @@ { "term": "8 hours", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:984", + "reference": "Modules/Settings/WallpaperTab.qml:996", "comment": "" }, { "term": "8 seconds", "context": "8 seconds", - "reference": "Modules/Settings/NotificationsTab.qml:46", + "reference": "Modules/Settings/NotificationsTab.qml:49, Modules/Notifications/Center/NotificationSettings.qml:53", "comment": "" }, { @@ -446,7 +542,7 @@ { "term": "90°", "context": "90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1792, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1813", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1795, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1816", "comment": "" }, { @@ -461,28 +557,22 @@ "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:675", - "comment": "" - }, { "term": "Aborted", "context": "Aborted", - "reference": "Services/CupsService.qml:754", + "reference": "Services/CupsService.qml:769", "comment": "" }, { "term": "About", "context": "About", - "reference": "Modals/Settings/SettingsSidebar.qml:304, Modules/Settings/AboutTab.qml:576", + "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": "" }, { @@ -500,13 +590,13 @@ { "term": "Accept Jobs", "context": "Accept Jobs", - "reference": "Modules/Settings/PrinterTab.qml:975", + "reference": "Modules/Settings/PrinterTab.qml:1306", "comment": "" }, { "term": "Accepting", "context": "Accepting", - "reference": "Modules/Settings/PrinterTab.qml:837", + "reference": "Modules/Settings/PrinterTab.qml:1168", "comment": "" }, { @@ -530,19 +620,43 @@ { "term": "Action", "context": "Action", - "reference": "Widgets/KeybindItem.qml:941, Widgets/KeybindItem.qml:1136, Modules/Settings/NotificationsTab.qml:566", + "reference": "Widgets/KeybindItem.qml:941, Widgets/KeybindItem.qml:1136, Modules/Settings/NotificationsTab.qml:586", + "comment": "" + }, + { + "term": "Action failed or terminal was closed.", + "context": "Action failed or terminal was closed.", + "reference": "Modules/Settings/GreeterTab.qml:385", "comment": "" }, { "term": "Actions", "context": "Actions", - "reference": "Widgets/DankIconPicker.qml:52", + "reference": "Widgets/DankIconPicker.qml:51", + "comment": "" + }, + { + "term": "actions", + "context": "actions", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:391", "comment": "" }, { "term": "Activate", "context": "Activate", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:403", + "reference": "Modules/Settings/GreeterTab.qml:122, Modules/Settings/GreeterTab.qml:170, Modules/ControlCenter/Details/NetworkDetail.qml:403", + "comment": "" + }, + { + "term": "Activate Greeter", + "context": "greeter action confirmation", + "reference": "Modules/Settings/GreeterTab.qml:168", + "comment": "" + }, + { + "term": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", + "context": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", + "reference": "Modules/Settings/GreeterTab.qml:169", "comment": "" }, { @@ -554,25 +668,25 @@ { "term": "Active", "context": "Active", - "reference": "Modules/Settings/ThemeColorsTab.qml:1366, Modules/Settings/NetworkTab.qml:752, Modules/ControlCenter/Details/AudioInputDetail.qml:254, Modules/ControlCenter/Details/AudioOutputDetail.qml:263", + "reference": "Modules/Settings/NetworkTab.qml:754, Modules/Settings/ThemeColorsTab.qml:1398, Modules/ControlCenter/Details/AudioOutputDetail.qml:263, Modules/ControlCenter/Details/AudioInputDetail.qml:254", "comment": "" }, { "term": "Active Color", "context": "Active Color", - "reference": "Modules/Settings/WidgetsTabSection.qml:2034", + "reference": "Modules/Settings/WidgetsTabSection.qml:2282", "comment": "" }, { "term": "Active Lock Screen Monitor", "context": "Active Lock Screen Monitor", - "reference": "Modules/Settings/LockScreenTab.qml:190", + "reference": "Modules/Settings/LockScreenTab.qml:355", "comment": "" }, { "term": "Active tile background and icon color", "context": "control center tile color setting description", - "reference": "Modules/Settings/ThemeColorsTab.qml:1499", + "reference": "Modules/Settings/ThemeColorsTab.qml:1531", "comment": "" }, { @@ -596,55 +710,19 @@ { "term": "Adapters", "context": "Adapters", - "reference": "Modules/Settings/NetworkTab.qml:366", + "reference": "Modules/Settings/NetworkTab.qml:368", "comment": "" }, { "term": "Add", "context": "Add", - "reference": "Widgets/KeybindItem.qml:1830, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:152", - "comment": "" - }, - { - "term": "Add Bar", - "context": "Add Bar", - "reference": "Modules/Settings/DankBarTab.qml:189", - "comment": "" - }, - { - "term": "Add Desktop Widget", - "context": "Add Desktop Widget", - "reference": "Modules/Settings/DesktopWidgetBrowser.qml:105, Modules/Settings/DesktopWidgetBrowser.qml:221", - "comment": "" - }, - { - "term": "Add Printer", - "context": "Add Printer", - "reference": "Modules/Settings/PrinterTab.qml:216", - "comment": "" - }, - { - "term": "Add Title", - "context": "Add Title", - "reference": "Modals/WindowRuleModal.qml:507", - "comment": "" - }, - { - "term": "Add Widget", - "context": "Add Widget", - "reference": "Modules/Settings/WidgetsTabSection.qml:775, Modules/Settings/WidgetSelectionPopup.qml:93, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", - "comment": "" - }, - { - "term": "Add Widget to %1 Section", - "context": "Add Widget to %1 Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:205", + "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:581", + "reference": "Modules/Settings/DockTab.qml:591", "comment": "" }, { @@ -659,6 +737,48 @@ "reference": "Modules/Settings/DesktopWidgetsTab.qml:84", "comment": "" }, + { + "term": "Add Bar", + "context": "Add Bar", + "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", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:105, Modules/Settings/DesktopWidgetBrowser.qml:221", + "comment": "" + }, + { + "term": "Add Printer", + "context": "Add Printer", + "reference": "Modules/Settings/PrinterTab.qml:267", + "comment": "" + }, + { + "term": "Add Title", + "context": "Add Title", + "reference": "Modals/WindowRuleModal.qml:507", + "comment": "" + }, + { + "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", + "comment": "" + }, + { + "term": "Add Widget to %1 Section", + "context": "Add Widget to %1 Section", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:205", + "comment": "" + }, { "term": "Adjust the number of columns in grid view mode.", "context": "Adjust the number of columns in grid view mode.", @@ -686,31 +806,31 @@ { "term": "All", "context": "notification history filter", - "reference": "Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:684, Services/AppSearchService.qml:699, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/LauncherContent.qml:307, Modals/DankLauncherV2/LauncherContent.qml:581, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:1768, Modules/Settings/WidgetsTabSection.qml:1822, Modules/Settings/KeybindsTab.qml:406, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:87", - "comment": "" - }, - { - "term": "All Monitors", - "context": "All Monitors", - "reference": "Modules/Settings/LockScreenTab.qml:192, Modules/Settings/LockScreenTab.qml:202, Modules/Settings/LockScreenTab.qml:212, Modules/Settings/LockScreenTab.qml:216", + "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", "comment": "" }, { "term": "All checks passed", "context": "greeter doctor page success", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:228", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:230", "comment": "" }, { "term": "All day", "context": "All day", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:401", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:407", "comment": "" }, { "term": "All displays", "context": "All displays", - "reference": "Modules/Plugins/PluginSettings.qml:255, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:274, Modules/Settings/DankBarTab.qml:409, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", + "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", "comment": "" }, { @@ -726,15 +846,15 @@ "comment": "" }, { - "term": "Always Active", - "context": "Always Active", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106", + "term": "Alternative (OR)", + "context": "U2F mode option: key works as standalone unlock method", + "reference": "Modules/Settings/LockScreenTab.qml:244, Modules/Settings/LockScreenTab.qml:245", "comment": "" }, { - "term": "Always Show Percentage", - "context": "Always Show Percentage", - "reference": "Modules/Settings/OSDTab.qml:78", + "term": "Always Active", + "context": "Always Active", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106", "comment": "" }, { @@ -746,7 +866,7 @@ { "term": "Always on icons", "context": "Always on icons", - "reference": "Modules/Settings/WidgetsTabSection.qml:1036", + "reference": "Modules/Settings/WidgetsTabSection.qml:1284", "comment": "" }, { @@ -755,6 +875,12 @@ "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", @@ -764,7 +890,7 @@ { "term": "Always show when there's only one connected display", "context": "Always show when there's only one connected display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:423", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:432", "comment": "" }, { @@ -800,7 +926,7 @@ { "term": "Animation Speed", "context": "Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:197, Modules/Settings/NotificationsTab.qml:304", + "reference": "Modules/Settings/TypographyMotionTab.qml:197, Modules/Settings/NotificationsTab.qml:316", "comment": "" }, { @@ -815,24 +941,30 @@ "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 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 ID Substitutions", + "context": "App ID Substitutions", + "reference": "Modules/Settings/RunningAppsTab.qml:25", + "comment": "" + }, { "term": "App Launcher", "context": "App Launcher", @@ -842,7 +974,7 @@ { "term": "App Names", "context": "lock screen notification mode option | notification rule match field option", - "reference": "Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NotificationsTab.qml:82, Modules/Settings/NotificationsTab.qml:709", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:85, Modules/Settings/NotificationsTab.qml:729", "comment": "" }, { @@ -866,7 +998,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modals/DankLauncherV2/Controller.qml:137, Modules/Settings/ThemeColorsTab.qml:1916, Modules/Dock/DockLauncherButton.qml:25", + "reference": "Modals/DankLauncherV2/Controller.qml:150, Modules/Settings/ThemeColorsTab.qml:2132, Modules/Dock/DockLauncherButton.qml:25", "comment": "" }, { @@ -878,13 +1010,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2496", + "reference": "Modules/Settings/ThemeColorsTab.qml:2801", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2530", + "reference": "Modules/Settings/ThemeColorsTab.qml:2835", "comment": "" }, { @@ -899,6 +1031,12 @@ "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", + "comment": "" + }, { "term": "Apps Dock", "context": "Apps Dock", @@ -908,19 +1046,13 @@ { "term": "Apps Dock Settings", "context": "Apps Dock Settings", - "reference": "Modules/Settings/WidgetsTabSection.qml:1718", + "reference": "Modules/Settings/WidgetsTabSection.qml:1966", "comment": "" }, { "term": "Apps Icon", "context": "Apps Icon", - "reference": "Modules/Settings/DockTab.qml:256, 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", + "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -932,7 +1064,7 @@ { "term": "Apps with notification popups muted. Unmute or delete to remove.", "context": "Apps with notification popups muted. Unmute or delete to remove.", - "reference": "Modules/Settings/NotificationsTab.qml:621", + "reference": "Modules/Settings/NotificationsTab.qml:641", "comment": "" }, { @@ -941,16 +1073,34 @@ "reference": "Modules/ProcessList/SystemView.qml:72", "comment": "" }, + { + "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", + "comment": "" + }, { "term": "Arrange displays and configure resolution, refresh rate, and VRR", "context": "Arrange displays and configure resolution, refresh rate, and VRR", "reference": "Modules/Settings/DisplayConfigTab.qml:373", "comment": "" }, + { + "term": "Attach", + "context": "Attach", + "reference": "Modals/MuxModal.qml:601", + "comment": "" + }, + { + "term": "attached", + "context": "attached", + "reference": "Modals/MuxModal.qml:495", + "comment": "" + }, { "term": "Audio", "context": "Audio", - "reference": "Modals/Settings/SettingsSidebar.qml:245, Modules/Settings/WidgetsTabSection.qml:849", + "reference": "Modals/Settings/SettingsSidebar.qml:245, Modules/Settings/WidgetsTabSection.qml:1097", "comment": "" }, { @@ -986,7 +1136,7 @@ { "term": "Audio Output Devices (", "context": "Audio Output Devices (", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:241", + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:249", "comment": "" }, { @@ -996,15 +1146,15 @@ "comment": "" }, { - "term": "Audio Visualizer", - "context": "Audio Visualizer", - "reference": "Modules/Settings/MediaPlayerTab.qml:43", + "term": "Audio system restarted", + "context": "Audio system restarted", + "reference": "Services/AudioService.qml:263", "comment": "" }, { - "term": "Audio system restarted", - "context": "Audio system restarted", - "reference": "Services/AudioService.qml:262", + "term": "Audio Visualizer", + "context": "Audio Visualizer", + "reference": "Modules/Settings/MediaPlayerTab.qml:43", "comment": "" }, { @@ -1016,37 +1166,37 @@ { "term": "Auth", "context": "Auth", - "reference": "Widgets/VpnProfileDelegate.qml:57, Modules/Settings/NetworkTab.qml:1918", + "reference": "Widgets/VpnProfileDelegate.qml:57, Modules/Settings/NetworkTab.qml:1920", "comment": "" }, { "term": "Auth Type", "context": "Auth Type", - "reference": "Widgets/VpnProfileDelegate.qml:75, Modules/Settings/NetworkTab.qml:1933", + "reference": "Widgets/VpnProfileDelegate.qml:75, Modules/Settings/NetworkTab.qml:1935", "comment": "" }, { "term": "Authenticate", "context": "Authenticate", - "reference": "Modals/PolkitAuthModal.qml:297", + "reference": "Modals/PolkitAuthModal.qml:381", "comment": "" }, { "term": "Authentication", "context": "Authentication", - "reference": "Modals/PolkitAuthModal.qml:50", - "comment": "" - }, - { - "term": "Authentication Required", - "context": "Authentication Required", - "reference": "Modals/PolkitAuthModal.qml:137", + "reference": "Modals/PolkitAuthModal.qml:99", "comment": "" }, { "term": "Authentication failed, please try again", "context": "Authentication failed, please try again", - "reference": "Modals/PolkitAuthModal.qml:241", + "reference": "Modals/PolkitAuthModal.qml:325", + "comment": "" + }, + { + "term": "Authentication Required", + "context": "Authentication Required", + "reference": "Modals/PolkitAuthModal.qml:227", "comment": "" }, { @@ -1070,7 +1220,13 @@ { "term": "Auto", "context": "theme category option", - "reference": "Modules/Settings/ThemeColorsTab.qml:272, Modules/Settings/ThemeColorsTab.qml:272, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:881, Modules/Settings/NetworkTab.qml:885, Modules/Settings/NetworkTab.qml:886, Modules/Settings/NetworkTab.qml:889, Modules/Settings/DisplayConfigTab.qml:150, 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/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", + "comment": "" + }, + { + "term": "Auto (Bar-aware)", + "context": "bar shadow direction source option | shadow direction option", + "reference": "Modules/Settings/DankBarTab.qml:1120, Modules/Settings/DankBarTab.qml:1124, Modules/Settings/DankBarTab.qml:1132, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/ThemeColorsTab.qml:1719", "comment": "" }, { @@ -1082,13 +1238,13 @@ { "term": "Auto Location", "context": "Auto Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:405", + "reference": "Modules/Settings/TimeWeatherTab.qml:448", "comment": "" }, { "term": "Auto Popup Gaps", "context": "Auto Popup Gaps", - "reference": "Modules/Settings/DankBarTab.qml:870", + "reference": "Modules/Settings/DankBarTab.qml:902", "comment": "" }, { @@ -1097,12 +1253,6 @@ "reference": "Modules/Settings/ClipboardTab.qml:347", "comment": "" }, - { - "term": "Auto-Hide Timeout", - "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:2094", - "comment": "" - }, { "term": "Auto-close Niri overview when launching apps.", "context": "Auto-close Niri overview when launching apps.", @@ -1112,13 +1262,13 @@ { "term": "Auto-delete notifications older than this", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:813", + "reference": "Modules/Settings/NotificationsTab.qml:833", "comment": "" }, { "term": "Auto-hide", "context": "Auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:556", + "reference": "Modules/Settings/DankBarTab.qml:594", "comment": "" }, { @@ -1127,6 +1277,12 @@ "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...", @@ -1136,7 +1292,7 @@ { "term": "Autoconnect", "context": "Autoconnect", - "reference": "Widgets/VpnProfileDelegate.qml:80, Modules/Settings/NetworkTab.qml:1493, Modules/Settings/NetworkTab.qml:1937", + "reference": "Widgets/VpnProfileDelegate.qml:271, Modules/Settings/NetworkTab.qml:1495, Modules/Settings/NetworkTab.qml:1978", "comment": "" }, { @@ -1154,25 +1310,25 @@ { "term": "Automatic Color Mode", "context": "Automatic Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:986", + "reference": "Modules/Settings/ThemeColorsTab.qml:1018", "comment": "" }, { "term": "Automatic Control", "context": "Automatic Control", - "reference": "Modules/Settings/ThemeColorsTab.qml:997, Modules/Settings/GammaControlTab.qml:139", + "reference": "Modules/Settings/ThemeColorsTab.qml:1029, Modules/Settings/GammaControlTab.qml:139", "comment": "" }, { "term": "Automatic Cycling", "context": "Automatic Cycling", - "reference": "Modules/Settings/WallpaperTab.qml:895", + "reference": "Modules/Settings/WallpaperTab.qml:907, Modules/Settings/LockScreenTab.qml:327", "comment": "" }, { "term": "Automatically cycle through wallpapers in the same folder", "context": "Automatically cycle through wallpapers in the same folder", - "reference": "Modules/Settings/WallpaperTab.qml:896", + "reference": "Modules/Settings/WallpaperTab.qml:908", "comment": "" }, { @@ -1190,7 +1346,7 @@ { "term": "Automatically determine your location using your IP address", "context": "Automatically determine your location using your IP address", - "reference": "Modules/Settings/TimeWeatherTab.qml:406", + "reference": "Modules/Settings/TimeWeatherTab.qml:449", "comment": "" }, { @@ -1202,25 +1358,31 @@ { "term": "Automatically lock the screen when DMS starts", "context": "Automatically lock the screen when DMS starts", - "reference": "Modules/Settings/LockScreenTab.qml:155", + "reference": "Modules/Settings/LockScreenTab.qml:211", "comment": "" }, { "term": "Automatically lock the screen when the system prepares to suspend", "context": "Automatically lock the screen when the system prepares to suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:93, Modules/Settings/LockScreenTab.qml:136", + "reference": "Modules/Settings/LockScreenTab.qml:192, Modules/Settings/PowerSleepTab.qml:93", "comment": "" }, { "term": "Automation", "context": "Automation", - "reference": "Modules/Settings/ThemeColorsTab.qml:1323", + "reference": "Modules/Settings/ThemeColorsTab.qml:1355", "comment": "" }, { "term": "Available", "context": "Available", - "reference": "Modules/Settings/PrinterTab.qml:151, Modules/ControlCenter/Details/AudioInputDetail.qml:254, Modules/ControlCenter/Details/AudioOutputDetail.qml:263", + "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", "comment": "" }, { @@ -1232,7 +1394,7 @@ { "term": "Available Networks", "context": "Available Networks", - "reference": "Modules/Settings/NetworkTab.qml:1007", + "reference": "Modules/Settings/NetworkTab.qml:1009", "comment": "" }, { @@ -1248,33 +1410,27 @@ "comment": "" }, { - "term": "Available in Detailed and Forecast view modes", - "context": "Available in Detailed and Forecast view modes", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", - "comment": "" - }, - { - "term": "BSSID", - "context": "BSSID", - "reference": "Modules/Settings/NetworkTab.qml:1441", + "term": "Available.", + "context": "Available.", + "reference": "Modules/Settings/GreeterTab.qml:63", "comment": "" }, { "term": "Back", "context": "greeter back button", - "reference": "Modals/Greeter/GreeterModal.qml:285, Modules/DankBar/Widgets/SystemTrayBar.qml:1556", + "reference": "Modals/Greeter/GreeterModal.qml:285, Modules/DankBar/Widgets/SystemTrayBar.qml:1542", "comment": "" }, { "term": "Backend", "context": "Backend", - "reference": "Modules/Settings/AboutTab.qml:634, Modules/Settings/NetworkTab.qml:170", + "reference": "Modules/Settings/NetworkTab.qml:170, Modules/Settings/AboutTab.qml:634", "comment": "" }, { - "term": "Background Opacity", - "context": "Background Opacity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", + "term": "Background", + "context": "Background", + "reference": "Modules/Settings/GreeterTab.qml:650", "comment": "" }, { @@ -1283,6 +1439,12 @@ "reference": "Modals/Greeter/GreeterCompletePage.qml:382", "comment": "" }, + { + "term": "Background Opacity", + "context": "Background Opacity", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63", + "comment": "" + }, { "term": "Backlight device", "context": "Backlight device", @@ -1292,13 +1454,13 @@ { "term": "Balance power and performance", "context": "power profile description", - "reference": "Common/Theme.qml:1259", + "reference": "Common/Theme.qml:1485", "comment": "" }, { "term": "Balanced", "context": "power profile option", - "reference": "Common/Theme.qml:1246", + "reference": "Common/Theme.qml:1472", "comment": "" }, { @@ -1310,31 +1472,37 @@ { "term": "Bar Configurations", "context": "Bar Configurations", - "reference": "Modules/Settings/DankBarTab.qml:173", + "reference": "Modules/Settings/DankBarTab.qml:212", + "comment": "" + }, + { + "term": "Bar Shadows", + "context": "Bar Shadows", + "reference": "Modules/Settings/ThemeColorsTab.qml:1794", "comment": "" }, { "term": "Bar Transparency", "context": "Bar Transparency", - "reference": "Modules/Settings/DankBarTab.qml:1336", + "reference": "Modules/Settings/DankBarTab.qml:1006", + "comment": "" + }, + { + "term": "Base color for shadows (opacity is applied automatically)", + "context": "Base color for shadows (opacity is applied automatically)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1663", "comment": "" }, { "term": "Base duration for animations (drag to use Custom)", "context": "Base duration for animations (drag to use Custom)", - "reference": "Modules/Settings/NotificationsTab.qml:346", + "reference": "Modules/Settings/NotificationsTab.qml:359", "comment": "" }, { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:879, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", - "comment": "" - }, - { - "term": "Battery Charge Limit", - "context": "Battery Charge Limit", - "reference": "Modules/Settings/PowerSleepTab.qml:587", + "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", "comment": "" }, { @@ -1343,6 +1511,12 @@ "reference": "Modules/ControlCenter/Models/WidgetModel.qml:162", "comment": "" }, + { + "term": "Battery Charge Limit", + "context": "Battery Charge Limit", + "reference": "Modules/Settings/PowerSleepTab.qml:587", + "comment": "" + }, { "term": "Battery level and power management", "context": "Battery level and power management", @@ -1358,13 +1532,7 @@ { "term": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "context": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:122", - "comment": "" - }, - { - "term": "Binds Include Missing", - "context": "Binds Include Missing", - "reference": "Modules/Settings/KeybindsTab.qml:328", + "reference": "Modules/Settings/LockScreenTab.qml:178", "comment": "" }, { @@ -1373,10 +1541,22 @@ "reference": "Services/KeybindsService.qml:265", "comment": "" }, + { + "term": "Binds Include Missing", + "context": "Binds Include Missing", + "reference": "Modules/Settings/KeybindsTab.qml:328", + "comment": "" + }, { "term": "Bit Depth", "context": "Bit Depth", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1245", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1248", + "comment": "" + }, + { + "term": "Block notifications", + "context": "Block notifications", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:86", "comment": "" }, { @@ -1391,12 +1571,6 @@ "reference": "Modals/WindowRuleModal.qml:727", "comment": "" }, - { - "term": "Block notifications", - "context": "Block notifications", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:86", - "comment": "" - }, { "term": "Blocked", "context": "Blocked", @@ -1412,13 +1586,7 @@ { "term": "Bluetooth", "context": "bluetooth status", - "reference": "Modules/Settings/WidgetsTabSection.qml:844, Modules/ControlCenter/Models/WidgetModel.qml:110, Modules/ControlCenter/Components/DragDropGrid.qml:313", - "comment": "" - }, - { - "term": "Bluetooth Settings", - "context": "Bluetooth Settings", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:96", + "reference": "Modules/Settings/WidgetsTabSection.qml:1092, Modules/ControlCenter/Models/WidgetModel.qml:110, Modules/ControlCenter/Components/DragDropGrid.qml:313", "comment": "" }, { @@ -1428,57 +1596,63 @@ "comment": "" }, { - "term": "Blur Wallpaper Layer", - "context": "Blur Wallpaper Layer", - "reference": "Modules/Settings/WallpaperTab.qml:1260", + "term": "Bluetooth Settings", + "context": "Bluetooth Settings", + "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:96", "comment": "" }, { "term": "Blur on Overview", "context": "Blur on Overview", - "reference": "Modules/Settings/WallpaperTab.qml:770", + "reference": "Modules/Settings/WallpaperTab.qml:782", + "comment": "" + }, + { + "term": "Blur Wallpaper Layer", + "context": "Blur Wallpaper Layer", + "reference": "Modules/Settings/WallpaperTab.qml:1272", "comment": "" }, { "term": "Blur wallpaper when niri overview is open", "context": "Blur wallpaper when niri overview is open", - "reference": "Modules/Settings/WallpaperTab.qml:771", + "reference": "Modules/Settings/WallpaperTab.qml:783", "comment": "" }, { "term": "Body", "context": "notification rule match field option", - "reference": "Modules/Settings/NotificationsTab.qml:94", + "reference": "Modules/Settings/NotificationsTab.qml:97", "comment": "" }, { "term": "Border", "context": "launcher border option", - "reference": "Modules/Settings/DockTab.qml:574, Modules/Settings/DockTab.qml:580, Modules/Settings/LauncherTab.qml:432, Modules/Settings/DankBarTab.qml:1150", + "reference": "Modules/Settings/DockTab.qml:584, Modules/Settings/DockTab.qml:590, Modules/Settings/DankBarTab.qml:1384, Modules/Settings/LauncherTab.qml:432", "comment": "" }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/DockTab.qml:587, Modules/Settings/WorkspacesTab.qml:358", + "reference": "Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/DockTab.qml:597", "comment": "" }, { "term": "Border Opacity", "context": "Border Opacity", - "reference": "Modules/Settings/DockTab.qml:624", + "reference": "Modules/Settings/DockTab.qml:634", "comment": "" }, { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1678, Modules/Settings/ThemeColorsTab.qml:1781, Modules/Settings/ThemeColorsTab.qml:1884", + "reference": "Modules/Settings/ThemeColorsTab.qml:1893, Modules/Settings/ThemeColorsTab.qml:1996, Modules/Settings/ThemeColorsTab.qml:2099", "comment": "" }, { "term": "Border Thickness", "context": "Border Thickness", - "reference": "Modules/Settings/DockTab.qml:635", + "reference": "Modules/Settings/DockTab.qml:645", "comment": "" }, { @@ -1489,32 +1663,14 @@ }, { "term": "Bottom", - "context": "Bottom", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:247, Modules/Settings/DankBarTab.qml:501", + "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", "comment": "" }, { "term": "Bottom Center", "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66, Modules/Settings/NotificationsTab.qml:224, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:241", - "comment": "" - }, - { - "term": "Bottom Left", - "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/NotificationsTab.qml:218, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:247, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", - "comment": "" - }, - { - "term": "Bottom Right", - "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/NotificationsTab.qml:222, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:244, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", - "comment": "" - }, - { - "term": "Bottom Section", - "context": "Bottom Section", - "reference": "Modules/Settings/WidgetsTab.qml:1006", + "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": "" }, { @@ -1523,10 +1679,40 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:32", "comment": "" }, + { + "term": "Bottom Left", + "context": "screen position option", + "reference": "Modules/Settings/NotificationsTab.qml:221, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:250, Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "comment": "" + }, + { + "term": "Bottom Right", + "context": "screen position option", + "reference": "Modules/Settings/NotificationsTab.qml:225, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:247, Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "comment": "" + }, + { + "term": "Bottom Section", + "context": "Bottom Section", + "reference": "Modules/Settings/WidgetsTab.qml:1050", + "comment": "" + }, + { + "term": "brandon", + "context": "brandon", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:44", + "comment": "" + }, { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/WidgetsTabSection.qml:869, Modules/Settings/DockTab.qml:474, Modules/Settings/LauncherTab.qml:276, Modules/Settings/OSDTab.qml:117", + "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", "comment": "" }, { @@ -1538,19 +1724,13 @@ { "term": "Brightness Value", "context": "Brightness Value", - "reference": "Modules/Settings/WidgetsTabSection.qml:874", - "comment": "" - }, - { - "term": "Brightness control not available", - "context": "Brightness control not available", - "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:147, Modules/ControlCenter/Models/WidgetModel.qml:148", + "reference": "Modules/Settings/WidgetsTabSection.qml:1122", "comment": "" }, { "term": "Browse", "context": "theme category option", - "reference": "Modals/DankLauncherV2/Controller.qml:144, Modals/DankLauncherV2/Controller.qml:1123, Modules/Settings/ThemeColorsTab.qml:272, Modules/Settings/PluginsTab.qml:209", + "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": "" }, { @@ -1559,118 +1739,76 @@ "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:322", "comment": "" }, - { - "term": "Browse Plugins", - "context": "plugin browser header | plugin browser window title", - "reference": "Modules/Settings/PluginBrowser.qml:147, Modules/Settings/PluginBrowser.qml:257, Modules/Settings/DesktopWidgetsTab.qml:101", - "comment": "" - }, - { - "term": "Browse Themes", - "context": "browse themes button | theme browser header | theme browser window title", - "reference": "Modules/Settings/ThemeColorsTab.qml:974, Modules/Settings/ThemeBrowser.qml:146, Modules/Settings/ThemeBrowser.qml:243", - "comment": "" - }, { "term": "Browse or search plugins", "context": "Browse or search plugins", "reference": "Modals/DankLauncherV2/ResultsList.qml:486", "comment": "" }, + { + "term": "Browse Plugins", + "context": "plugin browser header | plugin browser window title", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:101, Modules/Settings/PluginBrowser.qml:147, Modules/Settings/PluginBrowser.qml:257", + "comment": "" + }, + { + "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", + "comment": "" + }, + { + "term": "BSSID", + "context": "BSSID", + "reference": "Modules/Settings/NetworkTab.qml:1443", + "comment": "" + }, { "term": "Button Color", "context": "Button Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1530", + "reference": "Modules/Settings/ThemeColorsTab.qml:1562", "comment": "" }, { - "term": "CPU", - "context": "CPU", - "reference": "Modules/ProcessList/SystemView.qml:76, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:86", + "term": "by %1", + "context": "author attribution", + "reference": "Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/PluginBrowser.qml:539", "comment": "" }, { - "term": "CPU Graph", - "context": "CPU Graph", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:97", + "term": "Calc", + "context": "Calc", + "reference": "Modals/DankLauncherV2/ResultItem.qml:182", "comment": "" }, { - "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:810", - "comment": "" - }, - { - "term": "CUPS Missing Filter Warning", - "context": "CUPS Missing Filter Warning", - "reference": "Services/CupsService.qml:809", - "comment": "" - }, - { - "term": "CUPS Print Server", - "context": "CUPS Print Server", - "reference": "Modules/Settings/PrinterTab.qml:112", - "comment": "" - }, - { - "term": "CUPS not available", - "context": "CUPS not available", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:202", + "term": "Calculator", + "context": "Calculator", + "reference": "Modals/DankLauncherV2/Controller.qml:129", "comment": "" }, { "term": "Camera", "context": "Camera", - "reference": "Modules/Settings/WidgetsTabSection.qml:1117", + "reference": "Modules/Settings/WidgetsTabSection.qml:1365", "comment": "" }, { "term": "Cancel", "context": "Cancel", - "reference": "Modals/WindowRuleModal.qml:1130, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:270, Modals/WifiPasswordModal.qml:691, Widgets/KeybindItem.qml:1814, Modals/DankLauncherV2/LauncherContent.qml:982, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:830, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/DisplayConfigTab.qml:256, Modules/Settings/DisplayConfigTab.qml:301, Modules/Settings/AudioTab.qml:726", + "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", "comment": "" }, { "term": "Cancel all jobs for \"%1\"?", "context": "Cancel all jobs for \"%1\"?", - "reference": "Modules/Settings/PrinterTab.qml:1054", + "reference": "Modules/Settings/PrinterTab.qml:1385", "comment": "" }, { "term": "Canceled", "context": "Canceled", - "reference": "Services/CupsService.qml:752", + "reference": "Services/CupsService.qml:767", "comment": "" }, { @@ -1688,7 +1826,7 @@ { "term": "Capacity", "context": "Capacity", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:175, Modules/DankBar/Popouts/BatteryPopout.qml:306, Modules/DankBar/Popouts/BatteryPopout.qml:464", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:333, Modules/DankBar/Popouts/BatteryPopout.qml:491, Modules/ControlCenter/Details/BatteryDetail.qml:175", "comment": "" }, { @@ -1706,13 +1844,13 @@ { "term": "Caps Lock is on", "context": "Caps Lock is on", - "reference": "Modules/Lock/LockScreenContent.qml:1068", + "reference": "Modules/Lock/LockScreenContent.qml:1097", "comment": "" }, { "term": "Center Section", "context": "Center Section", - "reference": "Modules/Settings/WidgetsTab.qml:948", + "reference": "Modules/Settings/WidgetsTab.qml:986", "comment": "" }, { @@ -1733,28 +1871,40 @@ "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 the locale used by the DMS interface.", + "context": "Change the locale used by the DMS interface.", + "reference": "Modules/Settings/LocaleTab.qml:57", + "comment": "" + }, + { + "term": "Change the locale used for date and time formatting, independent of the interface language.", + "context": "Change the locale used for date and time formatting, independent of the interface language.", + "reference": "Modules/Settings/LocaleTab.qml:76", + "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:1449", - "comment": "" - }, { "term": "Channel", "context": "Channel", - "reference": "Modules/Settings/NetworkTab.qml:1426", + "reference": "Modules/Settings/NetworkTab.qml:1428", "comment": "" }, { @@ -1769,22 +1919,70 @@ "reference": "Modules/Settings/WidgetsTab.qml:247", "comment": "" }, + { + "term": "Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.", + "context": "Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.", + "reference": "Modules/Settings/GreeterTab.qml:451", + "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": "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", - "reference": "Modules/Settings/WallpaperTab.qml:694", + "reference": "Modules/Settings/WallpaperTab.qml:706", "comment": "" }, { "term": "Choose Dock Launcher Logo Color", "context": "Choose Dock Launcher Logo Color", - "reference": "Modules/Settings/DockTab.qml:440", + "reference": "Modules/Settings/DockTab.qml:450", + "comment": "" + }, + { + "term": "Choose how the weather widget is displayed", + "context": "Choose how the weather widget is displayed", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", + "comment": "" + }, + { + "term": "Choose how this bar resolves shadow direction", + "context": "Choose how this bar resolves shadow direction", + "reference": "Modules/Settings/DankBarTab.qml:1118", + "comment": "" + }, + { + "term": "Choose icon", + "context": "Choose icon", + "reference": "Widgets/DankIconPicker.qml:100", "comment": "" }, { @@ -1796,49 +1994,19 @@ { "term": "Choose Light Mode Color", "context": "light mode wallpaper color picker title", - "reference": "Modules/Settings/WallpaperTab.qml:510", - "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": "" - }, - { - "term": "Choose how the weather widget is displayed", - "context": "Choose how the weather widget is displayed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", - "comment": "" - }, - { - "term": "Choose icon", - "context": "Choose icon", - "reference": "Widgets/DankIconPicker.qml:101", + "reference": "Modules/Settings/WallpaperTab.qml:516", "comment": "" }, { "term": "Choose the background color for widgets", "context": "Choose the background color for widgets", - "reference": "Modules/Settings/ThemeColorsTab.qml:1464", + "reference": "Modules/Settings/ThemeColorsTab.qml:1496", "comment": "" }, { "term": "Choose the border accent color", "context": "Choose the border accent color", - "reference": "Modules/Settings/DockTab.qml:588", + "reference": "Modules/Settings/DockTab.qml:598", "comment": "" }, { @@ -1847,10 +2015,16 @@ "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", - "reference": "Modules/Settings/NotificationsTab.qml:210", + "reference": "Modules/Settings/NotificationsTab.qml:213", "comment": "" }, { @@ -1868,7 +2042,7 @@ { "term": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "context": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", - "reference": "Modules/Settings/LockScreenTab.qml:179", + "reference": "Modules/Settings/LockScreenTab.qml:344", "comment": "" }, { @@ -1880,13 +2054,13 @@ { "term": "Cipher", "context": "Cipher", - "reference": "Widgets/VpnProfileDelegate.qml:51, Modules/Settings/NetworkTab.qml:1913", + "reference": "Widgets/VpnProfileDelegate.qml:51, Modules/Settings/NetworkTab.qml:1915", "comment": "" }, { "term": "Circle", "context": "dock indicator style option", - "reference": "Modules/Settings/DockTab.qml:167", + "reference": "Modules/Settings/DockTab.qml:177", "comment": "" }, { @@ -1898,31 +2072,13 @@ { "term": "Clear", "context": "Clear", - "reference": "Modules/Settings/PrinterTab.qml:1055, Modules/Notifications/Center/NotificationHeader.qml:117", + "reference": "Modules/Settings/PrinterTab.qml:1386, Modules/Notifications/Center/NotificationHeader.qml:117", "comment": "" }, { "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:1039, Modules/DankBar/Widgets/ClipboardButton.qml:247", - "comment": "" - }, - { - "term": "Clear All Jobs", - "context": "Clear All Jobs", - "reference": "Modules/Settings/PrinterTab.qml:1053", - "comment": "" - }, - { - "term": "Clear History?", - "context": "Clear History?", - "reference": "Modals/Clipboard/ClipboardContent.qml:38, Modules/DankBar/DankBarContent.qml:604", - "comment": "" - }, - { - "term": "Clear Sky", - "context": "Clear Sky", - "reference": "Services/WeatherService.qml:122, Services/WeatherService.qml:123", + "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": "" }, { @@ -1931,12 +2087,30 @@ "reference": "Modules/Settings/ClipboardTab.qml:426", "comment": "" }, + { + "term": "Clear All Jobs", + "context": "Clear All Jobs", + "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", + "comment": "" + }, + { + "term": "Clear Sky", + "context": "Clear Sky", + "reference": "Services/WeatherService.qml:122, Services/WeatherService.qml:123", + "comment": "" + }, { "term": "Click 'Setup' to create %1 and add include to config.", "context": "Click 'Setup' to create %1 and add include to config.", @@ -1952,7 +2126,7 @@ { "term": "Click 'Setup' to create cursor config and add include to your compositor config.", "context": "Click 'Setup' to create cursor config and add include to your compositor config.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1993", + "reference": "Modules/Settings/ThemeColorsTab.qml:2209", "comment": "" }, { @@ -1961,22 +2135,28 @@ "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", - "reference": "Widgets/VpnDetailContent.qml:184, Modules/Settings/NetworkTab.qml:1676", + "reference": "Widgets/VpnDetailContent.qml:184, Modules/Settings/NetworkTab.qml:1678", + "comment": "" + }, + { + "term": "Click Refresh to check status.", + "context": "greeter status placeholder", + "reference": "Modules/Settings/GreeterTab.qml:473", "comment": "" }, { "term": "Click Through", "context": "Click Through", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:643", - "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", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:679", "comment": "" }, { @@ -1988,7 +2168,7 @@ { "term": "Click to select a custom theme JSON file", "context": "custom theme file hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:539", + "reference": "Modules/Settings/ThemeColorsTab.qml:557", "comment": "" }, { @@ -2006,7 +2186,7 @@ { "term": "Clipboard", "context": "Clipboard", - "reference": "Modals/Settings/SettingsSidebar.qml:251", + "reference": "Modals/Settings/SettingsSidebar.qml:257", "comment": "" }, { @@ -2024,7 +2204,7 @@ { "term": "Clipboard sent", "context": "KDE Connect clipboard action | Phone Connect clipboard action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:116, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:300", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:117, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:300", "comment": "" }, { @@ -2054,7 +2234,7 @@ { "term": "Close", "context": "Close", - "reference": "Modules/SystemUpdatePopout.qml:303, Modals/NetworkWiredInfoModal.qml:129, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:872", + "reference": "Modals/NetworkInfoModal.qml:129, Modals/NetworkWiredInfoModal.qml:129, Modals/MuxModal.qml:604, Modules/SystemUpdatePopout.qml:303, Modules/DankBar/Widgets/RunningApps.qml:873", "comment": "" }, { @@ -2072,13 +2252,25 @@ { "term": "Close Window", "context": "Close Window", - "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141, Modules/Dock/DockContextMenu.qml:537, Modules/DankBar/Widgets/AppsDockContextMenu.qml:447", + "reference": "Modules/Dock/DockContextMenu.qml:537, Modules/DankBar/Widgets/AppsDockContextMenu.qml:447, dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141", "comment": "" }, { "term": "Color", "context": "border color", - "reference": "Modules/Settings/LauncherTab.qml:459, Modules/Settings/DankBarTab.qml:1061, Modules/Settings/DankBarTab.qml:1135, Modules/Settings/DankBarTab.qml:1158, Modules/Settings/DankBarTab.qml:1248, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "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": "" }, { @@ -2090,19 +2282,19 @@ { "term": "Color Management", "context": "Color Management", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1247", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1250", "comment": "" }, { "term": "Color Mode", "context": "Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1419", + "reference": "Modules/Settings/ThemeColorsTab.qml:1451", "comment": "" }, { "term": "Color Override", "context": "Color Override", - "reference": "Modules/Settings/DockTab.qml:357, Modules/Settings/LauncherTab.qml:159", + "reference": "Modules/Settings/DockTab.qml:367, Modules/Settings/LauncherTab.qml:159", "comment": "" }, { @@ -2117,18 +2309,6 @@ "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:247", - "comment": "" - }, - { - "term": "Color for primary action buttons", - "context": "Color for primary action buttons", - "reference": "Modules/Settings/ThemeColorsTab.qml:1531", - "comment": "" - }, { "term": "Color temperature for day time", "context": "Color temperature for day time", @@ -2156,13 +2336,13 @@ { "term": "Color theme from DMS registry", "context": "registry theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:229", + "reference": "Modules/Settings/ThemeColorsTab.qml:237", "comment": "" }, { "term": "Colorful", "context": "widget style option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1450", + "reference": "Modules/Settings/ThemeColorsTab.qml:1482", "comment": "" }, { @@ -2174,7 +2354,7 @@ { "term": "Colorize Active", "context": "Colorize Active", - "reference": "Modules/Settings/WidgetsTabSection.qml:1994", + "reference": "Modules/Settings/WidgetsTabSection.qml:2242", "comment": "" }, { @@ -2186,7 +2366,7 @@ { "term": "Column", "context": "Column", - "reference": "Modules/Settings/DankBarTab.qml:694, Modules/Settings/DankBarTab.qml:731", + "reference": "Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766", "comment": "" }, { @@ -2201,6 +2381,12 @@ "reference": "Modals/WindowRuleModal.qml:619", "comment": "" }, + { + "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", + "comment": "" + }, { "term": "Command", "context": "Command", @@ -2210,13 +2396,13 @@ { "term": "Commands", "context": "Commands", - "reference": "Modals/DankLauncherV2/Controller.qml:158", + "reference": "Modals/DankLauncherV2/Controller.qml:171", "comment": "" }, { "term": "Communication", "context": "Communication", - "reference": "Widgets/DankIconPicker.qml:36", + "reference": "Widgets/DankIconPicker.qml:35", "comment": "" }, { @@ -2228,31 +2414,25 @@ { "term": "Compact", "context": "Compact", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/NotificationsTab.qml:267", + "reference": "Modules/Settings/NotificationsTab.qml:270, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15", "comment": "" }, { "term": "Compact Mode", "context": "Compact Mode", - "reference": "Modules/Settings/WidgetsTabSection.qml:568, Modules/Settings/WidgetsTabSection.qml:1495", + "reference": "Modules/Settings/WidgetsTabSection.qml:565, Modules/Settings/WidgetsTabSection.qml:1743", "comment": "" }, { "term": "Completed", "context": "Completed", - "reference": "Services/CupsService.qml:756", + "reference": "Services/CupsService.qml:771", "comment": "" }, { "term": "Compositor", "context": "Compositor", - "reference": "Modules/Settings/DockTab.qml:270, 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", + "reference": "Modules/Settings/DockTab.qml:280, Modules/Settings/LauncherTab.qml:73", "comment": "" }, { @@ -2262,9 +2442,9 @@ "comment": "" }, { - "term": "Config Format", - "context": "Config Format", - "reference": "Modules/Settings/DisplayConfigTab.qml:413, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1209", + "term": "Compositor Settings", + "context": "Compositor Settings", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:38, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:38", "comment": "" }, { @@ -2273,10 +2453,16 @@ "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", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1292, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1300", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1303", "comment": "" }, { @@ -2303,22 +2489,22 @@ "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", - "reference": "Modules/Settings/PrinterTab.qml:225", + "reference": "Modules/Settings/PrinterTab.qml:276", "comment": "" }, { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "context": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", - "reference": "Modules/Settings/WorkspacesTab.qml:413", + "reference": "Modules/Settings/WorkspacesTab.qml:423", + "comment": "" + }, + { + "term": "Configure Keybinds", + "context": "greeter configure keybinds link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:297", "comment": "" }, { @@ -2330,7 +2516,7 @@ { "term": "Configure which displays show \"%1\"", "context": "Configure which displays show \"%1\"", - "reference": "Modules/Settings/DankBarTab.qml:391", + "reference": "Modules/Settings/DankBarTab.qml:432", "comment": "" }, { @@ -2396,7 +2582,7 @@ { "term": "Connected", "context": "network status", - "reference": "Modules/Settings/AboutTab.qml:718, Modules/Settings/NetworkTab.qml:446, Modules/Settings/NetworkTab.qml:1199, Modules/Settings/NetworkTab.qml:1556, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:609, 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", + "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", "comment": "" }, { @@ -2414,7 +2600,7 @@ { "term": "Connecting to Device", "context": "Connecting to Device", - "reference": "Services/CupsService.qml:801", + "reference": "Services/CupsService.qml:816", "comment": "" }, { @@ -2423,10 +2609,16 @@ "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:297", "comment": "" }, + { + "term": "Connection failed", + "context": "Status message when test connection to printer fails", + "reference": "Modules/Settings/PrinterTab.qml:639", + "comment": "" + }, { "term": "Contains", "context": "notification rule match type option", - "reference": "Modules/Settings/NotificationsTab.qml:101", + "reference": "Modules/Settings/NotificationsTab.qml:104", "comment": "" }, { @@ -2438,13 +2630,19 @@ { "term": "Content copied", "context": "Content copied", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:262, dms-plugins/DankGifSearch/DankGifSearch.qml:209", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:209, dms-plugins/DankStickerSearch/DankStickerSearch.qml:262", "comment": "" }, { "term": "Contrast", "context": "Contrast", - "reference": "Modules/Settings/DockTab.qml:486, Modules/Settings/LauncherTab.qml:288", + "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": "" }, { @@ -2456,13 +2654,7 @@ { "term": "Control Center Tile Color", "context": "Control Center Tile Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1498", - "comment": "" - }, - { - "term": "Control animation duration for notification popups and history", - "context": "Control animation duration for notification popups and history", - "reference": "Modules/Settings/NotificationsTab.qml:312", + "reference": "Modules/Settings/ThemeColorsTab.qml:1530", "comment": "" }, { @@ -2474,7 +2666,7 @@ { "term": "Control what notification information is shown on the lock screen", "context": "lock screen notification privacy setting", - "reference": "Modules/Settings/LockScreenTab.qml:91, Modules/Settings/NotificationsTab.qml:708", + "reference": "Modules/Settings/LockScreenTab.qml:147, Modules/Settings/NotificationsTab.qml:728", "comment": "" }, { @@ -2486,13 +2678,37 @@ { "term": "Control workspaces and columns by scrolling on the bar", "context": "Control workspaces and columns by scrolling on the bar", - "reference": "Modules/Settings/DankBarTab.qml:685", + "reference": "Modules/Settings/DankBarTab.qml:720", "comment": "" }, { "term": "Controls opacity of all popouts, modals, and their content layers", "context": "Controls opacity of all popouts, modals, and their content layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:1563", + "reference": "Modules/Settings/ThemeColorsTab.qml:1595", + "comment": "" + }, + { + "term": "Controls shadow cast direction for elevation layers", + "context": "Controls shadow cast direction for elevation layers", + "reference": "Modules/Settings/ThemeColorsTab.qml:1701", + "comment": "" + }, + { + "term": "Controls the base blur radius and offset of shadows", + "context": "Controls the base blur radius and offset of shadows", + "reference": "Modules/Settings/ThemeColorsTab.qml:1633", + "comment": "" + }, + { + "term": "Controls the transparency of the shadow", + "context": "Controls the transparency of the shadow", + "reference": "Modules/Settings/ThemeColorsTab.qml:1648", + "comment": "" + }, + { + "term": "Convenience options for the login screen. Sync to apply.", + "context": "Convenience options for the login screen. Sync to apply.", + "reference": "Modules/Settings/GreeterTab.qml:724", "comment": "" }, { @@ -2504,31 +2720,31 @@ { "term": "Copied GIF", "context": "Copied GIF", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:283, dms-plugins/DankGifSearch/DankGifSearch.qml:230", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:230, dms-plugins/DankStickerSearch/DankStickerSearch.qml:283", "comment": "" }, { "term": "Copied MP4", "context": "Copied MP4", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:293, dms-plugins/DankGifSearch/DankGifSearch.qml:240", - "comment": "" - }, - { - "term": "Copied WebP", - "context": "Copied WebP", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:273, dms-plugins/DankGifSearch/DankGifSearch.qml:220", + "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, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:315, Modals/Settings/SettingsModal.qml:332, Modules/Notepad/NotepadTextEditor.qml:250, Modules/Settings/DesktopWidgetInstanceCard.qml:426", + "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", "comment": "" }, { "term": "Copied!", "context": "Copied!", - "reference": "Modules/Toast.qml:17", + "reference": "Modules/Toast.qml:16", "comment": "" }, { @@ -2540,7 +2756,7 @@ { "term": "Copy Content", "context": "Copy Content", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:259, dms-plugins/DankGifSearch/DankGifSearch.qml:206", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:206, dms-plugins/DankStickerSearch/DankStickerSearch.qml:259", "comment": "" }, { @@ -2561,6 +2777,12 @@ "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", @@ -2573,40 +2795,76 @@ "reference": "Modules/Notepad/NotepadTextEditor.qml:679", "comment": "" }, - { - "term": "Copy path", - "context": "Copy path", - "reference": "Modals/DankLauncherV2/Controller.qml:1002", - "comment": "" - }, { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modals/WindowRuleModal.qml:795, Modules/Settings/ThemeColorsTab.qml:1576", + "reference": "Modals/WindowRuleModal.qml:795, Modules/Settings/ThemeColorsTab.qml:1608", "comment": "" }, { "term": "Corner Radius Override", "context": "Corner Radius Override", - "reference": "Modules/Settings/DankBarTab.qml:982", + "reference": "Modules/Settings/DankBarTab.qml:1344", "comment": "" }, { "term": "Corners & Background", "context": "Corners & Background", - "reference": "Modules/Settings/DankBarTab.qml:920", + "reference": "Modules/Settings/DankBarTab.qml:1282", "comment": "" }, { "term": "Count Only", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NotificationsTab.qml:709", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:729", "comment": "" }, { "term": "Cover Open", "context": "Cover Open", - "reference": "Services/CupsService.qml:790", + "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": "" }, { @@ -2615,6 +2873,12 @@ "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", @@ -2633,28 +2897,70 @@ "reference": "Modals/WindowRuleModal.qml:24", "comment": "" }, + { + "term": "Create a new %1 session (n)", + "context": "Create a new %1 session (n)", + "reference": "Modals/MuxModal.qml:402", + "comment": "" + }, { "term": "Create rule for:", "context": "Create rule for:", "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:418", + "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...", - "reference": "Modules/Settings/PrinterTab.qml:489", + "reference": "Modules/Settings/PrinterTab.qml:820", "comment": "" }, { "term": "Critical Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:151, Modules/Settings/NotificationsTab.qml:765, Modules/Settings/NotificationsTab.qml:872, Modules/Notifications/Center/NotificationSettings.qml:201, Modules/Notifications/Center/NotificationSettings.qml:408", + "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", "comment": "" }, { @@ -2669,10 +2975,16 @@ "reference": "Modules/Plugins/ListSettingWithInput.qml:162", "comment": "" }, + { + "term": "Current Locale", + "context": "Current Locale", + "reference": "Modules/Settings/LocaleTab.qml:56", + "comment": "" + }, { "term": "Current Monitor", "context": "Running apps filter: only show apps from the same monitor", - "reference": "Modules/Settings/WidgetsTabSection.qml:1651", + "reference": "Modules/Settings/WidgetsTabSection.qml:1899", "comment": "" }, { @@ -2696,19 +3008,7 @@ { "term": "Current Theme: %1", "context": "current theme label", - "reference": "Modules/Settings/ThemeColorsTab.qml:213, Modules/Settings/ThemeColorsTab.qml:215, Modules/Settings/ThemeColorsTab.qml:216", - "comment": "" - }, - { - "term": "Current Weather", - "context": "Current Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:580", - "comment": "" - }, - { - "term": "Current Workspace", - "context": "Running apps filter: only show apps from the active workspace", - "reference": "Modules/Settings/WidgetsTabSection.qml:1599", + "reference": "Modules/Settings/ThemeColorsTab.qml:221, Modules/Settings/ThemeColorsTab.qml:223, Modules/Settings/ThemeColorsTab.qml:224", "comment": "" }, { @@ -2717,12 +3017,24 @@ "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", @@ -2732,31 +3044,31 @@ { "term": "Cursor Config Not Configured", "context": "Cursor Config Not Configured", - "reference": "Modules/Settings/ThemeColorsTab.qml:1986", + "reference": "Modules/Settings/ThemeColorsTab.qml:2202", "comment": "" }, { "term": "Cursor Include Missing", "context": "Cursor Include Missing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1986", + "reference": "Modules/Settings/ThemeColorsTab.qml:2202", "comment": "" }, { "term": "Cursor Size", "context": "Cursor Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2034", + "reference": "Modules/Settings/ThemeColorsTab.qml:2250", "comment": "" }, { "term": "Cursor Theme", "context": "Cursor Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1944, Modules/Settings/ThemeColorsTab.qml:2018", + "reference": "Modules/Settings/ThemeColorsTab.qml:2160, Modules/Settings/ThemeColorsTab.qml:2234", "comment": "" }, { "term": "Custom", - "context": "theme category option", - "reference": "Widgets/KeybindItem.qml:1403, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:272, Modules/Settings/ThemeColorsTab.qml:272, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/DockTab.qml:272, Modules/Settings/DockTab.qml:379, Modules/Settings/LauncherTab.qml:75, Modules/Settings/LauncherTab.qml:181, Modules/Settings/DankBarTab.qml:1079, Modules/Settings/NotificationsTab.qml:325, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", + "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": "" }, { @@ -2780,7 +3092,7 @@ { "term": "Custom Location", "context": "Custom Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:434", + "reference": "Modules/Settings/TimeWeatherTab.qml:477", "comment": "" }, { @@ -2813,46 +3125,58 @@ "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", "reference": "Modules/Settings/PowerSleepTab.qml:534", "comment": "" }, + { + "term": "Custom Shadow Color", + "context": "Custom Shadow Color", + "reference": "Modules/Settings/ThemeColorsTab.qml:1745", + "comment": "" + }, + { + "term": "Custom Shadow Override", + "context": "Custom Shadow Override", + "reference": "Modules/Settings/DankBarTab.qml:1072", + "comment": "" + }, { "term": "Custom Suspend Command", "context": "Custom Suspend Command", "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:1263", - "comment": "" - }, - { - "term": "Custom theme loaded from JSON file", - "context": "custom theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:231", - "comment": "" - }, { "term": "Custom...", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:130, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:217, 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: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", "comment": "" }, { "term": "Custom: ", "context": "Custom: ", - "reference": "Modules/Settings/TimeWeatherTab.qml:117, Modules/Settings/TimeWeatherTab.qml:204", + "reference": "Modules/Settings/GreeterTab.qml:641, Modules/Settings/TimeWeatherTab.qml:160, Modules/Settings/TimeWeatherTab.qml:247", "comment": "" }, { @@ -2867,76 +3191,22 @@ "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:1086", - "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 out of date", - "context": "DMS out of date", - "reference": "Services/DMSService.qml:319", - "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", - "reference": "Modules/DankDash/WeatherTab.qml:859", + "reference": "Modules/DankDash/WeatherTab.qml:860", "comment": "" }, { "term": "Daily at:", "context": "Daily at:", - "reference": "Modules/Settings/WallpaperTab.qml:1049", + "reference": "Modules/Settings/WallpaperTab.qml:1061", "comment": "" }, { "term": "Dank", "context": "Dank", - "reference": "Modules/Settings/DockTab.qml:256, Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -2960,25 +3230,49 @@ { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2451", + "reference": "Modules/Settings/ThemeColorsTab.qml:2358", "comment": "" }, { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1357, Modules/Settings/WallpaperTab.qml:576, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:620", + "reference": "Modules/Settings/WallpaperTab.qml:582, Modules/Settings/ThemeColorsTab.qml:1389, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:620", + "comment": "" + }, + { + "term": "Dark mode base", + "context": "Dark mode base", + "reference": "Modules/Settings/ThemeColorsTab.qml:2590", + "comment": "" + }, + { + "term": "Dark mode harmony", + "context": "Dark mode harmony", + "reference": "Modules/Settings/ThemeColorsTab.qml:2622", "comment": "" }, { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1906", + "reference": "Modules/Settings/ThemeColorsTab.qml:2122", "comment": "" }, { "term": "Date Format", "context": "Date Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:68", + "reference": "Modules/Settings/TimeWeatherTab.qml:84", + "comment": "" + }, + { + "term": "Date format", + "context": "Date format", + "reference": "Modules/Settings/GreeterTab.qml:635", + "comment": "" + }, + { + "term": "Date format on greeter", + "context": "Date format on greeter", + "reference": "Modules/Settings/GreeterTab.qml:625", "comment": "" }, { @@ -3002,13 +3296,13 @@ { "term": "Day Date", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:85, Modules/Settings/TimeWeatherTab.qml:122, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:172, Modules/Settings/TimeWeatherTab.qml:209", + "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", "comment": "" }, { "term": "Day Month Date", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:89, Modules/Settings/TimeWeatherTab.qml:123, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:176, Modules/Settings/TimeWeatherTab.qml:210", + "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", "comment": "" }, { @@ -3017,12 +3311,24 @@ "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", @@ -3032,13 +3338,13 @@ { "term": "Default", "context": "notification rule action option | notification rule urgency option | widget style option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1450, Modules/Settings/DockTab.qml:379, Modules/Settings/LauncherTab.qml:181, Modules/Settings/NotificationsTab.qml:116, Modules/Settings/NotificationsTab.qml:139", + "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", "comment": "" }, { - "term": "Default Width (%)", - "context": "Default Width (%)", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:254", + "term": "Default (Black)", + "context": "shadow color option", + "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1676", "comment": "" }, { @@ -3047,6 +3353,12 @@ "reference": "Modules/Settings/PowerSleepTab.qml:377", "comment": "" }, + { + "term": "Default Width (%)", + "context": "Default Width (%)", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:254", + "comment": "" + }, { "term": "Defaults", "context": "Defaults", @@ -3068,25 +3380,37 @@ { "term": "Delete", "context": "Delete", - "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/PrinterTab.qml:763, Modules/Settings/PrinterTab.qml:1349, Modules/Settings/NetworkTab.qml:1823, Modules/Settings/DisplayConfigTab.qml:291", + "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", "comment": "" }, { "term": "Delete \"%1\"?", "context": "Delete \"%1\"?", - "reference": "Widgets/VpnDetailContent.qml:220, Modules/Settings/PrinterTab.qml:762, Modules/Settings/NetworkTab.qml:1822", + "reference": "Widgets/VpnDetailContent.qml:220, Modules/Settings/PrinterTab.qml:1093, Modules/Settings/NetworkTab.qml:1824", "comment": "" }, { "term": "Delete Class", "context": "Delete Class", - "reference": "Modules/Settings/PrinterTab.qml:1347", + "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:761", + "reference": "Modules/Settings/PrinterTab.qml:1092", + "comment": "" + }, + { + "term": "Delete profile \"%1\"?", + "context": "Delete profile \"%1\"?", + "reference": "Modules/Settings/DisplayConfigTab.qml:278", "comment": "" }, { @@ -3098,19 +3422,19 @@ { "term": "Delete VPN", "context": "Delete VPN", - "reference": "Widgets/VpnDetailContent.qml:219, Modules/Settings/NetworkTab.qml:1821", + "reference": "Widgets/VpnDetailContent.qml:219, Modules/Settings/NetworkTab.qml:1823", "comment": "" }, { - "term": "Delete class \"%1\"?", - "context": "Delete class \"%1\"?", - "reference": "Modules/Settings/PrinterTab.qml:1348", + "term": "DEMO MODE - Click anywhere to exit", + "context": "DEMO MODE - Click anywhere to exit", + "reference": "Modules/Lock/LockScreenContent.qml:1115", "comment": "" }, { - "term": "Delete profile \"%1\"?", - "context": "Delete profile \"%1\"?", - "reference": "Modules/Settings/DisplayConfigTab.qml:278", + "term": "Dependencies & documentation", + "context": "Dependencies & documentation", + "reference": "Modules/Settings/GreeterTab.qml:753", "comment": "" }, { @@ -3122,7 +3446,7 @@ { "term": "Description", "context": "Description", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:881, Modules/Settings/PrinterTab.qml:465", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:884, Modules/Settings/PrinterTab.qml:796", "comment": "" }, { @@ -3131,6 +3455,12 @@ "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", @@ -3140,7 +3470,7 @@ { "term": "Desktop Entry", "context": "notification rule match field option", - "reference": "Modules/Settings/NotificationsTab.qml:86", + "reference": "Modules/Settings/NotificationsTab.qml:89", "comment": "" }, { @@ -3156,9 +3486,9 @@ "comment": "" }, { - "term": "Desktop background images", - "context": "Desktop background images", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:44", + "term": "detached", + "context": "detached", + "reference": "Modals/MuxModal.qml:495", "comment": "" }, { @@ -3170,13 +3500,19 @@ { "term": "Development", "context": "Development", - "reference": "Services/AppSearchService.qml:625, Services/AppSearchService.qml:626, Services/AppSearchService.qml:627, Widgets/DankIconPicker.qml:32", + "reference": "Services/AppSearchService.qml:625, Services/AppSearchService.qml:626, Services/AppSearchService.qml:627, Widgets/DankIconPicker.qml:31", "comment": "" }, { "term": "Device", "context": "Device", - "reference": "Widgets/KeybindItem.qml:1032, Modules/Settings/PrinterTab.qml:288", + "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": "" }, { @@ -3188,19 +3524,31 @@ { "term": "Device names updated", "context": "Device names updated", - "reference": "Services/AudioService.qml:262", + "reference": "Services/AudioService.qml:263", "comment": "" }, { "term": "Device paired", "context": "Phone Connect pairing action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:163, Modules/ControlCenter/Details/BluetoothDetail.qml:54", + "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:178, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:359", + "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", "comment": "" }, { @@ -3209,6 +3557,12 @@ "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:37, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:18", "comment": "" }, + { + "term": "Direction Source", + "context": "bar shadow direction source", + "reference": "Modules/Settings/DankBarTab.qml:1117", + "comment": "" + }, { "term": "Disable Autoconnect", "context": "Disable Autoconnect", @@ -3218,7 +3572,7 @@ { "term": "Disable Built-in Wallpapers", "context": "wallpaper settings disable toggle", - "reference": "Modules/Settings/WallpaperTab.qml:1238", + "reference": "Modules/Settings/WallpaperTab.qml:1250", "comment": "" }, { @@ -3230,25 +3584,25 @@ { "term": "Disable Output", "context": "Disable Output", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:76, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:63", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:63, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:76", "comment": "" }, { "term": "Disabled", "context": "bluetooth status | lock screen notification mode option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1331, Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NetworkTab.qml:821, Modules/Settings/DankBarTab.qml:316, Modules/Settings/NotificationsTab.qml:709, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1223, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1229, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1231, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1243, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1257, Modules/ControlCenter/Components/DragDropGrid.qml:317", + "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", "comment": "" }, { "term": "Disabling WiFi...", "context": "network status", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:192, Modules/ControlCenter/Components/DragDropGrid.qml:293", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:293, Modules/ControlCenter/Details/NetworkDetail.qml:192", "comment": "" }, { "term": "Disc", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1155", + "reference": "Modules/Settings/WallpaperTab.qml:1167", "comment": "" }, { @@ -3266,13 +3620,13 @@ { "term": "Disconnect", "context": "Disconnect", - "reference": "Widgets/VpnDetailContent.qml:124, Modules/Settings/NetworkTab.qml:1627, Modules/ControlCenter/Details/BluetoothDetail.qml:616, Modules/ControlCenter/Details/NetworkDetail.qml:427, Modules/ControlCenter/Details/NetworkDetail.qml:782", + "reference": "Widgets/VpnDetailContent.qml:124, Modules/Settings/NetworkTab.qml:1629, Modules/ControlCenter/Details/BluetoothDetail.qml:616, Modules/ControlCenter/Details/NetworkDetail.qml:427, Modules/ControlCenter/Details/NetworkDetail.qml:782", "comment": "" }, { "term": "Disconnected", "context": "Disconnected", - "reference": "Modules/Settings/NetworkTab.qml:215, Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1553, Modules/Settings/DisplayConfig/OutputCard.qml:74, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", + "reference": "Modules/Settings/NetworkTab.qml:215, Modules/Settings/NetworkTab.qml:450, Modules/Settings/NetworkTab.qml:1555, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/Settings/DisplayConfig/OutputCard.qml:74, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", "comment": "" }, { @@ -3281,6 +3635,12 @@ "reference": "Services/DMSNetworkService.qml:480", "comment": "" }, + { + "term": "Discover Devices", + "context": "Toggle button to scan for printers via mDNS/Avahi", + "reference": "Modules/Settings/PrinterTab.qml:352", + "comment": "" + }, { "term": "Disk", "context": "Disk", @@ -3299,6 +3659,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:124, Modules/ControlCenter/Models/WidgetModel.qml:169, Modules/ControlCenter/Widgets/DiskUsagePill.qml:35", "comment": "" }, + { + "term": "Disk Usage Display", + "context": "Disk Usage Display", + "reference": "Modules/Settings/WidgetsTabSection.qml:974", + "comment": "" + }, { "term": "Disks", "context": "Disks", @@ -3308,7 +3674,7 @@ { "term": "Dismiss", "context": "Dismiss", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:27, Modules/Notifications/Popup/NotificationPopup.qml:1085, Modules/Notifications/Center/NotificationCard.qml:708, Modules/Notifications/Center/NotificationCard.qml:845, Modules/Notifications/Center/NotificationCard.qml:990", + "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", "comment": "" }, { @@ -3317,36 +3683,6 @@ "reference": "Modules/Settings/WindowRulesTab.qml:546", "comment": "" }, - { - "term": "Display Assignment", - "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:385", - "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", @@ -3356,7 +3692,7 @@ { "term": "Display all priorities over fullscreen apps", "context": "Display all priorities over fullscreen apps", - "reference": "Modules/Settings/NotificationsTab.qml:259, Modules/Notifications/Center/NotificationSettings.qml:249", + "reference": "Modules/Settings/NotificationsTab.qml:262, Modules/Notifications/Center/NotificationSettings.qml:249", "comment": "" }, { @@ -3371,6 +3707,12 @@ "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", @@ -3383,6 +3725,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", @@ -3395,10 +3743,16 @@ "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", - "reference": "Modules/Settings/WorkspacesTab.qml:142", + "reference": "Modules/Settings/WorkspacesTab.qml:152", "comment": "" }, { @@ -3407,10 +3761,22 @@ "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:48", + "reference": "Modules/Settings/TimeWeatherTab.qml:64", + "comment": "" + }, + { + "term": "Display Settings", + "context": "Display Settings", + "reference": "Modules/Plugins/PluginSettings.qml:239", "comment": "" }, { @@ -3428,13 +3794,13 @@ { "term": "Displays", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:206, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", + "reference": "Modals/Settings/SettingsSidebar.qml:206, Modals/Greeter/GreeterCompletePage.qml:373, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", "comment": "" }, { "term": "Displays count when overflow is active", "context": "Displays count when overflow is active", - "reference": "Modules/Settings/DockTab.qml:207", + "reference": "Modules/Settings/DockTab.qml:217", "comment": "" }, { @@ -3455,28 +3821,82 @@ "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:366, Modules/ControlCenter/Models/WidgetModel.qml:85, Modules/ControlCenter/Components/DragDropGrid.qml:622, Modules/Notifications/Center/NotificationHeader.qml:63, Modules/Notifications/Center/NotificationSettings.qml:141", + "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", "comment": "" }, { "term": "Dock", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:185", + "reference": "Modals/Settings/SettingsSidebar.qml:185, Modals/Greeter/GreeterCompletePage.qml:422", "comment": "" }, { "term": "Dock & Launcher", "context": "Dock & Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:179, Modals/Settings/SettingsSidebar.qml:551", + "reference": "Modals/Settings/SettingsSidebar.qml:179, Modals/Settings/SettingsSidebar.qml:563", "comment": "" }, { "term": "Dock Transparency", "context": "Dock Transparency", - "reference": "Modules/Settings/DockTab.qml:561", + "reference": "Modules/Settings/DockTab.qml:571", "comment": "" }, { @@ -3518,7 +3938,7 @@ { "term": "Door Open", "context": "Door Open", - "reference": "Services/CupsService.qml:791", + "reference": "Services/CupsService.qml:806", "comment": "" }, { @@ -3530,25 +3950,25 @@ { "term": "Drag to Reorder", "context": "Drag to Reorder", - "reference": "Modules/Settings/WorkspacesTab.qml:161", + "reference": "Modules/Settings/WorkspacesTab.qml:171", "comment": "" }, { "term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "context": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", - "reference": "Modules/Settings/WidgetsTab.qml:867", + "reference": "Modules/Settings/WidgetsTab.qml:899", "comment": "" }, { "term": "Drag workspace indicators to reorder them", "context": "Drag workspace indicators to reorder them", - "reference": "Modules/Settings/WorkspacesTab.qml:162", + "reference": "Modules/Settings/WorkspacesTab.qml:172", "comment": "" }, { "term": "Driver", "context": "Driver", - "reference": "Modules/Settings/PrinterTab.qml:360, Modules/Settings/NetworkTab.qml:595", + "reference": "Modules/Settings/PrinterTab.qml:691, Modules/Settings/NetworkTab.qml:597", "comment": "" }, { @@ -3566,13 +3986,13 @@ { "term": "Duplicate Wallpaper with Blur", "context": "Duplicate Wallpaper with Blur", - "reference": "Modules/Settings/WallpaperTab.qml:1268", + "reference": "Modules/Settings/WallpaperTab.qml:1280", "comment": "" }, { "term": "Duration", "context": "Duration", - "reference": "Modules/Settings/NotificationsTab.qml:345", + "reference": "Modules/Settings/NotificationsTab.qml:358", "comment": "" }, { @@ -3593,10 +4013,28 @@ "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:213", + "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": "" }, { @@ -3612,27 +4050,39 @@ "comment": "" }, { - "term": "Dynamic colors from wallpaper", - "context": "dynamic colors description", - "reference": "Modules/Settings/ThemeColorsTab.qml:461", + "term": "e.g., firefox, kitty --title foo", + "context": "e.g., firefox, kitty --title foo", + "reference": "Widgets/KeybindItem.qml:1477", "comment": "" }, { - "term": "Dynamic colors, presets", - "context": "greeter theme description", - "reference": "Modals/Greeter/GreeterCompletePage.qml:390", + "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", "comment": "" }, { "term": "Edge Spacing", "context": "Edge Spacing", - "reference": "Modules/Settings/DankBarTab.qml:774", + "reference": "Modules/Settings/DankBarTab.qml:809", "comment": "" }, { "term": "Edit App", "context": "Edit App", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:118, Modals/DankLauncherV2/LauncherContent.qml:804", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:118, Modals/DankLauncherV2/LauncherContent.qml:807", "comment": "" }, { @@ -3659,6 +4109,12 @@ "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", @@ -3668,19 +4124,49 @@ { "term": "Enable Bar", "context": "Enable Bar", - "reference": "Modules/Settings/DankBarTab.qml:370", + "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:372", + "reference": "Modules/Settings/NotificationsTab.qml:392", + "comment": "" + }, + { + "term": "Enable fingerprint at login", + "context": "Enable fingerprint at login", + "reference": "Modules/Settings/GreeterTab.qml:538", + "comment": "" + }, + { + "term": "Enable fingerprint authentication", + "context": "Enable fingerprint authentication", + "reference": "Modules/Settings/LockScreenTab.qml:219", + "comment": "" + }, + { + "term": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.", + "context": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.", + "reference": "Modules/Settings/GreeterTab.qml:528", "comment": "" }, { "term": "Enable History", "context": "notification history toggle label", - "reference": "Modules/Settings/NotificationsTab.qml:789", + "reference": "Modules/Settings/NotificationsTab.qml:809", + "comment": "" + }, + { + "term": "Enable loginctl lock integration", + "context": "Enable loginctl lock integration", + "reference": "Modules/Settings/LockScreenTab.qml:177", "comment": "" }, { @@ -3695,16 +4181,34 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:476", "comment": "" }, + { + "term": "Enable security key at login", + "context": "Enable security key at login", + "reference": "Modules/Settings/GreeterTab.qml:549", + "comment": "" + }, + { + "term": "Enable security key authentication", + "context": "Enable FIDO2/U2F hardware security key for lock screen", + "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:347", + "reference": "Modules/Settings/TimeWeatherTab.qml:390", "comment": "" }, { @@ -3713,52 +4217,94 @@ "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:244", "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:1269", - "comment": "" - }, - { - "term": "Enable fingerprint authentication", - "context": "Enable fingerprint authentication", - "reference": "Modules/Settings/LockScreenTab.qml:163", - "comment": "" - }, - { - "term": "Enable loginctl lock integration", - "context": "Enable loginctl lock integration", - "reference": "Modules/Settings/LockScreenTab.qml:121", - "comment": "" - }, { "term": "Enabled", "context": "bluetooth status", - "reference": "Modules/Settings/ThemeColorsTab.qml:1331, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1223, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1231, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1257, Modules/ControlCenter/Components/DragDropGrid.qml:318", + "reference": "Modules/Settings/ThemeColorsTab.qml:1363, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260, Modules/ControlCenter/Components/DragDropGrid.qml:318", + "comment": "" + }, + { + "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", + "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", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.", + "context": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.", + "reference": "Modules/Settings/GreeterTab.qml:42", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.", + "context": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.", + "reference": "Modules/Settings/LockScreenTab.qml:21", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key and run Sync.", + "context": "Enabled, but no registered security key was found yet. Register a key and run Sync.", + "reference": "Modules/Settings/GreeterTab.qml:66", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.", + "context": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.", + "reference": "Modules/Settings/LockScreenTab.qml:38", + "comment": "" + }, + { + "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", + "comment": "" + }, + { + "term": "Enabled. PAM already provides fingerprint auth.", + "context": "Enabled. PAM already provides fingerprint auth.", + "reference": "Modules/Settings/GreeterTab.qml:27", + "comment": "" + }, + { + "term": "Enabled. PAM already provides security-key auth.", + "context": "Enabled. PAM already provides security-key auth.", + "reference": "Modules/Settings/GreeterTab.qml:58", + "comment": "" + }, + { + "term": "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.", + "context": "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.", + "reference": "Modules/Settings/GreeterTab.qml:29", "comment": "" }, { "term": "Enabling WiFi...", "context": "network status", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:192, Modules/ControlCenter/Components/DragDropGrid.qml:293", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:293, Modules/ControlCenter/Details/NetworkDetail.qml:192", "comment": "" }, { "term": "End", "context": "End", - "reference": "Modules/Settings/ThemeColorsTab.qml:1146, Modules/Settings/GammaControlTab.qml:295", + "reference": "Modules/Settings/ThemeColorsTab.qml:1178, Modules/Settings/GammaControlTab.qml:295", "comment": "" }, { "term": "Enlarge on Hover", "context": "Enlarge on Hover", - "reference": "Modules/Settings/WidgetsTabSection.qml:2093", + "reference": "Modules/Settings/WidgetsTabSection.qml:2341", "comment": "" }, { "term": "Enlargement %", "context": "Enlargement %", - "reference": "Modules/Settings/WidgetsTabSection.qml:2132", + "reference": "Modules/Settings/WidgetsTabSection.qml:2380", "comment": "" }, { @@ -3768,21 +4314,9 @@ "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 URL or text to share", - "context": "KDE Connect share input placeholder", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:73", + "term": "Enter a new name for session \"%1\"", + "context": "Enter a new name for session \"%1\"", + "reference": "Modals/MuxModal.qml:115", "comment": "" }, { @@ -3791,6 +4325,12 @@ "reference": "Modals/WorkspaceRenameModal.qml:86", "comment": "" }, + { + "term": "Enter command or script path", + "context": "Enter command or script path", + "reference": "Modules/Settings/MuxTab.qml:92", + "comment": "" + }, { "term": "Enter credentials for ", "context": "Enter credentials for ", @@ -3800,13 +4340,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:231", + "reference": "Modules/Settings/TimeWeatherTab.qml:274", "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:144", + "reference": "Modules/Settings/TimeWeatherTab.qml:187", "comment": "" }, { @@ -3845,6 +4385,18 @@ "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 ", @@ -3857,10 +4409,16 @@ "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", - "reference": "Modules/Settings/NetworkTab.qml:1446", + "reference": "Modules/Settings/NetworkTab.qml:1448", "comment": "" }, { @@ -3878,37 +4436,43 @@ { "term": "Environment Variables", "context": "Environment Variables", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:901", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:904", "comment": "" }, { "term": "Error", "context": "Error", - "reference": "Services/CupsService.qml:819", + "reference": "Services/CupsService.qml:834", "comment": "" }, { "term": "Errors", "context": "greeter doctor page status card", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:242", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:248", "comment": "" }, { "term": "Ethernet", "context": "network status", - "reference": "Modules/Settings/NetworkTab.qml:211, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:328, Modules/ControlCenter/Details/NetworkDetail.qml:136, Modules/ControlCenter/Components/DragDropGrid.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:300", + "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", - "reference": "Modules/Settings/NotificationsTab.qml:105", + "reference": "Modules/Settings/NotificationsTab.qml:108", "comment": "" }, { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:536, Modules/Settings/DankBarTab.qml:796", + "reference": "Modules/Settings/DockTab.qml:546, Modules/Settings/DankBarTab.qml:830", "comment": "" }, { @@ -3935,10 +4499,16 @@ "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", - "reference": "Common/Theme.qml:1257", + "reference": "Common/Theme.qml:1483", "comment": "" }, { @@ -3950,13 +4520,13 @@ { "term": "External Wallpaper Management", "context": "wallpaper settings external management", - "reference": "Modules/Settings/WallpaperTab.qml:1230", + "reference": "Modules/Settings/WallpaperTab.qml:1242", "comment": "" }, { "term": "Extra Arguments", "context": "Extra Arguments", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:927", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:930", "comment": "" }, { @@ -3968,7 +4538,7 @@ { "term": "Fade", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1151", + "reference": "Modules/Settings/WallpaperTab.qml:1163", "comment": "" }, { @@ -3986,7 +4556,7 @@ { "term": "Failed to accept pairing", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:160", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:161", "comment": "" }, { @@ -4010,13 +4580,13 @@ { "term": "Failed to add printer to class", "context": "Failed to add printer to class", - "reference": "Services/CupsService.qml:695", + "reference": "Services/CupsService.qml:710", "comment": "" }, { "term": "Failed to browse device", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:142", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:143", "comment": "" }, { @@ -4037,18 +4607,18 @@ "reference": "Services/ClipboardService.qml:185", "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 connect VPN", + "context": "Failed to connect VPN", + "reference": "Services/DMSNetworkService.qml:830", + "comment": "" + }, { "term": "Failed to copy entry", "context": "Failed to copy entry", @@ -4058,7 +4628,7 @@ { "term": "Failed to create printer", "context": "Failed to create printer", - "reference": "Services/CupsService.qml:505", + "reference": "Services/CupsService.qml:520", "comment": "" }, { @@ -4067,28 +4637,28 @@ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:193", "comment": "" }, - { - "term": "Failed to delete VPN", - "context": "Failed to delete VPN", - "reference": "Services/VPNService.qml:156", - "comment": "" - }, { "term": "Failed to delete class", "context": "Failed to delete class", - "reference": "Services/CupsService.qml:728", + "reference": "Services/CupsService.qml:743", "comment": "" }, { "term": "Failed to delete printer", "context": "Failed to delete printer", - "reference": "Services/CupsService.qml:522", + "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", - "reference": "Services/CupsService.qml:558", + "reference": "Services/CupsService.qml:573", "comment": "" }, { @@ -4121,16 +4691,10 @@ "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", - "reference": "Services/CupsService.qml:542", + "reference": "Services/CupsService.qml:557", "comment": "" }, { @@ -4139,10 +4703,16 @@ "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", - "reference": "Services/CupsService.qml:678", + "reference": "Services/CupsService.qml:693", "comment": "" }, { @@ -4154,13 +4724,7 @@ { "term": "Failed to launch SMS app", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:132", - "comment": "" - }, - { - "term": "Failed to load VPN config", - "context": "Failed to load VPN config", - "reference": "Services/VPNService.qml:114", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:133", "comment": "" }, { @@ -4169,28 +4733,34 @@ "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", - "reference": "Services/CupsService.qml:643", + "reference": "Services/CupsService.qml:658", "comment": "" }, { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1243", + "reference": "Common/SettingsData.qml:1346", "comment": "" }, { "term": "Failed to parse session.json", "context": "Failed to parse session.json", - "reference": "Common/SessionData.qml:197, Common/SessionData.qml:276", + "reference": "Common/SessionData.qml:202, Common/SessionData.qml:281", "comment": "" }, { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1181, Common/SettingsData.qml:2640", + "reference": "Common/SettingsData.qml:1247, Common/SettingsData.qml:2743", "comment": "" }, { @@ -4208,13 +4778,13 @@ { "term": "Failed to print test page", "context": "Failed to print test page", - "reference": "Services/CupsService.qml:625", + "reference": "Services/CupsService.qml:640", "comment": "" }, { "term": "Failed to reject pairing", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:169", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:170", "comment": "" }, { @@ -4232,19 +4802,19 @@ { "term": "Failed to remove printer from class", "context": "Failed to remove printer from class", - "reference": "Services/CupsService.qml:712", + "reference": "Services/CupsService.qml:727", "comment": "" }, { "term": "Failed to restart audio system", "context": "Failed to restart audio system", - "reference": "Services/AudioService.qml:266", + "reference": "Services/AudioService.qml:267", "comment": "" }, { "term": "Failed to restart job", "context": "Failed to restart job", - "reference": "Services/CupsService.qml:659", + "reference": "Services/CupsService.qml:674", "comment": "" }, { @@ -4256,13 +4826,19 @@ { "term": "Failed to ring device", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:95", + "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", + "reference": "Modules/Settings/GreeterTab.qml:274", "comment": "" }, { "term": "Failed to save audio config", "context": "Failed to save audio config", - "reference": "Services/AudioService.qml:151", + "reference": "Services/AudioService.qml:152", "comment": "" }, { @@ -4286,19 +4862,19 @@ { "term": "Failed to send clipboard", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:113", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:114", "comment": "" }, { "term": "Failed to send file", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:358, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:421", + "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:104", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:105", "comment": "" }, { @@ -4340,7 +4916,7 @@ { "term": "Failed to share", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:338, dms-plugins/DankKDEConnect/DankKDEConnect.qml:346, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:407", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:341, dms-plugins/DankKDEConnect/DankKDEConnect.qml:349, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:407", "comment": "" }, { @@ -4355,12 +4931,6 @@ "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", @@ -4370,25 +4940,37 @@ { "term": "Failed to update description", "context": "Failed to update description", - "reference": "Services/CupsService.qml:609", + "reference": "Services/CupsService.qml:624", "comment": "" }, { "term": "Failed to update location", "context": "Failed to update location", - "reference": "Services/CupsService.qml:592", + "reference": "Services/CupsService.qml:607", "comment": "" }, { "term": "Failed to update sharing", "context": "Failed to update sharing", - "reference": "Services/CupsService.qml:575", + "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:1291", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1294", + "comment": "" + }, + { + "term": "featured", + "context": "featured", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:487", "comment": "" }, { @@ -4406,13 +4988,13 @@ { "term": "Feels Like", "context": "Feels Like", - "reference": "Modules/Settings/TimeWeatherTab.qml:835", + "reference": "Modules/Settings/TimeWeatherTab.qml:879", "comment": "" }, { "term": "Feels Like %1°", "context": "weather feels like temperature", - "reference": "Modules/DankDash/WeatherTab.qml:308, Modules/Settings/TimeWeatherTab.qml:722", + "reference": "Modules/Settings/TimeWeatherTab.qml:766, Modules/DankDash/WeatherTab.qml:309", "comment": "" }, { @@ -4424,7 +5006,7 @@ { "term": "Field", "context": "Field", - "reference": "Modules/Settings/NotificationsTab.qml:525", + "reference": "Modules/Settings/NotificationsTab.qml:545", "comment": "" }, { @@ -4448,7 +5030,7 @@ { "term": "File received from", "context": "Phone Connect file share notification", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:78", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:79", "comment": "" }, { @@ -4457,10 +5039,16 @@ "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/Controller.qml:151, Modals/DankLauncherV2/Controller.qml:914, Modals/DankLauncherV2/Controller.qml:935, Modals/DankLauncherV2/LauncherContent.qml:317, Modals/DankLauncherV2/LauncherContent.qml:586", + "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", "comment": "" }, { @@ -4472,13 +5060,7 @@ { "term": "Fill", "context": "wallpaper fill mode", - "reference": "Modules/Settings/WallpaperTab.qml:312", - "comment": "" - }, - { - "term": "Find in Text", - "context": "Find in Text", - "reference": "Modules/Notepad/NotepadSettings.qml:185", + "reference": "Modules/Settings/WallpaperTab.qml:312, Modules/Settings/GreeterTab.qml:698", "comment": "" }, { @@ -4487,12 +5069,42 @@ "reference": "Modules/Notepad/NotepadTextEditor.qml:372", "comment": "" }, + { + "term": "Find in Text", + "context": "Find in Text", + "reference": "Modules/Notepad/NotepadSettings.qml:185", + "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", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", + "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", + "reference": "Modules/Settings/LockScreenTab.qml:22", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", + "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", + "reference": "Modules/Settings/GreeterTab.qml:43", + "comment": "" + }, { "term": "Finish", "context": "greeter finish button", "reference": "Modals/Greeter/GreeterModal.qml:304", "comment": "" }, + { + "term": "First Day of Week", + "context": "First Day of Week", + "reference": "Modules/Settings/TimeWeatherTab.qml:92", + "comment": "" + }, { "term": "First Time Setup", "context": "First Time Setup", @@ -4508,13 +5120,13 @@ { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/ThemeColorsTab.qml:2004, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/KeybindsTab.qml:367, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", + "reference": "Modules/Settings/KeybindsTab.qml:371, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/ThemeColorsTab.qml:2004, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/KeybindsTab.qml:364, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", + "reference": "Modules/Settings/KeybindsTab.qml:368, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", "comment": "" }, { @@ -4526,25 +5138,25 @@ { "term": "Flipped", "context": "Flipped", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1798, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1819", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1801, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1822", "comment": "" }, { "term": "Flipped 180°", "context": "Flipped 180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1802, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1823", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1805, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1826", "comment": "" }, { "term": "Flipped 270°", "context": "Flipped 270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1804, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1825", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1807, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1828", "comment": "" }, { "term": "Flipped 90°", "context": "Flipped 90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1800, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1821", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1803, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1824", "comment": "" }, { @@ -4562,19 +5174,31 @@ { "term": "Focus at Startup", "context": "Focus at Startup", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1233", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236", "comment": "" }, { "term": "Focused Border", "context": "Focused Border", - "reference": "Modules/Settings/WorkspacesTab.qml:344", + "reference": "Modules/Settings/WorkspacesTab.qml:354", "comment": "" }, { "term": "Focused Color", "context": "Focused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:186", + "reference": "Modules/Settings/WorkspacesTab.qml:196", + "comment": "" + }, + { + "term": "Focused Monitor Only", + "context": "Focused Monitor Only", + "reference": "Modules/Settings/NotificationsTab.qml:297", + "comment": "" + }, + { + "term": "Focused monitor only", + "context": "Focused monitor only", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:422", "comment": "" }, { @@ -4598,13 +5222,7 @@ { "term": "Folders", "context": "Folders", - "reference": "Modals/DankLauncherV2/Controller.qml:925, Modals/DankLauncherV2/Controller.qml:935, Modals/DankLauncherV2/LauncherContent.qml:591", - "comment": "" - }, - { - "term": "Follow Monitor Focus", - "context": "Follow Monitor Focus", - "reference": "Modules/Settings/WorkspacesTab.qml:131", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:594, Modals/DankLauncherV2/Controller.qml:970, Modals/DankLauncherV2/Controller.qml:980", "comment": "" }, { @@ -4613,6 +5231,18 @@ "reference": "Widgets/KeybindItem.qml:1311", "comment": "" }, + { + "term": "Follow Monitor Focus", + "context": "Follow Monitor Focus", + "reference": "Modules/Settings/WorkspacesTab.qml:141", + "comment": "" + }, + { + "term": "Font", + "context": "Font", + "reference": "Modules/Settings/GreeterTab.qml:565", + "comment": "" + }, { "term": "Font Family", "context": "Font Family", @@ -4622,7 +5252,7 @@ { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:183, Modules/Settings/DankBarTab.qml:1384", + "reference": "Modules/Settings/DankBarTab.qml:951, Modules/Settings/TypographyMotionTab.qml:183", "comment": "" }, { @@ -4631,6 +5261,12 @@ "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", @@ -4640,7 +5276,7 @@ { "term": "Force HDR", "context": "Force HDR", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1253", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1256", "comment": "" }, { @@ -4650,15 +5286,15 @@ "comment": "" }, { - "term": "Force Wide Color", - "context": "Force Wide Color", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1255", + "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 terminal applications to always use dark color schemes", - "context": "Force terminal applications to always use dark color schemes", - "reference": "Modules/Settings/ThemeColorsTab.qml:1935", + "term": "Force Wide Color", + "context": "Force Wide Color", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1258", "comment": "" }, { @@ -4682,19 +5318,19 @@ { "term": "Forever", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:817, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:835", + "reference": "Modules/Settings/NotificationsTab.qml:837, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:855", "comment": "" }, { "term": "Forget", "context": "Forget", - "reference": "Modules/Settings/NetworkTab.qml:1311", + "reference": "Modules/Settings/NetworkTab.qml:1313", "comment": "" }, { "term": "Forget \"%1\"?", "context": "Forget \"%1\"?", - "reference": "Modules/Settings/NetworkTab.qml:1310", + "reference": "Modules/Settings/NetworkTab.qml:1312", "comment": "" }, { @@ -4706,7 +5342,7 @@ { "term": "Forget Network", "context": "Forget Network", - "reference": "Modules/Settings/NetworkTab.qml:1309, Modules/ControlCenter/Details/NetworkDetail.qml:859", + "reference": "Modules/Settings/NetworkTab.qml:1311, Modules/ControlCenter/Details/NetworkDetail.qml:859", "comment": "" }, { @@ -4718,7 +5354,7 @@ { "term": "Format Legend", "context": "Format Legend", - "reference": "Modules/Settings/TimeWeatherTab.qml:260", + "reference": "Modules/Settings/TimeWeatherTab.qml:303", "comment": "" }, { @@ -4736,7 +5372,7 @@ { "term": "Frequency", "context": "Frequency", - "reference": "Modules/Settings/NetworkTab.qml:1421", + "reference": "Modules/Settings/NetworkTab.qml:1423", "comment": "" }, { @@ -4754,19 +5390,19 @@ { "term": "Full Content", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NotificationsTab.qml:709", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:729", "comment": "" }, { "term": "Full Day & Month", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:113, Modules/Settings/TimeWeatherTab.qml:129, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:200, Modules/Settings/TimeWeatherTab.qml:216", + "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", "comment": "" }, { "term": "Full with Year", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:105, Modules/Settings/TimeWeatherTab.qml:127, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:192, Modules/Settings/TimeWeatherTab.qml:214", + "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", "comment": "" }, { @@ -4790,37 +5426,13 @@ { "term": "Fun", "context": "Fun", - "reference": "Widgets/DankIconPicker.qml:60", + "reference": "Widgets/DankIconPicker.qml:59", "comment": "" }, { "term": "G: grid • Z/X: size", "context": "Widget grid keyboard hints", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:745", - "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": "GTK, Qt, IDEs, more", - "context": "greeter feature card description", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:99", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:746", "comment": "" }, { @@ -4844,7 +5456,7 @@ { "term": "Generic", "context": "theme category option", - "reference": "Modules/Settings/ThemeColorsTab.qml:272, Modules/Settings/ThemeColorsTab.qml:272", + "reference": "Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280", "comment": "" }, { @@ -4874,19 +5486,37 @@ { "term": "Good", "context": "Good", - "reference": "Modules/Settings/TimeWeatherTab.qml:1080", + "reference": "Modules/Settings/TimeWeatherTab.qml:1124", "comment": "" }, { "term": "Goth Corner Radius", "context": "Goth Corner Radius", - "reference": "Modules/Settings/DankBarTab.qml:999", + "reference": "Modules/Settings/DankBarTab.qml:1361", "comment": "" }, { "term": "Goth Corners", "context": "Goth Corners", - "reference": "Modules/Settings/DankBarTab.qml:974", + "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": "" }, { @@ -4913,10 +5543,58 @@ "reference": "Services/AppSearchService.qml:630, Services/AppSearchService.qml:631", "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", + "comment": "" + }, + { + "term": "Greeter Appearance", + "context": "Greeter Appearance", + "reference": "Modules/Settings/GreeterTab.qml:561", + "comment": "" + }, + { + "term": "Greeter Behavior", + "context": "Greeter Behavior", + "reference": "Modules/Settings/GreeterTab.qml:720", + "comment": "" + }, + { + "term": "Greeter font", + "context": "Greeter font", + "reference": "Modules/Settings/GreeterTab.qml:575", + "comment": "" + }, + { + "term": "Greeter only — does not affect main clock", + "context": "Greeter only — does not affect main clock", + "reference": "Modules/Settings/GreeterTab.qml:602", + "comment": "" + }, + { + "term": "Greeter only — format for the date on the login screen", + "context": "Greeter only — format for the date on the login screen", + "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/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:355, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:364, Modules/DankBar/Popouts/DWLLayoutPopout.qml:48", + "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", "comment": "" }, { @@ -4928,13 +5606,13 @@ { "term": "Grid: OFF", "context": "Widget grid snap status", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:715", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:716", "comment": "" }, { "term": "Grid: ON", "context": "Widget grid snap status", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:715", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:716", "comment": "" }, { @@ -4943,16 +5621,10 @@ "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/WidgetsTabSection.qml:1547, Modules/Settings/DockTab.qml:157", + "reference": "Modules/Settings/DockTab.qml:157, Modules/Settings/WidgetsTabSection.qml:1795", "comment": "" }, { @@ -4973,24 +5645,30 @@ "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.", @@ -4998,21 +5676,15 @@ "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", + "term": "HDR Tone Mapping", + "context": "HDR Tone Mapping", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:229", "comment": "" }, { "term": "Health", "context": "Health", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:140, Modules/DankBar/Popouts/BatteryPopout.qml:271, Modules/DankBar/Popouts/BatteryPopout.qml:427", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:298, Modules/DankBar/Popouts/BatteryPopout.qml:454, Modules/ControlCenter/Details/BatteryDetail.qml:140", "comment": "" }, { @@ -5042,7 +5714,7 @@ { "term": "Held", "context": "Held", - "reference": "Services/CupsService.qml:746", + "reference": "Services/CupsService.qml:761", "comment": "" }, { @@ -5060,13 +5732,13 @@ { "term": "Hibernate", "context": "Hibernate", - "reference": "Modals/PowerMenuModal.qml:210, Modules/Lock/LockPowerMenu.qml:116, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:210, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:128", "comment": "" }, { "term": "Hidden", "context": "Hidden", - "reference": "Modules/Settings/NetworkTab.qml:1226", + "reference": "Modules/Settings/NetworkTab.qml:1228", "comment": "" }, { @@ -5081,18 +5753,18 @@ "reference": "Modules/Settings/LauncherTab.qml:840", "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": "Hidden Network", + "context": "Hidden Network", + "reference": "Modals/WifiPasswordModal.qml:252", + "comment": "" + }, { "term": "Hide", "context": "Hide", @@ -5111,52 +5783,28 @@ "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:112", "comment": "" }, - { - "term": "Hide Delay", - "context": "Hide Delay", - "reference": "Modules/Settings/DankBarTab.qml:582", - "comment": "" - }, - { - "term": "Hide Indicators", - "context": "Hide Indicators", - "reference": "Modules/Settings/WidgetsTabSection.qml:1941", - "comment": "" - }, - { - "term": "Hide Updater Widget", - "context": "When updater widget is used, then hide it if no update found", - "reference": "Modules/Settings/SystemUpdaterTab.qml:29", - "comment": "" - }, - { - "term": "Hide When Typing", - "context": "Hide When Typing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2048", - "comment": "" - }, - { - "term": "Hide When Windows Open", - "context": "Hide When Windows Open", - "reference": "Modules/Settings/DankBarTab.qml:606", - "comment": "" - }, { "term": "Hide cursor after inactivity (0 = disabled)", "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2095", + "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:2049", + "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:2078", + "reference": "Modules/Settings/ThemeColorsTab.qml:2294", + "comment": "" + }, + { + "term": "Hide Delay", + "context": "Hide Delay", + "reference": "Modules/Settings/DankBarTab.qml:620", "comment": "" }, { @@ -5165,6 +5813,12 @@ "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", @@ -5174,13 +5828,31 @@ { "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:286", + "reference": "Modules/Settings/NotificationsTab.qml:289", "comment": "" }, { "term": "Hide on Touch", "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:2077", + "reference": "Modules/Settings/ThemeColorsTab.qml:2293", + "comment": "" + }, + { + "term": "Hide Updater Widget", + "context": "When updater widget is used, then hide it if no update found", + "reference": "Modules/Settings/SystemUpdaterTab.qml:29", + "comment": "" + }, + { + "term": "Hide When Typing", + "context": "Hide When Typing", + "reference": "Modules/Settings/ThemeColorsTab.qml:2264", + "comment": "" + }, + { + "term": "Hide When Windows Open", + "context": "Hide When Windows Open", + "reference": "Modules/Settings/DankBarTab.qml:643", "comment": "" }, { @@ -5189,28 +5861,40 @@ "reference": "Common/Theme.qml:484", "comment": "" }, + { + "term": "Highlight Active Workspace App", + "context": "Highlight Active Workspace App", + "reference": "Modules/Settings/WorkspacesTab.qml:131", + "comment": "" + }, + { + "term": "Highlight the currently focused app inside workspace indicators", + "context": "Highlight the currently focused app inside workspace indicators", + "reference": "Modules/Settings/WorkspacesTab.qml:132", + "comment": "" + }, { "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", + "comment": "" + }, { "term": "History Retention", "context": "notification history retention settings label", - "reference": "Modules/Settings/NotificationsTab.qml:812", + "reference": "Modules/Settings/NotificationsTab.qml:832", "comment": "" }, { "term": "History Settings", "context": "History Settings", - "reference": "Modules/Settings/NotificationsTab.qml:783, Modules/Settings/ClipboardTab.qml:278, Modules/Notifications/Center/NotificationSettings.qml:316", - "comment": "" - }, - { - "term": "History cleared. %1 pinned entries kept.", - "context": "History cleared. %1 pinned entries kept.", - "reference": "Services/ClipboardService.qml:232", + "reference": "Modules/Settings/NotificationsTab.qml:803, Modules/Settings/ClipboardTab.qml:278, Modules/Notifications/Center/NotificationSettings.qml:316", "comment": "" }, { @@ -5222,7 +5906,19 @@ { "term": "Hold longer to confirm", "context": "Hold longer to confirm", - "reference": "Modals/PowerMenuModal.qml:792, Modules/Lock/LockPowerMenu.qml:787", + "reference": "Modals/PowerMenuModal.qml:792, Modules/Lock/LockPowerMenu.qml:800", + "comment": "" + }, + { + "term": "Hold to confirm (%1 ms)", + "context": "Hold to confirm (%1 ms)", + "reference": "Modals/PowerMenuModal.qml:795, Modals/PowerMenuModal.qml:799, Modules/Lock/LockPowerMenu.qml:803, Modules/Lock/LockPowerMenu.qml:807", + "comment": "" + }, + { + "term": "Hold to confirm (%1s)", + "context": "Hold to confirm (%1s)", + "reference": "Modals/PowerMenuModal.qml:796, Modals/PowerMenuModal.qml:800, Modules/Lock/LockPowerMenu.qml:804, Modules/Lock/LockPowerMenu.qml:808", "comment": "" }, { @@ -5231,24 +5927,18 @@ "reference": "Modules/Settings/PowerSleepTab.qml:472", "comment": "" }, - { - "term": "Hold to confirm (%1 ms)", - "context": "Hold to confirm (%1 ms)", - "reference": "Modals/PowerMenuModal.qml:795, Modals/PowerMenuModal.qml:799, Modules/Lock/LockPowerMenu.qml:790, Modules/Lock/LockPowerMenu.qml:794", - "comment": "" - }, - { - "term": "Hold to confirm (%1s)", - "context": "Hold to confirm (%1s)", - "reference": "Modals/PowerMenuModal.qml:796, Modals/PowerMenuModal.qml:800, Modules/Lock/LockPowerMenu.qml:791, Modules/Lock/LockPowerMenu.qml:795", - "comment": "" - }, { "term": "Home", "context": "Home", "reference": "Modals/FileBrowser/FileBrowserContent.qml:241", "comment": "" }, + { + "term": "Host", + "context": "Label for printer IP address or hostname input field", + "reference": "Modules/Settings/PrinterTab.qml:501", + "comment": "" + }, { "term": "Hostname", "context": "system info label", @@ -5258,7 +5948,7 @@ { "term": "Hot Corners", "context": "Hot Corners", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1235", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238", "comment": "" }, { @@ -5270,13 +5960,13 @@ { "term": "Hour", "context": "Hour", - "reference": "Modules/Settings/ThemeColorsTab.qml:1084, Modules/Settings/GammaControlTab.qml:232", + "reference": "Modules/Settings/ThemeColorsTab.qml:1116, Modules/Settings/GammaControlTab.qml:232", "comment": "" }, { "term": "Hourly", "context": "Hourly", - "reference": "Modules/DankDash/WeatherTab.qml:859", + "reference": "Modules/DankDash/WeatherTab.qml:860", "comment": "" }, { @@ -5288,19 +5978,37 @@ { "term": "How often to change wallpaper", "context": "How often to change wallpaper", - "reference": "Modules/Settings/WallpaperTab.qml:998", + "reference": "Modules/Settings/WallpaperTab.qml:1010", + "comment": "" + }, + { + "term": "How the background image is scaled", + "context": "How the background image is scaled", + "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": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherTab.qml:84, Modules/DankDash/WeatherForecastCard.qml:80, Modules/Settings/TimeWeatherTab.qml:879", + "reference": "Modules/Settings/TimeWeatherTab.qml:923, Modules/DankDash/WeatherForecastCard.qml:80, Modules/DankDash/WeatherTab.qml:84, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413", "comment": "" }, { "term": "Hyprland Layout Overrides", "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1693", + "reference": "Modules/Settings/ThemeColorsTab.qml:1908", "comment": "" }, { @@ -5312,61 +6020,43 @@ { "term": "I Understand", "context": "I Understand", - "reference": "Modules/Settings/PluginBrowser.qml:836", - "comment": "" - }, - { - "term": "IP", - "context": "IP", - "reference": "Modules/Settings/NetworkTab.qml:580", - "comment": "" - }, - { - "term": "IP Address:", - "context": "IP Address:", - "reference": "Modules/Settings/NetworkTab.qml:943", - "comment": "" - }, - { - "term": "ISO Date", - "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:109, Modules/Settings/TimeWeatherTab.qml:128, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:196, Modules/Settings/TimeWeatherTab.qml:215", + "reference": "Modules/Settings/PluginBrowser.qml:838", "comment": "" }, { "term": "Icon", "context": "Icon", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:861, Modules/Settings/DockTab.qml:237", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:864, Modules/Settings/DockTab.qml:247", "comment": "" }, { "term": "Icon Scale", "context": "Icon Scale", - "reference": "Modules/Settings/DankBarTab.qml:1410", + "reference": "Modules/Settings/DankBarTab.qml:976", "comment": "" }, { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/DockTab.qml:508, Modules/Settings/WorkspacesTab.qml:109", + "reference": "Modules/Settings/WorkspacesTab.qml:109, Modules/Settings/DockTab.qml:518", "comment": "" }, { "term": "Icon Size %", "context": "Icon Size %", - "reference": "Modules/Settings/WidgetsTabSection.qml:2183", + "reference": "Modules/Settings/WidgetsTabSection.qml:2431", "comment": "" }, { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2443, Modules/Settings/ThemeColorsTab.qml:2450", + "reference": "Modules/Settings/ThemeColorsTab.qml:2349, Modules/Settings/ThemeColorsTab.qml:2357", "comment": "" }, { "term": "Idle", "context": "Idle", - "reference": "Services/CupsService.qml:763", + "reference": "Services/CupsService.qml:778", "comment": "" }, { @@ -5375,28 +6065,28 @@ "reference": "Modules/Settings/WidgetsTab.qml:190, Modules/Settings/OSDTab.qml:125", "comment": "" }, - { - "term": "Idle Settings", - "context": "Idle Settings", - "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": "Idle Settings", + "context": "Idle Settings", + "reference": "Modules/Settings/PowerSleepTab.qml:34", + "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.", - "reference": "Modules/Settings/LockScreenTab.qml:74", + "reference": "Modules/Settings/LockScreenTab.qml:130", "comment": "" }, { "term": "Ignore Completely", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:124", + "reference": "Modules/Settings/NotificationsTab.qml:127", "comment": "" }, { @@ -5414,7 +6104,7 @@ { "term": "Import", "context": "Import", - "reference": "Widgets/VpnDetailContent.qml:87, Modules/Settings/NetworkTab.qml:1590", + "reference": "Widgets/VpnDetailContent.qml:87, Modules/Settings/NetworkTab.qml:1592", "comment": "" }, { @@ -5426,13 +6116,7 @@ { "term": "Inactive Monitor Color", "context": "Inactive Monitor Color", - "reference": "Modules/Settings/LockScreenTab.qml:241, Modules/Settings/LockScreenTab.qml:272", - "comment": "" - }, - { - "term": "Include Transitions", - "context": "Include Transitions", - "reference": "Modules/Settings/WallpaperTab.qml:1189", + "reference": "Modules/Settings/LockScreenTab.qml:406, Modules/Settings/LockScreenTab.qml:437", "comment": "" }, { @@ -5441,6 +6125,12 @@ "reference": "Modules/Settings/LauncherTab.qml:830", "comment": "" }, + { + "term": "Include Transitions", + "context": "Include Transitions", + "reference": "Modules/Settings/WallpaperTab.qml:1201", + "comment": "" + }, { "term": "Incompatible Plugins Loaded", "context": "Incompatible Plugins Loaded", @@ -5456,13 +6146,7 @@ { "term": "Indicator Style", "context": "Indicator Style", - "reference": "Modules/Settings/DockTab.qml:166", - "comment": "" - }, - { - "term": "Individual Batteries", - "context": "Individual Batteries", - "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:331", + "reference": "Modules/Settings/DockTab.qml:176", "comment": "" }, { @@ -5471,10 +6155,16 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:19", "comment": "" }, + { + "term": "Individual Batteries", + "context": "Individual Batteries", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:358", + "comment": "" + }, { "term": "Info", "context": "greeter doctor page status card", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:264", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:270", "comment": "" }, { @@ -5483,6 +6173,12 @@ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:87, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:92, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:101, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:225, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:262, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:312", "comment": "" }, + { + "term": "Inherit Global (Default)", + "context": "bar shadow direction source option", + "reference": "Modules/Settings/DankBarTab.qml:1120, Modules/Settings/DankBarTab.qml:1128", + "comment": "" + }, { "term": "Inhibitable", "context": "Inhibitable", @@ -5504,19 +6200,7 @@ { "term": "Install", "context": "install action button", - "reference": "Modules/Settings/PluginBrowser.qml:121, Modules/Settings/PluginBrowser.qml:632, Modules/Settings/ThemeBrowser.qml:120, Modules/Settings/ThemeBrowser.qml:648", - "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", + "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", "comment": "" }, { @@ -5525,16 +6209,34 @@ "reference": "Modules/Settings/ThemeBrowser.qml:290", "comment": "" }, + { + "term": "Install complete. Greeter has been installed.", + "context": "Install complete. Greeter has been installed.", + "reference": "Modules/Settings/GreeterTab.qml:379", + "comment": "" + }, { "term": "Install failed: %1", "context": "installation error", - "reference": "Modules/Settings/PluginBrowser.qml:85, Modules/Settings/ThemeBrowser.qml:68", + "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", "comment": "" }, { "term": "Install matugen package for dynamic theming", "context": "matugen installation hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:458", + "reference": "Modules/Settings/ThemeColorsTab.qml:476", + "comment": "" + }, + { + "term": "Install Plugin", + "context": "plugin installation dialog title", + "reference": "Modules/Settings/PluginBrowser.qml:119", "comment": "" }, { @@ -5549,28 +6251,46 @@ "reference": "Modules/Settings/PluginBrowser.qml:321", "comment": "" }, + { + "term": "Install the DMS greeter? A terminal will open for sudo authentication.", + "context": "Install the DMS greeter? A terminal will open for sudo authentication.", + "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", "reference": "Modules/Settings/ThemeBrowser.qml:119", "comment": "" }, + { + "term": "Installation and PAM setup: see the ", + "context": "Installation and PAM setup: see the ", + "reference": "Modules/Settings/GreeterTab.qml:765", + "comment": "" + }, { "term": "Installed", "context": "installed status", - "reference": "Modules/Settings/PluginBrowser.qml:628, Modules/Settings/ThemeBrowser.qml:651", + "reference": "Modules/Settings/ThemeBrowser.qml:651, Modules/Settings/PluginBrowser.qml:630", "comment": "" }, { "term": "Installed: %1", "context": "installation success", - "reference": "Modules/Settings/PluginBrowser.qml:88, Modules/Settings/ThemeBrowser.qml:71", + "reference": "Modules/Settings/ThemeBrowser.qml:71, Modules/Settings/PluginBrowser.qml:88", "comment": "" }, { "term": "Installing: %1", "context": "installation progress", - "reference": "Modules/Settings/PluginBrowser.qml:82, Modules/Settings/ThemeBrowser.qml:65", + "reference": "Modules/Settings/ThemeBrowser.qml:65, Modules/Settings/PluginBrowser.qml:82", "comment": "" }, { @@ -5582,19 +6302,19 @@ { "term": "Intensity", "context": "shadow intensity slider", - "reference": "Modules/Settings/DankBarTab.qml:1033", + "reference": "Modules/Settings/DankBarTab.qml:1091", "comment": "" }, { "term": "Interface:", "context": "Interface:", - "reference": "Modules/Settings/NetworkTab.qml:923", + "reference": "Modules/Settings/NetworkTab.qml:925", "comment": "" }, { "term": "Interlock Open", "context": "Interlock Open", - "reference": "Services/CupsService.qml:792", + "reference": "Services/CupsService.qml:807", "comment": "" }, { @@ -5606,13 +6326,13 @@ { "term": "Interval", "context": "wallpaper cycling mode tab", - "reference": "Modules/Settings/WallpaperTab.qml:944, Modules/Settings/WallpaperTab.qml:997", + "reference": "Modules/Settings/WallpaperTab.qml:956, Modules/Settings/WallpaperTab.qml:1009", "comment": "" }, { "term": "Invalid configuration", "context": "Invalid configuration", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1299", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1302", "comment": "" }, { @@ -5621,10 +6341,34 @@ "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:1159", + "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": "" }, { @@ -5636,7 +6380,7 @@ { "term": "Jobs", "context": "Jobs", - "reference": "Modules/Settings/PrinterTab.qml:1008, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:181", + "reference": "Modules/Settings/PrinterTab.qml:1339, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:181", "comment": "" }, { @@ -5708,7 +6452,7 @@ { "term": "Keyboard Shortcuts", "context": "Keyboard Shortcuts", - "reference": "Modals/Settings/SettingsSidebar.qml:199, Modals/Settings/SettingsSidebar.qml:539, Modals/Clipboard/ClipboardHeader.qml:68, Modules/Settings/KeybindsTab.qml:232", + "reference": "Modals/Settings/SettingsSidebar.qml:199, Modals/Settings/SettingsSidebar.qml:551, Modals/Clipboard/ClipboardHeader.qml:68, Modules/Settings/KeybindsTab.qml:232", "comment": "" }, { @@ -5717,34 +6461,40 @@ "reference": "Widgets/KeybindItem.qml:534", "comment": "" }, + { + "term": "Kill", + "context": "Kill", + "reference": "Modals/MuxModal.qml:127, Modals/MuxModal.qml:603", + "comment": "" + }, { "term": "Kill Process", "context": "Kill Process", "reference": "Modules/ProcessList/ProcessContextMenu.qml:41", "comment": "" }, + { + "term": "Kill Session", + "context": "Kill Session", + "reference": "Modals/MuxModal.qml:125", + "comment": "" + }, { "term": "Ko-fi", "context": "Ko-fi", "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": "Large", "context": "Large", - "reference": "Modules/Settings/WidgetsTabSection.qml:1355", + "reference": "Modules/Settings/WidgetsTabSection.qml:1603", "comment": "" }, { "term": "Largest", "context": "Largest", - "reference": "Modules/Settings/WidgetsTabSection.qml:1360", + "reference": "Modules/Settings/WidgetsTabSection.qml:1608", "comment": "" }, { @@ -5756,25 +6506,61 @@ { "term": "Last launched %1", "context": "Last launched %1", - "reference": "Modules/Settings/LauncherTab.qml:1197", + "reference": "Modules/Settings/LauncherTab.qml:1203", + "comment": "" + }, + { + "term": "Last launched %1 day ago", + "context": "Last launched %1 day ago", + "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:1196", + "reference": "Modules/Settings/LauncherTab.qml:1185", + "comment": "" + }, + { + "term": "Last launched %1 days ago", + "context": "Last launched %1 days ago", + "reference": "Modules/Settings/LauncherTab.qml:1202", + "comment": "" + }, + { + "term": "Last launched %1 hour ago", + "context": "Last launched %1 hour ago", + "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:1194", + "reference": "Modules/Settings/LauncherTab.qml:1183", + "comment": "" + }, + { + "term": "Last launched %1 hours ago", + "context": "Last launched %1 hours ago", + "reference": "Modules/Settings/LauncherTab.qml:1198", + "comment": "" + }, + { + "term": "Last launched %1 minute ago", + "context": "Last launched %1 minute ago", + "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:1192", + "reference": "Modules/Settings/LauncherTab.qml:1181", + "comment": "" + }, + { + "term": "Last launched %1 minutes ago", + "context": "Last launched %1 minutes ago", + "reference": "Modules/Settings/LauncherTab.qml:1194", "comment": "" }, { @@ -5786,19 +6572,13 @@ { "term": "Latitude", "context": "Latitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1229, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:449", + "reference": "Modules/Settings/ThemeColorsTab.qml:1261, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:492", "comment": "" }, { "term": "Launch", "context": "Launch", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:154, Modals/DankLauncherV2/Controller.qml:990, Modals/DankLauncherV2/Controller.qml:1383", - "comment": "" - }, - { - "term": "Launch Prefix", - "context": "Launch Prefix", - "reference": "Modules/Settings/LauncherTab.qml:311", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:154, Modals/DankLauncherV2/Controller.qml:1033, Modals/DankLauncherV2/Controller.qml:1426", "comment": "" }, { @@ -5807,6 +6587,12 @@ "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:146, Modals/DankLauncherV2/ActionPanel.qml:61, Modules/Dock/DockContextMenu.qml:482, Modules/DankBar/Widgets/AppsDockContextMenu.qml:401", "comment": "" }, + { + "term": "Launch Prefix", + "context": "Launch Prefix", + "reference": "Modules/Settings/LauncherTab.qml:311", + "comment": "" + }, { "term": "Launcher", "context": "Launcher", @@ -5816,7 +6602,7 @@ { "term": "Launcher Button", "context": "Launcher Button", - "reference": "Modules/Settings/DockTab.qml:216", + "reference": "Modules/Settings/DockTab.qml:226", "comment": "" }, { @@ -5828,7 +6614,13 @@ { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1237, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167", + "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", "comment": "" }, { @@ -5837,10 +6629,22 @@ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:193", "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", + "comment": "" + }, { "term": "Left", "context": "Left", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:249, Modules/Settings/DankBarTab.qml:501, Modules/DankBar/Popouts/BatteryPopout.qml:493", + "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:288, Modules/Settings/DankBarTab.qml:542, Modules/DankBar/Popouts/BatteryPopout.qml:520", "comment": "" }, { @@ -5852,13 +6656,31 @@ { "term": "Left Section", "context": "Left Section", - "reference": "Modules/Settings/WidgetsTab.qml:890", + "reference": "Modules/Settings/WidgetsTab.qml:922", + "comment": "" + }, + { + "term": "Light Direction", + "context": "Light Direction", + "reference": "Modules/Settings/ThemeColorsTab.qml:1700", "comment": "" }, { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1357, Modules/Settings/ThemeColorsTab.qml:1427, Modules/Settings/WallpaperTab.qml:392", + "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", "comment": "" }, { @@ -5882,7 +6704,7 @@ { "term": "Line", "context": "dock indicator style option", - "reference": "Modules/Settings/DockTab.qml:167", + "reference": "Modules/Settings/DockTab.qml:177", "comment": "" }, { @@ -5924,19 +6746,19 @@ { "term": "Loading keybinds...", "context": "Loading keybinds...", - "reference": "Modules/Settings/KeybindsTab.qml:571", + "reference": "Modules/Settings/KeybindsTab.qml:575", "comment": "" }, { "term": "Loading trending...", "context": "Loading trending...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/DankStickerSearch/DankStickerSearch.qml:153", "comment": "" }, { "term": "Loading...", "context": "loading indicator", - "reference": "Widgets/VpnProfileDelegate.qml:225, Modules/Settings/PluginBrowser.qml:389, Modules/Settings/PrinterTab.qml:376, Modules/Settings/ThemeBrowser.qml:357, Modules/Settings/NetworkTab.qml:679, Modules/Settings/NetworkTab.qml:1396, Modules/Settings/NetworkTab.qml:1882", + "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", "comment": "" }, { @@ -5945,16 +6767,28 @@ "reference": "Services/CupsService.qml:131", "comment": "" }, + { + "term": "Locale", + "context": "Locale", + "reference": "Modals/Settings/SettingsSidebar.qml:251", + "comment": "" + }, + { + "term": "Locale Settings", + "context": "Locale Settings", + "reference": "Modules/Settings/LocaleTab.qml:48", + "comment": "" + }, { "term": "Location", "context": "theme auto mode tab", - "reference": "Modules/Settings/ThemeColorsTab.qml:1040, Modules/Settings/PrinterTab.qml:444, Modules/Settings/PrinterTab.qml:833", + "reference": "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:549", + "reference": "Modules/Settings/TimeWeatherTab.qml:592", "comment": "" }, { @@ -5963,46 +6797,16 @@ "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": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:280, Modules/Settings/NotificationsTab.qml:701", - "comment": "" - }, - { - "term": "Lock Screen Display", - "context": "Lock Screen Display", - "reference": "Modules/Settings/LockScreenTab.qml:174", - "comment": "" - }, - { - "term": "Lock Screen Format", - "context": "Lock Screen Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:163", - "comment": "" - }, - { - "term": "Lock Screen behaviour", - "context": "Lock Screen behaviour", - "reference": "Modules/Settings/LockScreenTab.qml:106", - "comment": "" - }, - { - "term": "Lock Screen layout", - "context": "Lock Screen layout", - "reference": "Modules/Settings/LockScreenTab.qml:27", - "comment": "" - }, { "term": "Lock at startup", "context": "Lock at startup", - "reference": "Modules/Settings/LockScreenTab.qml:154", + "reference": "Modules/Settings/LockScreenTab.qml:210", "comment": "" }, { "term": "Lock before suspend", "context": "Lock before suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:92, Modules/Settings/LockScreenTab.qml:135", + "reference": "Modules/Settings/LockScreenTab.qml:191, Modules/Settings/PowerSleepTab.qml:92", "comment": "" }, { @@ -6011,6 +6815,36 @@ "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", @@ -6020,19 +6854,25 @@ { "term": "Log Out", "context": "Log Out", - "reference": "Modals/PowerMenuModal.qml:186, Modules/Lock/LockPowerMenu.qml:98, Modules/Settings/PowerSleepTab.qml:378, Modules/Settings/PowerSleepTab.qml:384", + "reference": "Modals/PowerMenuModal.qml:186, Modules/Settings/PowerSleepTab.qml:378, Modules/Settings/PowerSleepTab.qml:384, Modules/Lock/LockPowerMenu.qml:110", + "comment": "" + }, + { + "term": "Login Authentication", + "context": "Login Authentication", + "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:325", - "comment": "" - }, - { - "term": "Long Text", - "context": "Long Text", - "reference": "Modals/Clipboard/ClipboardEntry.qml:118", + "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337", "comment": "" }, { @@ -6041,28 +6881,28 @@ "reference": "Widgets/KeybindItem.qml:1645", "comment": "" }, + { + "term": "Long Text", + "context": "Long Text", + "reference": "Modals/Clipboard/ClipboardEntry.qml:118", + "comment": "" + }, { "term": "Longitude", "context": "Longitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1252, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:498", + "reference": "Modules/Settings/ThemeColorsTab.qml:1284, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:541", "comment": "" }, { "term": "Low Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:143, Modules/Settings/NotificationsTab.qml:731, Modules/Settings/NotificationsTab.qml:854, 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:340", "comment": "" }, { "term": "MAC", "context": "MAC", - "reference": "Modules/Settings/NetworkTab.qml:590", - "comment": "" - }, - { - "term": "MTU", - "context": "MTU", - "reference": "Widgets/VpnProfileDelegate.qml:69, Modules/Settings/NetworkTab.qml:1928", + "reference": "Modules/Settings/NetworkTab.qml:592", "comment": "" }, { @@ -6080,7 +6920,7 @@ { "term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", "context": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", - "reference": "Modules/Settings/DankBarTab.qml:181", + "reference": "Modules/Settings/DankBarTab.qml:220", "comment": "" }, { @@ -6092,25 +6932,37 @@ { "term": "MangoWC Layout Overrides", "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1796", + "reference": "Modules/Settings/ThemeColorsTab.qml:2011", + "comment": "" + }, + { + "term": "Manual", + "context": "bar shadow direction source option", + "reference": "Modules/Settings/DankBarTab.qml:1120, Modules/Settings/DankBarTab.qml:1126, Modules/Settings/DankBarTab.qml:1136", "comment": "" }, { "term": "Manual Coordinates", "context": "Manual Coordinates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1214, Modules/Settings/GammaControlTab.qml:367", + "reference": "Modules/Settings/ThemeColorsTab.qml:1246, Modules/Settings/GammaControlTab.qml:367", + "comment": "" + }, + { + "term": "Manual Direction", + "context": "bar manual shadow direction", + "reference": "Modules/Settings/DankBarTab.qml:1150", "comment": "" }, { "term": "Manual Gap Size", "context": "Manual Gap Size", - "reference": "Modules/Settings/DankBarTab.qml:896", + "reference": "Modules/Settings/DankBarTab.qml:927", "comment": "" }, { "term": "Manual Show/Hide", "context": "Manual Show/Hide", - "reference": "Modules/Settings/DankBarTab.qml:625", + "reference": "Modules/Settings/DankBarTab.qml:661", "comment": "" }, { @@ -6122,31 +6974,31 @@ { "term": "Margin", "context": "Margin", - "reference": "Modules/Settings/DockTab.qml:545", + "reference": "Modules/Settings/DockTab.qml:555", "comment": "" }, { "term": "Marker Supply Empty", "context": "Marker Supply Empty", - "reference": "Services/CupsService.qml:777", + "reference": "Services/CupsService.qml:792", "comment": "" }, { "term": "Marker Supply Low", "context": "Marker Supply Low", - "reference": "Services/CupsService.qml:776", + "reference": "Services/CupsService.qml:791", "comment": "" }, { "term": "Marker Waste Almost Full", "context": "Marker Waste Almost Full", - "reference": "Services/CupsService.qml:778", + "reference": "Services/CupsService.qml:793", "comment": "" }, { "term": "Marker Waste Full", "context": "Marker Waste Full", - "reference": "Services/CupsService.qml:779", + "reference": "Services/CupsService.qml:794", "comment": "" }, { @@ -6168,39 +7020,57 @@ "comment": "" }, { - "term": "Material Design inspired color themes", - "context": "generic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:232", + "term": "Material colors generated from wallpaper", + "context": "dynamic theme description", + "reference": "Modules/Settings/ThemeColorsTab.qml:235", "comment": "" }, { - "term": "Material colors generated from wallpaper", - "context": "dynamic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:227", + "term": "Material Design inspired color themes", + "context": "generic theme description", + "reference": "Modules/Settings/ThemeColorsTab.qml:240", + "comment": "" + }, + { + "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", + "context": "Material inspired shadows and elevation on modals, popouts, and dialogs", + "reference": "Modules/Settings/ThemeColorsTab.qml:1623", "comment": "" }, { "term": "Matugen Missing", "context": "matugen not found status", - "reference": "Modules/Settings/ThemeColorsTab.qml:441", + "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", - "reference": "Modules/Settings/ThemeColorsTab.qml:477", + "reference": "Modules/Settings/ThemeColorsTab.qml:495", "comment": "" }, { "term": "Matugen Target Monitor", "context": "Matugen Target Monitor", - "reference": "Modules/Settings/WallpaperTab.qml:842", + "reference": "Modules/Settings/WallpaperTab.qml:854", "comment": "" }, { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2133", + "reference": "Modules/Settings/ThemeColorsTab.qml:2376", + "comment": "" + }, + { + "term": "Max apps to show", + "context": "Max apps to show", + "reference": "Modules/Settings/WorkspacesTab.qml:79", "comment": "" }, { @@ -6218,25 +7088,31 @@ { "term": "Max Pinned Apps", "context": "Max Pinned Apps", - "reference": "Modules/Settings/WidgetsTabSection.qml:1742", + "reference": "Modules/Settings/WidgetsTabSection.qml:1990", "comment": "" }, { "term": "Max Pinned Apps (0 = Unlimited)", "context": "Max Pinned Apps (0 = Unlimited)", - "reference": "Modules/Settings/DockTab.qml:182", + "reference": "Modules/Settings/DockTab.qml:192", "comment": "" }, { "term": "Max Running Apps", "context": "Max Running Apps", - "reference": "Modules/Settings/WidgetsTabSection.qml:1796", + "reference": "Modules/Settings/WidgetsTabSection.qml:2044", "comment": "" }, { "term": "Max Running Apps (0 = Unlimited)", "context": "Max Running Apps (0 = Unlimited)", - "reference": "Modules/Settings/DockTab.qml:194", + "reference": "Modules/Settings/DockTab.qml:204", + "comment": "" + }, + { + "term": "Max to Edges", + "context": "Max to Edges", + "reference": "Modals/WindowRuleModal.qml:539", "comment": "" }, { @@ -6251,18 +7127,6 @@ "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", @@ -6272,19 +7136,19 @@ { "term": "Maximize Detection", "context": "Maximize Detection", - "reference": "Modules/Settings/DankBarTab.qml:673", + "reference": "Modules/Settings/DankBarTab.qml:708", "comment": "" }, { "term": "Maximize Widget Icons", "context": "Maximize Widget Icons", - "reference": "Modules/Settings/DankBarTab.qml:943", + "reference": "Modules/Settings/DankBarTab.qml:1305", "comment": "" }, { "term": "Maximize Widget Text", "context": "Maximize Widget Text", - "reference": "Modules/Settings/DankBarTab.qml:951", + "reference": "Modules/Settings/DankBarTab.qml:1313", "comment": "" }, { @@ -6296,13 +7160,7 @@ { "term": "Maximum History", "context": "Maximum History", - "reference": "Modules/Settings/NotificationsTab.qml:798, Modules/Settings/ClipboardTab.qml:287", - "comment": "" - }, - { - "term": "Maximum Pinned Entries", - "context": "Maximum Pinned Entries", - "reference": "Modules/Settings/ClipboardTab.qml:377", + "reference": "Modules/Settings/NotificationsTab.qml:818, Modules/Settings/ClipboardTab.qml:287", "comment": "" }, { @@ -6320,7 +7178,13 @@ { "term": "Maximum number of notifications to keep", "context": "notification history limit", - "reference": "Modules/Settings/NotificationsTab.qml:799", + "reference": "Modules/Settings/NotificationsTab.qml:819", + "comment": "" + }, + { + "term": "Maximum Pinned Entries", + "context": "Maximum Pinned Entries", + "reference": "Modules/Settings/ClipboardTab.qml:377", "comment": "" }, { @@ -6338,7 +7202,7 @@ { "term": "Media", "context": "Media", - "reference": "Services/AppSearchService.qml:622, Services/AppSearchService.qml:623, Services/AppSearchService.qml:624, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1095, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1110, Modules/DankDash/DankDashPopout.qml:274", + "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", "comment": "" }, { @@ -6350,25 +7214,25 @@ { "term": "Media Empty", "context": "Media Empty", - "reference": "Services/CupsService.qml:784", + "reference": "Services/CupsService.qml:799", "comment": "" }, { "term": "Media Jam", "context": "Media Jam", - "reference": "Services/CupsService.qml:786", + "reference": "Services/CupsService.qml:801", "comment": "" }, { "term": "Media Low", "context": "Media Low", - "reference": "Services/CupsService.qml:783", + "reference": "Services/CupsService.qml:798", "comment": "" }, { "term": "Media Needed", "context": "Media Needed", - "reference": "Services/CupsService.qml:785", + "reference": "Services/CupsService.qml:800", "comment": "" }, { @@ -6392,7 +7256,7 @@ { "term": "Media Players (", "context": "Media Players (", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:391", + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:403", "comment": "" }, { @@ -6404,13 +7268,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:1350, Modules/Settings/NotificationsTab.qml:325", + "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", "comment": "" }, { "term": "Memory", "context": "Memory", - "reference": "Modules/ProcessList/ProcessListPopout.qml:319, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", + "reference": "Modules/ProcessList/PerformanceView.qml:91, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/ProcessListPopout.qml:319, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", "comment": "" }, { @@ -6440,13 +7304,13 @@ { "term": "Message Content", "context": "notification privacy mode placeholder", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:612", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:652", "comment": "" }, { "term": "Microphone", "context": "Microphone", - "reference": "Modules/Settings/WidgetsTabSection.qml:859, Modules/Settings/WidgetsTabSection.qml:1065", + "reference": "Modules/Settings/WidgetsTabSection.qml:1107, Modules/Settings/WidgetsTabSection.qml:1313", "comment": "" }, { @@ -6455,18 +7319,18 @@ "reference": "Modules/Settings/OSDTab.qml:133", "comment": "" }, - { - "term": "Microphone Volume", - "context": "Microphone Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:864", - "comment": "" - }, { "term": "Microphone settings", "context": "Microphone settings", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:128", "comment": "" }, + { + "term": "Microphone Volume", + "context": "Microphone Volume", + "reference": "Modules/Settings/WidgetsTabSection.qml:1112", + "comment": "" + }, { "term": "Microphone volume control", "context": "Microphone volume control", @@ -6476,7 +7340,7 @@ { "term": "Middle Section", "context": "Middle Section", - "reference": "Modules/Settings/WidgetsTab.qml:948", + "reference": "Modules/Settings/WidgetsTab.qml:986", "comment": "" }, { @@ -6500,7 +7364,13 @@ { "term": "Minute", "context": "Minute", - "reference": "Modules/Settings/ThemeColorsTab.qml:1092, Modules/Settings/GammaControlTab.qml:240", + "reference": "Modules/Settings/ThemeColorsTab.qml:1124, Modules/Settings/GammaControlTab.qml:240", + "comment": "" + }, + { + "term": "minutes", + "context": "minutes", + "reference": "Modules/Settings/NotificationsTab.qml:171", "comment": "" }, { @@ -6512,13 +7382,19 @@ { "term": "Missing Environment Variables", "context": "qt theme env error title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2460", + "reference": "Modules/Settings/ThemeColorsTab.qml:2367", "comment": "" }, { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1899", + "reference": "Modules/Settings/ThemeColorsTab.qml:2114", + "comment": "" + }, + { + "term": "Modal Shadows", + "context": "Modal Shadows", + "reference": "Modules/Settings/ThemeColorsTab.qml:1772", "comment": "" }, { @@ -6530,25 +7406,25 @@ { "term": "Mode", "context": "Mode", - "reference": "Modules/Settings/NetworkTab.qml:1436, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1217", + "reference": "Modules/Settings/NetworkTab.qml:1438, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1220", "comment": "" }, { "term": "Mode:", "context": "Mode:", - "reference": "Modules/Settings/WallpaperTab.qml:928", + "reference": "Modules/Settings/WallpaperTab.qml:940", "comment": "" }, { "term": "Model", "context": "Model", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:828, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1208", + "reference": "Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", "comment": "" }, { "term": "Modified", "context": "Modified", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:659, Modals/DankLauncherV2/LauncherContent.qml:666, Modals/DankLauncherV2/LauncherContent.qml:672, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1235, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1237", + "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", "comment": "" }, { @@ -6578,7 +7454,7 @@ { "term": "Monitor whose wallpaper drives dynamic theming colors", "context": "Monitor whose wallpaper drives dynamic theming colors", - "reference": "Modules/Settings/WallpaperTab.qml:843", + "reference": "Modules/Settings/WallpaperTab.qml:855", "comment": "" }, { @@ -6602,7 +7478,7 @@ { "term": "Month Date", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:93, Modules/Settings/TimeWeatherTab.qml:124, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:211", + "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", "comment": "" }, { @@ -6620,13 +7496,13 @@ { "term": "Mouse pointer appearance", "context": "Mouse pointer appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:2019", + "reference": "Modules/Settings/ThemeColorsTab.qml:2235", "comment": "" }, { "term": "Mouse pointer size in pixels", "context": "Mouse pointer size in pixels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2035", + "reference": "Modules/Settings/ThemeColorsTab.qml:2251", "comment": "" }, { @@ -6644,7 +7520,19 @@ { "term": "Moving to Paused", "context": "Moving to Paused", - "reference": "Services/CupsService.qml:815", + "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": "" }, { @@ -6653,6 +7541,24 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:130", "comment": "" }, + { + "term": "Multiplexer", + "context": "Multiplexer", + "reference": "Modules/Settings/MuxTab.qml:45", + "comment": "" + }, + { + "term": "Multiplexer Type", + "context": "Multiplexer Type", + "reference": "Modules/Settings/MuxTab.qml:52", + "comment": "" + }, + { + "term": "Multiplexers", + "context": "Multiplexers", + "reference": "Modals/Settings/SettingsSidebar.qml:265", + "comment": "" + }, { "term": "Music", "context": "Music", @@ -6662,13 +7568,13 @@ { "term": "Mute Popups", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:120", + "reference": "Modules/Settings/NotificationsTab.qml:123", "comment": "" }, { "term": "Mute popups for %1", "context": "Mute popups for %1", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1056, Modules/Notifications/Center/NotificationCard.qml:962", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Center/NotificationCard.qml:1016", "comment": "" }, { @@ -6680,7 +7586,7 @@ { "term": "Muted Apps", "context": "Muted Apps", - "reference": "Modules/Settings/NotificationsTab.qml:612", + "reference": "Modules/Settings/NotificationsTab.qml:632", "comment": "" }, { @@ -6689,34 +7595,46 @@ "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:657, Modals/DankLauncherV2/LauncherContent.qml:666, Modals/DankLauncherV2/LauncherContent.qml:671, Modals/DankLauncherV2/LauncherContent.qml:841, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:423, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1208, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "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", "comment": "" }, { "term": "Named Workspace Icons", "context": "Named Workspace Icons", - "reference": "Modules/Settings/WorkspacesTab.qml:407", + "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", "comment": "" }, { "term": "Navigation", "context": "Navigation", - "reference": "Widgets/DankIconPicker.qml:48", + "reference": "Widgets/DankIconPicker.qml:47", "comment": "" }, { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:232, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:834, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:101", + "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", "comment": "" }, { @@ -6734,7 +7652,7 @@ { "term": "Network Information", "context": "Network Information", - "reference": "Modals/NetworkWiredInfoModal.qml:62, Modals/NetworkInfoModal.qml:62", + "reference": "Modals/NetworkInfoModal.qml:62, Modals/NetworkWiredInfoModal.qml:62", "comment": "" }, { @@ -6755,12 +7673,6 @@ "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", @@ -6770,13 +7682,19 @@ { "term": "Never", "context": "Never", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:30, Modules/Settings/NotificationsTab.qml:163, Modules/Settings/ClipboardTab.qml:99", + "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", + "comment": "" + }, + { + "term": "Never used", + "context": "Never used", + "reference": "Modules/Settings/LauncherTab.qml:1182", "comment": "" }, { "term": "New", "context": "New", - "reference": "Modules/Notepad/NotepadTextEditor.qml:795", + "reference": "Modals/MuxModal.qml:602, Modules/Notepad/NotepadTextEditor.qml:795", "comment": "" }, { @@ -6788,7 +7706,7 @@ { "term": "New Keybind", "context": "New Keybind", - "reference": "Modules/Settings/KeybindsTab.qml:485", + "reference": "Modules/Settings/KeybindsTab.qml:489", "comment": "" }, { @@ -6797,6 +7715,12 @@ "reference": "Modules/Settings/SoundsTab.qml:98", "comment": "" }, + { + "term": "New Session", + "context": "New Session", + "reference": "Modals/MuxModal.qml:137, Modals/MuxModal.qml:395", + "comment": "" + }, { "term": "New Window Rule", "context": "New Window Rule", @@ -6806,13 +7730,7 @@ { "term": "New York, NY", "context": "New York, NY", - "reference": "Modules/Settings/TimeWeatherTab.qml:559", - "comment": "" - }, - { - "term": "New group name...", - "context": "New group name...", - "reference": "Modules/Settings/DesktopWidgetsTab.qml:137", + "reference": "Modules/Settings/TimeWeatherTab.qml:602", "comment": "" }, { @@ -6824,7 +7742,7 @@ { "term": "Next Transition", "context": "Next Transition", - "reference": "Modules/Settings/ThemeColorsTab.qml:1393, Modules/Settings/GammaControlTab.qml:643", + "reference": "Modules/Settings/ThemeColorsTab.qml:1425, Modules/Settings/GammaControlTab.qml:643", "comment": "" }, { @@ -6839,6 +7757,12 @@ "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", + "comment": "" + }, { "term": "Night Temperature", "context": "Night Temperature", @@ -6846,9 +7770,9 @@ "comment": "" }, { - "term": "Night mode & gamma", - "context": "greeter feature card description", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:142", + "term": "Niri compositor actions (focus, move, etc.)", + "context": "Niri compositor actions (focus, move, etc.)", + "reference": "Widgets/KeybindItem.qml:855", "comment": "" }, { @@ -6860,19 +7784,37 @@ { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1590", + "reference": "Modules/Settings/ThemeColorsTab.qml:1805", "comment": "" }, { - "term": "Niri compositor actions (focus, move, etc.)", - "context": "Niri compositor actions (focus, move, etc.)", - "reference": "Widgets/KeybindItem.qml:855", + "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", "comment": "" }, { "term": "No", "context": "No", - "reference": "Widgets/VpnProfileDelegate.qml:81, Modules/Settings/PrinterTab.qml:838, Modules/Settings/NetworkTab.qml:1938, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1229, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1233, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1243, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1253, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1255", + "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": "" }, { @@ -6881,16 +7823,52 @@ "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", - "reference": "Modules/Settings/DankBarTab.qml:935", + "reference": "Modules/Settings/DankBarTab.qml:1297", "comment": "" }, { @@ -6899,6 +7877,12 @@ "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", @@ -6950,7 +7934,7 @@ { "term": "No History", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:132", + "reference": "Modules/Settings/NotificationsTab.qml:113", "comment": "" }, { @@ -6980,13 +7964,7 @@ { "term": "No VPN profiles", "context": "No VPN profiles", - "reference": "Widgets/VpnDetailContent.qml:177, Modules/Settings/NetworkTab.qml:1669", - "comment": "" - }, - { - "term": "No Weather Data", - "context": "No Weather Data", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:166", + "reference": "Modules/Settings/NetworkTab.qml:1660, Widgets/VpnDetailContent.qml:177", "comment": "" }, { @@ -7001,40 +7979,40 @@ "reference": "Widgets/KeybindItem.qml:372", "comment": "" }, + { + "term": "No active %1 sessions", + "context": "No active %1 sessions", + "reference": "Modals/MuxModal.qml:572", + "comment": "" + }, { "term": "No adapter", "context": "bluetooth status", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:315", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:299", "comment": "" }, { "term": "No adapters", "context": "bluetooth status", - "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:353", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:337, Modules/Settings/NetworkTab.qml:341", "comment": "" }, { "term": "No app customizations.", "context": "No app customizations.", - "reference": "Modules/Settings/LauncherTab.qml:1055", + "reference": "Modules/Settings/LauncherTab.qml:1044", "comment": "" }, { "term": "No apps found", "context": "No apps found", - "reference": "Modals/DankLauncherV2/ResultsList.qml:488", + "reference": "Modals/DankLauncherV2/ResultsList.qml:479", "comment": "" }, { "term": "No apps have been launched yet.", "context": "No apps have been launched yet.", - "reference": "Modules/Settings/LauncherTab.qml:1225", - "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:621", + "reference": "Modules/Settings/LauncherTab.qml:1214", "comment": "" }, { @@ -7058,19 +8036,19 @@ { "term": "No checks passed", "context": "greeter doctor page empty state", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:332", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:338", "comment": "" }, { "term": "No custom theme file", "context": "no custom theme file status", - "reference": "Modules/Settings/ThemeColorsTab.qml:530", + "reference": "Modules/Settings/ThemeColorsTab.qml:548", "comment": "" }, { "term": "No devices", "context": "Phone Connect no devices status | bluetooth status", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:368", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:368, dms-plugins/DankKDEConnect/DankKDEConnect.qml:33", "comment": "" }, { @@ -7082,7 +8060,13 @@ { "term": "No devices found", "context": "KDE Connect no devices message", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:124, dms-plugins/DankKDEConnect/components/EmptyState.qml:11, Modules/Settings/PrinterTab.qml:301", + "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", "comment": "" }, { @@ -7094,19 +8078,25 @@ { "term": "No disk data available", "context": "No disk data available", - "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:48", + "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", "comment": "" }, { "term": "No drivers found", "context": "No drivers found", - "reference": "Modules/Settings/PrinterTab.qml:373", + "reference": "Modules/Settings/PrinterTab.qml:704", "comment": "" }, { "term": "No errors", "context": "greeter doctor page empty state", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:326", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:332", "comment": "" }, { @@ -7121,22 +8111,52 @@ "reference": "Modals/DankLauncherV2/ResultsList.qml:481", "comment": "" }, + { + "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", + "comment": "" + }, { "term": "No folders found", "context": "No folders found", "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:330", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:336", "comment": "" }, { @@ -7160,7 +8180,7 @@ { "term": "No keybinds found", "context": "No keybinds found", - "reference": "Modules/Settings/KeybindsTab.qml:579", + "reference": "Modules/Settings/KeybindsTab.qml:583", "comment": "" }, { @@ -7178,7 +8198,7 @@ { "term": "No matches", "context": "No matches", - "reference": "Modals/Settings/SettingsSidebar.qml:785, Modules/Notepad/NotepadTextEditor.qml:382", + "reference": "Modals/Settings/SettingsSidebar.qml:797, Modules/Notepad/NotepadTextEditor.qml:382", "comment": "" }, { @@ -7187,10 +8207,16 @@ "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", - "reference": "Modules/Settings/WallpaperTab.qml:816, Modules/Settings/WallpaperTab.qml:847", + "reference": "Modules/Settings/WallpaperTab.qml:828, Modules/Settings/WallpaperTab.qml:859", "comment": "" }, { @@ -7220,7 +8246,7 @@ { "term": "No plugins found", "context": "empty plugin list", - "reference": "Modules/Settings/PluginBrowser.qml:706", + "reference": "Modules/Settings/PluginBrowser.qml:708", "comment": "" }, { @@ -7238,13 +8264,13 @@ { "term": "No printers configured", "context": "No printers configured", - "reference": "Modules/Settings/PrinterTab.qml:550", + "reference": "Modules/Settings/PrinterTab.qml:881", "comment": "" }, { "term": "No printers found", "context": "No printers found", - "reference": "Modules/Settings/PrinterTab.qml:592", + "reference": "Modules/Settings/PrinterTab.qml:923", "comment": "" }, { @@ -7256,19 +8282,49 @@ { "term": "No recent clipboard entries found", "context": "No recent clipboard entries found", - "reference": "Modals/Clipboard/ClipboardContent.qml:132", + "reference": "Modals/Clipboard/ClipboardContent.qml:125", "comment": "" }, { "term": "No results found", "context": "No results found", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96, Modals/DankLauncherV2/ResultsList.qml:483, Modals/DankLauncherV2/ResultsList.qml:490", + "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", "comment": "" }, { "term": "No saved clipboard entries", "context": "No saved clipboard entries", - "reference": "Modals/Clipboard/ClipboardContent.qml:198", + "reference": "Modals/Clipboard/ClipboardContent.qml:184", + "comment": "" + }, + { + "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", + "comment": "" + }, + { + "term": "No status output.", + "context": "No status output.", + "reference": "Modules/Settings/GreeterTab.qml:269", "comment": "" }, { @@ -7280,19 +8336,31 @@ { "term": "No themes installed. Browse themes to install from the registry.", "context": "no registry themes installed hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:964", + "reference": "Modules/Settings/ThemeColorsTab.qml:754", "comment": "" }, { "term": "No trigger", "context": "No trigger", - "reference": "Modals/DankLauncherV2/Controller.qml:1125, Modules/Settings/LauncherTab.qml:742", + "reference": "Modals/DankLauncherV2/Controller.qml:1168, Modules/Settings/LauncherTab.qml:742", + "comment": "" + }, + { + "term": "No video found in folder", + "context": "No video found in folder", + "reference": "Modules/Lock/VideoScreensaver.qml:57", + "comment": "" + }, + { + "term": "No VPN profiles", + "context": "No VPN profiles", + "reference": "Widgets/VpnDetailContent.qml:177, Modules/Settings/NetworkTab.qml:1671", "comment": "" }, { "term": "No wallpaper selected", "context": "no wallpaper status", - "reference": "Modules/Settings/ThemeColorsTab.qml:444, Modules/Settings/WallpaperTab.qml:240", + "reference": "Modules/Settings/WallpaperTab.qml:240, Modules/Settings/ThemeColorsTab.qml:462", "comment": "" }, { @@ -7304,7 +8372,19 @@ { "term": "No warnings", "context": "greeter doctor page empty state", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:328", + "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": "" }, { @@ -7334,13 +8414,13 @@ { "term": "None", "context": "wallpaper transition option", - "reference": "Modals/WindowRuleModal.qml:740, Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WallpaperTab.qml:1149, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:694, Modules/Settings/DankBarTab.qml:694, Modules/Settings/DankBarTab.qml:731, Modules/Settings/NotificationsTab.qml:325, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", + "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", "comment": "" }, { "term": "Normal", "context": "Normal", - "reference": "Modals/WindowRuleModal.qml:762, Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1790, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1806, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1811", + "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", "comment": "" }, { @@ -7352,7 +8432,7 @@ { "term": "Normal Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:147, Modules/Settings/NotificationsTab.qml:748, Modules/Settings/NotificationsTab.qml:863, 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:374", "comment": "" }, { @@ -7361,16 +8441,40 @@ "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:22", "comment": "" }, + { + "term": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", + "context": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", + "reference": "Modules/Settings/GreeterTab.qml:47", + "comment": "" + }, + { + "term": "Not available — install fprintd and pam_fprintd.", + "context": "Not available — install fprintd and pam_fprintd.", + "reference": "Modules/Settings/LockScreenTab.qml:26", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f, or configure greetd PAM.", + "context": "Not available — install or configure pam_u2f, or configure greetd PAM.", + "reference": "Modules/Settings/GreeterTab.qml:69", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f.", + "context": "Not available — install or configure pam_u2f.", + "reference": "Modules/Settings/LockScreenTab.qml:41", + "comment": "" + }, { "term": "Not connected", "context": "network status", - "reference": "Modules/Settings/NetworkTab.qml:824, Modules/ControlCenter/Components/DragDropGrid.qml:307", + "reference": "Modules/Settings/NetworkTab.qml:826, Modules/ControlCenter/Components/DragDropGrid.qml:307", "comment": "" }, { "term": "Not detected", "context": "Not detected", - "reference": "Modules/Settings/ThemeColorsTab.qml:119, Modules/Settings/ThemeColorsTab.qml:120", + "reference": "Modules/Settings/ThemeColorsTab.qml:118, Modules/Settings/ThemeColorsTab.qml:119", "comment": "" }, { @@ -7382,7 +8486,7 @@ { "term": "Not set", "context": "wallpaper not set label", - "reference": "Modules/Settings/WallpaperTab.qml:561, Modules/Settings/WallpaperTab.qml:745", + "reference": "Modules/Settings/WallpaperTab.qml:567, Modules/Settings/WallpaperTab.qml:757", "comment": "" }, { @@ -7394,7 +8498,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:757, Services/AppSearchService.qml:179, Modules/Settings/WidgetsTab.qml:232", + "reference": "DMSShell.qml:810, Services/AppSearchService.qml:179, Modules/Settings/WidgetsTab.qml:232", "comment": "" }, { @@ -7430,25 +8534,25 @@ { "term": "Notification Display", "context": "lock screen notification privacy setting", - "reference": "Modules/Settings/LockScreenTab.qml:90, Modules/Settings/NotificationsTab.qml:707", + "reference": "Modules/Settings/LockScreenTab.qml:146, Modules/Settings/NotificationsTab.qml:727", "comment": "" }, { "term": "Notification Overlay", "context": "Notification Overlay", - "reference": "Modules/Settings/NotificationsTab.qml:258, Modules/Notifications/Center/NotificationSettings.qml:243", + "reference": "Modules/Settings/NotificationsTab.qml:261, Modules/Notifications/Center/NotificationSettings.qml:243", "comment": "" }, { "term": "Notification Popups", "context": "Notification Popups", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:203", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:206", "comment": "" }, { "term": "Notification Rules", "context": "Notification Rules", - "reference": "Modules/Settings/NotificationsTab.qml:383", + "reference": "Modules/Settings/NotificationsTab.qml:403", "comment": "" }, { @@ -7460,7 +8564,7 @@ { "term": "Notification Timeouts", "context": "Notification Timeouts", - "reference": "Modules/Settings/NotificationsTab.qml:723, Modules/Notifications/Center/NotificationSettings.qml:164", + "reference": "Modules/Settings/NotificationsTab.qml:743, Modules/Notifications/Center/NotificationSettings.qml:164", "comment": "" }, { @@ -7472,55 +8576,43 @@ { "term": "Notifications", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:146, Modules/Notifications/Center/NotificationHeader.qml:49", + "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", "comment": "" }, { "term": "Numbers", "context": "Numbers", - "reference": "Widgets/DankIconPicker.qml:24", + "reference": "Widgets/DankIconPicker.qml:23", "comment": "" }, { "term": "Numeric (D/M)", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:101, Modules/Settings/TimeWeatherTab.qml:126, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:188, Modules/Settings/TimeWeatherTab.qml:213", + "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", "comment": "" }, { "term": "Numeric (M/D)", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:97, Modules/Settings/TimeWeatherTab.qml:125, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:184, Modules/Settings/TimeWeatherTab.qml:212", - "comment": "" - }, - { - "term": "OK", - "context": "greeter doctor page status card", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:275", - "comment": "" - }, - { - "term": "OS Logo", - "context": "OS Logo", - "reference": "Modules/Settings/DockTab.qml:256, Modules/Settings/LauncherTab.qml:59", - "comment": "" - }, - { - "term": "OSD Position", - "context": "OSD Position", - "reference": "Modules/Settings/OSDTab.qml:30", + "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", "comment": "" }, { "term": "Occupied Color", "context": "Occupied Color", - "reference": "Modules/Settings/WorkspacesTab.qml:224", + "reference": "Modules/Settings/WorkspacesTab.qml:234", "comment": "" }, { "term": "Off", "context": "bluetooth status", - "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/DisplayConfig/OutputCard.qml:280, Modules/Settings/DisplayConfig/OutputCard.qml:289, Modules/Settings/DisplayConfig/OutputCard.qml:292, Modules/Settings/DisplayConfig/OutputCard.qml:303, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/OutputCard.qml:315, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:89, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/ControlCenter/Components/DragDropGrid.qml:355", + "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:89, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/Settings/DisplayConfig/OutputCard.qml:280, Modules/Settings/DisplayConfig/OutputCard.qml:289, Modules/Settings/DisplayConfig/OutputCard.qml:292, Modules/Settings/DisplayConfig/OutputCard.qml:303, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/OutputCard.qml:315, Modules/ControlCenter/Components/DragDropGrid.qml:355", "comment": "" }, { @@ -7529,6 +8621,12 @@ "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", @@ -7538,7 +8636,13 @@ { "term": "Offline Report", "context": "Offline Report", - "reference": "Services/CupsService.qml:814", + "reference": "Services/CupsService.qml:829", + "comment": "" + }, + { + "term": "OK", + "context": "greeter doctor page status card", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:281", "comment": "" }, { @@ -7553,6 +8657,42 @@ "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", @@ -7577,6 +8717,12 @@ "reference": "Modules/Settings/GammaControlTab.qml:140", "comment": "" }, + { + "term": "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.", + "context": "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.", + "reference": "Modules/Settings/GreeterTab.qml:39", + "comment": "" + }, { "term": "Only show windows from the current monitor on each dock", "context": "Only show windows from the current monitor on each dock", @@ -7592,7 +8738,7 @@ { "term": "Opacity", "context": "Opacity", - "reference": "Modals/WindowRuleModal.qml:679, Modals/DankColorPickerModal.qml:514, Modules/Settings/DankBarTab.qml:1045, Modules/Settings/DankBarTab.qml:1195, Modules/Settings/DankBarTab.qml:1285, Modules/Settings/WindowRulesTab.qml:534", + "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", "comment": "" }, { @@ -7604,7 +8750,19 @@ { "term": "Open", "context": "Open", - "reference": "Modals/DankLauncherV2/Controller.qml:994, Modals/DankLauncherV2/Controller.qml:998, Modals/DankLauncherV2/Controller.qml:1002, Modules/Notepad/NotepadTextEditor.qml:779, Modules/Settings/NetworkTab.qml:1199, Modules/Settings/NetworkTab.qml:1446, Modules/ControlCenter/Details/NetworkDetail.qml:609", + "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", + "comment": "" + }, + { + "term": "open", + "context": "open", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:384", + "comment": "" + }, + { + "term": "Open a new note", + "context": "Open a new note", + "reference": "Modules/DankBar/Widgets/NotepadButton.qml:347", "comment": "" }, { @@ -7613,6 +8771,24 @@ "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", + "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", @@ -7625,30 +8801,6 @@ "reference": "Modules/Notepad/Notepad.qml:333", "comment": "" }, - { - "term": "Open a new note", - "context": "Open a new note", - "reference": "Modules/DankBar/Widgets/NotepadButton.qml:347", - "comment": "" - }, - { - "term": "Open folder", - "context": "Open folder", - "reference": "Modals/DankLauncherV2/Controller.qml:1002", - "comment": "" - }, - { - "term": "Open in Browser", - "context": "Open in Browser", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:301, dms-plugins/DankGifSearch/DankGifSearch.qml:248", - "comment": "" - }, - { - "term": "Open in terminal", - "context": "Open in terminal", - "reference": "Modals/DankLauncherV2/Controller.qml:1002", - "comment": "" - }, { "term": "Open search bar to find text", "context": "Open search bar to find text", @@ -7658,7 +8810,19 @@ { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:596, Modals/BrowserPickerModal.qml:11", + "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": "" }, { @@ -7670,31 +8834,25 @@ { "term": "Opening SMS app", "context": "Phone Connect SMS action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:135", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:136", "comment": "" }, { - "term": "Opening file browser", - "context": "Phone Connect browse action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:145", - "comment": "" - }, - { - "term": "Opening files", - "context": "KDE Connect browse action", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:328", + "term": "Opening terminal: ", + "context": "Opening terminal: ", + "reference": "Modules/Settings/GreeterTab.qml:156", "comment": "" }, { "term": "Optional description", "context": "Optional description", - "reference": "Modules/Settings/PrinterTab.qml:475", + "reference": "Modules/Settings/PrinterTab.qml:806", "comment": "" }, { "term": "Optional location", "context": "Optional location", - "reference": "Modules/Settings/PrinterTab.qml:454", + "reference": "Modules/Settings/PrinterTab.qml:785", "comment": "" }, { @@ -7703,6 +8861,12 @@ "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", @@ -7715,10 +8879,22 @@ "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", - "reference": "Services/CupsService.qml:770", + "reference": "Services/CupsService.qml:785", "comment": "" }, { @@ -7736,13 +8912,13 @@ { "term": "Output Area Almost Full", "context": "Output Area Almost Full", - "reference": "Services/CupsService.qml:794", + "reference": "Services/CupsService.qml:809", "comment": "" }, { "term": "Output Area Full", "context": "Output Area Full", - "reference": "Services/CupsService.qml:795", + "reference": "Services/CupsService.qml:810", "comment": "" }, { @@ -7754,7 +8930,7 @@ { "term": "Output Tray Missing", "context": "Output Tray Missing", - "reference": "Services/CupsService.qml:793", + "reference": "Services/CupsService.qml:808", "comment": "" }, { @@ -7772,7 +8948,7 @@ { "term": "Overflow", "context": "Overflow", - "reference": "Modules/Settings/WidgetsTabSection.qml:1726", + "reference": "Modules/Settings/WidgetsTabSection.qml:1974", "comment": "" }, { @@ -7790,19 +8966,19 @@ { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1662, Modules/Settings/ThemeColorsTab.qml:1765, Modules/Settings/ThemeColorsTab.qml:1868", + "reference": "Modules/Settings/ThemeColorsTab.qml:1877, Modules/Settings/ThemeColorsTab.qml:1980, Modules/Settings/ThemeColorsTab.qml:2083", "comment": "" }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1734, Modules/Settings/ThemeColorsTab.qml:1837", + "reference": "Modules/Settings/ThemeColorsTab.qml:1846, Modules/Settings/ThemeColorsTab.qml:1949, Modules/Settings/ThemeColorsTab.qml:2052", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1599, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1805", + "reference": "Modules/Settings/ThemeColorsTab.qml:1814, Modules/Settings/ThemeColorsTab.qml:1917, Modules/Settings/ThemeColorsTab.qml:2020", "comment": "" }, { @@ -7811,6 +8987,18 @@ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:200", "comment": "" }, + { + "term": "Override terminal with a custom command or script", + "context": "Override terminal with a custom command or script", + "reference": "Modules/Settings/MuxTab.qml:71", + "comment": "" + }, + { + "term": "Override the global shadow with per-bar settings", + "context": "Override the global shadow with per-bar settings", + "reference": "Modules/Settings/DankBarTab.qml:1073", + "comment": "" + }, { "term": "Overrides", "context": "Overrides", @@ -7835,12 +9023,6 @@ "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:108", "comment": "" }, - { - "term": "PIN", - "context": "PIN", - "reference": "Modals/WifiPasswordModal.qml:182", - "comment": "" - }, { "term": "Pad", "context": "wallpaper fill mode", @@ -7850,19 +9032,25 @@ { "term": "Pad Hours", "context": "Pad Hours", - "reference": "Modules/Settings/TimeWeatherTab.qml:57", + "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:527, Modules/Settings/DankBarTab.qml:840", + "reference": "Modules/Settings/DockTab.qml:537, Modules/Settings/DankBarTab.qml:872", "comment": "" }, { "term": "Pair", "context": "KDE Connect pair button", - "reference": "Modals/BluetoothPairingModal.qml:324, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:391, Modules/ControlCenter/Details/BluetoothDetail.qml:558", + "reference": "Modals/BluetoothPairingModal.qml:324, Modules/ControlCenter/Details/BluetoothDetail.qml:558, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:391", "comment": "" }, { @@ -7886,19 +9074,19 @@ { "term": "Pairing failed", "context": "Phone Connect error", - "reference": "Modals/BluetoothPairingModal.qml:400, dms-plugins/DankKDEConnect/DankKDEConnect.qml:151, Modules/ControlCenter/Details/BluetoothDetail.qml:50", + "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:70", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:71", "comment": "" }, { "term": "Pairing request sent", "context": "Phone Connect pairing action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:154", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:155", "comment": "" }, { @@ -7913,6 +9101,36 @@ "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.", + "reference": "Modules/Settings/GreeterTab.qml:27", + "comment": "" + }, + { + "term": "PAM already provides security-key auth. Enable this to show it at login.", + "context": "PAM already provides security-key auth. Enable this to show it at login.", + "reference": "Modules/Settings/GreeterTab.qml:58", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but availability could not be confirmed.", + "context": "PAM provides fingerprint auth, but availability could not be confirmed.", + "reference": "Modules/Settings/GreeterTab.qml:33", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no prints are enrolled yet.", + "context": "PAM provides fingerprint auth, but no prints are enrolled yet.", + "reference": "Modules/Settings/GreeterTab.qml:29", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no reader was detected.", + "context": "PAM provides fingerprint auth, but no reader was detected.", + "reference": "Modules/Settings/GreeterTab.qml:31", + "comment": "" + }, { "term": "Partly Cloudy", "context": "Partly Cloudy", @@ -7934,31 +9152,37 @@ { "term": "Paste", "context": "Paste", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:248, dms-plugins/DankGifSearch/DankGifSearch.qml:195", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:195, dms-plugins/DankStickerSearch/DankStickerSearch.qml:248", + "comment": "" + }, + { + "term": "Path to a video file or folder containing videos", + "context": "Path to a video file or folder containing videos", + "reference": "Modules/Settings/LockScreenTab.qml:292", "comment": "" }, { "term": "Pattern", "context": "Pattern", - "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:502, Modules/Settings/NotificationsTab.qml:511", + "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:522, Modules/Settings/NotificationsTab.qml:531", "comment": "" }, { "term": "Pause", "context": "Pause", - "reference": "Modules/Settings/PrinterTab.qml:901, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:136", + "reference": "Modules/Settings/PrinterTab.qml:1232, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:136", "comment": "" }, { "term": "Paused", "context": "Paused", - "reference": "Services/CupsService.qml:799", + "reference": "Services/CupsService.qml:814", "comment": "" }, { "term": "Pending", "context": "Pending", - "reference": "Services/CupsService.qml:744", + "reference": "Services/CupsService.qml:759", "comment": "" }, { @@ -7982,7 +9206,7 @@ { "term": "Per-Monitor Wallpapers", "context": "Per-Monitor Wallpapers", - "reference": "Modules/Settings/WallpaperTab.qml:789", + "reference": "Modules/Settings/WallpaperTab.qml:801", "comment": "" }, { @@ -7994,13 +9218,13 @@ { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTab.qml:125", + "reference": "Modules/Settings/WidgetsTab.qml:125, Modules/Settings/WidgetsTabSection.qml:983", "comment": "" }, { "term": "Performance", "context": "power profile option", - "reference": "Modals/ProcessListModal.qml:311, Common/Theme.qml:1248", + "reference": "Common/Theme.qml:1474, Modals/ProcessListModal.qml:311", "comment": "" }, { @@ -8012,7 +9236,7 @@ { "term": "Personalization", "context": "Personalization", - "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:557", + "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:569", "comment": "" }, { @@ -8033,16 +9257,28 @@ "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:67", "comment": "" }, + { + "term": "Pick a different random video each time from the same folder", + "context": "Pick a different random video each time from the same folder", + "reference": "Modules/Settings/LockScreenTab.qml:328", + "comment": "" + }, { "term": "Pictures", "context": "Pictures", "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, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/Settings/WindowRulesTab.qml:563, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/AudioInputDetail.qml:295, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/NetworkDetail.qml:676", + "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", "comment": "" }, { @@ -8066,13 +9302,13 @@ { "term": "Ping sent to", "context": "Phone Connect ping action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:107", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:108", "comment": "" }, { "term": "Pinned", "context": "Pinned", - "reference": "Modals/DankLauncherV2/Controller.qml:130, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/AudioInputDetail.qml:295, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/NetworkDetail.qml:676", + "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", "comment": "" }, { @@ -8084,7 +9320,7 @@ { "term": "Pixelate", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1161", + "reference": "Modules/Settings/WallpaperTab.qml:1173", "comment": "" }, { @@ -8099,6 +9335,12 @@ "reference": "Modules/Settings/PluginsTab.qml:337", "comment": "" }, + { + "term": "Play a video when the screen locks.", + "context": "Play a video when the screen locks.", + "reference": "Modules/Settings/LockScreenTab.qml:274", + "comment": "" + }, { "term": "Play sound when new notification arrives", "context": "Play sound when new notification arrives", @@ -8129,12 +9371,24 @@ "reference": "Modules/ControlCenter/Details/AudioOutputDetail.qml:375", "comment": "" }, + { + "term": "Playback error: ", + "context": "Playback error: ", + "reference": "Modules/Lock/VideoScreensaver.qml:102", + "comment": "" + }, { "term": "Please wait...", "context": "network status", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:333", "comment": "" }, + { + "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", + "comment": "" + }, { "term": "Plugged In", "context": "battery status", @@ -8159,6 +9413,12 @@ "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", @@ -8171,16 +9431,10 @@ "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/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/LauncherContent.qml:322, Modals/Settings/SettingsSidebar.qml:294, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", + "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", "comment": "" }, { @@ -8189,6 +9443,12 @@ "reference": "Widgets/KeybindItem.qml:1340", "comment": "" }, + { + "term": "Popout Shadows", + "context": "Popout Shadows", + "reference": "Modules/Settings/ThemeColorsTab.qml:1783", + "comment": "" + }, { "term": "Popouts", "context": "Popouts", @@ -8201,46 +9461,52 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:285", "comment": "" }, - { - "term": "Popup Only", - "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:128", - "comment": "" - }, - { - "term": "Popup Position", - "context": "Popup Position", - "reference": "Modules/Settings/NotificationsTab.qml:209", - "comment": "" - }, - { - "term": "Popup Shadow", - "context": "Popup Shadow", - "reference": "Modules/Settings/NotificationsTab.qml:276", - "comment": "" - }, - { - "term": "Popup Transparency", - "context": "Popup Transparency", - "reference": "Modules/Settings/ThemeColorsTab.qml:1562", - "comment": "" - }, { "term": "Popup behavior, position", "context": "greeter notifications description", "reference": "Modals/Greeter/GreeterCompletePage.qml:398", "comment": "" }, + { + "term": "Popup Only", + "context": "notification rule action option", + "reference": "Modules/Settings/NotificationsTab.qml:131", + "comment": "" + }, + { + "term": "Popup Position", + "context": "Popup Position", + "reference": "Modules/Settings/NotificationsTab.qml:212", + "comment": "" + }, + { + "term": "Popup Shadow", + "context": "Popup Shadow", + "reference": "Modules/Settings/NotificationsTab.qml:279", + "comment": "" + }, + { + "term": "Popup Transparency", + "context": "Popup Transparency", + "reference": "Modules/Settings/ThemeColorsTab.qml:1594", + "comment": "" + }, + { + "term": "Port", + "context": "Label for printer port number input field", + "reference": "Modules/Settings/PrinterTab.qml:525", + "comment": "" + }, { "term": "Portal", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1163", + "reference": "Modules/Settings/WallpaperTab.qml:1175", "comment": "" }, { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:92, Modules/Settings/DankBarTab.qml:490, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1215", + "reference": "Modules/Settings/DockTab.qml:92, Modules/Settings/DankBarTab.qml:531, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1218", "comment": "" }, { @@ -8264,13 +9530,13 @@ { "term": "Power & Security", "context": "Power & Security", - "reference": "Modals/Settings/SettingsSidebar.qml:274, Modals/Settings/SettingsSidebar.qml:545", + "reference": "Modals/Settings/SettingsSidebar.qml:280, Modals/Settings/SettingsSidebar.qml:557", "comment": "" }, { "term": "Power & Sleep", "context": "Power & Sleep", - "reference": "Modals/Settings/SettingsSidebar.qml:286", + "reference": "Modals/Settings/SettingsSidebar.qml:298", "comment": "" }, { @@ -8288,13 +9554,19 @@ { "term": "Power Off", "context": "Power Off", - "reference": "Modals/PowerMenuModal.qml:192, Modules/Lock/LockPowerMenu.qml:104, Modules/Settings/PowerSleepTab.qml:378", + "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", "comment": "" }, { "term": "Power Options", "context": "Power Options", - "reference": "Modules/Lock/LockPowerMenu.qml:468", + "reference": "Modules/Lock/LockPowerMenu.qml:480", "comment": "" }, { @@ -8306,19 +9578,7 @@ { "term": "Power Profile Degradation", "context": "Power Profile Degradation", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:246, Modules/DankBar/Popouts/BatteryPopout.qml:586", - "comment": "" - }, - { - "term": "Power Saver", - "context": "power profile option", - "reference": "Common/Theme.qml:1244", - "comment": "" - }, - { - "term": "Power off monitors on lock", - "context": "Power off monitors on lock", - "reference": "Modules/Settings/LockScreenTab.qml:145", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:613, Modules/ControlCenter/Details/BatteryDetail.qml:246", "comment": "" }, { @@ -8327,12 +9587,30 @@ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:106", "comment": "" }, + { + "term": "Power Saver", + "context": "power profile option", + "reference": "Common/Theme.qml:1470", + "comment": "" + }, { "term": "Power source", "context": "Power source", "reference": "Modules/Settings/PowerSleepTab.qml:42", "comment": "" }, + { + "term": "Pre-fill the last successful username on the greeter", + "context": "Pre-fill the last successful username on the greeter", + "reference": "Modules/Settings/GreeterTab.qml:744", + "comment": "" + }, + { + "term": "Pre-select the last used session on the greeter", + "context": "Pre-select the last used session on the greeter", + "reference": "Modules/Settings/GreeterTab.qml:735", + "comment": "" + }, { "term": "Precip", "context": "Precip", @@ -8363,6 +9641,12 @@ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:298", "comment": "" }, + { + "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", + "comment": "" + }, { "term": "Press Enter and the audio system will restart to apply the change", "context": "Audio device rename dialog hint", @@ -8384,7 +9668,7 @@ { "term": "Pressure", "context": "Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449, Modules/DankDash/WeatherTab.qml:94, Modules/DankDash/WeatherForecastCard.qml:90, Modules/Settings/TimeWeatherTab.qml:980", + "reference": "Modules/Settings/TimeWeatherTab.qml:1024, Modules/DankDash/WeatherForecastCard.qml:90, Modules/DankDash/WeatherTab.qml:94, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449", "comment": "" }, { @@ -8401,14 +9685,14 @@ }, { "term": "Primary", - "context": "button color option | color option | primary color | tile color option", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1500, Modules/Settings/ThemeColorsTab.qml:1510, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1542, Modules/Settings/DockTab.qml:379, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/WorkspacesTab.qml:359, Modules/Settings/NetworkTab.qml:227, Modules/Settings/DankBarTab.qml:1079, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "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", "comment": "" }, { "term": "Primary Container", "context": "button color option | tile color option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1500, Modules/Settings/ThemeColorsTab.qml:1504, Modules/Settings/ThemeColorsTab.qml:1514, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1536, Modules/Settings/ThemeColorsTab.qml:1546", + "reference": "Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1536, Modules/Settings/ThemeColorsTab.qml:1546, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1568, Modules/Settings/ThemeColorsTab.qml:1578", "comment": "" }, { @@ -8426,37 +9710,43 @@ { "term": "Printer", "context": "Printer", - "reference": "Modules/Settings/WidgetsTabSection.qml:884", + "reference": "Modules/Settings/WidgetsTabSection.qml:1132", "comment": "" }, { "term": "Printer Classes", "context": "Printer Classes", - "reference": "Modules/Settings/PrinterTab.qml:1239", + "reference": "Modules/Settings/PrinterTab.qml:1570", "comment": "" }, { "term": "Printer created successfully", "context": "Printer created successfully", - "reference": "Services/CupsService.qml:507", + "reference": "Services/CupsService.qml:522", "comment": "" }, { "term": "Printer deleted", "context": "Printer deleted", - "reference": "Services/CupsService.qml:524", + "reference": "Services/CupsService.qml:539", "comment": "" }, { "term": "Printer name (no spaces)", "context": "Printer name (no spaces)", - "reference": "Modules/Settings/PrinterTab.qml:433", + "reference": "Modules/Settings/PrinterTab.qml:764", + "comment": "" + }, + { + "term": "Printer reachable", + "context": "Status message when test connection to printer succeeds", + "reference": "Modules/Settings/PrinterTab.qml:639", "comment": "" }, { "term": "Printers", "context": "Printers", - "reference": "Modals/Settings/SettingsSidebar.qml:258, Modules/Settings/PrinterTab.qml:159, Modules/Settings/PrinterTab.qml:538, Modules/ControlCenter/Models/WidgetModel.qml:197, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", + "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", "comment": "" }, { @@ -8468,13 +9758,13 @@ { "term": "Prioritize performance", "context": "power profile description", - "reference": "Common/Theme.qml:1261", + "reference": "Common/Theme.qml:1487", "comment": "" }, { "term": "Priority", "context": "Priority", - "reference": "Modules/Settings/NotificationsTab.qml:587", + "reference": "Modules/Settings/NotificationsTab.qml:607", "comment": "" }, { @@ -8486,7 +9776,7 @@ { "term": "Privacy Mode", "context": "Privacy Mode", - "reference": "Modules/Settings/NotificationsTab.qml:285, Modules/Notifications/Center/NotificationSettings.qml:287", + "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:287", "comment": "" }, { @@ -8504,7 +9794,7 @@ { "term": "Processes", "context": "Processes", - "reference": "Modals/ProcessListModal.qml:307, Modules/ProcessList/ProcessListPopout.qml:140, Modules/ProcessList/SystemView.qml:88", + "reference": "Modals/ProcessListModal.qml:307, Modules/ProcessList/SystemView.qml:88, Modules/ProcessList/ProcessListPopout.qml:140", "comment": "" }, { @@ -8516,13 +9806,13 @@ { "term": "Processing", "context": "Processing", - "reference": "Services/CupsService.qml:748, Services/CupsService.qml:764", + "reference": "Services/CupsService.qml:763, Services/CupsService.qml:779", "comment": "" }, { - "term": "Profile Image Error", - "context": "Profile Image Error", - "reference": "Services/PortalService.qml:157", + "term": "procs", + "context": "short for processes", + "reference": "Modules/ProcessList/ProcessListPopout.qml:288", "comment": "" }, { @@ -8543,6 +9833,12 @@ "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.", @@ -8569,8 +9865,20 @@ }, { "term": "Protocol", - "context": "Protocol", - "reference": "Widgets/VpnProfileDelegate.qml:63, Modules/Settings/NetworkTab.qml:1923", + "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", + "comment": "" + }, + { + "term": "QtMultimedia is not available", + "context": "QtMultimedia is not available", + "reference": "Modules/Lock/VideoScreensaver.qml:126", + "comment": "" + }, + { + "term": "QtMultimedia is not available - video screensaver requires qt multimedia services", + "context": "QtMultimedia is not available - video screensaver requires qt multimedia services", + "reference": "Modules/Settings/LockScreenTab.qml:263", "comment": "" }, { @@ -8609,12 +9917,6 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:150", "comment": "" }, - { - "term": "RGB", - "context": "RGB", - "reference": "Modals/DankColorPickerModal.qml:620", - "comment": "" - }, { "term": "Radius", "context": "Radius", @@ -8630,7 +9932,7 @@ { "term": "Rain Chance", "context": "Rain Chance", - "reference": "Modules/Settings/TimeWeatherTab.qml:1030", + "reference": "Modules/Settings/TimeWeatherTab.qml:1074", "comment": "" }, { @@ -8642,13 +9944,13 @@ { "term": "Random", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1147, Modules/Settings/WallpaperTab.qml:1170, Modules/Settings/WallpaperTab.qml:1173", + "reference": "Modules/Settings/WallpaperTab.qml:1159, Modules/Settings/WallpaperTab.qml:1182, Modules/Settings/WallpaperTab.qml:1185", "comment": "" }, { "term": "Rate", "context": "Rate", - "reference": "Modules/Settings/NetworkTab.qml:1431", + "reference": "Modules/Settings/NetworkTab.qml:1433", "comment": "" }, { @@ -8660,13 +9962,13 @@ { "term": "Reason", "context": "Reason", - "reference": "Services/CupsService.qml:355, Modules/Settings/PrinterTab.qml:823", + "reference": "Services/CupsService.qml:355, Modules/Settings/PrinterTab.qml:1154", "comment": "" }, { "term": "Reboot", "context": "Reboot", - "reference": "Modals/PowerMenuModal.qml:180, Modules/Lock/LockPowerMenu.qml:92, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:180, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:104", "comment": "" }, { @@ -8684,25 +9986,25 @@ { "term": "Recommended available", "context": "Recommended available", - "reference": "Modules/Settings/PrinterTab.qml:385", + "reference": "Modules/Settings/PrinterTab.qml:716", "comment": "" }, { "term": "Refresh", "context": "Phone Connect refresh tooltip", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:293, Modules/DankDash/Overview/WeatherOverviewCard.qml:38", + "reference": "Modules/Settings/GreeterTab.qml:504, Modules/DankDash/Overview/WeatherOverviewCard.qml:38, dms-plugins/DankKDEConnect/DankKDEConnect.qml:296", "comment": "" }, { "term": "Refresh Weather", "context": "Refresh Weather", - "reference": "Modules/DankDash/WeatherTab.qml:164, Modules/DankDash/WeatherTab.qml:901", + "reference": "Modules/DankDash/WeatherTab.qml:164, Modules/DankDash/WeatherTab.qml:902", "comment": "" }, { "term": "Regex", "context": "notification rule match type option", - "reference": "Modules/Settings/NotificationsTab.qml:109", + "reference": "Modules/Settings/NotificationsTab.qml:112", "comment": "" }, { @@ -8714,7 +10016,7 @@ { "term": "Reject Jobs", "context": "Reject Jobs", - "reference": "Modules/Settings/PrinterTab.qml:975", + "reference": "Modules/Settings/PrinterTab.qml:1306", "comment": "" }, { @@ -8729,6 +10031,30 @@ "reference": "Modules/Settings/PluginListItem.qml:301", "comment": "" }, + { + "term": "Remaining", + "context": "Remaining", + "reference": "Modules/Settings/WidgetsTabSection.qml:985", + "comment": "" + }, + { + "term": "Remaining / Total", + "context": "Remaining / Total", + "reference": "Modules/Settings/WidgetsTabSection.qml:986", + "comment": "" + }, + { + "term": "Remember last session", + "context": "Remember last session", + "reference": "Modules/Settings/GreeterTab.qml:734", + "comment": "" + }, + { + "term": "Remember last user", + "context": "Remember last user", + "reference": "Modules/Settings/GreeterTab.qml:743", + "comment": "" + }, { "term": "Remove", "context": "Remove", @@ -8736,21 +10062,27 @@ "comment": "" }, { - "term": "Remove Widget Padding", - "context": "Remove Widget Padding", - "reference": "Modules/Settings/DankBarTab.qml:959", + "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 gaps and border when windows are maximized", - "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:674", + "term": "Remove Widget Padding", + "context": "Remove Widget Padding", + "reference": "Modules/Settings/DankBarTab.qml:1321", "comment": "" }, { "term": "Rename", "context": "Rename", - "reference": "Modals/WorkspaceRenameModal.qml:185", + "reference": "Modals/WorkspaceRenameModal.qml:185, Modals/MuxModal.qml:607", + "comment": "" + }, + { + "term": "Rename Session", + "context": "Rename Session", + "reference": "Modals/MuxModal.qml:114", "comment": "" }, { @@ -8774,7 +10106,7 @@ { "term": "Report", "context": "Report", - "reference": "Services/CupsService.qml:821", + "reference": "Services/CupsService.qml:836", "comment": "" }, { @@ -8789,10 +10121,16 @@ "reference": "Modules/Settings/PowerSleepTab.qml:473", "comment": "" }, + { + "term": "Required plugin: ", + "context": "Required plugin: ", + "reference": "Modules/Settings/ThemeColorsTab.qml:2581", + "comment": "" + }, { "term": "Requires %1", "context": "version requirement", - "reference": "Modules/Settings/PluginBrowser.qml:630", + "reference": "Modules/Settings/PluginBrowser.qml:632", "comment": "" }, { @@ -8813,12 +10151,6 @@ "reference": "Modules/Settings/WidgetsTab.qml:41", "comment": "" }, - { - "term": "Requires lazy plugin manager", - "context": "neovim template description", - "reference": "Modules/Settings/ThemeColorsTab.qml:2331", - "comment": "" - }, { "term": "Requires night mode support", "context": "Requires night mode support", @@ -8828,19 +10160,19 @@ { "term": "Reset", "context": "Reset", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:958, Modules/Settings/WidgetsTab.qml:836, Modules/ControlCenter/Components/EditControls.qml:232", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:961, Modules/Settings/WidgetsTab.qml:868, Modules/ControlCenter/Components/EditControls.qml:232", "comment": "" }, { "term": "Reset Position", "context": "Reset Position", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:135, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108", + "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:135, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416", "comment": "" }, { "term": "Reset Size", "context": "Reset Size", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:149, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122", + "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:149, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430", "comment": "" }, { @@ -8885,22 +10217,28 @@ "reference": "Modules/Settings/AudioTab.qml:503", "comment": "" }, + { + "term": "Restore Special Workspace Windows", + "context": "Restore Special Workspace Windows", + "reference": "Modules/Settings/DockTab.qml:166", + "comment": "" + }, { "term": "Resume", "context": "Resume", - "reference": "Modules/Settings/PrinterTab.qml:901, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:136", + "reference": "Modules/Settings/PrinterTab.qml:1232, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:136", "comment": "" }, { "term": "Reverse Scrolling Direction", "context": "Reverse Scrolling Direction", - "reference": "Modules/Settings/WorkspacesTab.qml:151", + "reference": "Modules/Settings/WorkspacesTab.qml:161", "comment": "" }, { "term": "Reverse workspace switch direction when scrolling over the bar", "context": "Reverse workspace switch direction when scrolling over the bar", - "reference": "Modules/Settings/WorkspacesTab.qml:152", + "reference": "Modules/Settings/WorkspacesTab.qml:162", "comment": "" }, { @@ -8909,10 +10247,16 @@ "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:251, Modules/Settings/DankBarTab.qml:501", + "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:290, Modules/Settings/DankBarTab.qml:542", "comment": "" }, { @@ -8924,7 +10268,7 @@ { "term": "Right Section", "context": "Right Section", - "reference": "Modules/Settings/WidgetsTab.qml:1006", + "reference": "Modules/Settings/WidgetsTab.qml:1050", "comment": "" }, { @@ -8960,7 +10304,7 @@ { "term": "Ringing", "context": "KDE Connect ring action | Phone Connect ring action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:98, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:99, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", "comment": "" }, { @@ -8978,25 +10322,25 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1648", + "reference": "Modules/Settings/ThemeColorsTab.qml:1863", "comment": "" }, { "term": "Rounded corners for windows (border_radius)", "context": "Rounded corners for windows (border_radius)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1854", + "reference": "Modules/Settings/ThemeColorsTab.qml:2069", "comment": "" }, { "term": "Rounded corners for windows (decoration.rounding)", "context": "Rounded corners for windows (decoration.rounding)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1751", + "reference": "Modules/Settings/ThemeColorsTab.qml:1966", "comment": "" }, { "term": "Rule", "context": "Rule", - "reference": "Modals/WindowRuleModal.qml:254, Modules/Settings/NotificationsTab.qml:448", + "reference": "Modals/WindowRuleModal.qml:254, Modules/Settings/NotificationsTab.qml:468", "comment": "" }, { @@ -9011,24 +10355,6 @@ "reference": "Modules/Settings/WindowRulesTab.qml:402", "comment": "" }, - { - "term": "Run Again", - "context": "greeter doctor page button", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:374", - "comment": "" - }, - { - "term": "Run DMS Templates", - "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2152", - "comment": "" - }, - { - "term": "Run User Templates", - "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2142", - "comment": "" - }, { "term": "Run a program (e.g., firefox, kitty)", "context": "Run a program (e.g., firefox, kitty)", @@ -9041,6 +10367,36 @@ "reference": "Widgets/KeybindItem.qml:857", "comment": "" }, + { + "term": "Run Again", + "context": "greeter doctor page button", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:380", + "comment": "" + }, + { + "term": "Run DMS Templates", + "context": "Run DMS Templates", + "reference": "Modules/Settings/ThemeColorsTab.qml:2397", + "comment": "" + }, + { + "term": "Run Sync to apply.", + "context": "Run Sync to apply.", + "reference": "Modules/Settings/GreeterTab.qml:63", + "comment": "" + }, + { + "term": "Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.", + "context": "Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.", + "reference": "Modules/Settings/GreeterTab.qml:39", + "comment": "" + }, + { + "term": "Run User Templates", + "context": "Run User Templates", + "reference": "Modules/Settings/ThemeColorsTab.qml:2387", + "comment": "" + }, { "term": "Running Apps", "context": "Running Apps", @@ -9050,43 +10406,19 @@ { "term": "Running Apps Settings", "context": "Running Apps Settings", - "reference": "Modules/Settings/WidgetsTabSection.qml:1468", + "reference": "Modules/Settings/WidgetsTabSection.qml:1716", "comment": "" }, { - "term": "SDR Brightness", - "context": "SDR Brightness", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1249", - "comment": "" - }, - { - "term": "SDR Saturation", - "context": "SDR Saturation", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:279, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1251", - "comment": "" - }, - { - "term": "SMS", - "context": "KDE Connect SMS tooltip", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:161, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:338", + "term": "Running greeter sync…", + "context": "Running greeter sync…", + "reference": "Modules/Settings/GreeterTab.qml:332", "comment": "" }, { "term": "Save", "context": "Save", - "reference": "Modals/DankColorPickerModal.qml:750, Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modals/DankLauncherV2/LauncherContent.qml:1006, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Notepad/NotepadTextEditor.qml:763, Modules/Notepad/Notepad.qml:472, Modules/Settings/AudioTab.qml:693", - "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", + "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", "comment": "" }, { @@ -9098,25 +10430,31 @@ { "term": "Save critical priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:873", + "reference": "Modules/Settings/NotificationsTab.qml:893", "comment": "" }, { "term": "Save dismissed notifications to history", "context": "notification history toggle description", - "reference": "Modules/Settings/NotificationsTab.qml:790", + "reference": "Modules/Settings/NotificationsTab.qml:810", "comment": "" }, { "term": "Save low priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:855", + "reference": "Modules/Settings/NotificationsTab.qml:875", "comment": "" }, { "term": "Save normal priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:864", + "reference": "Modules/Settings/NotificationsTab.qml:884", + "comment": "" + }, + { + "term": "Save Notepad File", + "context": "Save Notepad File", + "reference": "Modules/Notepad/Notepad.qml:267", "comment": "" }, { @@ -9125,22 +10463,22 @@ "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/Notepad/NotepadTextEditor.qml:861, Modules/Settings/NetworkTab.qml:1212, Modules/ControlCenter/Details/NetworkDetail.qml:615", + "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Settings/NetworkTab.qml:1214, Modules/Notepad/NotepadTextEditor.qml:861, Modules/ControlCenter/Details/NetworkDetail.qml:615", "comment": "" }, { "term": "Saved Configurations", "context": "Saved Configurations", - "reference": "Modules/Settings/NetworkTab.qml:705", - "comment": "" - }, - { - "term": "Saved Note", - "context": "Saved Note", - "reference": "Modules/DankBar/Widgets/NotepadButton.qml:305", + "reference": "Modules/Settings/NetworkTab.qml:707", "comment": "" }, { @@ -9149,6 +10487,12 @@ "reference": "Services/ClipboardService.qml:177", "comment": "" }, + { + "term": "Saved Note", + "context": "Saved Note", + "reference": "Modules/DankBar/Widgets/NotepadButton.qml:305", + "comment": "" + }, { "term": "Saving...", "context": "Saving...", @@ -9158,19 +10502,7 @@ { "term": "Scale", "context": "Scale", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:154, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1219", - "comment": "" - }, - { - "term": "Scale DankBar font sizes independently", - "context": "Scale DankBar font sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1385", - "comment": "" - }, - { - "term": "Scale DankBar icon sizes independently", - "context": "Scale DankBar icon sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1411", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:154, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1222", "comment": "" }, { @@ -9179,6 +10511,18 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:184", "comment": "" }, + { + "term": "Scale DankBar font sizes independently", + "context": "Scale DankBar font sizes independently", + "reference": "Modules/Settings/DankBarTab.qml:952", + "comment": "" + }, + { + "term": "Scale DankBar icon sizes independently", + "context": "Scale DankBar icon sizes independently", + "reference": "Modules/Settings/DankBarTab.qml:977", + "comment": "" + }, { "term": "Scan", "context": "Scan", @@ -9194,7 +10538,7 @@ { "term": "Scanning...", "context": "Scanning...", - "reference": "Modules/Settings/PrinterTab.qml:304, Modules/Settings/NetworkTab.qml:1067", + "reference": "Modules/Settings/PrinterTab.qml:439, Modules/Settings/NetworkTab.qml:1069", "comment": "" }, { @@ -9206,19 +10550,19 @@ { "term": "Score", "context": "Score", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:655, Modals/DankLauncherV2/LauncherContent.qml:663, Modals/DankLauncherV2/LauncherContent.qml:666, Modals/DankLauncherV2/LauncherContent.qml:670", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:658, Modals/DankLauncherV2/LauncherContent.qml:666, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:673", "comment": "" }, { "term": "Screen Sharing", "context": "Screen Sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:889", + "reference": "Modules/Settings/WidgetsTabSection.qml:1137", "comment": "" }, { "term": "Screen sharing", "context": "Screen sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:1169", + "reference": "Modules/Settings/WidgetsTabSection.qml:1417", "comment": "" }, { @@ -9233,12 +10577,6 @@ "reference": "Modals/WindowRuleModal.qml:774", "comment": "" }, - { - "term": "Scroll Wheel", - "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:53, Modules/Settings/DankBarTab.qml:684", - "comment": "" - }, { "term": "Scroll song title", "context": "Scroll song title", @@ -9251,6 +10589,12 @@ "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", @@ -9264,15 +10608,21 @@ "comment": "" }, { - "term": "Search App Actions", - "context": "Search App Actions", - "reference": "Modules/Settings/LauncherTab.qml:829", + "term": "SDR Brightness", + "context": "SDR Brightness", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1252, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246", "comment": "" }, { - "term": "Search Options", - "context": "Search Options", - "reference": "Modules/Settings/LauncherTab.qml:823", + "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", + "reference": "Modules/Settings/LauncherTab.qml:829", "comment": "" }, { @@ -9299,6 +10649,12 @@ "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", @@ -9311,6 +10667,12 @@ "reference": "Modals/ProcessListModal.qml:409", "comment": "" }, + { + "term": "Search sessions...", + "context": "Search sessions...", + "reference": "Modals/MuxModal.qml:353", + "comment": "" + }, { "term": "Search themes...", "context": "theme search placeholder", @@ -9320,37 +10682,49 @@ { "term": "Search widgets...", "context": "Search widgets...", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:271, Modules/Settings/DesktopWidgetBrowser.qml:287", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:287, Modules/Settings/WidgetSelectionPopup.qml:271", "comment": "" }, { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:290, Modals/Settings/SettingsSidebar.qml:617, Modules/ProcessList/ProcessListPopout.qml:185", + "reference": "Widgets/DankDropdown.qml:301, Modals/Settings/SettingsSidebar.qml:629, Modules/ProcessList/ProcessListPopout.qml:185", "comment": "" }, { "term": "Searching...", "context": "Searching...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/DankGifSearch/DankGifSearch.qml:83", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:83, dms-plugins/DankStickerSearch/DankStickerSearch.qml:140", + "comment": "" + }, + { + "term": "Second Factor (AND)", + "context": "U2F mode option: key required after password or fingerprint", + "reference": "Modules/Settings/LockScreenTab.qml:244, Modules/Settings/LockScreenTab.qml:245, Modules/Settings/LockScreenTab.qml:247", "comment": "" }, { "term": "Secondary", "context": "button color option | color option | secondary color | tile color option", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1500, Modules/Settings/ThemeColorsTab.qml:1506, Modules/Settings/ThemeColorsTab.qml:1516, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1538, Modules/Settings/ThemeColorsTab.qml:1548, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:477, Modules/Settings/WorkspacesTab.qml:359, Modules/Settings/DankBarTab.qml:1079, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "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", "comment": "" }, { "term": "Secured", "context": "Secured", - "reference": "Modules/Settings/NetworkTab.qml:1199, Modules/ControlCenter/Details/NetworkDetail.qml:609", + "reference": "Modules/Settings/NetworkTab.qml:1201, Modules/ControlCenter/Details/NetworkDetail.qml:609", "comment": "" }, { "term": "Security", "context": "Security", - "reference": "Modules/Settings/NetworkTab.qml:1445", + "reference": "Modules/Settings/NetworkTab.qml:1447", "comment": "" }, { @@ -9359,64 +10733,28 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:159", "comment": "" }, + { + "term": "Security key mode", + "context": "lock screen U2F security key mode setting", + "reference": "Modules/Settings/LockScreenTab.qml:241", + "comment": "" + }, + { + "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", + "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", + "comment": "" + }, { "term": "Select", "context": "Select", - "reference": "Modals/DankLauncherV2/Controller.qml:1258", - "comment": "" - }, - { - "term": "Select Application", - "context": "Select Application", - "reference": "Modals/AppPickerModal.qml:11", - "comment": "" - }, - { - "term": "Select Bar", - "context": "Select Bar", - "reference": "Modules/Settings/WidgetsTab.qml:751", - "comment": "" - }, - { - "term": "Select Custom Theme", - "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2571", - "comment": "" - }, - { - "term": "Select Dock Launcher Logo", - "context": "Select Dock Launcher Logo", - "reference": "Modules/Settings/DockTab.qml:13", - "comment": "" - }, - { - "term": "Select File to Send", - "context": "KDE Connect file browser title", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:101", - "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 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:1301, Modules/Settings/WallpaperTab.qml:1323, Modules/Settings/WallpaperTab.qml:1343", - "comment": "" - }, - { - "term": "Select Wallpaper Directory", - "context": "wallpaper directory file browser title", - "reference": "Modules/DankDash/WallpaperTab.qml:320", + "reference": "Modals/DankLauncherV2/Controller.qml:1301", "comment": "" }, { @@ -9446,7 +10784,13 @@ { "term": "Select an image file...", "context": "Select an image file...", - "reference": "Modules/Settings/DockTab.qml:330, Modules/Settings/LauncherTab.qml:132", + "reference": "Modules/Settings/DockTab.qml:340, Modules/Settings/LauncherTab.qml:132", + "comment": "" + }, + { + "term": "Select Application", + "context": "Select Application", + "reference": "Modals/AppPickerModal.qml:11", "comment": "" }, { @@ -9455,6 +10799,18 @@ "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", @@ -9464,13 +10820,25 @@ { "term": "Select device...", "context": "Select device...", - "reference": "Modules/Settings/PrinterTab.qml:307", + "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:385", + "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": "" }, { @@ -9479,10 +10847,22 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:115", "comment": "" }, + { + "term": "Select greeter background image", + "context": "Select greeter background image", + "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", - "reference": "Modules/Settings/WallpaperTab.qml:808", + "reference": "Modules/Settings/WallpaperTab.qml:820", "comment": "" }, { @@ -9497,6 +10877,12 @@ "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", @@ -9512,7 +10898,25 @@ { "term": "Select the palette algorithm used for wallpaper-based colors", "context": "Select the palette algorithm used for wallpaper-based colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:478", + "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": "" }, { @@ -9524,7 +10928,7 @@ { "term": "Select which transitions to include in randomization", "context": "Select which transitions to include in randomization", - "reference": "Modules/Settings/WallpaperTab.qml:1196", + "reference": "Modules/Settings/WallpaperTab.qml:1208", "comment": "" }, { @@ -9566,7 +10970,7 @@ { "term": "Sending", "context": "Phone Connect file send", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:362, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:424", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:365, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:424", "comment": "" }, { @@ -9578,7 +10982,13 @@ { "term": "Server", "context": "Server", - "reference": "Widgets/VpnProfileDelegate.qml:39, Modules/Settings/NetworkTab.qml:1903", + "reference": "Widgets/VpnProfileDelegate.qml:39, Modules/Settings/NetworkTab.qml:1905", + "comment": "" + }, + { + "term": "Session Filter", + "context": "Session Filter", + "reference": "Modules/Settings/MuxTab.qml:113", "comment": "" }, { @@ -9608,7 +11018,7 @@ { "term": "Set different wallpapers for each connected monitor", "context": "Set different wallpapers for each connected monitor", - "reference": "Modules/Settings/WallpaperTab.qml:790", + "reference": "Modules/Settings/WallpaperTab.qml:802", "comment": "" }, { @@ -9626,13 +11036,13 @@ { "term": "Set notification rules", "context": "Set notification rules", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1030, Modules/Notifications/Center/NotificationCard.qml:936", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1070, Modules/Notifications/Center/NotificationCard.qml:990", "comment": "" }, { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:168, Services/AppSearchService.qml:201, Services/AppSearchService.qml:640, Services/PopoutService.qml:339, Services/PopoutService.qml:356, Modals/Settings/SettingsSidebar.qml:114, Modals/Settings/SettingsModal.qml:82, Modals/Settings/SettingsModal.qml:222, Modules/DankDash/DankDashPopout.qml:291", + "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", "comment": "" }, { @@ -9644,13 +11054,61 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2004, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/KeybindsTab.qml:366, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83", + "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:1023", + "reference": "Modules/Settings/DankBarTab.qml:1107", + "comment": "" + }, + { + "term": "Shadow Color", + "context": "Shadow Color", + "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", + "reference": "Modules/Settings/ThemeColorsTab.qml:1632", + "comment": "" + }, + { + "term": "Shadow Opacity", + "context": "Shadow Opacity", + "reference": "Modules/Settings/ThemeColorsTab.qml:1647", + "comment": "" + }, + { + "term": "Shadow Override", + "context": "bar shadow settings card", + "reference": "Modules/Settings/DankBarTab.qml:1052", + "comment": "" + }, + { + "term": "Shadows", + "context": "Shadows", + "reference": "Modules/Settings/ThemeColorsTab.qml:1622", "comment": "" }, { @@ -9662,7 +11120,7 @@ { "term": "Share Gamma Control Settings", "context": "Share Gamma Control Settings", - "reference": "Modules/Settings/ThemeColorsTab.qml:1018", + "reference": "Modules/Settings/ThemeColorsTab.qml:1050", "comment": "" }, { @@ -9680,7 +11138,7 @@ { "term": "Shared", "context": "Phone Connect share success", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:341, dms-plugins/DankKDEConnect/DankKDEConnect.qml:349, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:410", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:344, dms-plugins/DankKDEConnect/DankKDEConnect.qml:352, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:410", "comment": "" }, { @@ -9698,7 +11156,7 @@ { "term": "Shift+Enter to paste", "context": "Shift+Enter to paste", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:176, dms-plugins/DankGifSearch/DankGifSearch.qml:119", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:119, dms-plugins/DankStickerSearch/DankStickerSearch.qml:176", "comment": "" }, { @@ -9716,19 +11174,19 @@ { "term": "Short", "context": "Short", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:325", + "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337", "comment": "" }, { "term": "Shortcuts", "context": "Shortcuts", - "reference": "Modules/Settings/KeybindsTab.qml:541", + "reference": "Modules/Settings/KeybindsTab.qml:545", "comment": "" }, { "term": "Shortcuts (%1)", "context": "Shortcuts (%1)", - "reference": "Modules/Settings/KeybindsTab.qml:541", + "reference": "Modules/Settings/KeybindsTab.qml:545", "comment": "" }, { @@ -9743,16 +11201,34 @@ "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:171", + "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:1872", + "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", "comment": "" }, { @@ -9773,16 +11249,28 @@ "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", + "comment": "" + }, { "term": "Show Disk", "context": "Show Disk", - "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:243", + "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:252", "comment": "" }, { @@ -9791,6 +11279,18 @@ "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", @@ -9812,7 +11312,7 @@ { "term": "Show GPU Temperature", "context": "Show GPU Temperature", - "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:253", + "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:262", "comment": "" }, { @@ -9845,10 +11345,22 @@ "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:222", + "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": "" }, { @@ -9884,7 +11396,7 @@ { "term": "Show Media Player", "context": "Enable media player controls on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:82", + "reference": "Modules/Settings/LockScreenTab.qml:138", "comment": "" }, { @@ -9900,195 +11412,9 @@ "comment": "" }, { - "term": "Show Network", - "context": "Show Network", - "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:224", - "comment": "" - }, - { - "term": "Show Network Graph", - "context": "Show Network Graph", - "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:232", - "comment": "" - }, - { - "term": "Show Occupied Workspaces Only", - "context": "Show Occupied Workspaces Only", - "reference": "Modules/Settings/WorkspacesTab.qml:141", - "comment": "" - }, - { - "term": "Show Overflow Badge Count", - "context": "Show Overflow Badge Count", - "reference": "Modules/Settings/DockTab.qml:206", - "comment": "" - }, - { - "term": "Show Password Field", - "context": "Enable password field display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:73", - "comment": "" - }, - { - "term": "Show Power Actions", - "context": "Enable power action icon on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:33", - "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:65", - "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:287", - "comment": "" - }, - { - "term": "Show Seconds", - "context": "Show Seconds", - "reference": "Modules/Settings/TimeWeatherTab.qml:47, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27", - "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 System Date", - "context": "Enable system date display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:57", - "comment": "" - }, - { - "term": "Show System Icons", - "context": "Enable system status icons on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:41", - "comment": "" - }, - { - "term": "Show System Time", - "context": "Enable system time display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:49", - "comment": "" - }, - { - "term": "Show Top Processes", - "context": "Show Top Processes", - "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:323", - "comment": "" - }, - { - "term": "Show Weather Condition", - "context": "Show Weather Condition", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:78", - "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", - "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:172", - "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:345", - "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:1907", - "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", - "context": "Show drop shadow on notification popups", - "reference": "Modules/Settings/NotificationsTab.qml:277", - "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", + "term": "Show Memory in GB", + "context": "Show Memory in GB", + "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:222", "comment": "" }, { @@ -10097,10 +11423,46 @@ "reference": "Modules/Settings/LauncherTab.qml:414", "comment": "" }, + { + "term": "Show Network", + "context": "Show Network", + "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:233", + "comment": "" + }, + { + "term": "Show Network Graph", + "context": "Show Network Graph", + "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:241", + "comment": "" + }, + { + "term": "Show notification popups only on the currently focused monitor", + "context": "Show notification popups only on the currently focused monitor", + "reference": "Modules/Settings/NotificationsTab.qml:298", + "comment": "" + }, + { + "term": "Show notifications only on the currently focused monitor", + "context": "Show notifications only on the currently focused monitor", + "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:422, Modules/Settings/DankBarTab.qml:421", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:462", "comment": "" }, { @@ -10112,7 +11474,7 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DockTab.qml:81, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:660", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DockTab.qml:81, Modules/Settings/DankBarTab.qml:696", "comment": "" }, { @@ -10121,12 +11483,6 @@ "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:", @@ -10187,10 +11543,148 @@ "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:348", + "reference": "Modules/Settings/TimeWeatherTab.qml:391", + "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", "comment": "" }, { @@ -10208,7 +11702,7 @@ { "term": "Show workspaces of the currently focused monitor", "context": "Show workspaces of the currently focused monitor", - "reference": "Modules/Settings/WorkspacesTab.qml:132", + "reference": "Modules/Settings/WorkspacesTab.qml:142", "comment": "" }, { @@ -10238,25 +11732,25 @@ { "term": "Shutdown", "context": "Shutdown", - "reference": "Services/CupsService.qml:800", + "reference": "Services/CupsService.qml:815", "comment": "" }, { "term": "Signal", "context": "Signal", - "reference": "Modules/Settings/NetworkTab.qml:1416", + "reference": "Modules/Settings/NetworkTab.qml:1418", "comment": "" }, { "term": "Signal:", "context": "Signal:", - "reference": "Modules/Settings/NetworkTab.qml:963", + "reference": "Modules/Settings/NetworkTab.qml:965", "comment": "" }, { "term": "Size", "context": "launcher size option", - "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:661, Modals/DankLauncherV2/LauncherContent.qml:666, Modals/DankLauncherV2/LauncherContent.qml:673, Modules/Settings/LauncherTab.qml:369, Modules/Settings/DankBarTab.qml:818, Modules/Settings/WindowRulesTab.qml:565", + "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", "comment": "" }, { @@ -10268,13 +11762,13 @@ { "term": "Size Offset", "context": "Size Offset", - "reference": "Modules/Settings/DockTab.qml:455, Modules/Settings/LauncherTab.qml:257", + "reference": "Modules/Settings/DockTab.qml:465, Modules/Settings/LauncherTab.qml:257", "comment": "" }, { "term": "Sizing", "context": "Sizing", - "reference": "Modules/Settings/DockTab.qml:502", + "reference": "Modules/Settings/DockTab.qml:512", "comment": "" }, { @@ -10298,7 +11792,7 @@ { "term": "Small", "context": "Small", - "reference": "Modules/Settings/WidgetsTabSection.qml:1345", + "reference": "Modules/Settings/WidgetsTabSection.qml:1593", "comment": "" }, { @@ -10313,6 +11807,12 @@ "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", @@ -10361,22 +11861,28 @@ "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", - "reference": "Modules/Settings/ThemeColorsTab.qml:1617", + "reference": "Modules/Settings/ThemeColorsTab.qml:1832", "comment": "" }, { "term": "Space between windows (gappih/gappiv/gappoh/gappov)", "context": "Space between windows (gappih/gappiv/gappoh/gappov)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1823", + "reference": "Modules/Settings/ThemeColorsTab.qml:2038", "comment": "" }, { "term": "Space between windows (gaps_in and gaps_out)", "context": "Space between windows (gaps_in and gaps_out)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1720", + "reference": "Modules/Settings/ThemeColorsTab.qml:1935", "comment": "" }, { @@ -10388,7 +11894,7 @@ { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:521, Modules/Settings/DankBarTab.qml:768", + "reference": "Modules/Settings/DockTab.qml:531, Modules/Settings/DankBarTab.qml:803", "comment": "" }, { @@ -10400,19 +11906,19 @@ { "term": "Speed", "context": "Speed", - "reference": "Modules/Settings/NetworkTab.qml:585", + "reference": "Modules/Settings/NetworkTab.qml:587", "comment": "" }, { "term": "Spool Area Full", "context": "Spool Area Full", - "reference": "Services/CupsService.qml:808", + "reference": "Services/CupsService.qml:823", "comment": "" }, { "term": "Square Corners", "context": "Square Corners", - "reference": "Modules/Settings/DankBarTab.qml:927", + "reference": "Modules/Settings/DankBarTab.qml:1289", "comment": "" }, { @@ -10430,7 +11936,7 @@ { "term": "Start", "context": "Start", - "reference": "Modules/Settings/ThemeColorsTab.qml:1104, Modules/Settings/GammaControlTab.qml:252", + "reference": "Modules/Settings/ThemeColorsTab.qml:1136, Modules/Settings/GammaControlTab.qml:252", "comment": "" }, { @@ -10454,31 +11960,31 @@ { "term": "State", "context": "State", - "reference": "Modules/Settings/PrinterTab.qml:818, Modules/Settings/NetworkTab.qml:599", + "reference": "Modules/Settings/PrinterTab.qml:1149, Modules/Settings/NetworkTab.qml:601", "comment": "" }, { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:56, Modules/Settings/AboutTab.qml:700, Modules/Settings/PrinterTab.qml:135, Modules/Settings/NetworkTab.qml:182", + "reference": "Widgets/DankIconPicker.qml:55, Modules/Settings/PrinterTab.qml:186, Modules/Settings/NetworkTab.qml:182, Modules/Settings/AboutTab.qml:700", "comment": "" }, { "term": "Stopped", "context": "Stopped", - "reference": "Services/CupsService.qml:750, Services/CupsService.qml:765", + "reference": "Services/CupsService.qml:765, Services/CupsService.qml:780", "comment": "" }, { "term": "Stopped Partly", "context": "Stopped Partly", - "reference": "Services/CupsService.qml:804", + "reference": "Services/CupsService.qml:819", "comment": "" }, { "term": "Stopping", "context": "Stopping", - "reference": "Services/CupsService.qml:803", + "reference": "Services/CupsService.qml:818", "comment": "" }, { @@ -10490,49 +11996,49 @@ { "term": "Stripes", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1157", + "reference": "Modules/Settings/WallpaperTab.qml:1169", "comment": "" }, { "term": "Summary", "context": "notification rule match field option", - "reference": "Modules/Settings/NotificationsTab.qml:90", + "reference": "Modules/Settings/NotificationsTab.qml:93", "comment": "" }, { "term": "Sunrise", "context": "Sunrise", - "reference": "Services/WeatherService.qml:245, Modules/DankDash/WeatherTab.qml:104, Modules/Settings/GammaControlTab.qml:574", + "reference": "Services/WeatherService.qml:245, Modules/Settings/GammaControlTab.qml:574, Modules/DankDash/WeatherTab.qml:104", "comment": "" }, { "term": "Sunset", "context": "Sunset", - "reference": "Services/WeatherService.qml:270, Modules/DankDash/WeatherTab.qml:109, Modules/Settings/GammaControlTab.qml:610", + "reference": "Services/WeatherService.qml:270, Modules/Settings/GammaControlTab.qml:610, Modules/DankDash/WeatherTab.qml:109", "comment": "" }, { "term": "Suppress notification popups while enabled", "context": "Suppress notification popups while enabled", - "reference": "Modules/Settings/NotificationsTab.qml:373", + "reference": "Modules/Settings/NotificationsTab.qml:393", "comment": "" }, { "term": "Surface", "context": "color option | shadow color option", - "reference": "Modules/Settings/DockTab.qml:379, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:181, Modules/Settings/WorkspacesTab.qml:359, Modules/Settings/DankBarTab.qml:1079", + "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", "comment": "" }, { "term": "Surface Variant", - "context": "button color option | tile color option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1500, Modules/Settings/ThemeColorsTab.qml:1508, Modules/Settings/ThemeColorsTab.qml:1518, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1540, Modules/Settings/ThemeColorsTab.qml:1550", + "context": "button color option | shadow color option | tile color option", + "reference": "Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1540, Modules/Settings/ThemeColorsTab.qml:1550, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1572, Modules/Settings/ThemeColorsTab.qml:1582, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1672, Modules/Settings/ThemeColorsTab.qml:1683", "comment": "" }, { "term": "Suspend", "context": "Suspend", - "reference": "Modals/PowerMenuModal.qml:204, Modules/Lock/LockPowerMenu.qml:110, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:204, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:122", "comment": "" }, { @@ -10553,22 +12059,52 @@ "reference": "Modules/Settings/PowerSleepTab.qml:311", "comment": "" }, - { - "term": "Switch User", - "context": "Switch User", - "reference": "Modules/Greetd/GreeterContent.qml:657", - "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 completed successfully.", + "context": "Sync completed successfully.", + "reference": "Modules/Settings/GreeterTab.qml:301", + "comment": "" + }, + { + "term": "Sync dark mode with settings portals for system-wide theme hints", + "context": "Sync dark mode with settings portals for system-wide theme hints", + "reference": "Modules/Settings/ThemeColorsTab.qml:2141", + "comment": "" + }, + { + "term": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", + "context": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", + "reference": "Modules/Settings/GreeterTab.qml:308", + "comment": "" + }, { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:1924", + "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": "" }, { @@ -10583,22 +12119,16 @@ "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:358", "comment": "" }, - { - "term": "Sync dark mode with settings portals for system-wide theme hints", - "context": "Sync dark mode with settings portals for system-wide theme hints", - "reference": "Modules/Settings/ThemeColorsTab.qml:1925", - "comment": "" - }, { "term": "System", "context": "System", - "reference": "Modals/ProcessListModal.qml:319, Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:641, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/ProcessListPopout.qml:155", + "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", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:2469", + "reference": "Modules/Settings/ThemeColorsTab.qml:2774", "comment": "" }, { @@ -10610,7 +12140,7 @@ { "term": "System Default", "context": "date format option", - "reference": "Modules/Settings/TimeWeatherTab.qml:78, Modules/Settings/TimeWeatherTab.qml:81, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:168, Modules/Settings/TimeWeatherTab.qml:208", + "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", "comment": "" }, { @@ -10622,7 +12152,7 @@ { "term": "System Monitor", "context": "System monitor widget name | sysmon window title", - "reference": "Modals/ProcessListModal.qml:51, Modals/ProcessListModal.qml:85, Modals/ProcessListModal.qml:261, Services/AppSearchService.qml:190, Services/DesktopWidgetRegistry.qml:54", + "reference": "Services/DesktopWidgetRegistry.qml:54, Services/AppSearchService.qml:190, Modals/ProcessListModal.qml:51, Modals/ProcessListModal.qml:85, Modals/ProcessListModal.qml:261", "comment": "" }, { @@ -10631,42 +12161,18 @@ "reference": "Modals/ProcessListModal.qml:214", "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": "Modals/Settings/SettingsSidebar.qml:165, Modules/Settings/SystemUpdaterTab.qml:25", - "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", + "context": "System Sounds", + "reference": "Modules/Settings/SoundsTab.qml:27", + "comment": "" + }, { "term": "System sounds are not available. Install %1 for sound support.", "context": "System sounds are not available. Install %1 for sound support.", @@ -10685,12 +12191,36 @@ "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", @@ -10703,34 +12233,94 @@ "reference": "Modals/FileBrowser/KeyboardHints.qml:26", "comment": "" }, + { + "term": "Terminal", + "context": "Terminal", + "reference": "Modules/Settings/MuxTab.qml:63", + "comment": "" + }, { "term": "Terminal custom additional parameters", "context": "Terminal custom additional parameters", "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.", + "reference": "Modules/Settings/GreeterTab.qml:360", + "comment": "" + }, + { + "term": "Terminal fallback opened. Complete sync there; it will close automatically when done.", + "context": "Terminal fallback opened. Complete sync there; it will close automatically when done.", + "reference": "Modules/Settings/GreeterTab.qml:356", + "comment": "" + }, + { + "term": "Terminal multiplexer backend to use", + "context": "Terminal multiplexer backend to use", + "reference": "Modules/Settings/MuxTab.qml:53", + "comment": "" + }, + { + "term": "Terminal opened. Complete sync authentication there; it will close automatically when done.", + "context": "Terminal opened. Complete sync authentication there; it will close automatically when done.", + "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", - "reference": "Modules/Settings/ThemeColorsTab.qml:1934", + "reference": "Modules/Settings/ThemeColorsTab.qml:2150", + "comment": "" + }, + { + "term": "Test Connection", + "context": "Button to test connection to a printer by IP address", + "reference": "Modules/Settings/PrinterTab.qml:580", "comment": "" }, { "term": "Test Page", "context": "Test Page", - "reference": "Modules/Settings/PrinterTab.qml:941", + "reference": "Modules/Settings/PrinterTab.qml:1272", "comment": "" }, { "term": "Test page sent to printer", "context": "Test page sent to printer", - "reference": "Services/CupsService.qml:627", + "reference": "Services/CupsService.qml:642", + "comment": "" + }, + { + "term": "Testing...", + "context": "Button state while testing printer connection", + "reference": "Modules/Settings/PrinterTab.qml:580", "comment": "" }, { "term": "Text", - "context": "shadow color option | text color", - "reference": "Modals/Clipboard/ClipboardEntry.qml:120, Modules/Settings/LauncherTab.qml:477, Modules/Settings/DankBarTab.qml:1079", + "context": "text color", + "reference": "Modals/Clipboard/ClipboardEntry.qml:120, Modules/Settings/LauncherTab.qml:477", + "comment": "" + }, + { + "term": "Text Color", + "context": "shadow color option", + "reference": "Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/ThemeColorsTab.qml:1688", "comment": "" }, { @@ -10740,15 +12330,21 @@ "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", + "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", "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:2432", + "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", "comment": "" }, { @@ -10760,13 +12356,13 @@ { "term": "Theme & Colors", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:82", + "reference": "Modals/Settings/SettingsSidebar.qml:82, Modals/Greeter/GreeterCompletePage.qml:389", "comment": "" }, { "term": "Theme Color", "context": "Theme Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:192", + "reference": "Modules/Settings/ThemeColorsTab.qml:200", "comment": "" }, { @@ -10784,19 +12380,25 @@ { "term": "Thickness", "context": "border thickness", - "reference": "Modules/Settings/LauncherTab.qml:445, Modules/Settings/WorkspacesTab.qml:393, Modules/Settings/DankBarTab.qml:1217, Modules/Settings/DankBarTab.qml:1307", + "reference": "Modules/Settings/WorkspacesTab.qml:403, Modules/Settings/DankBarTab.qml:1451, Modules/Settings/DankBarTab.qml:1541, Modules/Settings/LauncherTab.qml:445", "comment": "" }, { "term": "Third-Party Plugin Warning", "context": "Third-Party Plugin Warning", - "reference": "Modules/Settings/PluginBrowser.qml:733, Modules/Settings/PluginBrowser.qml:767", + "reference": "Modules/Settings/PluginBrowser.qml:735, Modules/Settings/PluginBrowser.qml:769", "comment": "" }, { "term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", "context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", - "reference": "Modules/Settings/PluginBrowser.qml:791", + "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": "" }, { @@ -10826,13 +12428,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:603", + "reference": "Modals/Clipboard/ClipboardContent.qml:37, Modules/DankBar/DankBarContent.qml:600", "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:603", + "reference": "Modals/Clipboard/ClipboardContent.qml:37, Modules/DankBar/DankBarContent.qml:600", "comment": "" }, { @@ -10892,7 +12494,13 @@ { "term": "Time", "context": "theme auto mode tab | wallpaper cycling mode tab", - "reference": "Modules/Settings/ThemeColorsTab.qml:1036, Modules/Settings/WallpaperTab.qml:948", + "reference": "Modules/Settings/WallpaperTab.qml:960, Modules/Settings/ThemeColorsTab.qml:1068", + "comment": "" + }, + { + "term": "Time & Date Locale", + "context": "Time & Date Locale", + "reference": "Modules/Settings/LocaleTab.qml:75", "comment": "" }, { @@ -10904,7 +12512,13 @@ { "term": "Time Format", "context": "Time Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:29", + "reference": "Modules/Settings/TimeWeatherTab.qml:45", + "comment": "" + }, + { + "term": "Time format", + "context": "Time format", + "reference": "Modules/Settings/GreeterTab.qml:591", "comment": "" }, { @@ -10922,25 +12536,25 @@ { "term": "Timed Out", "context": "Timed Out", - "reference": "Services/CupsService.qml:802", + "reference": "Services/CupsService.qml:817", "comment": "" }, { "term": "Timeout for critical priority notifications", "context": "Timeout for critical priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:766", + "reference": "Modules/Settings/NotificationsTab.qml:786", "comment": "" }, { "term": "Timeout for low priority notifications", "context": "Timeout for low priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:732", + "reference": "Modules/Settings/NotificationsTab.qml:752", "comment": "" }, { "term": "Timeout for normal priority notifications", "context": "Timeout for normal priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:749", + "reference": "Modules/Settings/NotificationsTab.qml:769", "comment": "" }, { @@ -10958,13 +12572,13 @@ { "term": "To Full", "context": "To Full", - "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:493", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:520", "comment": "" }, { "term": "To update, run the following command:", "context": "To update, run the following command:", - "reference": "Services/DMSService.qml:319", + "reference": "Services/DMSService.qml:320", "comment": "" }, { @@ -10988,13 +12602,13 @@ { "term": "Toggle visibility of this bar configuration", "context": "Toggle visibility of this bar configuration", - "reference": "Modules/Settings/DankBarTab.qml:374", + "reference": "Modules/Settings/DankBarTab.qml:415", "comment": "" }, { "term": "Toggling...", "context": "Toggling...", - "reference": "Modules/Settings/NetworkTab.qml:819", + "reference": "Modules/Settings/NetworkTab.qml:821", "comment": "" }, { @@ -11012,13 +12626,13 @@ { "term": "Toner Empty", "context": "Toner Empty", - "reference": "Services/CupsService.qml:775", + "reference": "Services/CupsService.qml:790", "comment": "" }, { "term": "Toner Low", "context": "Toner Low", - "reference": "Services/CupsService.qml:774", + "reference": "Services/CupsService.qml:789", "comment": "" }, { @@ -11029,26 +12643,32 @@ }, { "term": "Top", - "context": "Top", - "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:245, Modules/Settings/DankBarTab.qml:253, Modules/Settings/DankBarTab.qml:501", + "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", + "comment": "" + }, + { + "term": "Top (Default)", + "context": "shadow direction option", + "reference": "Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1714", "comment": "" }, { "term": "Top Bar Format", "context": "Top Bar Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:76", + "reference": "Modules/Settings/TimeWeatherTab.qml:119", "comment": "" }, { "term": "Top Center", "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60, Modules/Settings/NotificationsTab.qml:213, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:238", + "reference": "Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:241, Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60", "comment": "" }, { "term": "Top Left", - "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:220, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "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", "comment": "" }, { @@ -11059,38 +12679,44 @@ }, { "term": "Top Right", - "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:226, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "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", "comment": "" }, { "term": "Top Section", "context": "Top Section", - "reference": "Modules/Settings/WidgetsTab.qml:890", + "reference": "Modules/Settings/WidgetsTab.qml:922", + "comment": "" + }, + { + "term": "Total", + "context": "Total", + "reference": "Modules/Settings/WidgetsTabSection.qml:984", "comment": "" }, { "term": "Total Jobs", "context": "Total Jobs", - "reference": "Modules/Settings/PrinterTab.qml:171", + "reference": "Modules/Settings/PrinterTab.qml:222", "comment": "" }, { "term": "Transform", "context": "Transform", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:240, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1221", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:240, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1224", "comment": "" }, { "term": "Transition Effect", "context": "Transition Effect", - "reference": "Modules/Settings/WallpaperTab.qml:1141", + "reference": "Modules/Settings/WallpaperTab.qml:1153", "comment": "" }, { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:557, Modules/Settings/DankBarTab.qml:1330, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342", + "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": "" }, { @@ -11120,7 +12746,7 @@ { "term": "Trigger: %1", "context": "Trigger: %1", - "reference": "Modals/DankLauncherV2/Controller.qml:1124, Modules/Settings/LauncherTab.qml:742", + "reference": "Modals/DankLauncherV2/Controller.qml:1167, Modules/Settings/LauncherTab.qml:742", "comment": "" }, { @@ -11132,13 +12758,13 @@ { "term": "Try a different search", "context": "Try a different search", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98", + "reference": "Modals/MuxModal.qml:579", "comment": "" }, { "term": "Turn off all displays immediately when the lock screen activates", "context": "Turn off all displays immediately when the lock screen activates", - "reference": "Modules/Settings/LockScreenTab.qml:146", + "reference": "Modules/Settings/LockScreenTab.qml:202", "comment": "" }, { @@ -11150,7 +12776,7 @@ { "term": "Type", "context": "Type", - "reference": "Widgets/KeybindItem.qml:834, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:546", + "reference": "Widgets/KeybindItem.qml:834, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:566", "comment": "" }, { @@ -11192,19 +12818,19 @@ { "term": "Typography & Motion", "context": "Typography & Motion", - "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:533", + "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:545", "comment": "" }, { "term": "Unavailable", "context": "Phone Connect unavailable status", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:31, Modules/Settings/PrinterTab.qml:151, Modules/Settings/NetworkTab.qml:450", + "reference": "Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkTab.qml:452, dms-plugins/DankKDEConnect/DankKDEConnect.qml:31", "comment": "" }, { "term": "Unfocused Color", "context": "Unfocused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:266", + "reference": "Modules/Settings/WorkspacesTab.qml:276", "comment": "" }, { @@ -11216,7 +12842,25 @@ { "term": "Uninstall", "context": "uninstall action button", - "reference": "Modules/Settings/ThemeBrowser.qml:650", + "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", + "comment": "" + }, + { + "term": "Uninstall Greeter", + "context": "greeter action confirmation", + "reference": "Modules/Settings/GreeterTab.qml:172", "comment": "" }, { @@ -11226,27 +12870,33 @@ "comment": "" }, { - "term": "Uninstall failed: %1", - "context": "uninstallation error", - "reference": "Modules/Settings/ThemeColorsTab.qml:722, Modules/Settings/ThemeBrowser.qml:97", + "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.", + "reference": "Modules/Settings/GreeterTab.qml:173", "comment": "" }, { "term": "Uninstalled: %1", "context": "uninstallation success", - "reference": "Modules/Settings/ThemeColorsTab.qml:725, Modules/Settings/ThemeBrowser.qml:100", + "reference": "Modules/Settings/ThemeColorsTab.qml:743, Modules/Settings/ThemeBrowser.qml:100", "comment": "" }, { "term": "Uninstalling: %1", "context": "uninstallation progress", - "reference": "Modules/Settings/ThemeColorsTab.qml:719, Modules/Settings/ThemeBrowser.qml:94", + "reference": "Modules/Settings/ThemeColorsTab.qml:737, Modules/Settings/ThemeBrowser.qml:94", "comment": "" }, { "term": "Unknown", "context": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status", - "reference": "Common/Theme.qml:1250, Services/WeatherService.qml:151, Services/WeatherService.qml:650, Services/WeatherService.qml:651, Services/WeatherService.qml:810, Services/WeatherService.qml:811, Services/BatteryService.qml:148, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:364, Modules/Lock/LockScreenContent.qml:484, Modules/Lock/LockScreenContent.qml:580, Modules/Settings/PluginBrowser.qml:537, Modules/Settings/PrinterTab.qml:1307, Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:429, Modules/Settings/NetworkTab.qml:452, Modules/Settings/NetworkTab.qml:600, Modules/Settings/NetworkTab.qml:745, Modules/Settings/NetworkTab.qml:1170, Modules/Settings/NotificationsTab.qml:646, Modules/ControlCenter/Details/BatteryDetail.qml:183, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:325, Modules/ControlCenter/Components/DragDropGrid.qml:626", + "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", + "comment": "" + }, + { + "term": "Unknown App", + "context": "Unknown App", + "reference": "Modules/Settings/LauncherTab.qml:1173", "comment": "" }, { @@ -11300,13 +12950,13 @@ { "term": "Unmute", "context": "Unmute", - "reference": "Modules/Settings/NotificationsTab.qml:659", + "reference": "Modules/Settings/NotificationsTab.qml:679", "comment": "" }, { "term": "Unmute popups for %1", "context": "Unmute popups for %1", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1056, Modules/Notifications/Center/NotificationCard.qml:962", + "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1096, Modules/Notifications/Center/NotificationCard.qml:1016", "comment": "" }, { @@ -11324,7 +12974,7 @@ { "term": "Unpair failed", "context": "Phone Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:175", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:176", "comment": "" }, { @@ -11369,6 +13019,12 @@ "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:673", "comment": "" }, + { + "term": "up", + "context": "up", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:102", + "comment": "" + }, { "term": "Update", "context": "Update", @@ -11381,6 +13037,12 @@ "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", + "comment": "" + }, { "term": "Update Plugin", "context": "Update Plugin", @@ -11402,7 +13064,7 @@ { "term": "Urgent Color", "context": "Urgent Color", - "reference": "Modules/Settings/WorkspacesTab.qml:303", + "reference": "Modules/Settings/WorkspacesTab.qml:313", "comment": "" }, { @@ -11414,55 +13076,31 @@ { "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:38", + "reference": "Modules/Settings/TimeWeatherTab.qml:54", "comment": "" }, { - "term": "Use Custom Command", - "context": "Use Custom Command", - "reference": "Modules/Settings/SystemUpdaterTab.qml:38", + "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.", + "reference": "Modules/Settings/GreeterTab.qml:658", "comment": "" }, { - "term": "Use Grid Layout", - "context": "Use Grid Layout", - "reference": "Modules/Settings/PowerSleepTab.qml:367", + "term": "Use a fixed shadow direction for this bar", + "context": "Use a fixed shadow direction for this bar", + "reference": "Modules/Settings/DankBarTab.qml:1151", "comment": "" }, { - "term": "Use IP Location", - "context": "Use IP Location", - "reference": "Modules/Settings/ThemeColorsTab.qml:1194, Modules/Settings/GammaControlTab.qml:345", - "comment": "" - }, - { - "term": "Use Imperial Units", - "context": "Use Imperial Units", - "reference": "Modules/Settings/TimeWeatherTab.qml:369", - "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:370", - "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", + "term": "Use a security key for lock screen authentication.", + "context": "lock screen U2F security key setting", + "reference": "Modules/Settings/LockScreenTab.qml:35", "comment": "" }, { "term": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "context": "wallpaper settings disable description", - "reference": "Modules/Settings/WallpaperTab.qml:1239", + "reference": "Modules/Settings/WallpaperTab.qml:1251", "comment": "" }, { @@ -11474,13 +13112,19 @@ { "term": "Use custom border size", "context": "Use custom border size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1766, Modules/Settings/ThemeColorsTab.qml:1869", + "reference": "Modules/Settings/ThemeColorsTab.qml:1981, Modules/Settings/ThemeColorsTab.qml:2084", "comment": "" }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", - "reference": "Modules/Settings/ThemeColorsTab.qml:1663", + "reference": "Modules/Settings/ThemeColorsTab.qml:1878", + "comment": "" + }, + { + "term": "Use Custom Command", + "context": "Use Custom Command", + "reference": "Modules/Settings/SystemUpdaterTab.qml:38", "comment": "" }, { @@ -11492,19 +13136,31 @@ { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1600, Modules/Settings/ThemeColorsTab.qml:1703, Modules/Settings/ThemeColorsTab.qml:1806", + "reference": "Modules/Settings/ThemeColorsTab.qml:1815, Modules/Settings/ThemeColorsTab.qml:1918, Modules/Settings/ThemeColorsTab.qml:2021", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1632, Modules/Settings/ThemeColorsTab.qml:1838", + "reference": "Modules/Settings/ThemeColorsTab.qml:1847, Modules/Settings/ThemeColorsTab.qml:2053", "comment": "" }, { "term": "Use custom window rounding instead of theme radius", "context": "Use custom window rounding instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1735", + "reference": "Modules/Settings/ThemeColorsTab.qml:1950", + "comment": "" + }, + { + "term": "Use desktop wallpaper", + "context": "Use desktop wallpaper", + "reference": "Modules/Settings/GreeterTab.qml:672", + "comment": "" + }, + { + "term": "Use fingerprint authentication for the lock screen.", + "context": "Use fingerprint authentication for the lock screen.", + "reference": "Modules/Settings/LockScreenTab.qml:18", "comment": "" }, { @@ -11513,22 +13169,52 @@ "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", - "reference": "Modules/Settings/ThemeColorsTab.qml:1428", + "reference": "Modules/Settings/ThemeColorsTab.qml:1460", "comment": "" }, { "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:388", + "reference": "Modules/Settings/TimeWeatherTab.qml:431", + "comment": "" + }, + { + "term": "Use Monospace Font", + "context": "Use Monospace Font", + "reference": "Modules/Notepad/NotepadSettings.qml:130", "comment": "" }, { "term": "Use smaller notification cards", "context": "Use smaller notification cards", - "reference": "Modules/Settings/NotificationsTab.qml:268", + "reference": "Modules/Settings/NotificationsTab.qml:271", "comment": "" }, { @@ -11537,6 +13223,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", @@ -11564,13 +13256,13 @@ { "term": "Username", "context": "Username", - "reference": "Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Widgets/VpnProfileDelegate.qml:45, Modules/Settings/NetworkTab.qml:1908", + "reference": "Widgets/VpnProfileDelegate.qml:45, Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Modules/Settings/NetworkTab.qml:1910", "comment": "" }, { "term": "Uses sunrise/sunset times based on your location.", "context": "Uses sunrise/sunset times based on your location.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1273", + "reference": "Modules/Settings/ThemeColorsTab.qml:1305", "comment": "" }, { @@ -11582,7 +13274,7 @@ { "term": "Using shared settings from Gamma Control", "context": "Using shared settings from Gamma Control", - "reference": "Modules/Settings/ThemeColorsTab.qml:1285", + "reference": "Modules/Settings/ThemeColorsTab.qml:1317", "comment": "" }, { @@ -11592,75 +13284,9 @@ "comment": "" }, { - "term": "VPN", - "context": "VPN", - "reference": "Modules/Settings/WidgetsTabSection.qml:839, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/NetworkTab.qml:1542, Modules/ControlCenter/Models/WidgetModel.qml:187, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", - "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:159", - "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:1223", - "comment": "" - }, - { - "term": "VRR Fullscreen Only", - "context": "VRR Fullscreen Only", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1257", - "comment": "" - }, - { - "term": "VRR On-Demand", - "context": "VRR On-Demand", - "reference": "Modals/WindowRuleModal.qml:701, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1231", + "term": "v%1 by %2", + "context": "v%1 by %2", + "reference": "Modules/Settings/PluginListItem.qml:169", "comment": "" }, { @@ -11672,7 +13298,7 @@ { "term": "Verification", "context": "Phone Connect pairing verification key label", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:69", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:70", "comment": "" }, { @@ -11717,6 +13343,18 @@ "reference": "Common/Theme.qml:480", "comment": "" }, + { + "term": "Video Path", + "context": "Video Path", + "reference": "Modules/Settings/LockScreenTab.qml:286", + "comment": "" + }, + { + "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", + "comment": "" + }, { "term": "Videos", "context": "Videos", @@ -11732,13 +13370,7 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1074, Modules/Settings/DankBarTab.qml:551", - "comment": "" - }, - { - "term": "Visual Effects", - "context": "Visual Effects", - "reference": "Modules/Settings/WidgetsTabSection.qml:1913", + "reference": "Modules/Settings/DankBarTab.qml:589, Modules/Settings/TimeWeatherTab.qml:1118, Modules/DankDash/WeatherForecastCard.qml:100", "comment": "" }, { @@ -11750,13 +13382,19 @@ { "term": "Visual effect used when wallpaper changes", "context": "Visual effect used when wallpaper changes", - "reference": "Modules/Settings/WallpaperTab.qml:1142", + "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:854, Modules/Settings/OSDTab.qml:93", + "reference": "Modules/Settings/WidgetsTabSection.qml:1102, Modules/Settings/OSDTab.qml:93", "comment": "" }, { @@ -11778,39 +13416,111 @@ "comment": "" }, { - "term": "WPA/WPA2", - "context": "WPA/WPA2", - "reference": "Modules/Settings/NetworkTab.qml:1446", + "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", "comment": "" }, { "term": "Wallpaper", "context": "greeter settings link", - "reference": "Widgets/KeybindItem.qml:1097, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1113, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:76, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63", + "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", "comment": "" }, { "term": "Wallpaper Error", "context": "wallpaper error status", - "reference": "Modules/Settings/ThemeColorsTab.qml:439", + "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:807", + "reference": "Modules/Settings/WallpaperTab.qml:819", "comment": "" }, { "term": "Wallpaper processing failed", "context": "wallpaper processing error", - "reference": "Modules/Settings/ThemeColorsTab.qml:456", + "reference": "Modules/Settings/ThemeColorsTab.qml:474", "comment": "" }, { "term": "Wallpaper processing failed - check wallpaper path", "context": "wallpaper error", - "reference": "Modules/Settings/ThemeColorsTab.qml:293", + "reference": "Modules/Settings/ThemeColorsTab.qml:301", "comment": "" }, { @@ -11828,13 +13538,13 @@ { "term": "Warning", "context": "Warning", - "reference": "Services/CupsService.qml:820", + "reference": "Services/CupsService.qml:835", "comment": "" }, { "term": "Warnings", "context": "greeter doctor page status card", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:253", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:259", "comment": "" }, { @@ -11846,7 +13556,7 @@ { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/DankDash/DankDashPopout.qml:285, Modules/Settings/TimeWeatherTab.qml:339", + "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/Settings/TimeWeatherTab.qml:382, Modules/DankDash/DankDashPopout.qml:285", "comment": "" }, { @@ -11867,6 +13577,12 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:47", "comment": "" }, + { + "term": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", + "context": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", + "reference": "Modules/Settings/DockTab.qml:167", + "comment": "" + }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "context": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", @@ -11885,12 +13601,6 @@ "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", @@ -11903,22 +13613,112 @@ "reference": "Modules/ControlCenter/Models/WidgetModel.qml:106", "comment": "" }, + { + "term": "Wi-Fi Password", + "context": "Wi-Fi Password", + "reference": "Modals/WifiPasswordModal.qml:253", + "comment": "" + }, + { + "term": "Wide (BT2020)", + "context": "Wide (BT2020)", + "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", + "reference": "Modules/Settings/ThemeColorsTab.qml:1495", + "comment": "" + }, + { + "term": "Widget Management", + "context": "Widget Management", + "reference": "Modules/Settings/WidgetsTab.qml:835", + "comment": "" + }, + { + "term": "Widget Outline", + "context": "Widget Outline", + "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", + "reference": "Modules/Settings/ThemeColorsTab.qml:1480", + "comment": "" + }, + { + "term": "Widget Styling", + "context": "Widget Styling", + "reference": "Modules/Settings/ThemeColorsTab.qml:1472", + "comment": "" + }, + { + "term": "Widget Transparency", + "context": "Widget Transparency", + "reference": "Modules/Settings/DankBarTab.qml:1028", + "comment": "" + }, + { + "term": "Widgets", + "context": "settings_displays", + "reference": "Modals/Settings/SettingsSidebar.qml:120, Modals/Settings/SettingsSidebar.qml:224", + "comment": "" + }, + { + "term": "Widgets, layout, style", + "context": "greeter dankbar description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:406", + "comment": "" + }, + { + "term": "Width", + "context": "Width", + "reference": "Modules/Settings/WindowRulesTab.qml:542", + "comment": "" + }, + { + "term": "Width of window border (borderpx)", + "context": "Width of window border (borderpx)", + "reference": "Modules/Settings/ThemeColorsTab.qml:2100", + "comment": "" + }, + { + "term": "Width of window border (general.border_size)", + "context": "Width of window border (general.border_size)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1997", + "comment": "" + }, + { + "term": "Width of window border and focus ring", + "context": "Width of window border and focus ring", + "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:808, Modules/ControlCenter/Details/NetworkDetail.qml:136", + "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:866, Modules/Settings/NetworkTab.qml:898", - "comment": "" - }, - { - "term": "WiFi QR code for ", - "context": "WiFi QR code for ", - "reference": "Modals/WifiQRCodeModal.qml:125", + "reference": "Modules/Settings/NetworkTab.qml:868, Modules/Settings/NetworkTab.qml:900", "comment": "" }, { @@ -11946,99 +13746,15 @@ "comment": "" }, { - "term": "Wide (BT2020)", - "context": "Wide (BT2020)", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:145, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:149, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:160", - "comment": "" - }, - { - "term": "Widget Background Color", - "context": "Widget Background Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1463", - "comment": "" - }, - { - "term": "Widget Management", - "context": "Widget Management", - "reference": "Modules/Settings/WidgetsTab.qml:803", - "comment": "" - }, - { - "term": "Widget Outline", - "context": "Widget Outline", - "reference": "Modules/Settings/DankBarTab.qml:1240", - "comment": "" - }, - { - "term": "Widget Style", - "context": "Widget Style", - "reference": "Modules/Settings/ThemeColorsTab.qml:1448", - "comment": "" - }, - { - "term": "Widget Styling", - "context": "Widget Styling", - "reference": "Modules/Settings/ThemeColorsTab.qml:1440", - "comment": "" - }, - { - "term": "Widget Transparency", - "context": "Widget Transparency", - "reference": "Modules/Settings/DankBarTab.qml:1359", - "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", - "reference": "Modals/Settings/SettingsSidebar.qml:120, Modals/Settings/SettingsSidebar.qml:224", - "comment": "" - }, - { - "term": "Widgets, layout, style", - "context": "greeter dankbar description", - "reference": "Modals/Greeter/GreeterCompletePage.qml:406", - "comment": "" - }, - { - "term": "Width", - "context": "Width", - "reference": "Modules/Settings/WindowRulesTab.qml:542", - "comment": "" - }, - { - "term": "Width of window border (borderpx)", - "context": "Width of window border (borderpx)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1885", - "comment": "" - }, - { - "term": "Width of window border (general.border_size)", - "context": "Width of window border (general.border_size)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1782", - "comment": "" - }, - { - "term": "Width of window border and focus ring", - "context": "Width of window border and focus ring", - "reference": "Modules/Settings/ThemeColorsTab.qml:1679", + "term": "WiFi QR code for ", + "context": "WiFi QR code for ", + "reference": "Modals/WifiQRCodeModal.qml:125", "comment": "" }, { "term": "Wind", "context": "Wind", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:89, Modules/Settings/TimeWeatherTab.qml:923", + "reference": "Modules/Settings/TimeWeatherTab.qml:967, Modules/DankDash/WeatherTab.qml:89, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425", "comment": "" }, { @@ -12050,19 +13766,19 @@ { "term": "Wind Speed in m/s", "context": "Wind Speed in m/s", - "reference": "Modules/Settings/TimeWeatherTab.qml:387", + "reference": "Modules/Settings/TimeWeatherTab.qml:430", "comment": "" }, { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1647, Modules/Settings/ThemeColorsTab.qml:1853", + "reference": "Modules/Settings/ThemeColorsTab.qml:1862, Modules/Settings/ThemeColorsTab.qml:2068", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1616, Modules/Settings/ThemeColorsTab.qml:1719, Modules/Settings/ThemeColorsTab.qml:1822", + "reference": "Modules/Settings/ThemeColorsTab.qml:1831, Modules/Settings/ThemeColorsTab.qml:1934, Modules/Settings/ThemeColorsTab.qml:2037", "comment": "" }, { @@ -12086,13 +13802,13 @@ { "term": "Window Rounding", "context": "Window Rounding", - "reference": "Modules/Settings/ThemeColorsTab.qml:1750", + "reference": "Modules/Settings/ThemeColorsTab.qml:1965", "comment": "" }, { "term": "Window Rules", "context": "Window Rules", - "reference": "Modals/Settings/SettingsSidebar.qml:265, Modules/Settings/WindowRulesTab.qml:247", + "reference": "Modals/Settings/SettingsSidebar.qml:271, Modules/Settings/WindowRulesTab.qml:247", "comment": "" }, { @@ -12110,19 +13826,19 @@ { "term": "Wipe", "context": "wallpaper transition option", - "reference": "Modules/Settings/WallpaperTab.qml:1153", + "reference": "Modules/Settings/WallpaperTab.qml:1165", "comment": "" }, { "term": "Workspace", "context": "Workspace", - "reference": "Modals/WindowRuleModal.qml:586, Modals/WindowRuleModal.qml:1076, Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:694, Modules/Settings/DankBarTab.qml:694, Modules/Settings/DankBarTab.qml:731, Modules/Settings/WindowRulesTab.qml:541, Modules/Settings/WindowRulesTab.qml:568", + "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", "comment": "" }, { "term": "Workspace Appearance", "context": "Workspace Appearance", - "reference": "Modules/Settings/WorkspacesTab.qml:182", + "reference": "Modules/Settings/WorkspacesTab.qml:192", "comment": "" }, { @@ -12131,6 +13847,12 @@ "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", @@ -12155,12 +13877,6 @@ "reference": "Modules/Settings/WidgetsTab.qml:52", "comment": "" }, - { - "term": "Workspace name", - "context": "Workspace name", - "reference": "Modals/WorkspaceRenameModal.qml:134", - "comment": "" - }, { "term": "Workspaces", "context": "Workspaces", @@ -12170,7 +13886,13 @@ { "term": "Workspaces & Widgets", "context": "Workspaces & Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsSidebar.qml:527", + "reference": "Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsSidebar.qml:539", + "comment": "" + }, + { + "term": "WPA/WPA2", + "context": "WPA/WPA2", + "reference": "Modules/Settings/NetworkTab.qml:1448", "comment": "" }, { @@ -12179,22 +13901,28 @@ "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", - "reference": "Modules/Settings/DankBarTab.qml:729", + "reference": "Modules/Settings/DankBarTab.qml:764", "comment": "" }, { "term": "Y Axis", "context": "Y Axis", - "reference": "Modules/Settings/DankBarTab.qml:693", + "reference": "Modules/Settings/DankBarTab.qml:728", "comment": "" }, { "term": "Yes", "context": "Yes", - "reference": "Widgets/VpnProfileDelegate.qml:81, Modules/Settings/PrinterTab.qml:838, Modules/Settings/NetworkTab.qml:1938, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1229, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1233, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1243, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1253, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1255", + "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": "" }, { @@ -12203,6 +13931,12 @@ "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?", @@ -12230,7 +13964,7 @@ { "term": "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.", "context": "qt theme env error body", - "reference": "Modules/Settings/ThemeColorsTab.qml:2460", + "reference": "Modules/Settings/ThemeColorsTab.qml:2367", "comment": "" }, { @@ -12246,9 +13980,9 @@ "comment": "" }, { - "term": "brandon", - "context": "brandon", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:44", + "term": "attached", + "context": "attached", + "reference": "Modals/MuxModal.qml:494", "comment": "" }, { @@ -12260,19 +13994,13 @@ { "term": "days", "context": "days", - "reference": "Modules/Settings/NotificationsTab.qml:829, Modules/Settings/ClipboardTab.qml:179", + "reference": "Modules/Settings/ClipboardTab.qml:179, Modules/Settings/NotificationsTab.qml:613", "comment": "" }, { - "term": "device", - "context": "Generic device name | Generic device name fallback", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:90, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", - "comment": "" - }, - { - "term": "devices connected", - "context": "KDE Connect status multiple devices", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:38", + "term": "detached", + "context": "detached", + "reference": "Modals/MuxModal.qml:494", "comment": "" }, { @@ -12284,7 +14012,7 @@ { "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:1993", + "reference": "Modules/Settings/ThemeColorsTab.qml:2005", "comment": "" }, { @@ -12311,22 +14039,22 @@ "reference": "Widgets/KeybindItem.qml:1509", "comment": "" }, + { + "term": "e.g., scratch, /^tmp_.*/, build", + "context": "e.g., scratch, /^tmp_.*/, build", + "reference": "Modules/Settings/MuxTab.qml:131", + "comment": "" + }, { "term": "events", "context": "events", "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:135", "comment": "" }, - { - "term": "ext", - "context": "ext", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:683", - "comment": "" - }, { "term": "featured", "context": "featured", - "reference": "Modules/Settings/PluginBrowser.qml:485, Modules/Settings/DesktopWidgetBrowser.qml:389", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:485", "comment": "" }, { @@ -12344,13 +14072,13 @@ { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:291", + "reference": "Modules/Settings/ThemeColorsTab.qml:303", "comment": "" }, { "term": "minutes", "context": "minutes", - "reference": "Modules/Settings/NotificationsTab.qml:168", + "reference": "Modules/Settings/NotificationsTab.qml:149", "comment": "" }, { @@ -12374,7 +14102,7 @@ { "term": "now", "context": "now", - "reference": "Services/NotificationService.qml:242", + "reference": "Services/NotificationService.qml:245", "comment": "" }, { @@ -12383,42 +14111,6 @@ "reference": "Modules/Settings/PluginBrowser.qml:507, 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", @@ -12428,13 +14120,13 @@ { "term": "procs", "context": "short for processes", - "reference": "Modules/ProcessList/ProcessListPopout.qml:288", + "reference": "Modules/ProcessList/ProcessListPopout.qml:256", "comment": "" }, { "term": "seconds", "context": "seconds", - "reference": "Modules/Settings/NotificationsTab.qml:167", + "reference": "Modules/Settings/NotificationsTab.qml:148", "comment": "" }, { @@ -12443,22 +14135,10 @@ "reference": "Modules/Settings/PluginBrowser.qml:538", "comment": "" }, - { - "term": "this app", - "context": "this app", - "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1056, Modules/Notifications/Popup/NotificationPopup.qml:1056, Modules/Notifications/Center/NotificationCard.qml:962, Modules/Notifications/Center/NotificationCard.qml:962", - "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:223", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:207", "comment": "" }, { @@ -12473,6 +14153,12 @@ "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", @@ -12518,37 +14204,79 @@ { "term": "• d - Day (1-31)", "context": "• d - Day (1-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:275", + "reference": "Modules/Settings/TimeWeatherTab.qml:318", "comment": "" }, { "term": "• dd - Day (01-31)", "context": "• dd - Day (01-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:280", + "reference": "Modules/Settings/TimeWeatherTab.qml:323", "comment": "" }, { "term": "• ddd - Day name (Mon)", "context": "• ddd - Day name (Mon)", - "reference": "Modules/Settings/TimeWeatherTab.qml:285", + "reference": "Modules/Settings/TimeWeatherTab.qml:328", "comment": "" }, { "term": "• dddd - Day name (Monday)", "context": "• dddd - Day name (Monday)", - "reference": "Modules/Settings/TimeWeatherTab.qml:290", + "reference": "Modules/Settings/TimeWeatherTab.qml:333", + "comment": "" + }, + { + "term": "• Install only from trusted sources", + "context": "• Install only from trusted sources", + "reference": "Modules/Settings/PluginBrowser.qml:816", + "comment": "" + }, + { + "term": "• M - Month (1-12)", + "context": "• M - Month (1-12)", + "reference": "Modules/Settings/TimeWeatherTab.qml:338", + "comment": "" + }, + { + "term": "• MM - Month (01-12)", + "context": "• MM - Month (01-12)", + "reference": "Modules/Settings/TimeWeatherTab.qml:349", + "comment": "" + }, + { + "term": "• MMM - Month (Jan)", + "context": "• MMM - Month (Jan)", + "reference": "Modules/Settings/TimeWeatherTab.qml:354", + "comment": "" + }, + { + "term": "• MMMM - Month (January)", + "context": "• MMMM - Month (January)", + "reference": "Modules/Settings/TimeWeatherTab.qml:359", + "comment": "" + }, + { + "term": "• Plugins may contain bugs or security issues", + "context": "• Plugins may contain bugs or security issues", + "reference": "Modules/Settings/PluginBrowser.qml:804", + "comment": "" + }, + { + "term": "• Review code before installation when possible", + "context": "• Review code before installation when possible", + "reference": "Modules/Settings/PluginBrowser.qml:810", "comment": "" }, { "term": "• yy - Year (24)", "context": "• yy - Year (24)", - "reference": "Modules/Settings/TimeWeatherTab.qml:321", + "reference": "Modules/Settings/TimeWeatherTab.qml:364", "comment": "" }, { "term": "• yyyy - Year (2024)", "context": "• yyyy - Year (2024)", - "reference": "Modules/Settings/TimeWeatherTab.qml:326", + "reference": "Modules/Settings/TimeWeatherTab.qml:369", "comment": "" }, { diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index d5c2bc45..079457e4 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -1,13 +1,6 @@ [ { - "term": "%1 Animation Speed", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "%1 DMS bind(s) may be overridden by config binds that come after the include.", + "term": "%1 active, %2 filtered", "translation": "", "context": "", "reference": "", @@ -20,6 +13,27 @@ "reference": "", "comment": "" }, + { + "term": "%1 adapter, none connected", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "%1 adapters, none connected", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "%1 Animation Speed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 characters", "translation": "", @@ -48,6 +62,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 days ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 disconnected", "translation": "", @@ -62,6 +83,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 display(s)", "translation": "", @@ -69,6 +97,20 @@ "reference": "", "comment": "" }, + { + "term": "%1 displays", + "translation": "", + "context": "", + "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": "", @@ -90,6 +132,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 issue found", + "translation": "", + "context": "greeter doctor page error count", + "reference": "", + "comment": "" + }, { "term": "%1 issue(s) found", "translation": "", @@ -97,6 +146,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 issues found", + "translation": "", + "context": "greeter doctor page error count", + "reference": "", + "comment": "" + }, { "term": "%1 job(s)", "translation": "", @@ -118,6 +174,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 Sessions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 variants", "translation": "", @@ -132,6 +195,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 windows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1m ago", "translation": "", @@ -139,6 +209,13 @@ "reference": "", "comment": "" }, + { + "term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", + "translation": "", + "context": "lock screen U2F security key mode setting", + "reference": "", + "comment": "" + }, { "term": "(Default)", "translation": "", @@ -160,6 +237,13 @@ "reference": "", "comment": "" }, + { + "term": "/path/to/videos", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "0 = square corners", "translation": "", @@ -314,6 +398,13 @@ "reference": "", "comment": "" }, + { + "term": "24-hour clock", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "24-Hour Format", "translation": "", @@ -538,20 +629,6 @@ "reference": "", "comment": "" }, - { - "term": "AC Power", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "API", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Aborted", "translation": "", @@ -566,6 +643,13 @@ "reference": "", "comment": "" }, + { + "term": "AC Power", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Accent Color", "translation": "", @@ -622,6 +706,13 @@ "reference": "", "comment": "" }, + { + "term": "Action failed or terminal was closed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Actions", "translation": "", @@ -629,6 +720,13 @@ "reference": "", "comment": "" }, + { + "term": "actions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Activate", "translation": "", @@ -636,6 +734,20 @@ "reference": "", "comment": "" }, + { + "term": "Activate Greeter", + "translation": "", + "context": "greeter action confirmation", + "reference": "", + "comment": "" + }, + { + "term": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Activation", "translation": "", @@ -706,6 +818,27 @@ "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": "", @@ -713,6 +846,13 @@ "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": "", @@ -748,27 +888,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": "Adjust the number of columns in grid view mode.", "translation": "", @@ -804,13 +923,6 @@ "reference": "", "comment": "" }, - { - "term": "All Monitors", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "All checks passed", "translation": "", @@ -832,6 +944,13 @@ "reference": "", "comment": "" }, + { + "term": "All Monitors", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Allow clicks to pass through the widget", "translation": "", @@ -847,14 +966,14 @@ "comment": "" }, { - "term": "Always Active", + "term": "Alternative (OR)", "translation": "", - "context": "", + "context": "U2F mode option: key works as standalone unlock method", "reference": "", "comment": "" }, { - "term": "Always Show Percentage", + "term": "Always Active", "translation": "", "context": "", "reference": "", @@ -881,6 +1000,13 @@ "reference": "", "comment": "" }, + { + "term": "Always Show Percentage", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Always show the dock when niri's overview is open", "translation": "", @@ -951,6 +1077,13 @@ "reference": "", "comment": "" }, + { + "term": "API", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "App Customizations", "translation": "", @@ -959,14 +1092,14 @@ "comment": "" }, { - "term": "App ID Substitutions", + "term": "App ID regex (e.g. ^firefox$)", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "App ID regex (e.g. ^firefox$)", + "term": "App ID Substitutions", "translation": "", "context": "", "reference": "", @@ -1049,6 +1182,13 @@ "reference": "", "comment": "" }, + { + "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Apps Dock", "translation": "", @@ -1070,13 +1210,6 @@ "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": "", @@ -1098,6 +1231,13 @@ "reference": "", "comment": "" }, + { + "term": "Are you sure you want to kill session \"%1\"?", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Arrange displays and configure resolution, refresh rate, and VRR", "translation": "", @@ -1105,6 +1245,20 @@ "reference": "", "comment": "" }, + { + "term": "Attach", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "attached", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Audio", "translation": "", @@ -1162,14 +1316,14 @@ "comment": "" }, { - "term": "Audio Visualizer", + "term": "Audio system restarted", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Audio system restarted", + "term": "Audio Visualizer", "translation": "", "context": "", "reference": "", @@ -1211,14 +1365,14 @@ "comment": "" }, { - "term": "Authentication Required", + "term": "Authentication failed, please try again", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Authentication failed, please try again", + "term": "Authentication Required", "translation": "", "context": "", "reference": "", @@ -1252,6 +1406,13 @@ "reference": "", "comment": "" }, + { + "term": "Auto (Bar-aware)", + "translation": "", + "context": "bar shadow direction source option | shadow direction option", + "reference": "", + "comment": "" + }, { "term": "Auto (Wide)", "translation": "", @@ -1280,13 +1441,6 @@ "reference": "", "comment": "" }, - { - "term": "Auto-Hide Timeout", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Auto-close Niri overview when launching apps.", "translation": "", @@ -1315,6 +1469,13 @@ "reference": "", "comment": "" }, + { + "term": "Auto-Hide Timeout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Auto-saving...", "translation": "", @@ -1427,6 +1588,13 @@ "reference": "", "comment": "" }, + { + "term": "Available in Detailed and Forecast view modes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Available Layouts", "translation": "", @@ -1456,14 +1624,7 @@ "comment": "" }, { - "term": "Available in Detailed and Forecast view modes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "BSSID", + "term": "Available.", "translation": "", "context": "", "reference": "", @@ -1484,7 +1645,7 @@ "comment": "" }, { - "term": "Background Opacity", + "term": "Background", "translation": "", "context": "", "reference": "", @@ -1497,6 +1658,13 @@ "reference": "", "comment": "" }, + { + "term": "Background Opacity", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Backlight device", "translation": "", @@ -1532,6 +1700,13 @@ "reference": "", "comment": "" }, + { + "term": "Bar Shadows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Bar Transparency", "translation": "", @@ -1539,6 +1714,13 @@ "reference": "", "comment": "" }, + { + "term": "Base color for shadows (opacity is applied automatically)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Base duration for animations (drag to use Custom)", "translation": "", @@ -1554,14 +1736,14 @@ "comment": "" }, { - "term": "Battery Charge Limit", + "term": "Battery and power management", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Battery and power management", + "term": "Battery Charge Limit", "translation": "", "context": "", "reference": "", @@ -1588,13 +1770,6 @@ "reference": "", "comment": "" }, - { - "term": "Binds Include Missing", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Binds include added", "translation": "", @@ -1602,6 +1777,13 @@ "reference": "", "comment": "" }, + { + "term": "Binds Include Missing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Bit Depth", "translation": "", @@ -1609,6 +1791,13 @@ "reference": "", "comment": "" }, + { + "term": "Block notifications", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Block Out", "translation": "", @@ -1623,13 +1812,6 @@ "reference": "", "comment": "" }, - { - "term": "Block notifications", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Blocked", "translation": "", @@ -1651,13 +1833,6 @@ "reference": "", "comment": "" }, - { - "term": "Bluetooth Settings", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Bluetooth not available", "translation": "", @@ -1666,7 +1841,7 @@ "comment": "" }, { - "term": "Blur Wallpaper Layer", + "term": "Bluetooth Settings", "translation": "", "context": "", "reference": "", @@ -1679,6 +1854,13 @@ "reference": "", "comment": "" }, + { + "term": "Blur Wallpaper Layer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Blur wallpaper when niri overview is open", "translation": "", @@ -1738,7 +1920,7 @@ { "term": "Bottom", "translation": "", - "context": "", + "context": "shadow direction option", "reference": "", "comment": "" }, @@ -1749,6 +1931,13 @@ "reference": "", "comment": "" }, + { + "term": "Bottom dock for pinned and running applications", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Bottom Left", "translation": "", @@ -1771,7 +1960,7 @@ "comment": "" }, { - "term": "Bottom dock for pinned and running applications", + "term": "brandon", "translation": "", "context": "", "reference": "", @@ -1784,6 +1973,13 @@ "reference": "", "comment": "" }, + { + "term": "Brightness control not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Brightness Slider", "translation": "", @@ -1798,13 +1994,6 @@ "reference": "", "comment": "" }, - { - "term": "Brightness control not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Browse", "translation": "", @@ -1819,6 +2008,13 @@ "reference": "", "comment": "" }, + { + "term": "Browse or search plugins", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Browse Plugins", "translation": "", @@ -1834,7 +2030,7 @@ "comment": "" }, { - "term": "Browse or search plugins", + "term": "BSSID", "translation": "", "context": "", "reference": "", @@ -1848,77 +2044,21 @@ "comment": "" }, { - "term": "CPU", + "term": "by %1", + "translation": "", + "context": "author attribution", + "reference": "", + "comment": "" + }, + { + "term": "Calc", "translation": "", "context": "", "reference": "", "comment": "" }, { - "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", + "term": "Calculator", "translation": "", "context": "", "reference": "", @@ -2022,6 +2162,13 @@ "reference": "", "comment": "" }, + { + "term": "Change bar appearance", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Change Song", "translation": "", @@ -2030,19 +2177,26 @@ "comment": "" }, { - "term": "Change Volume", + "term": "Change the locale used by the DMS interface.", "translation": "", - "context": "media scroll wheel option", + "context": "", "reference": "", "comment": "" }, { - "term": "Change bar appearance", + "term": "Change the locale used for date and time formatting, independent of the interface language.", "translation": "", "context": "", "reference": "", "comment": "" }, + { + "term": "Change Volume", + "translation": "", + "context": "media scroll wheel option", + "reference": "", + "comment": "" + }, { "term": "Channel", "translation": "", @@ -2064,6 +2218,34 @@ "reference": "", "comment": "" }, + { + "term": "Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Checking whether sudo authentication is needed…", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Checking…", + "translation": "", + "context": "greeter status loading", + "reference": "", + "comment": "" + }, + { + "term": "Choose a color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Choose Color", "translation": "", @@ -2071,6 +2253,13 @@ "reference": "", "comment": "" }, + { + "term": "Choose colors from palette", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Choose Dark Mode Color", "translation": "", @@ -2085,6 +2274,27 @@ "reference": "", "comment": "" }, + { + "term": "Choose how the weather widget is displayed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Choose how this bar resolves shadow direction", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Choose icon", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Choose Launcher Logo Color", "translation": "", @@ -2099,41 +2309,6 @@ "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": "", - "comment": "" - }, - { - "term": "Choose how the weather widget is displayed", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Choose icon", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Choose the background color for widgets", "translation": "", @@ -2155,6 +2330,13 @@ "reference": "", "comment": "" }, + { + "term": "Choose Wallpaper Color", + "translation": "", + "context": "wallpaper color picker title", + "reference": "", + "comment": "" + }, { "term": "Choose where notification popups appear on screen", "translation": "", @@ -2225,6 +2407,13 @@ "reference": "", "comment": "" }, + { + "term": "Clear all history when server starts", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Clear All Jobs", "translation": "", @@ -2232,6 +2421,13 @@ "reference": "", "comment": "" }, + { + "term": "Clear at Startup", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Clear History?", "translation": "", @@ -2246,20 +2442,6 @@ "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": "", @@ -2288,6 +2470,13 @@ "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": "", @@ -2296,14 +2485,14 @@ "comment": "" }, { - "term": "Click Through", + "term": "Click Refresh to check status.", "translation": "", - "context": "", + "context": "greeter status placeholder", "reference": "", "comment": "" }, { - "term": "Click any shortcut to edit. Changes save to %1", + "term": "Click Through", "translation": "", "context": "", "reference": "", @@ -2428,6 +2617,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 Gamut", "translation": "", @@ -2470,20 +2673,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 temperature for day time", "translation": "", @@ -2568,6 +2757,13 @@ "reference": "", "comment": "" }, + { + "term": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Command", "translation": "", @@ -2624,13 +2820,6 @@ "reference": "", "comment": "" }, - { - "term": "Compositor Settings", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Compositor not supported", "translation": "", @@ -2639,7 +2828,7 @@ "comment": "" }, { - "term": "Config Format", + "term": "Compositor Settings", "translation": "", "context": "", "reference": "", @@ -2652,6 +2841,13 @@ "reference": "", "comment": "" }, + { + "term": "Config Format", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Config validation failed", "translation": "", @@ -2687,13 +2883,6 @@ "reference": "", "comment": "" }, - { - "term": "Configure Keybinds", - "translation": "", - "context": "greeter configure keybinds link", - "reference": "", - "comment": "" - }, { "term": "Configure a new printer", "translation": "", @@ -2708,6 +2897,13 @@ "reference": "", "comment": "" }, + { + "term": "Configure Keybinds", + "translation": "", + "context": "greeter configure keybinds link", + "reference": "", + "comment": "" + }, { "term": "Configure match criteria and actions", "translation": "", @@ -2827,6 +3023,13 @@ "reference": "", "comment": "" }, + { + "term": "Connection failed", + "translation": "", + "context": "Status message when test connection to printer fails", + "reference": "", + "comment": "" + }, { "term": "Contains", "translation": "", @@ -2855,6 +3058,13 @@ "reference": "", "comment": "" }, + { + "term": "Control animation duration for notification popups and history", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Control Center", "translation": "", @@ -2869,13 +3079,6 @@ "reference": "", "comment": "" }, - { - "term": "Control animation duration for notification popups and history", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Control currently playing media", "translation": "", @@ -2911,6 +3114,34 @@ "reference": "", "comment": "" }, + { + "term": "Controls shadow cast direction for elevation layers", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Controls the base blur radius and offset of shadows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Controls the transparency of the shadow", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Convenience options for the login screen. Sync to apply.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Cooldown", "translation": "", @@ -2933,14 +3164,14 @@ "comment": "" }, { - "term": "Copied WebP", + "term": "Copied to clipboard", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Copied to clipboard", + "term": "Copied WebP", "translation": "", "context": "", "reference": "", @@ -2988,6 +3219,13 @@ "reference": "", "comment": "" }, + { + "term": "Copy path", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Copy PID", "translation": "", @@ -3002,13 +3240,6 @@ "reference": "", "comment": "" }, - { - "term": "Copy path", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Corner Radius", "translation": "", @@ -3044,6 +3275,55 @@ "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": "", @@ -3051,6 +3331,13 @@ "reference": "", "comment": "" }, + { + "term": "Create a new %1 session (n)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Create Dir", "translation": "", @@ -3065,13 +3352,6 @@ "reference": "", "comment": "" }, - { - "term": "Create Window Rule", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Create rule for:", "translation": "", @@ -3079,6 +3359,13 @@ "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": "", @@ -3086,6 +3373,13 @@ "reference": "", "comment": "" }, + { + "term": "Create Window Rule", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Creating...", "translation": "", @@ -3100,6 +3394,34 @@ "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": "", @@ -3114,6 +3436,13 @@ "reference": "", "comment": "" }, + { + "term": "Current Locale", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Current Monitor", "translation": "", @@ -3150,21 +3479,14 @@ "comment": "" }, { - "term": "Current Weather", + "term": "Current time and date display", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Current Workspace", - "translation": "", - "context": "Running apps filter: only show apps from the active workspace", - "reference": "", - "comment": "" - }, - { - "term": "Current time and date display", + "term": "Current Weather", "translation": "", "context": "", "reference": "", @@ -3177,6 +3499,13 @@ "reference": "", "comment": "" }, + { + "term": "Current Workspace", + "translation": "", + "context": "Running apps filter: only show apps from the active workspace", + "reference": "", + "comment": "" + }, { "term": "Current: %1", "translation": "", @@ -3215,7 +3544,7 @@ { "term": "Custom", "translation": "", - "context": "theme category option", + "context": "shadow color option | theme category option", "reference": "", "comment": "" }, @@ -3282,6 +3611,13 @@ "reference": "", "comment": "" }, + { + "term": "Custom power profile", + "translation": "", + "context": "power profile description", + "reference": "", + "comment": "" + }, { "term": "Custom Reboot Command", "translation": "", @@ -3289,6 +3625,20 @@ "reference": "", "comment": "" }, + { + "term": "Custom Shadow Color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Custom Shadow Override", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Custom Suspend Command", "translation": "", @@ -3296,20 +3646,6 @@ "reference": "", "comment": "" }, - { - "term": "Custom Transparency", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Custom power profile", - "translation": "", - "context": "power profile description", - "reference": "", - "comment": "" - }, { "term": "Custom theme loaded from JSON file", "translation": "", @@ -3317,6 +3653,13 @@ "reference": "", "comment": "" }, + { + "term": "Custom Transparency", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Custom...", "translation": "", @@ -3345,69 +3688,6 @@ "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 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": "", @@ -3464,6 +3744,20 @@ "reference": "", "comment": "" }, + { + "term": "Dark mode base", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Dark mode harmony", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Darken Modal Background", "translation": "", @@ -3478,6 +3772,20 @@ "reference": "", "comment": "" }, + { + "term": "Date format", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Date format on greeter", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Dawn (Astronomical Twilight)", "translation": "", @@ -3520,6 +3828,13 @@ "reference": "", "comment": "" }, + { + "term": "days", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Daytime", "translation": "", @@ -3527,6 +3842,13 @@ "reference": "", "comment": "" }, + { + "term": "DDC/CI monitor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Deck", "translation": "", @@ -3542,14 +3864,21 @@ "comment": "" }, { - "term": "Default Width (%)", + "term": "Default (Black)", + "translation": "", + "context": "shadow color option", + "reference": "", + "comment": "" + }, + { + "term": "Default selected action", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Default selected action", + "term": "Default Width (%)", "translation": "", "context": "", "reference": "", @@ -3597,6 +3926,13 @@ "reference": "", "comment": "" }, + { + "term": "Delete class \"%1\"?", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Delete Printer", "translation": "", @@ -3604,6 +3940,13 @@ "reference": "", "comment": "" }, + { + "term": "Delete profile \"%1\"?", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Delete Saved Item?", "translation": "", @@ -3619,14 +3962,14 @@ "comment": "" }, { - "term": "Delete class \"%1\"?", + "term": "DEMO MODE - Click anywhere to exit", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Delete profile \"%1\"?", + "term": "Dependencies & documentation", "translation": "", "context": "", "reference": "", @@ -3653,6 +3996,13 @@ "reference": "", "comment": "" }, + { + "term": "Desktop background images", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Desktop Clock", "translation": "", @@ -3682,7 +4032,7 @@ "comment": "" }, { - "term": "Desktop background images", + "term": "detached", "translation": "", "context": "", "reference": "", @@ -3709,6 +4059,13 @@ "reference": "", "comment": "" }, + { + "term": "device", + "translation": "", + "context": "Generic device name | Generic device name fallback", + "reference": "", + "comment": "" + }, { "term": "Device connections", "translation": "", @@ -3737,6 +4094,20 @@ "reference": "", "comment": "" }, + { + "term": "devices connected", + "translation": "", + "context": "KDE Connect status multiple devices", + "reference": "", + "comment": "" + }, + { + "term": "dgop not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Digital", "translation": "", @@ -3744,6 +4115,13 @@ "reference": "", "comment": "" }, + { + "term": "Direction Source", + "translation": "", + "context": "bar shadow direction source", + "reference": "", + "comment": "" + }, { "term": "Disable Autoconnect", "translation": "", @@ -3828,6 +4206,13 @@ "reference": "", "comment": "" }, + { + "term": "Discover Devices", + "translation": "", + "context": "Toggle button to scan for printers via mDNS/Avahi", + "reference": "", + "comment": "" + }, { "term": "Disk", "translation": "", @@ -3849,6 +4234,13 @@ "reference": "", "comment": "" }, + { + "term": "Disk Usage Display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Disks", "translation": "", @@ -3870,41 +4262,6 @@ "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": "", @@ -3933,6 +4290,13 @@ "reference": "", "comment": "" }, + { + "term": "Display Assignment", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display brightness control", "translation": "", @@ -3947,6 +4311,13 @@ "reference": "", "comment": "" }, + { + "term": "Display Control", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, { "term": "Display currently focused application title", "translation": "", @@ -3961,6 +4332,13 @@ "reference": "", "comment": "" }, + { + "term": "Display Name Format", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display only workspaces that contain windows", "translation": "", @@ -3975,6 +4353,13 @@ "reference": "", "comment": "" }, + { + "term": "Display Profiles", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display seconds in the clock", "translation": "", @@ -3982,6 +4367,13 @@ "reference": "", "comment": "" }, + { + "term": "Display Settings", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display the power system menu", "translation": "", @@ -4031,6 +4423,69 @@ "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": "", @@ -4192,6 +4647,13 @@ "reference": "", "comment": "" }, + { + "term": "DWL service not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Dynamic", "translation": "", @@ -4199,6 +4661,20 @@ "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": "", @@ -4214,16 +4690,30 @@ "comment": "" }, { - "term": "Dynamic colors from wallpaper", + "term": "e.g., firefox, kitty --title foo", "translation": "", - "context": "dynamic colors description", + "context": "", "reference": "", "comment": "" }, { - "term": "Dynamic colors, presets", + "term": "e.g., focus-workspace 3, resize-column -10", "translation": "", - "context": "greeter theme description", + "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": "" }, @@ -4269,6 +4759,13 @@ "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": "", @@ -4283,6 +4780,13 @@ "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": "", @@ -4290,6 +4794,27 @@ "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": "", @@ -4297,6 +4822,13 @@ "reference": "", "comment": "" }, + { + "term": "Enable loginctl lock integration", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enable Overview Overlay", "translation": "", @@ -4311,6 +4843,20 @@ "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": "", @@ -4318,6 +4864,13 @@ "reference": "", "comment": "" }, + { + "term": "Enable Video Screensaver", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enable Weather", "translation": "", @@ -4332,27 +4885,6 @@ "reference": "", "comment": "" }, - { - "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enable fingerprint authentication", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enable loginctl lock integration", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Enabled", "translation": "", @@ -4360,6 +4892,76 @@ "reference": "", "comment": "" }, + { + "term": "Enabled, but fingerprint availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no fingerprint reader was detected.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key and run Sync.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but security-key availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled. PAM already provides fingerprint auth.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled. PAM already provides security-key auth.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enabling WiFi...", "translation": "", @@ -4396,26 +4998,12 @@ "comment": "" }, { - "term": "Enter PIN", + "term": "Enter a new name for session \"%1\"", "translation": "", "context": "", "reference": "", "comment": "" }, - { - "term": "Enter PIN for ", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Enter URL or text to share", - "translation": "", - "context": "KDE Connect share input placeholder", - "reference": "", - "comment": "" - }, { "term": "Enter a new name for this workspace", "translation": "", @@ -4423,6 +5011,13 @@ "reference": "", "comment": "" }, + { + "term": "Enter command or script path", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enter credentials for ", "translation": "", @@ -4486,6 +5081,20 @@ "reference": "", "comment": "" }, + { + "term": "Enter PIN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enter PIN for ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enter this passkey on ", "translation": "", @@ -4500,6 +5109,13 @@ "reference": "", "comment": "" }, + { + "term": "Enter URL or text to share", + "translation": "", + "context": "KDE Connect share input placeholder", + "reference": "", + "comment": "" + }, { "term": "Enterprise", "translation": "", @@ -4549,6 +5165,13 @@ "reference": "", "comment": "" }, + { + "term": "events", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Exact", "translation": "", @@ -4591,6 +5214,13 @@ "reference": "", "comment": "" }, + { + "term": "ext", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Extend battery life", "translation": "", @@ -4711,14 +5341,14 @@ "comment": "" }, { - "term": "Failed to connect VPN", + "term": "Failed to connect to %1", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Failed to connect to %1", + "term": "Failed to connect VPN", "translation": "", "context": "", "reference": "", @@ -4745,13 +5375,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to delete VPN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to delete class", "translation": "", @@ -4766,6 +5389,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to delete VPN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to disable job acceptance", "translation": "", @@ -4808,13 +5438,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to enable WiFi", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to enable job acceptance", "translation": "", @@ -4829,6 +5452,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to enable WiFi", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to hold job", "translation": "", @@ -4851,14 +5481,14 @@ "comment": "" }, { - "term": "Failed to load VPN config", + "term": "Failed to load clipboard configuration.", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Failed to load clipboard configuration.", + "term": "Failed to load VPN config", "translation": "", "context": "", "reference": "", @@ -4969,6 +5599,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", + "translation": "", + "context": "greeter status error", + "reference": "", + "comment": "" + }, { "term": "Failed to save audio config", "translation": "", @@ -5081,13 +5718,6 @@ "reference": "", "comment": "" }, - { - "term": "Failed to update VPN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Failed to update autoconnect", "translation": "", @@ -5116,6 +5746,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to update VPN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to write temp file for validation", "translation": "", @@ -5123,6 +5760,13 @@ "reference": "", "comment": "" }, + { + "term": "featured", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Features", "translation": "", @@ -5200,6 +5844,13 @@ "reference": "", "comment": "" }, + { + "term": "File search requires dsearch\nInstall from github.com/morelazers/dsearch", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Files", "translation": "", @@ -5221,6 +5872,13 @@ "reference": "", "comment": "" }, + { + "term": "Find in note...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Find in Text", "translation": "", @@ -5229,7 +5887,21 @@ "comment": "" }, { - "term": "Find in note...", + "term": "Fingerprint availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", "translation": "", "context": "", "reference": "", @@ -5242,6 +5914,13 @@ "reference": "", "comment": "" }, + { + "term": "First Day of Week", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "First Time Setup", "translation": "", @@ -5340,6 +6019,20 @@ "reference": "", "comment": "" }, + { + "term": "Focused Monitor Only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Focused monitor only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Focused Window", "translation": "", @@ -5368,6 +6061,13 @@ "reference": "", "comment": "" }, + { + "term": "Follow focus", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Follow Monitor Focus", "translation": "", @@ -5376,7 +6076,7 @@ "comment": "" }, { - "term": "Follow focus", + "term": "Font", "translation": "", "context": "", "reference": "", @@ -5403,6 +6103,13 @@ "reference": "", "comment": "" }, + { + "term": "Font used on the login screen", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Font Weight", "translation": "", @@ -5425,14 +6132,14 @@ "comment": "" }, { - "term": "Force Wide Color", + "term": "Force terminal applications to always use dark color schemes", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Force terminal applications to always use dark color schemes", + "term": "Force Wide Color", "translation": "", "context": "", "reference": "", @@ -5599,34 +6306,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": "GTK, Qt, IDEs, more", - "translation": "", - "context": "greeter feature card description", - "reference": "", - "comment": "" - }, { "term": "Games", "translation": "", @@ -5704,6 +6383,27 @@ "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": "", @@ -5732,6 +6432,62 @@ "reference": "", "comment": "" }, + { + "term": "Greeter", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter activated. greetd is now enabled.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter Appearance", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter Behavior", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter font", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter only — does not affect main clock", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter only — format for the date on the login screen", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Greeter Status", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Grid", "translation": "", @@ -5767,13 +6523,6 @@ "reference": "", "comment": "" }, - { - "term": "Group Workspace Apps", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Group by App", "translation": "", @@ -5802,6 +6551,13 @@ "reference": "", "comment": "" }, + { + "term": "Group Workspace Apps", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Groups", "translation": "", @@ -5810,14 +6566,14 @@ "comment": "" }, { - "term": "HDR (EDID)", + "term": "GTK, Qt, IDEs, more", "translation": "", - "context": "", + "context": "greeter feature card description", "reference": "", "comment": "" }, { - "term": "HDR Tone Mapping", + "term": "HDR (EDID)", "translation": "", "context": "", "reference": "", @@ -5831,14 +6587,7 @@ "comment": "" }, { - "term": "HSV", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "HTML copied to clipboard", + "term": "HDR Tone Mapping", "translation": "", "context": "", "reference": "", @@ -5929,14 +6678,14 @@ "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": "", "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": "", @@ -5963,41 +6712,6 @@ "reference": "", "comment": "" }, - { - "term": "Hide Delay", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide Indicators", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide Updater Widget", - "translation": "", - "context": "When updater widget is used, then hide it if no update found", - "reference": "", - "comment": "" - }, - { - "term": "Hide When Typing", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hide When Windows Open", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Hide cursor after inactivity (0 = disabled)", "translation": "", @@ -6019,6 +6733,13 @@ "reference": "", "comment": "" }, + { + "term": "Hide Delay", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hide device", "translation": "", @@ -6026,6 +6747,13 @@ "reference": "", "comment": "" }, + { + "term": "Hide Indicators", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hide notification content until expanded", "translation": "", @@ -6047,6 +6775,27 @@ "reference": "", "comment": "" }, + { + "term": "Hide Updater Widget", + "translation": "", + "context": "When updater widget is used, then hide it if no update found", + "reference": "", + "comment": "" + }, + { + "term": "Hide When Typing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide When Windows Open", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "High-fidelity palette that preserves source hues.", "translation": "", @@ -6054,6 +6803,20 @@ "reference": "", "comment": "" }, + { + "term": "Highlight Active Workspace App", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Highlight the currently focused app inside workspace indicators", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "History", "translation": "", @@ -6061,6 +6824,13 @@ "reference": "", "comment": "" }, + { + "term": "History cleared. %1 pinned entries kept.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "History Retention", "translation": "", @@ -6075,13 +6845,6 @@ "reference": "", "comment": "" }, - { - "term": "History cleared. %1 pinned entries kept.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Hold Duration", "translation": "", @@ -6096,13 +6859,6 @@ "reference": "", "comment": "" }, - { - "term": "Hold to Confirm Power Actions", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Hold to confirm (%1 ms)", "translation": "", @@ -6117,6 +6873,13 @@ "reference": "", "comment": "" }, + { + "term": "Hold to Confirm Power Actions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Home", "translation": "", @@ -6124,6 +6887,13 @@ "reference": "", "comment": "" }, + { + "term": "Host", + "translation": "", + "context": "Label for printer IP address or hostname input field", + "reference": "", + "comment": "" + }, { "term": "Hostname", "translation": "", @@ -6173,6 +6943,27 @@ "reference": "", "comment": "" }, + { + "term": "How the background image is scaled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "HSV", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "HTML copied to clipboard", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Humidity", "translation": "", @@ -6201,27 +6992,6 @@ "reference": "", "comment": "" }, - { - "term": "IP", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "IP Address:", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "ISO Date", - "translation": "", - "context": "date format option", - "reference": "", - "comment": "" - }, { "term": "Icon", "translation": "", @@ -6272,14 +7042,14 @@ "comment": "" }, { - "term": "Idle Settings", + "term": "Idle monitoring not supported - requires newer Quickshell version", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Idle monitoring not supported - requires newer Quickshell version", + "term": "Idle Settings", "translation": "", "context": "", "reference": "", @@ -6335,14 +7105,14 @@ "comment": "" }, { - "term": "Include Transitions", + "term": "Include desktop actions (shortcuts) in search results.", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Include desktop actions (shortcuts) in search results.", + "term": "Include Transitions", "translation": "", "context": "", "reference": "", @@ -6370,14 +7140,14 @@ "comment": "" }, { - "term": "Individual Batteries", + "term": "Individual bar configuration", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Individual bar configuration", + "term": "Individual Batteries", "translation": "", "context": "", "reference": "", @@ -6397,6 +7167,13 @@ "reference": "", "comment": "" }, + { + "term": "Inherit Global (Default)", + "translation": "", + "context": "bar shadow direction source option", + "reference": "", + "comment": "" + }, { "term": "Inhibitable", "translation": "", @@ -6425,20 +7202,6 @@ "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": "", @@ -6446,6 +7209,13 @@ "reference": "", "comment": "" }, + { + "term": "Install complete. Greeter has been installed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Install failed: %1", "translation": "", @@ -6453,6 +7223,13 @@ "reference": "", "comment": "" }, + { + "term": "Install Greeter", + "translation": "", + "context": "greeter action confirmation", + "reference": "", + "comment": "" + }, { "term": "Install matugen package for dynamic theming", "translation": "", @@ -6460,6 +7237,13 @@ "reference": "", "comment": "" }, + { + "term": "Install Plugin", + "translation": "", + "context": "plugin installation dialog title", + "reference": "", + "comment": "" + }, { "term": "Install plugin '%1' from the DMS registry?", "translation": "", @@ -6474,6 +7258,20 @@ "reference": "", "comment": "" }, + { + "term": "Install the DMS greeter? A terminal will open for sudo authentication.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Install Theme", + "translation": "", + "context": "theme installation dialog title", + "reference": "", + "comment": "" + }, { "term": "Install theme '%1' from the DMS registry?", "translation": "", @@ -6481,6 +7279,13 @@ "reference": "", "comment": "" }, + { + "term": "Installation and PAM setup: see the ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Installed", "translation": "", @@ -6558,6 +7363,27 @@ "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": "", @@ -6565,6 +7391,13 @@ "reference": "", "comment": "" }, + { + "term": "ISO Date", + "translation": "", + "context": "date format option", + "reference": "", + "comment": "" + }, { "term": "Isolate Displays", "translation": "", @@ -6670,6 +7503,13 @@ "reference": "", "comment": "" }, + { + "term": "Kill", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Kill Process", "translation": "", @@ -6678,14 +7518,14 @@ "comment": "" }, { - "term": "Ko-fi", + "term": "Kill Session", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "LED device", + "term": "Ko-fi", "translation": "", "context": "", "reference": "", @@ -6719,6 +7559,13 @@ "reference": "", "comment": "" }, + { + "term": "Last launched %1 day ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Last launched %1 day%2 ago", "translation": "", @@ -6726,6 +7573,20 @@ "reference": "", "comment": "" }, + { + "term": "Last launched %1 days ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Last launched %1 hour ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Last launched %1 hour%2 ago", "translation": "", @@ -6733,6 +7594,20 @@ "reference": "", "comment": "" }, + { + "term": "Last launched %1 hours ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Last launched %1 minute ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Last launched %1 minute%2 ago", "translation": "", @@ -6740,6 +7615,13 @@ "reference": "", "comment": "" }, + { + "term": "Last launched %1 minutes ago", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Last launched just now", "translation": "", @@ -6762,14 +7644,14 @@ "comment": "" }, { - "term": "Launch Prefix", + "term": "Launch on dGPU", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Launch on dGPU", + "term": "Launch Prefix", "translation": "", "context": "", "reference": "", @@ -6803,6 +7685,13 @@ "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": "", @@ -6810,6 +7699,20 @@ "reference": "", "comment": "" }, + { + "term": "leave empty for default", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "LED device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Left", "translation": "", @@ -6831,6 +7734,13 @@ "reference": "", "comment": "" }, + { + "term": "Light Direction", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Light Mode", "translation": "", @@ -6838,6 +7748,20 @@ "reference": "", "comment": "" }, + { + "term": "Light mode base", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Light mode harmony", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Light Rain", "translation": "", @@ -6936,6 +7860,20 @@ "reference": "", "comment": "" }, + { + "term": "Locale", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Locale Settings", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Location", "translation": "", @@ -6957,41 +7895,6 @@ "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": "", @@ -7013,6 +7916,41 @@ "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": "", @@ -7027,6 +7965,20 @@ "reference": "", "comment": "" }, + { + "term": "Login Authentication", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "loginctl not available - lock integration requires DMS socket connection", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Long", "translation": "", @@ -7035,14 +7987,14 @@ "comment": "" }, { - "term": "Long Text", + "term": "Long press", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Long press", + "term": "Long Text", "translation": "", "context": "", "reference": "", @@ -7069,13 +8021,6 @@ "reference": "", "comment": "" }, - { - "term": "MTU", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Make sure KDE Connect or Valent is running on your other devices", "translation": "", @@ -7111,6 +8056,13 @@ "reference": "", "comment": "" }, + { + "term": "Manual", + "translation": "", + "context": "bar shadow direction source option", + "reference": "", + "comment": "" + }, { "term": "Manual Coordinates", "translation": "", @@ -7118,6 +8070,13 @@ "reference": "", "comment": "" }, + { + "term": "Manual Direction", + "translation": "", + "context": "bar manual shadow direction", + "reference": "", + "comment": "" + }, { "term": "Manual Gap Size", "translation": "", @@ -7195,13 +8154,6 @@ "reference": "", "comment": "" }, - { - "term": "Material Design inspired color themes", - "translation": "", - "context": "generic theme description", - "reference": "", - "comment": "" - }, { "term": "Material colors generated from wallpaper", "translation": "", @@ -7209,6 +8161,20 @@ "reference": "", "comment": "" }, + { + "term": "Material Design inspired color themes", + "translation": "", + "context": "generic theme description", + "reference": "", + "comment": "" + }, + { + "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Matugen Missing", "translation": "", @@ -7216,6 +8182,13 @@ "reference": "", "comment": "" }, + { + "term": "matugen not found - install matugen package for dynamic theming", + "translation": "", + "context": "matugen error", + "reference": "", + "comment": "" + }, { "term": "Matugen Palette", "translation": "", @@ -7237,6 +8210,13 @@ "reference": "", "comment": "" }, + { + "term": "Max apps to show", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Max Edges", "translation": "", @@ -7279,6 +8259,13 @@ "reference": "", "comment": "" }, + { + "term": "Max to Edges", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Max Volume", "translation": "", @@ -7293,20 +8280,6 @@ "reference": "", "comment": "" }, - { - "term": "Max apps to show", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Max to Edges", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Maximize", "translation": "", @@ -7349,13 +8322,6 @@ "reference": "", "comment": "" }, - { - "term": "Maximum Pinned Entries", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Maximum number of clipboard entries to keep", "translation": "", @@ -7377,6 +8343,13 @@ "reference": "", "comment": "" }, + { + "term": "Maximum Pinned Entries", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Maximum pinned entries reached", "translation": "", @@ -7532,14 +8505,14 @@ "comment": "" }, { - "term": "Microphone Volume", + "term": "Microphone settings", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Microphone settings", + "term": "Microphone Volume", "translation": "", "context": "", "reference": "", @@ -7587,6 +8560,13 @@ "reference": "", "comment": "" }, + { + "term": "minutes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Mirror Display", "translation": "", @@ -7608,6 +8588,13 @@ "reference": "", "comment": "" }, + { + "term": "Modal Shadows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Modals", "translation": "", @@ -7755,6 +8742,20 @@ "reference": "", "comment": "" }, + { + "term": "ms", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "MTU", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Multi-Monitor", "translation": "", @@ -7762,6 +8763,27 @@ "reference": "", "comment": "" }, + { + "term": "Multiplexer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Multiplexer Type", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Multiplexers", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Music", "translation": "", @@ -7804,13 +8826,6 @@ "reference": "", "comment": "" }, - { - "term": "NM not supported", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Name", "translation": "", @@ -7825,6 +8840,20 @@ "reference": "", "comment": "" }, + { + "term": "nav", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Navigate", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Navigation", "translation": "", @@ -7839,6 +8868,13 @@ "reference": "", "comment": "" }, + { + "term": "Network download and upload speed display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Network Graph", "translation": "", @@ -7881,13 +8917,6 @@ "reference": "", "comment": "" }, - { - "term": "Network download and upload speed display", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Neutral", "translation": "", @@ -7902,6 +8931,13 @@ "reference": "", "comment": "" }, + { + "term": "Never used", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "New", "translation": "", @@ -7909,6 +8945,13 @@ "reference": "", "comment": "" }, + { + "term": "New group name...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "New Key", "translation": "", @@ -7930,6 +8973,13 @@ "reference": "", "comment": "" }, + { + "term": "New Session", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "New Window Rule", "translation": "", @@ -7944,13 +8994,6 @@ "reference": "", "comment": "" }, - { - "term": "New group name...", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Next", "translation": "", @@ -7979,6 +9022,13 @@ "reference": "", "comment": "" }, + { + "term": "Night mode & gamma", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Night Temperature", "translation": "", @@ -7987,9 +9037,9 @@ "comment": "" }, { - "term": "Night mode & gamma", + "term": "Niri compositor actions (focus, move, etc.)", "translation": "", - "context": "greeter feature card description", + "context": "", "reference": "", "comment": "" }, @@ -8008,7 +9058,14 @@ "comment": "" }, { - "term": "Niri compositor actions (focus, move, etc.)", + "term": "niri shortcuts config", + "translation": "", + "context": "greeter keybinds niri description", + "reference": "", + "comment": "" + }, + { + "term": "NM not supported", "translation": "", "context": "", "reference": "", @@ -8021,146 +9078,6 @@ "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 Data", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "No Weather Data Available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "No action", "translation": "", @@ -8168,6 +9085,20 @@ "reference": "", "comment": "" }, + { + "term": "No active %1 sessions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Active Players", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No adapter", "translation": "", @@ -8182,6 +9113,13 @@ "reference": "", "comment": "" }, + { + "term": "No Anim", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No app customizations.", "translation": "", @@ -8210,6 +9148,20 @@ "reference": "", "comment": "" }, + { + "term": "No Background", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Battery", + "translation": "", + "context": "battery status", + "reference": "", + "comment": "" + }, { "term": "No battery", "translation": "", @@ -8217,6 +9169,27 @@ "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": "", @@ -8266,6 +9239,13 @@ "reference": "", "comment": "" }, + { + "term": "No Dim", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No disk data", "translation": "", @@ -8280,6 +9260,13 @@ "reference": "", "comment": "" }, + { + "term": "No DMS shortcuts configured", + "translation": "", + "context": "greeter no keybinds message", + "reference": "", + "comment": "" + }, { "term": "No drivers found", "translation": "", @@ -8308,6 +9295,20 @@ "reference": "", "comment": "" }, + { + "term": "No fingerprint reader detected.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Focus", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No folders found", "translation": "", @@ -8315,6 +9316,20 @@ "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": "", @@ -8322,6 +9337,13 @@ "reference": "", "comment": "" }, + { + "term": "No History", + "translation": "", + "context": "notification rule action option", + "reference": "", + "comment": "" + }, { "term": "No info items", "translation": "", @@ -8385,6 +9407,13 @@ "reference": "", "comment": "" }, + { + "term": "No Media", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No monitors", "translation": "", @@ -8476,6 +9505,20 @@ "reference": "", "comment": "" }, + { + "term": "No Round", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Rounding", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No saved clipboard entries", "translation": "", @@ -8483,6 +9526,27 @@ "reference": "", "comment": "" }, + { + "term": "No sessions found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No Shadow", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No status output.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No themes found", "translation": "", @@ -8504,6 +9568,20 @@ "reference": "", "comment": "" }, + { + "term": "No video found in folder", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No VPN profiles", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No wallpaper selected", "translation": "", @@ -8525,6 +9603,20 @@ "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": "", @@ -8588,6 +9680,34 @@ "reference": "", "comment": "" }, + { + "term": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Not available — install fprintd and pam_fprintd.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f, or configure greetd PAM.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Not connected", "translation": "", @@ -8721,6 +9841,13 @@ "reference": "", "comment": "" }, + { + "term": "now", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Numbers", "translation": "", @@ -8742,27 +9869,6 @@ "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": "", @@ -8784,6 +9890,13 @@ "reference": "", "comment": "" }, + { + "term": "official", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Offline", "translation": "", @@ -8798,6 +9911,13 @@ "reference": "", "comment": "" }, + { + "term": "OK", + "translation": "", + "context": "greeter doctor page status card", + "reference": "", + "comment": "" + }, { "term": "Older", "translation": "", @@ -8812,6 +9932,48 @@ "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": "", @@ -8840,6 +10002,13 @@ "reference": "", "comment": "" }, + { + "term": "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Only show windows from the current monitor on each dock", "translation": "", @@ -8876,21 +10045,7 @@ "comment": "" }, { - "term": "Open App", - "translation": "", - "context": "KDE Connect open SMS app button", - "reference": "", - "comment": "" - }, - { - "term": "Open KDE Connect on your phone", - "translation": "", - "context": "KDE Connect open app hint", - "reference": "", - "comment": "" - }, - { - "term": "Open Notepad File", + "term": "open", "translation": "", "context": "", "reference": "", @@ -8903,6 +10058,13 @@ "reference": "", "comment": "" }, + { + "term": "Open App", + "translation": "", + "context": "KDE Connect open SMS app button", + "reference": "", + "comment": "" + }, { "term": "Open folder", "translation": "", @@ -8924,6 +10086,20 @@ "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": "", @@ -8938,6 +10114,20 @@ "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": "", @@ -8953,16 +10143,9 @@ "comment": "" }, { - "term": "Opening file browser", + "term": "Opening terminal: ", "translation": "", - "context": "Phone Connect browse action", - "reference": "", - "comment": "" - }, - { - "term": "Opening files", - "translation": "", - "context": "KDE Connect browse action", + "context": "", "reference": "", "comment": "" }, @@ -8987,6 +10170,13 @@ "reference": "", "comment": "" }, + { + "term": "or run ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Organize widgets into collapsible groups", "translation": "", @@ -9001,6 +10191,20 @@ "reference": "", "comment": "" }, + { + "term": "OS Logo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "OSD Position", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Other", "translation": "", @@ -9113,6 +10317,20 @@ "reference": "", "comment": "" }, + { + "term": "Override terminal with a custom command or script", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Override the global shadow with per-bar settings", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Overrides", "translation": "", @@ -9141,13 +10359,6 @@ "reference": "", "comment": "" }, - { - "term": "PIN", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Pad", "translation": "", @@ -9162,6 +10373,13 @@ "reference": "", "comment": "" }, + { + "term": "Pad hours (02:00 vs 2:00)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Padding", "translation": "", @@ -9232,6 +10450,41 @@ "reference": "", "comment": "" }, + { + "term": "PAM already provides fingerprint auth. Enable this to show it at login.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM already provides security-key auth. Enable this to show it at login.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no prints are enrolled yet.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no reader was detected.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Partly Cloudy", "translation": "", @@ -9260,6 +10513,13 @@ "reference": "", "comment": "" }, + { + "term": "Path to a video file or folder containing videos", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Pattern", "translation": "", @@ -9372,6 +10632,13 @@ "reference": "", "comment": "" }, + { + "term": "Pick a different random video each time from the same folder", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Pictures", "translation": "", @@ -9379,6 +10646,13 @@ "reference": "", "comment": "" }, + { + "term": "PIN", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Pin", "translation": "", @@ -9449,6 +10723,13 @@ "reference": "", "comment": "" }, + { + "term": "Play a video when the screen locks.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Play sound when new notification arrives", "translation": "", @@ -9484,6 +10765,13 @@ "reference": "", "comment": "" }, + { + "term": "Playback error: ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Please wait...", "translation": "", @@ -9491,6 +10779,13 @@ "reference": "", "comment": "" }, + { + "term": "Please write a name for your new %1 session", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Plugged In", "translation": "", @@ -9519,6 +10814,13 @@ "reference": "", "comment": "" }, + { + "term": "Plugin is disabled - enable in Plugins settings to use", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Plugin Management", "translation": "", @@ -9533,13 +10835,6 @@ "reference": "", "comment": "" }, - { - "term": "Plugin is disabled - enable in Plugins settings to use", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Plugins", "translation": "", @@ -9554,6 +10849,13 @@ "reference": "", "comment": "" }, + { + "term": "Popout Shadows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Popouts", "translation": "", @@ -9568,6 +10870,13 @@ "reference": "", "comment": "" }, + { + "term": "Popup behavior, position", + "translation": "", + "context": "greeter notifications description", + "reference": "", + "comment": "" + }, { "term": "Popup Only", "translation": "", @@ -9597,9 +10906,9 @@ "comment": "" }, { - "term": "Popup behavior, position", + "term": "Port", "translation": "", - "context": "greeter notifications description", + "context": "Label for printer port number input field", "reference": "", "comment": "" }, @@ -9673,6 +10982,13 @@ "reference": "", "comment": "" }, + { + "term": "Power off monitors on lock", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Power Options", "translation": "", @@ -9694,20 +11010,6 @@ "reference": "", "comment": "" }, - { - "term": "Power Saver", - "translation": "", - "context": "power profile option", - "reference": "", - "comment": "" - }, - { - "term": "Power off monitors on lock", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Power profile management available", "translation": "", @@ -9715,6 +11017,13 @@ "reference": "", "comment": "" }, + { + "term": "Power Saver", + "translation": "", + "context": "power profile option", + "reference": "", + "comment": "" + }, { "term": "Power source", "translation": "", @@ -9722,6 +11031,20 @@ "reference": "", "comment": "" }, + { + "term": "Pre-fill the last successful username on the greeter", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Pre-select the last used session on the greeter", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Precip", "translation": "", @@ -9757,6 +11080,13 @@ "reference": "", "comment": "" }, + { + "term": "Press 'n' or click 'New Session' to create one", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Press Enter and the audio system will restart to apply the change", "translation": "", @@ -9802,7 +11132,7 @@ { "term": "Primary", "translation": "", - "context": "button color option | color option | primary color | tile color option", + "context": "button color option | color option | primary color | shadow color option | tile color option", "reference": "", "comment": "" }, @@ -9862,6 +11192,13 @@ "reference": "", "comment": "" }, + { + "term": "Printer reachable", + "translation": "", + "context": "Status message when test connection to printer succeeds", + "reference": "", + "comment": "" + }, { "term": "Printers", "translation": "", @@ -9940,9 +11277,9 @@ "comment": "" }, { - "term": "Profile Image Error", + "term": "procs", "translation": "", - "context": "", + "context": "short for processes", "reference": "", "comment": "" }, @@ -9967,6 +11304,13 @@ "reference": "", "comment": "" }, + { + "term": "Profile Image Error", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Profile image is too large. Please use a smaller image.", "translation": "", @@ -9998,6 +11342,20 @@ { "term": "Protocol", "translation": "", + "context": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket", + "reference": "", + "comment": "" + }, + { + "term": "QtMultimedia is not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "QtMultimedia is not available - video screensaver requires qt multimedia services", + "translation": "", "context": "", "reference": "", "comment": "" @@ -10044,13 +11402,6 @@ "reference": "", "comment": "" }, - { - "term": "RGB", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Radius", "translation": "", @@ -10185,14 +11536,35 @@ "comment": "" }, { - "term": "Remove", + "term": "Remaining", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Remove Widget Padding", + "term": "Remaining / Total", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Remember last session", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Remember last user", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Remove", "translation": "", "context": "", "reference": "", @@ -10205,6 +11577,13 @@ "reference": "", "comment": "" }, + { + "term": "Remove Widget Padding", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Rename", "translation": "", @@ -10212,6 +11591,13 @@ "reference": "", "comment": "" }, + { + "term": "Rename Session", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Rename Workspace", "translation": "", @@ -10254,6 +11640,13 @@ "reference": "", "comment": "" }, + { + "term": "Required plugin: ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Requires %1", "translation": "", @@ -10282,13 +11675,6 @@ "reference": "", "comment": "" }, - { - "term": "Requires lazy plugin manager", - "translation": "", - "context": "neovim template description", - "reference": "", - "comment": "" - }, { "term": "Requires night mode support", "translation": "", @@ -10366,6 +11752,13 @@ "reference": "", "comment": "" }, + { + "term": "Restore Special Workspace Windows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Resume", "translation": "", @@ -10394,6 +11787,13 @@ "reference": "", "comment": "" }, + { + "term": "RGB", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Right", "translation": "", @@ -10513,6 +11913,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": "Run Again", "translation": "", @@ -10527,6 +11941,20 @@ "reference": "", "comment": "" }, + { + "term": "Run Sync to apply.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Run User Templates", "translation": "", @@ -10534,20 +11962,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": "Running Apps", "translation": "", @@ -10563,26 +11977,12 @@ "comment": "" }, { - "term": "SDR Brightness", + "term": "Running greeter sync…", "translation": "", "context": "", "reference": "", "comment": "" }, - { - "term": "SDR Saturation", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "SMS", - "translation": "", - "context": "KDE Connect SMS tooltip", - "reference": "", - "comment": "" - }, { "term": "Save", "translation": "", @@ -10590,20 +11990,6 @@ "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": "", @@ -10639,6 +12025,13 @@ "reference": "", "comment": "" }, + { + "term": "Save Notepad File", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Save password", "translation": "", @@ -10646,6 +12039,13 @@ "reference": "", "comment": "" }, + { + "term": "Save QR Code", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Saved", "translation": "", @@ -10661,14 +12061,14 @@ "comment": "" }, { - "term": "Saved Note", + "term": "Saved item deleted", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Saved item deleted", + "term": "Saved Note", "translation": "", "context": "", "reference": "", @@ -10688,6 +12088,13 @@ "reference": "", "comment": "" }, + { + "term": "Scale all font sizes throughout the shell", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Scale DankBar font sizes independently", "translation": "", @@ -10702,13 +12109,6 @@ "reference": "", "comment": "" }, - { - "term": "Scale all font sizes throughout the shell", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Scan", "translation": "", @@ -10772,13 +12172,6 @@ "reference": "", "comment": "" }, - { - "term": "Scroll Wheel", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Scroll song title", "translation": "", @@ -10793,6 +12186,13 @@ "reference": "", "comment": "" }, + { + "term": "Scroll Wheel", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Scroll wheel behavior on media widget", "translation": "", @@ -10808,14 +12208,21 @@ "comment": "" }, { - "term": "Search App Actions", + "term": "SDR Brightness", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Search Options", + "term": "SDR Saturation", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Search App Actions", "translation": "", "context": "", "reference": "", @@ -10849,6 +12256,13 @@ "reference": "", "comment": "" }, + { + "term": "Search Options", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Search plugins...", "translation": "", @@ -10863,6 +12277,13 @@ "reference": "", "comment": "" }, + { + "term": "Search sessions...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Search themes...", "translation": "", @@ -10891,6 +12312,13 @@ "reference": "", "comment": "" }, + { + "term": "Second Factor (AND)", + "translation": "", + "context": "U2F mode option: key required after password or fingerprint", + "reference": "", + "comment": "" + }, { "term": "Secondary", "translation": "", @@ -10898,6 +12326,13 @@ "reference": "", "comment": "" }, + { + "term": "seconds", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Secured", "translation": "", @@ -10919,6 +12354,27 @@ "reference": "", "comment": "" }, + { + "term": "Security key mode", + "translation": "", + "context": "lock screen U2F security key mode setting", + "reference": "", + "comment": "" + }, + { + "term": "Security-key availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select", "translation": "", @@ -10926,69 +12382,6 @@ "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 File to Send", - "translation": "", - "context": "KDE Connect file browser title", - "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 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": "", @@ -11024,6 +12417,13 @@ "reference": "", "comment": "" }, + { + "term": "Select Application", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select at least one provider", "translation": "", @@ -11031,6 +12431,20 @@ "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": "", @@ -11045,6 +12459,13 @@ "reference": "", "comment": "" }, + { + "term": "Select Dock Launcher Logo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select driver...", "translation": "", @@ -11052,6 +12473,13 @@ "reference": "", "comment": "" }, + { + "term": "Select File to Send", + "translation": "", + "context": "KDE Connect file browser title", + "reference": "", + "comment": "" + }, { "term": "Select font weight for UI text", "translation": "", @@ -11059,6 +12487,20 @@ "reference": "", "comment": "" }, + { + "term": "Select greeter background image", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select Launcher Logo", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select monitor to configure wallpaper", "translation": "", @@ -11080,6 +12522,13 @@ "reference": "", "comment": "" }, + { + "term": "Select Profile Image", + "translation": "", + "context": "profile image file browser title", + "reference": "", + "comment": "" + }, { "term": "Select system sound theme", "translation": "", @@ -11101,6 +12550,27 @@ "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": "", @@ -11178,6 +12648,13 @@ "reference": "", "comment": "" }, + { + "term": "Session Filter", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Set Custom Device Name", "translation": "", @@ -11262,6 +12739,62 @@ "reference": "", "comment": "" }, + { + "term": "Shadow Color", + "translation": "", + "context": "", + "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": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Shadow Opacity", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Shadow Override", + "translation": "", + "context": "bar shadow settings card", + "reference": "", + "comment": "" + }, + { + "term": "Shadows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Share", "translation": "", @@ -11367,6 +12900,13 @@ "reference": "", "comment": "" }, + { + "term": "Show all 9 tags instead of only occupied tags (DWL only)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show All Tags", "translation": "", @@ -11374,6 +12914,13 @@ "reference": "", "comment": "" }, + { + "term": "Show an outline ring around the focused workspace indicator", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Badge", "translation": "", @@ -11381,6 +12928,13 @@ "reference": "", "comment": "" }, + { + "term": "Show cava audio visualizer in media widget", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show CPU", "translation": "", @@ -11402,6 +12956,13 @@ "reference": "", "comment": "" }, + { + "term": "Show darkened overlay behind modal dialogs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Date", "translation": "", @@ -11409,6 +12970,13 @@ "reference": "", "comment": "" }, + { + "term": "Show device", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Disk", "translation": "", @@ -11423,6 +12991,20 @@ "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": "", @@ -11486,6 +13068,13 @@ "reference": "", "comment": "" }, + { + "term": "Show in GB", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Launcher Button", "translation": "", @@ -11493,6 +13082,13 @@ "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": "", @@ -11549,6 +13145,20 @@ "reference": "", "comment": "" }, + { + "term": "Show Memory in GB", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show mode tabs and keyboard hints at the bottom.", + "translation": "", + "context": "launcher footer description", + "reference": "", + "comment": "" + }, { "term": "Show Network", "translation": "", @@ -11563,6 +13173,20 @@ "reference": "", "comment": "" }, + { + "term": "Show notification popups only on the currently focused monitor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show notifications only on the currently focused monitor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Occupied Workspaces Only", "translation": "", @@ -11570,6 +13194,111 @@ "reference": "", "comment": "" }, + { + "term": "Show on all connected displays", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on Last Display", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on Overlay", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on Overview", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on Overview Only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on screens:", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when brightness changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when caps lock state changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when cycling audio output devices", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when idle inhibitor state changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when media player status changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when media player volume changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when microphone is muted/unmuted", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when power profile changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show on-screen display when volume changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Overflow Badge Count", "translation": "", @@ -11647,6 +13376,13 @@ "reference": "", "comment": "" }, + { + "term": "Show seconds", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Sunrise/Sunset", "translation": "", @@ -11661,6 +13397,13 @@ "reference": "", "comment": "" }, + { + "term": "Show Swap", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show System Date", "translation": "", @@ -11696,6 +13439,13 @@ "reference": "", "comment": "" }, + { + "term": "Show weather information in top bar and control center", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Welcome", "translation": "", @@ -11717,181 +13467,6 @@ "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", - "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 on Last Display", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on Overlay", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on Overview", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on Overview Only", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on all connected displays", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on screens:", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when brightness changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when caps lock state changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when cycling audio output devices", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when idle inhibitor state changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when media player status changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when media player volume changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when microphone is muted/unmuted", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when power profile changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when volume changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show weather information in top bar and control center", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Show workspace index numbers in the top bar workspace switcher", "translation": "", @@ -12032,6 +13607,13 @@ "reference": "", "comment": "" }, + { + "term": "SMS", + "translation": "", + "context": "KDE Connect SMS tooltip", + "reference": "", + "comment": "" + }, { "term": "Snap", "translation": "", @@ -12088,6 +13670,13 @@ "reference": "", "comment": "" }, + { + "term": "source", + "translation": "", + "context": "source code link", + "reference": "", + "comment": "" + }, { "term": "Space between windows", "translation": "", @@ -12280,7 +13869,7 @@ { "term": "Surface Variant", "translation": "", - "context": "button color option | tile color option", + "context": "button color option | shadow color option | tile color option", "reference": "", "comment": "" }, @@ -12312,13 +13901,6 @@ "reference": "", "comment": "" }, - { - "term": "Switch User", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Switch to power profile", "translation": "", @@ -12326,6 +13908,41 @@ "reference": "", "comment": "" }, + { + "term": "Switch User", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Sync", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Sync completed successfully.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Sync dark mode with settings portals for system-wide theme hints", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Sync Mode with Portal", "translation": "", @@ -12333,6 +13950,13 @@ "reference": "", "comment": "" }, + { + "term": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Sync Popouts & Modals", "translation": "", @@ -12347,13 +13971,6 @@ "reference": "", "comment": "" }, - { - "term": "Sync dark mode with settings portals for system-wide theme hints", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "System", "translation": "", @@ -12403,41 +14020,6 @@ "reference": "", "comment": "" }, - { - "term": "System Sounds", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "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": "", @@ -12445,6 +14027,13 @@ "reference": "", "comment": "" }, + { + "term": "System Sounds", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "System sounds are not available. Install %1 for sound support.", "translation": "", @@ -12466,6 +14055,20 @@ "reference": "", "comment": "" }, + { + "term": "System Tray", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "System Update", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "System update custom command", "translation": "", @@ -12473,6 +14076,20 @@ "reference": "", "comment": "" }, + { + "term": "System Updater", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "System Updates", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Tab", "translation": "", @@ -12487,6 +14104,13 @@ "reference": "", "comment": "" }, + { + "term": "Terminal", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Terminal custom additional parameters", "translation": "", @@ -12494,6 +14118,48 @@ "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": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Terminal fallback opened. Complete sync there; it will close automatically when done.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Terminal multiplexer backend to use", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Terminal opened. Complete sync authentication there; it will close automatically when done.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Terminal used to open multiplexer sessions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Terminals - Always use Dark Theme", "translation": "", @@ -12501,6 +14167,13 @@ "reference": "", "comment": "" }, + { + "term": "Test Connection", + "translation": "", + "context": "Button to test connection to a printer by IP address", + "reference": "", + "comment": "" + }, { "term": "Test Page", "translation": "", @@ -12515,10 +14188,24 @@ "reference": "", "comment": "" }, + { + "term": "Testing...", + "translation": "", + "context": "Button state while testing printer connection", + "reference": "", + "comment": "" + }, { "term": "Text", "translation": "", - "context": "shadow color option | text color", + "context": "text color", + "reference": "", + "comment": "" + }, + { + "term": "Text Color", + "translation": "", + "context": "shadow color option", "reference": "", "comment": "" }, @@ -12530,14 +14217,21 @@ "comment": "" }, { - "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", + "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": "", "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).", + "term": "The custom command used when attaching to sessions (receives the session name as the first argument)", + "translation": "", + "context": "", + "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": "", @@ -12599,6 +14293,13 @@ "reference": "", "comment": "" }, + { + "term": "this app", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "This bind is overridden by config.kdl", "translation": "", @@ -12711,6 +14412,13 @@ "reference": "", "comment": "" }, + { + "term": "Time & Date Locale", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Time & Weather", "translation": "", @@ -12725,6 +14433,13 @@ "reference": "", "comment": "" }, + { + "term": "Time format", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Time remaining: %1", "translation": "", @@ -12868,7 +14583,14 @@ { "term": "Top", "translation": "", - "context": "", + "context": "shadow direction option", + "reference": "", + "comment": "" + }, + { + "term": "Top (Default)", + "translation": "", + "context": "shadow direction option", "reference": "", "comment": "" }, @@ -12889,7 +14611,7 @@ { "term": "Top Left", "translation": "", - "context": "screen position option", + "context": "screen position option | shadow direction option", "reference": "", "comment": "" }, @@ -12903,7 +14625,7 @@ { "term": "Top Right", "translation": "", - "context": "screen position option", + "context": "screen position option | shadow direction option", "reference": "", "comment": "" }, @@ -12914,6 +14636,13 @@ "reference": "", "comment": "" }, + { + "term": "Total", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Total Jobs", "translation": "", @@ -13090,7 +14819,7 @@ "comment": "" }, { - "term": "Uninstall Plugin", + "term": "Uninstall complete. Greeter has been removed.", "translation": "", "context": "", "reference": "", @@ -13103,6 +14832,27 @@ "reference": "", "comment": "" }, + { + "term": "Uninstall Greeter", + "translation": "", + "context": "greeter action confirmation", + "reference": "", + "comment": "" + }, + { + "term": "Uninstall Plugin", + "translation": "", + "context": "", + "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": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Uninstalled: %1", "translation": "", @@ -13124,6 +14874,13 @@ "reference": "", "comment": "" }, + { + "term": "Unknown App", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Unknown Artist", "translation": "", @@ -13264,6 +15021,13 @@ "reference": "", "comment": "" }, + { + "term": "up", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Update", "translation": "", @@ -13278,6 +15042,13 @@ "reference": "", "comment": "" }, + { + "term": "update dms for NM integration.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Update Plugin", "translation": "", @@ -13321,51 +15092,23 @@ "comment": "" }, { - "term": "Use Custom Command", + "term": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Use Grid Layout", + "term": "Use a fixed shadow direction for this bar", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Use IP Location", + "term": "Use a security key for lock screen authentication.", "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": "", + "context": "lock screen U2F security key setting", "reference": "", "comment": "" }, @@ -13397,6 +15140,13 @@ "reference": "", "comment": "" }, + { + "term": "Use Custom Command", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use custom command for update your system", "translation": "", @@ -13425,6 +15175,20 @@ "reference": "", "comment": "" }, + { + "term": "Use desktop wallpaper", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use fingerprint authentication for the lock screen.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", "translation": "", @@ -13432,6 +15196,34 @@ "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": "", @@ -13446,6 +15238,13 @@ "reference": "", "comment": "" }, + { + "term": "Use Monospace Font", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use smaller notification cards", "translation": "", @@ -13460,6 +15259,13 @@ "reference": "", "comment": "" }, + { + "term": "Use System Theme", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use the same position and size on all displays", "translation": "", @@ -13524,84 +15330,7 @@ "comment": "" }, { - "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", + "term": "v%1 by %2", "translation": "", "context": "", "reference": "", @@ -13670,6 +15399,20 @@ "reference": "", "comment": "" }, + { + "term": "Video Path", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Video Screensaver", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Videos", "translation": "", @@ -13691,13 +15434,6 @@ "reference": "", "comment": "" }, - { - "term": "Visual Effects", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Visual divider between widgets", "translation": "", @@ -13712,6 +15448,13 @@ "reference": "", "comment": "" }, + { + "term": "Visual Effects", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Volume", "translation": "", @@ -13741,7 +15484,84 @@ "comment": "" }, { - "term": "WPA/WPA2", + "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", "translation": "", "context": "", "reference": "", @@ -13761,6 +15581,13 @@ "reference": "", "comment": "" }, + { + "term": "Wallpaper fill mode", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Wallpaper Monitor", "translation": "", @@ -13845,6 +15672,13 @@ "reference": "", "comment": "" }, + { + "term": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "translation": "", @@ -13866,13 +15700,6 @@ "reference": "", "comment": "" }, - { - "term": "Wi-Fi Password", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Wi-Fi and Ethernet connection", "translation": "", @@ -13888,54 +15715,12 @@ "comment": "" }, { - "term": "WiFi", + "term": "Wi-Fi Password", "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": "", @@ -13943,6 +15728,13 @@ "reference": "", "comment": "" }, + { + "term": "Widget added", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Widget Background Color", "translation": "", @@ -13964,6 +15756,13 @@ "reference": "", "comment": "" }, + { + "term": "Widget removed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Widget Style", "translation": "", @@ -13985,20 +15784,6 @@ "reference": "", "comment": "" }, - { - "term": "Widget added", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Widget removed", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Widgets", "translation": "", @@ -14041,6 +15826,55 @@ "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": "", @@ -14153,6 +15987,13 @@ "reference": "", "comment": "" }, + { + "term": "Workspace name", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Workspace Names", "translation": "", @@ -14181,13 +16022,6 @@ "reference": "", "comment": "" }, - { - "term": "Workspace name", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Workspaces", "translation": "", @@ -14202,6 +16036,13 @@ "reference": "", "comment": "" }, + { + "term": "WPA/WPA2", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Write:", "translation": "", @@ -14209,6 +16050,13 @@ "reference": "", "comment": "" }, + { + "term": "wtype not available - install wtype for paste support", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "X Axis", "translation": "", @@ -14237,6 +16085,13 @@ "reference": "", "comment": "" }, + { + "term": "yesterday", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "You have unsaved changes. Save before closing this tab?", "translation": "", @@ -14280,273 +16135,28 @@ "comment": "" }, { - "term": "actions", + "term": "• d - Day (1-31)", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "brandon", + "term": "• dd - Day (01-31)", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "by %1", - "translation": "", - "context": "author attribution", - "reference": "", - "comment": "" - }, - { - "term": "days", + "term": "• ddd - Day name (Mon)", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "device", - "translation": "", - "context": "Generic device name | Generic device name fallback", - "reference": "", - "comment": "" - }, - { - "term": "devices connected", - "translation": "", - "context": "KDE Connect status multiple devices", - "reference": "", - "comment": "" - }, - { - "term": "dgop not available", - "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": "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": "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 shortcuts config", - "translation": "", - "context": "greeter keybinds niri description", - "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": "procs", - "translation": "", - "context": "short for processes", - "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", + "term": "• dddd - Day name (Monday)", "translation": "", "context": "", "reference": "", @@ -14601,34 +16211,6 @@ "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": "",