From ad43053b94d823e5e07e6d10c1eb31406962b51d Mon Sep 17 00:00:00 2001 From: bbedward Date: Tue, 6 Jan 2026 20:35:22 -0500 Subject: [PATCH] cursor: hypr, mango, and dankinstall support for configs --- core/internal/config/deployer.go | 2 + core/internal/config/embedded/hyprland.conf | 1 + core/internal/config/embedded/niri.kdl | 1 + quickshell/Common/SettingsData.qml | 47 +- quickshell/Common/settings/SettingsSpec.js | 2 +- .../Modules/Settings/ThemeColorsTab.qml | 345 +++++++--- quickshell/Services/DwlService.qml | 50 ++ quickshell/Services/HyprlandService.qml | 62 ++ quickshell/Services/NiriService.qml | 56 +- quickshell/Services/SessionService.qml | 70 +- quickshell/translations/en.json | 644 ++++++++++++------ quickshell/translations/poexports/es.json | 103 +++ quickshell/translations/poexports/fa.json | 291 +++++--- quickshell/translations/poexports/he.json | 103 +++ quickshell/translations/poexports/hu.json | 103 +++ quickshell/translations/poexports/it.json | 345 ++++++---- quickshell/translations/poexports/ja.json | 103 +++ quickshell/translations/poexports/pl.json | 103 +++ quickshell/translations/poexports/pt.json | 103 +++ quickshell/translations/poexports/tr.json | 103 +++ quickshell/translations/poexports/zh_CN.json | 353 ++++++---- quickshell/translations/poexports/zh_TW.json | 103 +++ .../translations/settings_search_index.json | 120 ++++ quickshell/translations/template.json | 237 ++++++- 24 files changed, 2741 insertions(+), 709 deletions(-) diff --git a/core/internal/config/deployer.go b/core/internal/config/deployer.go index 5c36cef7..e8fc0f96 100644 --- a/core/internal/config/deployer.go +++ b/core/internal/config/deployer.go @@ -210,6 +210,7 @@ func (cd *ConfigDeployer) deployNiriDmsConfigs(dmsDir, terminalCommand string) e {"alttab.kdl", NiriAlttabConfig}, {"binds.kdl", strings.ReplaceAll(NiriBindsConfig, "{{TERMINAL_COMMAND}}", terminalCommand)}, {"outputs.kdl", ""}, + {"cursor.kdl", ""}, } for _, cfg := range configs { @@ -560,6 +561,7 @@ func (cd *ConfigDeployer) deployHyprlandDmsConfigs(dmsDir string) error { {"colors.conf", HyprColorsConfig}, {"layout.conf", HyprLayoutConfig}, {"outputs.conf", ""}, + {"cursor.conf", ""}, } for _, cfg := range configs { diff --git a/core/internal/config/embedded/hyprland.conf b/core/internal/config/embedded/hyprland.conf index 9b317776..359d8231 100644 --- a/core/internal/config/embedded/hyprland.conf +++ b/core/internal/config/embedded/hyprland.conf @@ -275,3 +275,4 @@ bind = $mod SHIFT, P, dpms, toggle source = ./dms/colors.conf source = ./dms/outputs.conf source = ./dms/layout.conf +source = ./dms/cursor.conf diff --git a/core/internal/config/embedded/niri.kdl b/core/internal/config/embedded/niri.kdl index 7d1541e3..36c17001 100644 --- a/core/internal/config/embedded/niri.kdl +++ b/core/internal/config/embedded/niri.kdl @@ -270,3 +270,4 @@ include "dms/layout.kdl" include "dms/alttab.kdl" include "dms/binds.kdl" include "dms/outputs.kdl" +include "dms/cursor.kdl" diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index 972cf2f1..1dcba2bf 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -252,6 +252,14 @@ Singleton { "niri": { "hideWhenTyping": false, "hideAfterInactiveMs": 0 + }, + "hyprland": { + "hideOnKeyPress": false, + "hideOnTouch": false, + "inactiveTimeout": 0 + }, + "dwl": { + "cursorHideTimeout": 0 } }) property var availableCursorThemes: ["System Default"] @@ -826,7 +834,8 @@ Singleton { "regenSystemThemes": regenSystemThemes, "updateCompositorLayout": updateCompositorLayout, "applyStoredIconTheme": applyStoredIconTheme, - "updateBarConfigs": updateBarConfigs + "updateBarConfigs": updateBarConfigs, + "updateCompositorCursor": updateCompositorCursor }) function set(key, value) { @@ -1581,17 +1590,39 @@ Singleton { function updateCompositorCursor() { if (typeof CompositorService === "undefined") return; - if (CompositorService.isNiri && typeof NiriService !== "undefined") + if (CompositorService.isNiri && typeof NiriService !== "undefined") { NiriService.generateNiriCursorConfig(); + return; + } + if (CompositorService.isHyprland && typeof HyprlandService !== "undefined") { + HyprlandService.generateCursorConfig(); + return; + } + if (CompositorService.isDwl && typeof DwlService !== "undefined") { + DwlService.generateCursorConfig(); + return; + } } - function getCursorEnvPrefix() { - const themeName = cursorSettings.theme === "System Default" ? (systemDefaultCursorTheme || "") : cursorSettings.theme; - const size = cursorSettings.size || 24; + function getCursorEnvironment() { + const isSystemDefault = cursorSettings.theme === "System Default"; + const isDefaultSize = !cursorSettings.size || cursorSettings.size === 24; + if (isSystemDefault && isDefaultSize) + return {}; - if (!themeName) - return `env XCURSOR_SIZE=${size}`; - return `env XCURSOR_THEME="${themeName}" XCURSOR_SIZE=${size}`; + const themeName = isSystemDefault ? "" : cursorSettings.theme; + const size = String(cursorSettings.size || 24); + const env = {}; + + if (!isDefaultSize) { + env["XCURSOR_SIZE"] = size; + env["HYPRCURSOR_SIZE"] = size; + } + if (themeName) { + env["XCURSOR_THEME"] = themeName; + env["HYPRCURSOR_THEME"] = themeName; + } + return env; } function setGtkThemingEnabled(enabled) { diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index a93a3d93..7f5066d2 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -134,7 +134,7 @@ var SPEC = { qt6ctAvailable: { def: false, persist: false }, gtkAvailable: { def: false, persist: false }, - cursorSettings: { def: { theme: "System Default", size: 24, niri: { hideWhenTyping: false, hideAfterInactiveMs: 0 } }, onChange: "updateCompositorCursor" }, + cursorSettings: { def: { theme: "System Default", size: 24, niri: { hideWhenTyping: false, hideAfterInactiveMs: 0 }, hyprland: { hideOnKeyPress: false, hideOnTouch: false, inactiveTimeout: 0 }, dwl: { cursorHideTimeout: 0 } }, onChange: "updateCompositorCursor" }, availableCursorThemes: { def: ["System Default"], persist: false }, systemDefaultCursorTheme: { def: "", persist: false }, diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index 1096c637..5d1c8119 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -1,3 +1,4 @@ +import QtCore import QtQuick import QtQuick.Effects import Quickshell @@ -17,6 +18,79 @@ Item { property var installedRegistryThemes: [] property var templateDetection: ({}) + property var cursorIncludeStatus: ({ + "exists": false, + "included": false + }) + property bool checkingCursorInclude: false + property bool fixingCursorInclude: false + + function getCursorConfigPaths() { + const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); + switch (CompositorService.compositor) { + case "niri": + return { + "configFile": configDir + "/niri/config.kdl", + "cursorFile": configDir + "/niri/dms/cursor.kdl", + "grepPattern": 'include.*"dms/cursor.kdl"', + "includeLine": 'include "dms/cursor.kdl"' + }; + case "hyprland": + return { + "configFile": configDir + "/hypr/hyprland.conf", + "cursorFile": configDir + "/hypr/dms/cursor.conf", + "grepPattern": 'source.*dms/cursor.conf', + "includeLine": "source = ./dms/cursor.conf" + }; + case "dwl": + return { + "configFile": configDir + "/mango/config.conf", + "cursorFile": configDir + "/mango/dms/cursor.conf", + "grepPattern": 'source.*dms/cursor.conf', + "includeLine": "source=./dms/cursor.conf" + }; + default: + return null; + } + } + + function checkCursorIncludeStatus() { + const paths = getCursorConfigPaths(); + if (!paths) { + cursorIncludeStatus = { + "exists": false, + "included": false + }; + return; + } + checkingCursorInclude = true; + Proc.runCommand("check-cursor-include", ["sh", "-c", `exists=false; included=false; ` + `[ -f "${paths.cursorFile}" ] && exists=true; ` + `[ -f "${paths.configFile}" ] && grep -v '^[[:space:]]*\\(//\\|#\\)' "${paths.configFile}" | grep -q '${paths.grepPattern}' && included=true; ` + `echo "$exists $included"`], (output, exitCode) => { + checkingCursorInclude = false; + const parts = output.trim().split(" "); + cursorIncludeStatus = { + "exists": parts[0] === "true", + "included": parts[1] === "true" + }; + }); + } + + function fixCursorInclude() { + const paths = getCursorConfigPaths(); + if (!paths) + return; + fixingCursorInclude = true; + const cursorDir = paths.cursorFile.substring(0, paths.cursorFile.lastIndexOf("/")); + const unixTime = Math.floor(Date.now() / 1000); + const backupFile = paths.configFile + ".backup" + unixTime; + Proc.runCommand("fix-cursor-include", ["sh", "-c", `cp "${paths.configFile}" "${backupFile}" 2>/dev/null; ` + `mkdir -p "${cursorDir}" && ` + `touch "${paths.cursorFile}" && ` + `if ! grep -v '^[[:space:]]*\\(//\\|#\\)' "${paths.configFile}" 2>/dev/null | grep -q '${paths.grepPattern}'; then ` + `echo '' >> "${paths.configFile}" && ` + `echo '${paths.includeLine}' >> "${paths.configFile}"; fi`], (output, exitCode) => { + fixingCursorInclude = false; + if (exitCode !== 0) + return; + checkCursorIncludeStatus(); + SettingsData.updateCompositorCursor(); + }); + } + function isTemplateDetected(templateId) { if (!templateDetection || Object.keys(templateDetection).length === 0) return true; @@ -45,6 +119,8 @@ Item { if (PopoutService.pendingThemeInstall) Qt.callLater(() => themeBrowser.show()); templateCheckProcess.running = true; + if (CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isDwl) + checkCursorIncludeStatus(); } Process { @@ -1316,6 +1392,195 @@ Item { } } + SettingsCard { + tab: "theme" + tags: ["cursor", "mouse", "pointer", "theme", "size"] + title: I18n.tr("Cursor Theme") + settingKey: "cursorTheme" + iconName: "mouse" + visible: CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isDwl + + Column { + width: parent.width + spacing: Theme.spacingM + + StyledRect { + id: cursorWarningBox + width: parent.width + height: cursorWarningContent.implicitHeight + Theme.spacingM * 2 + radius: Theme.cornerRadius + + readonly property bool showError: themeColorsTab.cursorIncludeStatus.exists && !themeColorsTab.cursorIncludeStatus.included + readonly property bool showSetup: !themeColorsTab.cursorIncludeStatus.exists && !themeColorsTab.cursorIncludeStatus.included + + color: (showError || showSetup) ? Theme.withAlpha(Theme.warning, 0.15) : "transparent" + border.color: (showError || showSetup) ? Theme.withAlpha(Theme.warning, 0.3) : "transparent" + border.width: 1 + visible: (showError || showSetup) && !themeColorsTab.checkingCursorInclude + + Row { + id: cursorWarningContent + anchors.fill: parent + anchors.margins: Theme.spacingM + spacing: Theme.spacingM + + DankIcon { + name: "warning" + size: Theme.iconSize + color: Theme.warning + anchors.verticalCenter: parent.verticalCenter + } + + Column { + width: parent.width - Theme.iconSize - (cursorFixButton.visible ? cursorFixButton.width + Theme.spacingM : 0) - Theme.spacingM + spacing: Theme.spacingXS + anchors.verticalCenter: parent.verticalCenter + + StyledText { + text: cursorWarningBox.showSetup ? I18n.tr("Cursor Config Not Configured") : I18n.tr("Cursor Include Missing") + font.pixelSize: Theme.fontSizeMedium + font.weight: Font.Medium + color: Theme.warning + } + + StyledText { + text: cursorWarningBox.showSetup ? I18n.tr("Click 'Setup' to create cursor config and add include to your compositor config.") : I18n.tr("dms/cursor config exists but is not included. Cursor settings won't apply.") + font.pixelSize: Theme.fontSizeSmall + color: Theme.surfaceVariantText + wrapMode: Text.WordWrap + width: parent.width + } + } + + DankButton { + id: cursorFixButton + visible: cursorWarningBox.showError || cursorWarningBox.showSetup + text: themeColorsTab.fixingCursorInclude ? I18n.tr("Fixing...") : (cursorWarningBox.showSetup ? I18n.tr("Setup") : I18n.tr("Fix Now")) + backgroundColor: Theme.warning + textColor: Theme.background + enabled: !themeColorsTab.fixingCursorInclude + anchors.verticalCenter: parent.verticalCenter + onClicked: themeColorsTab.fixCursorInclude() + } + } + } + + SettingsDropdownRow { + tab: "theme" + tags: ["cursor", "mouse", "pointer", "theme"] + settingKey: "cursorTheme" + text: I18n.tr("Cursor Theme") + description: I18n.tr("Mouse pointer appearance") + currentValue: SettingsData.cursorSettings.theme + enableFuzzySearch: true + popupWidthOffset: 100 + maxPopupHeight: 236 + options: cachedCursorThemes + onValueChanged: value => { + SettingsData.setCursorTheme(value); + } + } + + SettingsSliderRow { + tab: "theme" + tags: ["cursor", "mouse", "pointer", "size"] + settingKey: "cursorSize" + text: I18n.tr("Cursor Size") + description: I18n.tr("Mouse pointer size in pixels") + value: SettingsData.cursorSettings.size + minimum: 16 + maximum: 48 + unit: "px" + defaultValue: 24 + onSliderValueChanged: newValue => SettingsData.setCursorSize(newValue) + } + + SettingsToggleRow { + tab: "theme" + tags: ["cursor", "hide", "typing"] + settingKey: "cursorHideWhenTyping" + text: I18n.tr("Hide When Typing") + description: I18n.tr("Hide cursor when pressing keyboard keys") + visible: CompositorService.isNiri || CompositorService.isHyprland + checked: { + if (CompositorService.isNiri) + return SettingsData.cursorSettings.niri?.hideWhenTyping || false; + if (CompositorService.isHyprland) + return SettingsData.cursorSettings.hyprland?.hideOnKeyPress || false; + return false; + } + onToggled: checked => { + const updated = JSON.parse(JSON.stringify(SettingsData.cursorSettings)); + if (CompositorService.isNiri) { + if (!updated.niri) + updated.niri = {}; + updated.niri.hideWhenTyping = checked; + } else if (CompositorService.isHyprland) { + if (!updated.hyprland) + updated.hyprland = {}; + updated.hyprland.hideOnKeyPress = checked; + } + SettingsData.set("cursorSettings", updated); + } + } + + SettingsToggleRow { + tab: "theme" + tags: ["cursor", "hide", "touch"] + settingKey: "cursorHideOnTouch" + text: I18n.tr("Hide on Touch") + description: I18n.tr("Hide cursor when using touch input") + visible: CompositorService.isHyprland + checked: SettingsData.cursorSettings.hyprland?.hideOnTouch || false + onToggled: checked => { + const updated = JSON.parse(JSON.stringify(SettingsData.cursorSettings)); + if (!updated.hyprland) + updated.hyprland = {}; + updated.hyprland.hideOnTouch = checked; + SettingsData.set("cursorSettings", updated); + } + } + + SettingsSliderRow { + tab: "theme" + tags: ["cursor", "hide", "timeout", "inactive"] + settingKey: "cursorHideAfterInactive" + text: I18n.tr("Auto-Hide Timeout") + description: I18n.tr("Hide cursor after inactivity (0 = disabled)") + value: { + if (CompositorService.isNiri) + return SettingsData.cursorSettings.niri?.hideAfterInactiveMs || 0; + if (CompositorService.isHyprland) + return SettingsData.cursorSettings.hyprland?.inactiveTimeout || 0; + if (CompositorService.isDwl) + return SettingsData.cursorSettings.dwl?.cursorHideTimeout || 0; + return 0; + } + minimum: 0 + maximum: CompositorService.isNiri ? 5000 : 10 + unit: CompositorService.isNiri ? "ms" : "s" + defaultValue: 0 + onSliderValueChanged: newValue => { + const updated = JSON.parse(JSON.stringify(SettingsData.cursorSettings)); + if (CompositorService.isNiri) { + if (!updated.niri) + updated.niri = {}; + updated.niri.hideAfterInactiveMs = newValue; + } else if (CompositorService.isHyprland) { + if (!updated.hyprland) + updated.hyprland = {}; + updated.hyprland.inactiveTimeout = newValue; + } else if (CompositorService.isDwl) { + if (!updated.dwl) + updated.dwl = {}; + updated.dwl.cursorHideTimeout = newValue; + } + SettingsData.set("cursorSettings", updated); + } + } + } + } + SettingsCard { tab: "theme" tags: ["matugen", "templates", "theming"] @@ -1640,86 +1905,6 @@ Item { } } - SettingsCard { - tab: "theme" - tags: ["cursor", "mouse", "pointer", "theme", "size"] - title: I18n.tr("Cursor Theme") - settingKey: "cursorTheme" - iconName: "mouse" - visible: CompositorService.isNiri - - Column { - width: parent.width - spacing: Theme.spacingM - - SettingsDropdownRow { - tab: "theme" - tags: ["cursor", "mouse", "pointer", "theme"] - settingKey: "cursorTheme" - text: I18n.tr("Cursor Theme") - description: I18n.tr("Mouse pointer appearance") - currentValue: SettingsData.cursorSettings.theme - enableFuzzySearch: true - popupWidthOffset: 100 - maxPopupHeight: 236 - options: cachedCursorThemes - onValueChanged: value => { - SettingsData.setCursorTheme(value); - } - } - - SettingsSliderRow { - tab: "theme" - tags: ["cursor", "mouse", "pointer", "size"] - settingKey: "cursorSize" - text: I18n.tr("Cursor Size") - description: I18n.tr("Mouse pointer size in pixels") - value: SettingsData.cursorSettings.size - minimum: 16 - maximum: 48 - unit: "px" - defaultValue: 24 - onSliderValueChanged: newValue => SettingsData.setCursorSize(newValue) - } - - SettingsToggleRow { - tab: "theme" - tags: ["cursor", "hide", "typing"] - settingKey: "cursorHideWhenTyping" - text: I18n.tr("Hide When Typing") - description: I18n.tr("Hide cursor when pressing keyboard keys") - checked: SettingsData.cursorSettings.niri?.hideWhenTyping || false - onToggled: checked => { - const updated = JSON.parse(JSON.stringify(SettingsData.cursorSettings)); - if (!updated.niri) - updated.niri = {}; - updated.niri.hideWhenTyping = checked; - SettingsData.set("cursorSettings", updated); - } - } - - SettingsSliderRow { - tab: "theme" - tags: ["cursor", "hide", "timeout", "inactive"] - settingKey: "cursorHideAfterInactive" - text: I18n.tr("Auto-Hide Timeout") - description: I18n.tr("Hide cursor after inactivity (0 = disabled)") - value: SettingsData.cursorSettings.niri?.hideAfterInactiveMs || 0 - minimum: 0 - maximum: 5000 - unit: "ms" - defaultValue: 0 - onSliderValueChanged: newValue => { - const updated = JSON.parse(JSON.stringify(SettingsData.cursorSettings)); - if (!updated.niri) - updated.niri = {}; - updated.niri.hideAfterInactiveMs = newValue; - SettingsData.set("cursorSettings", updated); - } - } - } - } - SettingsCard { tab: "theme" tags: ["system", "app", "theming", "gtk", "qt"] diff --git a/quickshell/Services/DwlService.qml b/quickshell/Services/DwlService.qml index 2374b475..4b93b87b 100644 --- a/quickshell/Services/DwlService.qml +++ b/quickshell/Services/DwlService.qml @@ -14,6 +14,7 @@ Singleton { readonly property string mangoDmsDir: configDir + "/mango/dms" readonly property string outputsPath: mangoDmsDir + "/outputs.conf" readonly property string layoutPath: mangoDmsDir + "/layout.conf" + readonly property string cursorPath: mangoDmsDir + "/cursor.conf" property int _lastGapValue: -1 @@ -400,4 +401,53 @@ borderpx=${borderSize} return 0; } } + + function generateCursorConfig() { + if (!CompositorService.isDwl) + return; + + console.log("DwlService: Generating cursor config..."); + + const settings = typeof SettingsData !== "undefined" ? SettingsData.cursorSettings : null; + if (!settings) { + Proc.runCommand("mango-write-cursor", ["sh", "-c", `mkdir -p "${mangoDmsDir}" && : > "${cursorPath}"`], (output, exitCode) => { + if (exitCode !== 0) + console.warn("DwlService: Failed to write cursor config:", output); + }); + return; + } + + const themeName = settings.theme === "System Default" ? (SettingsData.systemDefaultCursorTheme || "") : settings.theme; + const size = settings.size || 24; + const hideTimeout = settings.dwl?.cursorHideTimeout || 0; + + const isDefaultConfig = !themeName && size === 24 && hideTimeout === 0; + if (isDefaultConfig) { + Proc.runCommand("mango-write-cursor", ["sh", "-c", `mkdir -p "${mangoDmsDir}" && : > "${cursorPath}"`], (output, exitCode) => { + if (exitCode !== 0) + console.warn("DwlService: Failed to write cursor config:", output); + }); + return; + } + + let content = `# Auto-generated by DMS - do not edit manually +cursor_size=${size}`; + + if (themeName) + content += `\ncursor_theme=${themeName}`; + + if (hideTimeout > 0) + content += `\ncursor_hide_timeout=${hideTimeout}`; + + content += `\n`; + + Proc.runCommand("mango-write-cursor", ["sh", "-c", `mkdir -p "${mangoDmsDir}" && cat > "${cursorPath}" << 'EOF'\n${content}EOF`], (output, exitCode) => { + if (exitCode !== 0) { + console.warn("DwlService: Failed to write cursor config:", output); + return; + } + console.info("DwlService: Generated cursor config at", cursorPath); + reloadConfig(); + }); + } } diff --git a/quickshell/Services/HyprlandService.qml b/quickshell/Services/HyprlandService.qml index 1a46e2c9..31fc6f26 100644 --- a/quickshell/Services/HyprlandService.qml +++ b/quickshell/Services/HyprlandService.qml @@ -13,6 +13,7 @@ Singleton { readonly property string hyprDmsDir: configDir + "/hypr/dms" readonly property string outputsPath: hyprDmsDir + "/outputs.conf" readonly property string layoutPath: hyprDmsDir + "/layout.conf" + readonly property string cursorPath: hyprDmsDir + "/cursor.conf" property int _lastGapValue: -1 @@ -241,4 +242,65 @@ decoration { return "Normal"; } } + + function generateCursorConfig() { + if (!CompositorService.isHyprland) + return; + + console.log("HyprlandService: Generating cursor config..."); + + const settings = typeof SettingsData !== "undefined" ? SettingsData.cursorSettings : null; + if (!settings) { + Proc.runCommand("hypr-write-cursor", ["sh", "-c", `mkdir -p "${hyprDmsDir}" && : > "${cursorPath}"`], (output, exitCode) => { + if (exitCode !== 0) + console.warn("HyprlandService: Failed to write cursor config:", output); + }); + return; + } + + const themeName = settings.theme === "System Default" ? (SettingsData.systemDefaultCursorTheme || "") : settings.theme; + const size = settings.size || 24; + const hideWhenTyping = settings.hyprland?.hideWhenTyping || false; + const hideOnTouch = settings.hyprland?.hideOnTouch || false; + const hideOnKeyPress = settings.hyprland?.hideOnKeyPress || false; + const inactiveTimeout = settings.hyprland?.inactiveTimeout || 0; + + const isDefaultConfig = !themeName && size === 24 && !hideWhenTyping && !hideOnTouch && !hideOnKeyPress && inactiveTimeout === 0; + if (isDefaultConfig) { + Proc.runCommand("hypr-write-cursor", ["sh", "-c", `mkdir -p "${hyprDmsDir}" && : > "${cursorPath}"`], (output, exitCode) => { + if (exitCode !== 0) + console.warn("HyprlandService: Failed to write cursor config:", output); + }); + return; + } + + let content = `# Auto-generated by DMS - do not edit manually + +cursor { + size = ${size}`; + + if (themeName) + content += `\n theme = ${themeName}`; + + if (hideWhenTyping) + content += `\n hide_on_key_press = true`; + + if (hideOnTouch) + content += `\n hide_on_touch = true`; + + if (inactiveTimeout > 0) + content += `\n inactive_timeout = ${inactiveTimeout}`; + + content += `\n} +`; + + Proc.runCommand("hypr-write-cursor", ["sh", "-c", `mkdir -p "${hyprDmsDir}" && cat > "${cursorPath}" << 'EOF'\n${content}EOF`], (output, exitCode) => { + if (exitCode !== 0) { + console.warn("HyprlandService: Failed to write cursor config:", output); + return; + } + console.info("HyprlandService: Generated cursor config at", cursorPath); + reloadConfig(); + }); + } } diff --git a/quickshell/Services/NiriService.qml b/quickshell/Services/NiriService.qml index 06c49c35..c6e27151 100644 --- a/quickshell/Services/NiriService.qml +++ b/quickshell/Services/NiriService.qml @@ -179,6 +179,16 @@ Singleton { } } + Process { + id: ensureCursorProcess + property string cursorPath: "" + + onExited: exitCode => { + if (exitCode !== 0) + console.warn("NiriService: Failed to ensure cursor.kdl, exit code:", exitCode); + } + } + DankSocket { id: eventStreamSocket path: root.socketPath @@ -1088,6 +1098,11 @@ Singleton { ensureBindsProcess.command = ["sh", "-c", `mkdir -p "${niriDmsDir}" && [ ! -f "${bindsPath}" ] && touch "${bindsPath}" || true`]; ensureBindsProcess.running = true; + const cursorPath = niriDmsDir + "/cursor.kdl"; + ensureCursorProcess.cursorPath = cursorPath; + ensureCursorProcess.command = ["sh", "-c", `mkdir -p "${niriDmsDir}" && [ ! -f "${cursorPath}" ] && touch "${cursorPath}" || true`]; + ensureCursorProcess.running = true; + configGenerationPending = false; } @@ -1110,16 +1125,33 @@ Singleton { console.log("NiriService: Generating cursor config..."); - const settings = typeof SettingsData !== "undefined" ? SettingsData.cursorSettings : { - theme: "System Default", - size: 24, - niri: {} - }; + const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); + const niriDmsDir = configDir + "/niri/dms"; + const cursorPath = niriDmsDir + "/cursor.kdl"; + + const settings = typeof SettingsData !== "undefined" ? SettingsData.cursorSettings : null; + if (!settings) { + writeCursorProcess.cursorContent = ""; + writeCursorProcess.cursorPath = cursorPath; + writeCursorProcess.command = ["sh", "-c", `mkdir -p "${niriDmsDir}" && : > "${cursorPath}"`]; + writeCursorProcess.running = true; + return; + } + const themeName = settings.theme === "System Default" ? (SettingsData.systemDefaultCursorTheme || "") : settings.theme; const size = settings.size || 24; const hideWhenTyping = settings.niri?.hideWhenTyping || false; const hideAfterMs = settings.niri?.hideAfterInactiveMs || 0; + const isDefaultConfig = !themeName && size === 24 && !hideWhenTyping && hideAfterMs === 0; + if (isDefaultConfig) { + writeCursorProcess.cursorContent = ""; + writeCursorProcess.cursorPath = cursorPath; + writeCursorProcess.command = ["sh", "-c", `mkdir -p "${niriDmsDir}" && : > "${cursorPath}"`]; + writeCursorProcess.running = true; + return; + } + const dmsWarning = `// ! DO NOT EDIT ! // ! AUTO-GENERATED BY DMS ! // ! CHANGES WILL BE OVERWRITTEN ! @@ -1129,25 +1161,19 @@ Singleton { let cursorContent = dmsWarning + `cursor {\n`; - if (themeName) { + if (themeName) cursorContent += ` xcursor-theme "${themeName}"\n`; - } + cursorContent += ` xcursor-size ${size}\n`; - if (hideWhenTyping) { + if (hideWhenTyping) cursorContent += ` hide-when-typing\n`; - } - if (hideAfterMs > 0) { + if (hideAfterMs > 0) cursorContent += ` hide-after-inactive-ms ${hideAfterMs}\n`; - } cursorContent += `}`; - const configDir = Paths.strip(StandardPaths.writableLocation(StandardPaths.ConfigLocation)); - const niriDmsDir = configDir + "/niri/dms"; - const cursorPath = niriDmsDir + "/cursor.kdl"; - writeCursorProcess.cursorContent = cursorContent; writeCursorProcess.cursorPath = cursorPath; diff --git a/quickshell/Services/SessionService.qml b/quickshell/Services/SessionService.qml index d26ec0b7..2eb7db83 100644 --- a/quickshell/Services/SessionService.qml +++ b/quickshell/Services/SessionService.qml @@ -184,84 +184,76 @@ Singleton { function launchDesktopEntry(desktopEntry, useNvidia) { let cmd = desktopEntry.command; - if (useNvidia && nvidiaCommand) { + if (useNvidia && nvidiaCommand) cmd = [nvidiaCommand].concat(cmd); - } const userPrefix = SettingsData.launchPrefix?.trim() || ""; const defaultPrefix = Quickshell.env("DMS_DEFAULT_LAUNCH_PREFIX") || ""; - const cursorPrefix = typeof SettingsData.getCursorEnvPrefix !== "undefined" ? SettingsData.getCursorEnvPrefix() : ""; - - let prefix = userPrefix.length > 0 ? userPrefix : defaultPrefix; - if (cursorPrefix) { - prefix = prefix.length > 0 ? `${cursorPrefix} ${prefix}` : cursorPrefix; - } - + const prefix = userPrefix.length > 0 ? userPrefix : defaultPrefix; const workDir = desktopEntry.workingDirectory || Quickshell.env("HOME"); - const escapedCmd = cmd.map(arg => escapeShellArg(arg)).join(" "); - const shellCmd = prefix.length > 0 ? `${prefix} ${escapedCmd}` : escapedCmd; + const cursorEnv = typeof SettingsData.getCursorEnvironment === "function" ? SettingsData.getCursorEnvironment() : {}; if (desktopEntry.runInTerminal) { const terminal = Quickshell.env("TERMINAL") || "xterm"; + const escapedCmd = cmd.map(arg => escapeShellArg(arg)).join(" "); + const shellCmd = prefix.length > 0 ? `${prefix} ${escapedCmd}` : escapedCmd; Quickshell.execDetached({ command: [terminal, "-e", "sh", "-c", shellCmd], - workingDirectory: workDir + workingDirectory: workDir, + environment: cursorEnv }); return; } if (prefix.length > 0 && needsShellExecution(prefix)) { + const escapedCmd = cmd.map(arg => escapeShellArg(arg)).join(" "); Quickshell.execDetached({ - command: ["sh", "-c", shellCmd], - workingDirectory: workDir + command: ["sh", "-c", `${prefix} ${escapedCmd}`], + workingDirectory: workDir, + environment: cursorEnv }); return; } - if (prefix.length > 0) { + if (prefix.length > 0) cmd = prefix.split(" ").concat(cmd); - } Quickshell.execDetached({ command: cmd, - workingDirectory: workDir + workingDirectory: workDir, + environment: cursorEnv }); } function launchDesktopAction(desktopEntry, action, useNvidia) { let cmd = action.command; - if (useNvidia && nvidiaCommand) { + if (useNvidia && nvidiaCommand) cmd = [nvidiaCommand].concat(cmd); - } const userPrefix = SettingsData.launchPrefix?.trim() || ""; const defaultPrefix = Quickshell.env("DMS_DEFAULT_LAUNCH_PREFIX") || ""; - const cursorPrefix = typeof SettingsData.getCursorEnvPrefix !== "undefined" ? SettingsData.getCursorEnvPrefix() : ""; - - let prefix = userPrefix.length > 0 ? userPrefix : defaultPrefix; - if (cursorPrefix) { - prefix = prefix.length > 0 ? `${cursorPrefix} ${prefix}` : cursorPrefix; - } + const prefix = userPrefix.length > 0 ? userPrefix : defaultPrefix; + const workDir = desktopEntry.workingDirectory || Quickshell.env("HOME"); + const cursorEnv = typeof SettingsData.getCursorEnvironment === "function" ? SettingsData.getCursorEnvironment() : {}; if (prefix.length > 0 && needsShellExecution(prefix)) { const escapedCmd = cmd.map(arg => escapeShellArg(arg)).join(" "); - const shellCmd = `${prefix} ${escapedCmd}`; - Quickshell.execDetached({ - command: ["sh", "-c", shellCmd], - workingDirectory: desktopEntry.workingDirectory || Quickshell.env("HOME") - }); - } else { - if (prefix.length > 0) { - const launchPrefix = prefix.split(" "); - cmd = launchPrefix.concat(cmd); - } - - Quickshell.execDetached({ - command: cmd, - workingDirectory: desktopEntry.workingDirectory || Quickshell.env("HOME") + command: ["sh", "-c", `${prefix} ${escapedCmd}`], + workingDirectory: workDir, + environment: cursorEnv }); + return; } + + if (prefix.length > 0) + cmd = prefix.split(" ").concat(cmd); + + Quickshell.execDetached({ + command: cmd, + workingDirectory: workDir, + environment: cursorEnv + }); } // * Session management diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index a3c1afad..7c7ad76a 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -38,7 +38,7 @@ { "term": "%1 display(s)", "context": "%1 display(s)", - "reference": "Modules/Settings/DankBarTab.qml:400", + "reference": "Modules/Settings/DankBarTab.qml:404", "comment": "" }, { @@ -68,13 +68,13 @@ { "term": "%1 variants", "context": "%1 variants", - "reference": "Modules/Settings/ThemeBrowser.qml:520, Modules/Settings/ThemeBrowser.qml:521", + "reference": "Modules/Settings/ThemeBrowser.qml:515, Modules/Settings/ThemeBrowser.qml:516", "comment": "" }, { "term": "%1 widgets", "context": "%1 widgets", - "reference": "Modules/Settings/DankBarTab.qml:417", + "reference": "Modules/Settings/DankBarTab.qml:421", "comment": "" }, { @@ -98,7 +98,7 @@ { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:953", + "reference": "Modules/Settings/ThemeColorsTab.qml:1031", "comment": "" }, { @@ -341,6 +341,12 @@ "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:370", "comment": "" }, + { + "term": "Activation", + "context": "Activation", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:93", + "comment": "" + }, { "term": "Active", "context": "Active", @@ -386,7 +392,7 @@ { "term": "Add Bar", "context": "Add Bar", - "reference": "Modules/Settings/DankBarTab.qml:323", + "reference": "Modules/Settings/DankBarTab.qml:327", "comment": "" }, { @@ -452,7 +458,7 @@ { "term": "All", "context": "notification history filter", - "reference": "Services/AppSearchService.qml:399, Services/AppSearchService.qml:413, Modals/Spotlight/SpotlightModal.qml:28, Modules/AppDrawer/CategorySelector.qml:11, Modules/AppDrawer/AppLauncher.qml:14, Modules/AppDrawer/AppLauncher.qml:47, Modules/AppDrawer/AppLauncher.qml:48, Modules/AppDrawer/AppLauncher.qml:90, Modules/AppDrawer/AppDrawerPopout.qml:58, Modules/Settings/KeybindsTab.qml:378, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:86", + "reference": "Services/AppSearchService.qml:514, Services/AppSearchService.qml:528, Modules/AppDrawer/CategorySelector.qml:11, Modules/AppDrawer/AppLauncher.qml:14, Modules/AppDrawer/AppLauncher.qml:47, Modules/AppDrawer/AppLauncher.qml:48, Modules/AppDrawer/AppLauncher.qml:90, Modules/AppDrawer/AppLauncher.qml:295, Modules/AppDrawer/AppDrawerPopout.qml:58, Modules/Settings/KeybindsTab.qml:378, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:86", "comment": "" }, { @@ -476,7 +482,7 @@ { "term": "All displays", "context": "All displays", - "reference": "Modules/Plugins/PluginSettings.qml:237, Modules/Settings/DisplayWidgetsTab.qml:386, Modules/Settings/DankBarTab.qml:399, Modules/Settings/DankBarTab.qml:518, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", + "reference": "Modules/Plugins/PluginSettings.qml:237, Modules/Settings/DisplayWidgetsTab.qml:386, Modules/Settings/DankBarTab.qml:403, Modules/Settings/DankBarTab.qml:522, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", "comment": "" }, { @@ -485,6 +491,12 @@ "reference": "Modals/FileBrowser/KeyboardHints.qml:35", "comment": "" }, + { + "term": "Always Active", + "context": "Always Active", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:102", + "comment": "" + }, { "term": "Always Show Percentage", "context": "Always Show Percentage", @@ -548,13 +560,13 @@ { "term": "Anonymous Identity", "context": "Anonymous Identity", - "reference": "Modals/WifiPasswordModal.qml:150", + "reference": "Modals/WifiPasswordModal.qml:156", "comment": "" }, { "term": "Anonymous Identity (optional)", "context": "Anonymous Identity (optional)", - "reference": "Modals/WifiPasswordModal.qml:509", + "reference": "Modals/WifiPasswordModal.qml:520", "comment": "" }, { @@ -584,7 +596,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:246, Modules/Settings/ThemeColorsTab.qml:1292", + "reference": "Modules/AppDrawer/AppDrawerPopout.qml:246, Modules/Settings/ThemeColorsTab.qml:1370", "comment": "" }, { @@ -596,13 +608,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:1671", + "reference": "Modules/Settings/ThemeColorsTab.qml:1938", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:1705", + "reference": "Modules/Settings/ThemeColorsTab.qml:1972", "comment": "" }, { @@ -620,7 +632,7 @@ { "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:419", + "reference": "Modules/Settings/LauncherTab.qml:503", "comment": "" }, { @@ -704,7 +716,7 @@ { "term": "Authenticate", "context": "Authenticate", - "reference": "Modals/PolkitAuthModal.qml:313", + "reference": "Modals/PolkitAuthModal.qml:319", "comment": "" }, { @@ -716,13 +728,13 @@ { "term": "Authentication Required", "context": "Authentication Required", - "reference": "Modals/PolkitAuthModal.qml:134", + "reference": "Modals/PolkitAuthModal.qml:138", "comment": "" }, { "term": "Authentication failed, please try again", "context": "Authentication failed, please try again", - "reference": "Modals/PolkitAuthModal.qml:242", + "reference": "Modals/PolkitAuthModal.qml:248", "comment": "" }, { @@ -764,7 +776,7 @@ { "term": "Auto Popup Gaps", "context": "Auto Popup Gaps", - "reference": "Modules/Settings/DankBarTab.qml:934", + "reference": "Modules/Settings/DankBarTab.qml:938", "comment": "" }, { @@ -773,6 +785,12 @@ "reference": "Modules/Settings/ClipboardTab.qml:285", "comment": "" }, + { + "term": "Auto-Hide Timeout", + "context": "Auto-Hide Timeout", + "reference": "Modules/Settings/ThemeColorsTab.qml:1548", + "comment": "" + }, { "term": "Auto-close Niri overview when launching apps.", "context": "Auto-close Niri overview when launching apps.", @@ -788,7 +806,7 @@ { "term": "Auto-hide", "context": "Auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:665", + "reference": "Modules/Settings/DankBarTab.qml:669", "comment": "" }, { @@ -812,13 +830,13 @@ { "term": "Autoconnect disabled", "context": "Autoconnect disabled", - "reference": "Services/DMSNetworkService.qml:938", + "reference": "Services/DMSNetworkService.qml:937", "comment": "" }, { "term": "Autoconnect enabled", "context": "Autoconnect enabled", - "reference": "Services/DMSNetworkService.qml:938", + "reference": "Services/DMSNetworkService.qml:937", "comment": "" }, { @@ -956,13 +974,13 @@ { "term": "Bar Configurations", "context": "Bar Configurations", - "reference": "Modules/Settings/DankBarTab.qml:307", + "reference": "Modules/Settings/DankBarTab.qml:311", "comment": "" }, { "term": "Bar Transparency", "context": "Bar Transparency", - "reference": "Modules/Settings/DankBarTab.qml:1239", + "reference": "Modules/Settings/DankBarTab.qml:1365", "comment": "" }, { @@ -1076,7 +1094,7 @@ { "term": "Border", "context": "Border", - "reference": "Modules/Settings/DockTab.qml:213, Modules/Settings/DockTab.qml:217, Modules/Settings/DankBarTab.qml:1057", + "reference": "Modules/Settings/DockTab.qml:213, Modules/Settings/DockTab.qml:217, Modules/Settings/DankBarTab.qml:1183", "comment": "" }, { @@ -1094,7 +1112,7 @@ { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1054, Modules/Settings/ThemeColorsTab.qml:1157, Modules/Settings/ThemeColorsTab.qml:1260", + "reference": "Modules/Settings/ThemeColorsTab.qml:1132, Modules/Settings/ThemeColorsTab.qml:1235, Modules/Settings/ThemeColorsTab.qml:1338", "comment": "" }, { @@ -1106,7 +1124,7 @@ { "term": "Bottom", "context": "Bottom", - "reference": "Modules/Settings/DankBarTab.qml:376, Modules/Settings/DankBarTab.qml:610", + "reference": "Modules/Settings/DankBarTab.qml:380, Modules/Settings/DankBarTab.qml:614", "comment": "" }, { @@ -1172,7 +1190,7 @@ { "term": "Browse Themes", "context": "browse themes button | theme browser header | theme browser window title", - "reference": "Modules/Settings/ThemeColorsTab.qml:847, Modules/Settings/ThemeBrowser.qml:145, Modules/Settings/ThemeBrowser.qml:242", + "reference": "Modules/Settings/ThemeColorsTab.qml:925, Modules/Settings/ThemeBrowser.qml:145, Modules/Settings/ThemeBrowser.qml:242", "comment": "" }, { @@ -1250,7 +1268,7 @@ { "term": "Cancel", "context": "Cancel", - "reference": "Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:286, Modals/WifiPasswordModal.qml:655, Widgets/KeybindItem.qml:1539, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:113, Modules/Settings/PluginBrowser.qml:718, Modules/Settings/ThemeBrowser.qml:120", + "reference": "Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:292, Modals/WifiPasswordModal.qml:666, Widgets/KeybindItem.qml:1539, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:113, Modules/Settings/PluginBrowser.qml:718, Modules/Settings/ThemeBrowser.qml:120", "comment": "" }, { @@ -1310,13 +1328,13 @@ { "term": "Certificate Password", "context": "Certificate Password", - "reference": "Modals/WifiPasswordModal.qml:141", + "reference": "Modals/WifiPasswordModal.qml:147", "comment": "" }, { "term": "Change bar appearance", "context": "Change bar appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:889", + "reference": "Modules/Settings/ThemeColorsTab.qml:967", "comment": "" }, { @@ -1376,7 +1394,7 @@ { "term": "Choose the background color for widgets", "context": "Choose the background color for widgets", - "reference": "Modules/Settings/ThemeColorsTab.qml:904", + "reference": "Modules/Settings/ThemeColorsTab.qml:982", "comment": "" }, { @@ -1457,6 +1475,12 @@ "reference": "Modules/Settings/ClipboardTab.qml:311", "comment": "" }, + { + "term": "Click 'Setup' to create cursor config and add include to your compositor config.", + "context": "Click 'Setup' to create cursor config and add include to your compositor config.", + "reference": "Modules/Settings/ThemeColorsTab.qml:1447", + "comment": "" + }, { "term": "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.", "context": "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.", @@ -1490,7 +1514,7 @@ { "term": "Click to select a custom theme JSON file", "context": "custom theme file hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:447", + "reference": "Modules/Settings/ThemeColorsTab.qml:525", "comment": "" }, { @@ -1538,7 +1562,7 @@ { "term": "Close", "context": "Close", - "reference": "Modules/SystemUpdatePopout.qml:335, Modals/NetworkWiredInfoModal.qml:129, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:918", + "reference": "Modules/SystemUpdatePopout.qml:335, Modals/NetworkWiredInfoModal.qml:129, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:923", "comment": "" }, { @@ -1550,7 +1574,7 @@ { "term": "Color", "context": "Color", - "reference": "Modules/Settings/DankBarTab.qml:1065, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "reference": "Modules/Settings/DankBarTab.qml:1096, Modules/Settings/DankBarTab.qml:1168, Modules/Settings/DankBarTab.qml:1191, Modules/Settings/DankBarTab.qml:1279, Modules/Settings/Widgets/SettingsColorPicker.qml:29", "comment": "" }, { @@ -1568,7 +1592,7 @@ { "term": "Color Mode", "context": "Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:859", + "reference": "Modules/Settings/ThemeColorsTab.qml:937", "comment": "" }, { @@ -1610,7 +1634,7 @@ { "term": "Color theme from DMS registry", "context": "registry theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:138", + "reference": "Modules/Settings/ThemeColorsTab.qml:216", "comment": "" }, { @@ -1628,13 +1652,13 @@ { "term": "Column", "context": "Column", - "reference": "Modules/Settings/DankBarTab.qml:788, Modules/Settings/DankBarTab.qml:825", + "reference": "Modules/Settings/DankBarTab.qml:792, Modules/Settings/DankBarTab.qml:829", "comment": "" }, { "term": "Command", "context": "Command", - "reference": "Widgets/KeybindItem.qml:1376, Modules/Settings/DesktopWidgetInstanceCard.qml:263", + "reference": "Widgets/KeybindItem.qml:1376, Modules/Settings/DesktopWidgetInstanceCard.qml:280", "comment": "" }, { @@ -1706,7 +1730,7 @@ { "term": "Configuration activated", "context": "Configuration activated", - "reference": "Services/DMSNetworkService.qml:389", + "reference": "Services/DMSNetworkService.qml:388", "comment": "" }, { @@ -1778,19 +1802,19 @@ { "term": "Connect", "context": "Connect", - "reference": "Modals/WifiPasswordModal.qml:695, Modules/ControlCenter/Details/BluetoothDetail.qml:549, Modules/ControlCenter/Details/NetworkDetail.qml:717", + "reference": "Modals/WifiPasswordModal.qml:706, Modules/ControlCenter/Details/BluetoothDetail.qml:549, Modules/ControlCenter/Details/NetworkDetail.qml:717", "comment": "" }, { "term": "Connect to VPN", "context": "Connect to VPN", - "reference": "Modals/WifiPasswordModal.qml:289", + "reference": "Modals/WifiPasswordModal.qml:298", "comment": "" }, { "term": "Connect to Wi-Fi", "context": "Connect to Wi-Fi", - "reference": "Modals/WifiPasswordModal.qml:290", + "reference": "Modals/WifiPasswordModal.qml:299", "comment": "" }, { @@ -1844,13 +1868,13 @@ { "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:779", + "reference": "Modules/Settings/DankBarTab.qml:783", "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:939", + "reference": "Modules/Settings/ThemeColorsTab.qml:1017", "comment": "" }, { @@ -1862,7 +1886,7 @@ { "term": "Copied to clipboard", "context": "Copied to clipboard", - "reference": "Modals/Settings/SettingsModal.qml:282, Modals/Settings/SettingsModal.qml:299, Modals/Clipboard/ClipboardHistoryModal.qml:150, Modules/Settings/DesktopWidgetInstanceCard.qml:301", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, Modals/Settings/SettingsModal.qml:282, Modals/Settings/SettingsModal.qml:299, Modals/Clipboard/ClipboardHistoryModal.qml:150, Modules/Settings/DesktopWidgetInstanceCard.qml:318", "comment": "" }, { @@ -1871,6 +1895,12 @@ "reference": "Modules/Toast.qml:17", "comment": "" }, + { + "term": "Copy", + "context": "Copy", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170, Modals/Spotlight/SpotlightContextMenuContent.qml:89", + "comment": "" + }, { "term": "Copy PID", "context": "Copy PID", @@ -1886,19 +1916,19 @@ { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:952", + "reference": "Modules/Settings/ThemeColorsTab.qml:1030", "comment": "" }, { "term": "Corner Radius Override", "context": "Corner Radius Override", - "reference": "Modules/Settings/DankBarTab.qml:1018", + "reference": "Modules/Settings/DankBarTab.qml:1022", "comment": "" }, { "term": "Corners & Background", "context": "Corners & Background", - "reference": "Modules/Settings/DankBarTab.qml:982", + "reference": "Modules/Settings/DankBarTab.qml:986", "comment": "" }, { @@ -1970,7 +2000,7 @@ { "term": "Current Theme: %1", "context": "current theme label", - "reference": "Modules/Settings/ThemeColorsTab.qml:122, Modules/Settings/ThemeColorsTab.qml:124, Modules/Settings/ThemeColorsTab.qml:125", + "reference": "Modules/Settings/ThemeColorsTab.qml:200, Modules/Settings/ThemeColorsTab.qml:202, Modules/Settings/ThemeColorsTab.qml:203", "comment": "" }, { @@ -1997,6 +2027,30 @@ "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:194", "comment": "" }, + { + "term": "Cursor Config Not Configured", + "context": "Cursor Config Not Configured", + "reference": "Modules/Settings/ThemeColorsTab.qml:1440", + "comment": "" + }, + { + "term": "Cursor Include Missing", + "context": "Cursor Include Missing", + "reference": "Modules/Settings/ThemeColorsTab.qml:1440", + "comment": "" + }, + { + "term": "Cursor Size", + "context": "Cursor Size", + "reference": "Modules/Settings/ThemeColorsTab.qml:1488", + "comment": "" + }, + { + "term": "Cursor Theme", + "context": "Cursor Theme", + "reference": "Modules/Settings/ThemeColorsTab.qml:1398, Modules/Settings/ThemeColorsTab.qml:1472", + "comment": "" + }, { "term": "Custom", "context": "Custom", @@ -2072,7 +2126,7 @@ { "term": "Custom theme loaded from JSON file", "context": "custom theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:140", + "reference": "Modules/Settings/ThemeColorsTab.qml:218", "comment": "" }, { @@ -2198,7 +2252,7 @@ { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1626", + "reference": "Modules/Settings/ThemeColorsTab.qml:1893", "comment": "" }, { @@ -2210,7 +2264,7 @@ { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1282", + "reference": "Modules/Settings/ThemeColorsTab.qml:1360", "comment": "" }, { @@ -2354,7 +2408,7 @@ { "term": "Development", "context": "Development", - "reference": "Services/AppSearchService.qml:340, Services/AppSearchService.qml:341, Services/AppSearchService.qml:342, Widgets/DankIconPicker.qml:32", + "reference": "Services/AppSearchService.qml:455, Services/AppSearchService.qml:456, Services/AppSearchService.qml:457, Widgets/DankIconPicker.qml:32", "comment": "" }, { @@ -2408,7 +2462,7 @@ { "term": "Disabled", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NetworkTab.qml:756, Modules/Settings/DankBarTab.qml:431, Modules/Settings/NotificationsTab.qml:176, Modules/Settings/DisplayConfig/DisplayConfigState.qml:847, Modules/Settings/DisplayConfig/DisplayConfigState.qml:853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:855, Modules/Settings/DisplayConfig/DisplayConfigState.qml:867", + "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NetworkTab.qml:756, Modules/Settings/DankBarTab.qml:435, Modules/Settings/NotificationsTab.qml:176, Modules/Settings/DisplayConfig/DisplayConfigState.qml:847, Modules/Settings/DisplayConfig/DisplayConfigState.qml:853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:855, Modules/Settings/DisplayConfig/DisplayConfigState.qml:867", "comment": "" }, { @@ -2438,7 +2492,7 @@ { "term": "Disconnected from WiFi", "context": "Disconnected from WiFi", - "reference": "Services/DMSNetworkService.qml:479", + "reference": "Services/DMSNetworkService.qml:478", "comment": "" }, { @@ -2462,7 +2516,7 @@ { "term": "Display Assignment", "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:495", + "reference": "Modules/Settings/DankBarTab.qml:499", "comment": "" }, { @@ -2624,7 +2678,7 @@ { "term": "Domain (optional)", "context": "Domain (optional)", - "reference": "Modals/WifiPasswordModal.qml:540", + "reference": "Modals/WifiPasswordModal.qml:551", "comment": "" }, { @@ -2690,7 +2744,7 @@ { "term": "Dynamic", "context": "dynamic theme name", - "reference": "Modules/Settings/ThemeColorsTab.qml:122", + "reference": "Modules/Settings/ThemeColorsTab.qml:200", "comment": "" }, { @@ -2702,7 +2756,7 @@ { "term": "Dynamic colors from wallpaper", "context": "dynamic colors description", - "reference": "Modules/Settings/ThemeColorsTab.qml:369", + "reference": "Modules/Settings/ThemeColorsTab.qml:447", "comment": "" }, { @@ -2714,13 +2768,13 @@ { "term": "Edge Spacing", "context": "Edge Spacing", - "reference": "Modules/Settings/DankBarTab.qml:868", + "reference": "Modules/Settings/DankBarTab.qml:872", "comment": "" }, { "term": "Education", "context": "Education", - "reference": "Services/AppSearchService.qml:343", + "reference": "Services/AppSearchService.qml:458", "comment": "" }, { @@ -2744,7 +2798,7 @@ { "term": "Enable Bar", "context": "Enable Bar", - "reference": "Modules/Settings/DankBarTab.qml:480", + "reference": "Modules/Settings/DankBarTab.qml:484", "comment": "" }, { @@ -2840,7 +2894,7 @@ { "term": "Enter PIN for ", "context": "Enter PIN for ", - "reference": "Modals/BluetoothPairingModal.qml:137, Modals/WifiPasswordModal.qml:304", + "reference": "Modals/BluetoothPairingModal.qml:137, Modals/WifiPasswordModal.qml:313", "comment": "" }, { @@ -2852,7 +2906,7 @@ { "term": "Enter credentials for ", "context": "Enter credentials for ", - "reference": "Modals/WifiPasswordModal.qml:306, Modals/WifiPasswordModal.qml:309", + "reference": "Modals/WifiPasswordModal.qml:315, Modals/WifiPasswordModal.qml:318", "comment": "" }, { @@ -2888,7 +2942,7 @@ { "term": "Enter password for ", "context": "Enter password for ", - "reference": "Modals/WifiPasswordModal.qml:308, Modals/WifiPasswordModal.qml:309", + "reference": "Modals/WifiPasswordModal.qml:317, Modals/WifiPasswordModal.qml:318", "comment": "" }, { @@ -2924,7 +2978,7 @@ { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:175, Modules/Settings/DankBarTab.qml:888", + "reference": "Modules/Settings/DockTab.qml:175, Modules/Settings/DankBarTab.qml:892", "comment": "" }, { @@ -2978,7 +3032,7 @@ { "term": "Failed to activate configuration", "context": "Failed to activate configuration", - "reference": "Services/DMSNetworkService.qml:385", + "reference": "Services/DMSNetworkService.qml:384", "comment": "" }, { @@ -3008,13 +3062,13 @@ { "term": "Failed to connect VPN", "context": "Failed to connect VPN", - "reference": "Services/DMSNetworkService.qml:829", + "reference": "Services/DMSNetworkService.qml:828", "comment": "" }, { "term": "Failed to connect to %1", "context": "Failed to connect to %1", - "reference": "Services/DMSNetworkService.qml:356", + "reference": "Services/DMSNetworkService.qml:355", "comment": "" }, { @@ -3062,19 +3116,19 @@ { "term": "Failed to disconnect VPN", "context": "Failed to disconnect VPN", - "reference": "Services/DMSNetworkService.qml:853", + "reference": "Services/DMSNetworkService.qml:852", "comment": "" }, { "term": "Failed to disconnect VPNs", "context": "Failed to disconnect VPNs", - "reference": "Services/DMSNetworkService.qml:871", + "reference": "Services/DMSNetworkService.qml:870", "comment": "" }, { "term": "Failed to disconnect WiFi", "context": "Failed to disconnect WiFi", - "reference": "Services/DMSNetworkService.qml:477", + "reference": "Services/DMSNetworkService.qml:476", "comment": "" }, { @@ -3086,7 +3140,7 @@ { "term": "Failed to enable WiFi", "context": "Failed to enable WiFi", - "reference": "Services/DMSNetworkService.qml:580", + "reference": "Services/DMSNetworkService.qml:579", "comment": "" }, { @@ -3134,7 +3188,7 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:905", + "reference": "Common/SettingsData.qml:946", "comment": "" }, { @@ -3146,7 +3200,7 @@ { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:842, Common/SettingsData.qml:1901", + "reference": "Common/SettingsData.qml:883, Common/SettingsData.qml:2037", "comment": "" }, { @@ -3242,7 +3296,7 @@ { "term": "Failed to start connection to %1", "context": "Failed to start connection to %1", - "reference": "Services/DMSNetworkService.qml:464", + "reference": "Services/DMSNetworkService.qml:463", "comment": "" }, { @@ -3254,7 +3308,7 @@ { "term": "Failed to update autoconnect", "context": "Failed to update autoconnect", - "reference": "Services/DMSNetworkService.qml:936", + "reference": "Services/DMSNetworkService.qml:935", "comment": "" }, { @@ -3362,13 +3416,13 @@ { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/KeybindsTab.qml:339, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:78", + "reference": "Modules/Settings/ThemeColorsTab.qml:1458, Modules/Settings/KeybindsTab.qml:339, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:78", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/KeybindsTab.qml:336, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:75", + "reference": "Modules/Settings/ThemeColorsTab.qml:1458, Modules/Settings/KeybindsTab.qml:336, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:75", "comment": "" }, { @@ -3422,7 +3476,7 @@ { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:196, Modules/Settings/DankBarTab.qml:1283", + "reference": "Modules/Settings/TypographyMotionTab.qml:196, Modules/Settings/DankBarTab.qml:1409", "comment": "" }, { @@ -3458,7 +3512,7 @@ { "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:1311", + "reference": "Modules/Settings/ThemeColorsTab.qml:1389", "comment": "" }, { @@ -3506,7 +3560,7 @@ { "term": "Forgot network %1", "context": "Forgot network %1", - "reference": "Services/DMSNetworkService.qml:537", + "reference": "Services/DMSNetworkService.qml:536", "comment": "" }, { @@ -3536,7 +3590,7 @@ { "term": "G: grid • Z/X: size", "context": "Widget grid keyboard hints", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:658", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:665", "comment": "" }, { @@ -3560,7 +3614,7 @@ { "term": "Games", "context": "Games", - "reference": "Services/AppSearchService.qml:344", + "reference": "Services/AppSearchService.qml:459", "comment": "" }, { @@ -3602,13 +3656,13 @@ { "term": "Goth Corner Radius", "context": "Goth Corner Radius", - "reference": "Modules/Settings/DankBarTab.qml:1035", + "reference": "Modules/Settings/DankBarTab.qml:1039", "comment": "" }, { "term": "Goth Corners", "context": "Goth Corners", - "reference": "Modules/Settings/DankBarTab.qml:1010", + "reference": "Modules/Settings/DankBarTab.qml:1014", "comment": "" }, { @@ -3632,7 +3686,7 @@ { "term": "Graphics", "context": "Graphics", - "reference": "Services/AppSearchService.qml:345, Services/AppSearchService.qml:346", + "reference": "Services/AppSearchService.qml:460, Services/AppSearchService.qml:461", "comment": "" }, { @@ -3650,13 +3704,13 @@ { "term": "Grid: OFF", "context": "Widget grid snap status", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:628", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:635", "comment": "" }, { "term": "Grid: ON", "context": "Widget grid snap status", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:628", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:635", "comment": "" }, { @@ -3740,7 +3794,7 @@ { "term": "Hide Delay", "context": "Hide Delay", - "reference": "Modules/Settings/DankBarTab.qml:691", + "reference": "Modules/Settings/DankBarTab.qml:695", "comment": "" }, { @@ -3749,10 +3803,40 @@ "reference": "Modules/Settings/SystemUpdaterTab.qml:29", "comment": "" }, + { + "term": "Hide When Typing", + "context": "Hide When Typing", + "reference": "Modules/Settings/ThemeColorsTab.qml:1502", + "comment": "" + }, { "term": "Hide When Windows Open", "context": "Hide When Windows Open", - "reference": "Modules/Settings/DankBarTab.qml:715", + "reference": "Modules/Settings/DankBarTab.qml:719", + "comment": "" + }, + { + "term": "Hide cursor after inactivity (0 = disabled)", + "context": "Hide cursor after inactivity (0 = disabled)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1549", + "comment": "" + }, + { + "term": "Hide cursor when pressing keyboard keys", + "context": "Hide cursor when pressing keyboard keys", + "reference": "Modules/Settings/ThemeColorsTab.qml:1503", + "comment": "" + }, + { + "term": "Hide cursor when using touch input", + "context": "Hide cursor when using touch input", + "reference": "Modules/Settings/ThemeColorsTab.qml:1532", + "comment": "" + }, + { + "term": "Hide on Touch", + "context": "Hide on Touch", + "reference": "Modules/Settings/ThemeColorsTab.qml:1531", "comment": "" }, { @@ -3860,7 +3944,7 @@ { "term": "Hyprland Layout Overrides", "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1069", + "reference": "Modules/Settings/ThemeColorsTab.qml:1147", "comment": "" }, { @@ -3890,7 +3974,7 @@ { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1618, Modules/Settings/ThemeColorsTab.qml:1625", + "reference": "Modules/Settings/ThemeColorsTab.qml:1885, Modules/Settings/ThemeColorsTab.qml:1892", "comment": "" }, { @@ -3968,7 +4052,7 @@ { "term": "Incorrect password", "context": "Incorrect password", - "reference": "Modals/WifiPasswordModal.qml:320", + "reference": "Modals/WifiPasswordModal.qml:329", "comment": "" }, { @@ -4016,7 +4100,7 @@ { "term": "Install", "context": "install action button", - "reference": "Modules/Settings/PluginBrowser.qml:112, Modules/Settings/PluginBrowser.qml:543, Modules/Settings/ThemeBrowser.qml:119, Modules/Settings/ThemeBrowser.qml:652", + "reference": "Modules/Settings/PluginBrowser.qml:112, Modules/Settings/PluginBrowser.qml:543, Modules/Settings/ThemeBrowser.qml:119, Modules/Settings/ThemeBrowser.qml:647", "comment": "" }, { @@ -4046,7 +4130,7 @@ { "term": "Install matugen package for dynamic theming", "context": "matugen installation hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:366", + "reference": "Modules/Settings/ThemeColorsTab.qml:444", "comment": "" }, { @@ -4070,7 +4154,7 @@ { "term": "Installed", "context": "installed status", - "reference": "Modules/Settings/PluginBrowser.qml:543, Modules/Settings/ThemeBrowser.qml:655", + "reference": "Modules/Settings/PluginBrowser.qml:543, Modules/Settings/ThemeBrowser.qml:650", "comment": "" }, { @@ -4085,6 +4169,12 @@ "reference": "Modules/Settings/PluginBrowser.qml:73, Modules/Settings/ThemeBrowser.qml:64", "comment": "" }, + { + "term": "Intensity", + "context": "shadow intensity slider", + "reference": "Modules/Settings/DankBarTab.qml:1068", + "comment": "" + }, { "term": "Interface:", "context": "Interface:", @@ -4100,7 +4190,7 @@ { "term": "Internet", "context": "Internet", - "reference": "Services/AppSearchService.qml:347, Services/AppSearchService.qml:348, Services/AppSearchService.qml:349", + "reference": "Services/AppSearchService.qml:462, Services/AppSearchService.qml:463, Services/AppSearchService.qml:464", "comment": "" }, { @@ -4163,12 +4253,30 @@ "reference": "Widgets/KeybindItem.qml:553", "comment": "" }, + { + "term": "Keybind Sources", + "context": "Keybind Sources", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:138", + "comment": "" + }, { "term": "Keybinds", "context": "greeter settings link", "reference": "Modals/Greeter/GreeterCompletePage.qml:413", "comment": "" }, + { + "term": "Keybinds Search Settings", + "context": "Keybinds Search Settings", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:66", + "comment": "" + }, + { + "term": "Keybinds shown alongside regular search results", + "context": "Keybinds shown alongside regular search results", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:103", + "comment": "" + }, { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", @@ -4214,31 +4322,31 @@ { "term": "Last launched %1", "context": "Last launched %1", - "reference": "Modules/Settings/LauncherTab.qml:512", + "reference": "Modules/Settings/LauncherTab.qml:596", "comment": "" }, { "term": "Last launched %1 day%2 ago", "context": "Last launched %1 day%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:511", + "reference": "Modules/Settings/LauncherTab.qml:595", "comment": "" }, { "term": "Last launched %1 hour%2 ago", "context": "Last launched %1 hour%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:509", + "reference": "Modules/Settings/LauncherTab.qml:593", "comment": "" }, { "term": "Last launched %1 minute%2 ago", "context": "Last launched %1 minute%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:507", + "reference": "Modules/Settings/LauncherTab.qml:591", "comment": "" }, { "term": "Last launched just now", "context": "Last launched just now", - "reference": "Modules/Settings/LauncherTab.qml:505", + "reference": "Modules/Settings/LauncherTab.qml:589", "comment": "" }, { @@ -4250,7 +4358,7 @@ { "term": "Launch", "context": "Launch", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:51, Modules/AppDrawer/AppDrawerPopout.qml:874", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:127, Modules/AppDrawer/AppDrawerPopout.qml:874", "comment": "" }, { @@ -4262,7 +4370,7 @@ { "term": "Launch on dGPU", "context": "Launch on dGPU", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:62, Modules/AppDrawer/AppDrawerPopout.qml:934, Modules/Dock/DockContextMenu.qml:432", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:138, Modules/AppDrawer/AppDrawerPopout.qml:934, Modules/Dock/DockContextMenu.qml:432", "comment": "" }, { @@ -4292,7 +4400,7 @@ { "term": "Left", "context": "Left", - "reference": "Modules/Settings/DankBarTab.qml:378, Modules/Settings/DankBarTab.qml:610, Modules/DankBar/Popouts/BatteryPopout.qml:527", + "reference": "Modules/Settings/DankBarTab.qml:382, Modules/Settings/DankBarTab.qml:614, Modules/DankBar/Popouts/BatteryPopout.qml:527", "comment": "" }, { @@ -4304,7 +4412,7 @@ { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:867, Modules/Settings/WallpaperTab.qml:379", + "reference": "Modules/Settings/ThemeColorsTab.qml:945, Modules/Settings/WallpaperTab.qml:379", "comment": "" }, { @@ -4346,7 +4454,7 @@ { "term": "Loading...", "context": "loading indicator", - "reference": "Widgets/VpnProfileDelegate.qml:220, Modules/Settings/PluginBrowser.qml:378, Modules/Settings/PrinterTab.qml:367, Modules/Settings/ThemeBrowser.qml:357, Modules/Settings/NetworkTab.qml:618, Modules/Settings/NetworkTab.qml:1291, Modules/Settings/NetworkTab.qml:1771", + "reference": "Widgets/VpnProfileDelegate.qml:220, Modules/Settings/PluginBrowser.qml:378, Modules/Settings/PrinterTab.qml:367, Modules/Settings/ThemeBrowser.qml:356, Modules/Settings/NetworkTab.qml:618, Modules/Settings/NetworkTab.qml:1291, Modules/Settings/NetworkTab.qml:1771", "comment": "" }, { @@ -4466,7 +4574,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:315", + "reference": "Modules/Settings/DankBarTab.qml:319", "comment": "" }, { @@ -4478,7 +4586,7 @@ { "term": "MangoWC Layout Overrides", "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1172", + "reference": "Modules/Settings/ThemeColorsTab.qml:1250", "comment": "" }, { @@ -4490,13 +4598,13 @@ { "term": "Manual Gap Size", "context": "Manual Gap Size", - "reference": "Modules/Settings/DankBarTab.qml:960", + "reference": "Modules/Settings/DankBarTab.qml:964", "comment": "" }, { "term": "Manual Show/Hide", "context": "Manual Show/Hide", - "reference": "Modules/Settings/DankBarTab.qml:734", + "reference": "Modules/Settings/DankBarTab.qml:738", "comment": "" }, { @@ -4538,25 +4646,25 @@ { "term": "Material Design inspired color themes", "context": "generic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:141", + "reference": "Modules/Settings/ThemeColorsTab.qml:219", "comment": "" }, { "term": "Material colors generated from wallpaper", "context": "dynamic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:136", + "reference": "Modules/Settings/ThemeColorsTab.qml:214", "comment": "" }, { "term": "Matugen Missing", "context": "matugen not found status", - "reference": "Modules/Settings/ThemeColorsTab.qml:349", + "reference": "Modules/Settings/ThemeColorsTab.qml:427", "comment": "" }, { "term": "Matugen Palette", "context": "Matugen Palette", - "reference": "Modules/Settings/ThemeColorsTab.qml:385", + "reference": "Modules/Settings/ThemeColorsTab.qml:463", "comment": "" }, { @@ -4568,7 +4676,7 @@ { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1320", + "reference": "Modules/Settings/ThemeColorsTab.qml:1587", "comment": "" }, { @@ -4580,7 +4688,7 @@ { "term": "Maximize Detection", "context": "Maximize Detection", - "reference": "Modules/Settings/DankBarTab.qml:767", + "reference": "Modules/Settings/DankBarTab.qml:771", "comment": "" }, { @@ -4616,7 +4724,7 @@ { "term": "Media", "context": "Media", - "reference": "Services/AppSearchService.qml:337, Services/AppSearchService.qml:338, Services/AppSearchService.qml:339, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1028, Widgets/KeybindItem.qml:1037, Widgets/KeybindItem.qml:1043, Modules/DankDash/DankDashPopout.qml:276", + "reference": "Services/AppSearchService.qml:452, Services/AppSearchService.qml:453, Services/AppSearchService.qml:454, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1028, Widgets/KeybindItem.qml:1037, Widgets/KeybindItem.qml:1043, Modules/DankDash/DankDashPopout.qml:276", "comment": "" }, { @@ -4760,7 +4868,7 @@ { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1275", + "reference": "Modules/Settings/ThemeColorsTab.qml:1353", "comment": "" }, { @@ -4835,6 +4943,18 @@ "reference": "Modules/ProcessList/SystemTab.qml:431", "comment": "" }, + { + "term": "Mouse pointer appearance", + "context": "Mouse pointer appearance", + "reference": "Modules/Settings/ThemeColorsTab.qml:1473", + "comment": "" + }, + { + "term": "Mouse pointer size in pixels", + "context": "Mouse pointer size in pixels", + "reference": "Modules/Settings/ThemeColorsTab.qml:1489", + "comment": "" + }, { "term": "Move Widget", "context": "Move Widget", @@ -5006,7 +5126,7 @@ { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:966", + "reference": "Modules/Settings/ThemeColorsTab.qml:1044", "comment": "" }, { @@ -5030,7 +5150,7 @@ { "term": "No Background", "context": "No Background", - "reference": "Modules/Settings/DankBarTab.qml:995", + "reference": "Modules/Settings/DankBarTab.qml:999", "comment": "" }, { @@ -5120,7 +5240,7 @@ { "term": "No custom theme file", "context": "no custom theme file status", - "reference": "Modules/Settings/ThemeColorsTab.qml:438", + "reference": "Modules/Settings/ThemeColorsTab.qml:516", "comment": "" }, { @@ -5222,19 +5342,19 @@ { "term": "No themes found", "context": "empty theme list", - "reference": "Modules/Settings/ThemeBrowser.qml:688", + "reference": "Modules/Settings/ThemeBrowser.qml:683", "comment": "" }, { "term": "No themes installed. Browse themes to install from the registry.", "context": "no registry themes installed hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:837", + "reference": "Modules/Settings/ThemeColorsTab.qml:915", "comment": "" }, { "term": "No wallpaper selected", "context": "no wallpaper status", - "reference": "Modules/Settings/ThemeColorsTab.qml:352", + "reference": "Modules/Settings/ThemeColorsTab.qml:430", "comment": "" }, { @@ -5258,7 +5378,7 @@ { "term": "None", "context": "None", - "reference": "Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/DankBarTab.qml:788, Modules/Settings/DankBarTab.qml:788, Modules/Settings/DankBarTab.qml:825, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", + "reference": "Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/DankBarTab.qml:792, Modules/Settings/DankBarTab.qml:792, Modules/Settings/DankBarTab.qml:829, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", "comment": "" }, { @@ -5294,7 +5414,7 @@ { "term": "Not detected", "context": "Not detected", - "reference": "Modules/Settings/ThemeColorsTab.qml:29, Modules/Settings/ThemeColorsTab.qml:30", + "reference": "Modules/Settings/ThemeColorsTab.qml:104, Modules/Settings/ThemeColorsTab.qml:105", "comment": "" }, { @@ -5306,7 +5426,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:639, Modules/Settings/WidgetsTab.qml:224", + "reference": "DMSShell.qml:641, Services/AppSearchService.qml:61, Modules/Settings/WidgetsTab.qml:224", "comment": "" }, { @@ -5408,7 +5528,7 @@ { "term": "Office", "context": "Office", - "reference": "Services/AppSearchService.qml:350, Services/AppSearchService.qml:351, Services/AppSearchService.qml:352, Services/AppSearchService.qml:353", + "reference": "Services/AppSearchService.qml:465, Services/AppSearchService.qml:466, Services/AppSearchService.qml:467, Services/AppSearchService.qml:468", "comment": "" }, { @@ -5456,7 +5576,7 @@ { "term": "Opacity", "context": "Opacity", - "reference": "Modals/DankColorPickerModal.qml:468, Modules/Settings/DankBarTab.qml:1102, Modules/Settings/DankBarTab.qml:1190", + "reference": "Modals/DankColorPickerModal.qml:468, Modules/Settings/DankBarTab.qml:1080, Modules/Settings/DankBarTab.qml:1228, Modules/Settings/DankBarTab.qml:1316", "comment": "" }, { @@ -5546,19 +5666,19 @@ { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1038, Modules/Settings/ThemeColorsTab.qml:1141, Modules/Settings/ThemeColorsTab.qml:1244", + "reference": "Modules/Settings/ThemeColorsTab.qml:1116, Modules/Settings/ThemeColorsTab.qml:1219, Modules/Settings/ThemeColorsTab.qml:1322", "comment": "" }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1007, Modules/Settings/ThemeColorsTab.qml:1110, Modules/Settings/ThemeColorsTab.qml:1213", + "reference": "Modules/Settings/ThemeColorsTab.qml:1085, Modules/Settings/ThemeColorsTab.qml:1188, Modules/Settings/ThemeColorsTab.qml:1291", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:975, Modules/Settings/ThemeColorsTab.qml:1078, Modules/Settings/ThemeColorsTab.qml:1181", + "reference": "Modules/Settings/ThemeColorsTab.qml:1053, Modules/Settings/ThemeColorsTab.qml:1156, Modules/Settings/ThemeColorsTab.qml:1259", "comment": "" }, { @@ -5594,7 +5714,7 @@ { "term": "PIN", "context": "PIN", - "reference": "Modals/WifiPasswordModal.qml:146", + "reference": "Modals/WifiPasswordModal.qml:152", "comment": "" }, { @@ -5642,7 +5762,7 @@ { "term": "Password", "context": "Password", - "reference": "Modals/WifiPasswordModal.qml:138, Modals/WifiPasswordModal.qml:148, Modals/WifiPasswordModal.qml:472", + "reference": "Modals/WifiPasswordModal.qml:144, Modals/WifiPasswordModal.qml:154, Modals/WifiPasswordModal.qml:483", "comment": "" }, { @@ -5708,13 +5828,13 @@ { "term": "Pin", "context": "Pin", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:323, Modules/ControlCenter/Details/BrightnessDetail.qml:204, Modules/ControlCenter/Details/AudioInputDetail.qml:244, Modules/ControlCenter/Details/AudioOutputDetail.qml:256, Modules/ControlCenter/Details/NetworkDetail.qml:638", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/ControlCenter/Details/BluetoothDetail.qml:323, Modules/ControlCenter/Details/BrightnessDetail.qml:204, Modules/ControlCenter/Details/AudioInputDetail.qml:244, Modules/ControlCenter/Details/AudioOutputDetail.qml:256, Modules/ControlCenter/Details/NetworkDetail.qml:638", "comment": "" }, { "term": "Pin to Dock", "context": "Pin to Dock", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:26, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:102, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", "comment": "" }, { @@ -5822,7 +5942,7 @@ { "term": "Popup Transparency", "context": "Popup Transparency", - "reference": "Modules/Settings/ThemeColorsTab.qml:938", + "reference": "Modules/Settings/ThemeColorsTab.qml:1016", "comment": "" }, { @@ -5834,7 +5954,7 @@ { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:30, Modules/Settings/DankBarTab.qml:599, Modules/Settings/DisplayConfig/DisplayConfigState.qml:839", + "reference": "Modules/Settings/DockTab.qml:30, Modules/Settings/DankBarTab.qml:603, Modules/Settings/DisplayConfig/DisplayConfigState.qml:839", "comment": "" }, { @@ -6026,7 +6146,7 @@ { "term": "Private Key Password", "context": "Private Key Password", - "reference": "Modals/WifiPasswordModal.qml:143", + "reference": "Modals/WifiPasswordModal.qml:149", "comment": "" }, { @@ -6134,7 +6254,7 @@ { "term": "Recently Used Apps", "context": "Recently Used Apps", - "reference": "Modules/Settings/LauncherTab.qml:385", + "reference": "Modules/Settings/LauncherTab.qml:469", "comment": "" }, { @@ -6176,7 +6296,7 @@ { "term": "Remove gaps and border when windows are maximized", "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:768", + "reference": "Modules/Settings/DankBarTab.qml:772", "comment": "" }, { @@ -6290,7 +6410,7 @@ { "term": "Right", "context": "Right", - "reference": "Modules/Settings/DankBarTab.qml:380, Modules/Settings/DankBarTab.qml:610", + "reference": "Modules/Settings/DankBarTab.qml:384, Modules/Settings/DankBarTab.qml:614", "comment": "" }, { @@ -6332,19 +6452,19 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1024", + "reference": "Modules/Settings/ThemeColorsTab.qml:1102", "comment": "" }, { "term": "Rounded corners for windows (border_radius)", "context": "Rounded corners for windows (border_radius)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1230", + "reference": "Modules/Settings/ThemeColorsTab.qml:1308", "comment": "" }, { "term": "Rounded corners for windows (decoration.rounding)", "context": "Rounded corners for windows (decoration.rounding)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1127", + "reference": "Modules/Settings/ThemeColorsTab.qml:1205", "comment": "" }, { @@ -6356,13 +6476,13 @@ { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1339", + "reference": "Modules/Settings/ThemeColorsTab.qml:1606", "comment": "" }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1329", + "reference": "Modules/Settings/ThemeColorsTab.qml:1596", "comment": "" }, { @@ -6446,7 +6566,7 @@ { "term": "Save password", "context": "Save password", - "reference": "Modals/WifiPasswordModal.qml:627", + "reference": "Modals/WifiPasswordModal.qml:638", "comment": "" }, { @@ -6470,7 +6590,7 @@ { "term": "Scale DankBar font sizes independently", "context": "Scale DankBar font sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1284", + "reference": "Modules/Settings/DankBarTab.qml:1410", "comment": "" }, { @@ -6500,7 +6620,7 @@ { "term": "Science", "context": "Science", - "reference": "Services/AppSearchService.qml:354", + "reference": "Services/AppSearchService.qml:469", "comment": "" }, { @@ -6512,7 +6632,7 @@ { "term": "Scroll Wheel", "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:56, Modules/Settings/DankBarTab.qml:778", + "reference": "Modules/Settings/MediaPlayerTab.qml:56, Modules/Settings/DankBarTab.qml:782", "comment": "" }, { @@ -6539,6 +6659,12 @@ "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:52", "comment": "" }, + { + "term": "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", + "context": "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:209", + "comment": "" + }, { "term": "Search file contents", "context": "Search file contents", @@ -6563,6 +6689,12 @@ "reference": "Modules/Settings/KeybindsTab.qml:233", "comment": "" }, + { + "term": "Search keyboard shortcuts from your compositor and applications", + "context": "Search keyboard shortcuts from your compositor and applications", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:74", + "comment": "" + }, { "term": "Search plugins...", "context": "plugin search placeholder", @@ -6626,7 +6758,7 @@ { "term": "Select Custom Theme", "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:1746", + "reference": "Modules/Settings/ThemeColorsTab.qml:2013", "comment": "" }, { @@ -6677,6 +6809,12 @@ "reference": "Modules/Settings/LauncherTab.qml:130", "comment": "" }, + { + "term": "Select at least one provider", + "context": "Select at least one provider", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:170", + "comment": "" + }, { "term": "Select device...", "context": "Select device...", @@ -6722,7 +6860,13 @@ { "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:386", + "reference": "Modules/Settings/ThemeColorsTab.qml:464", + "comment": "" + }, + { + "term": "Select which keybind providers to include", + "context": "Select which keybind providers to include", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:145", "comment": "" }, { @@ -6776,7 +6920,7 @@ { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:355, Services/PopoutService.qml:260, Services/PopoutService.qml:277, Modals/Settings/SettingsSidebar.qml:110, Modals/Settings/SettingsModal.qml:59, Modals/Settings/SettingsModal.qml:189, Modules/DankDash/DankDashPopout.qml:293", + "reference": "Services/AppSearchService.qml:50, Services/AppSearchService.qml:83, Services/AppSearchService.qml:470, Services/PopoutService.qml:275, Services/PopoutService.qml:292, Modals/Settings/SettingsSidebar.qml:110, Modals/Settings/SettingsModal.qml:59, Modals/Settings/SettingsModal.qml:189, Modules/DankDash/DankDashPopout.qml:293", "comment": "" }, { @@ -6788,7 +6932,13 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/KeybindsTab.qml:338, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:77", + "reference": "Modules/Settings/ThemeColorsTab.qml:1458, Modules/Settings/KeybindsTab.qml:338, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:77", + "comment": "" + }, + { + "term": "Shadow", + "context": "bar shadow settings card", + "reference": "Modules/Settings/DankBarTab.qml:1061", "comment": "" }, { @@ -7100,7 +7250,7 @@ { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1283", + "reference": "Modules/Settings/ThemeColorsTab.qml:1361", "comment": "" }, { @@ -7112,7 +7262,7 @@ { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:407, Modules/Settings/DankBarTab.qml:530", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:407, Modules/Settings/DankBarTab.qml:534", "comment": "" }, { @@ -7124,7 +7274,13 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/DesktopWidgetInstanceCard.qml:238, Modules/Settings/DankBarTab.qml:754", + "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/DesktopWidgetInstanceCard.qml:238, Modules/Settings/DankBarTab.qml:758", + "comment": "" + }, + { + "term": "Show on Overview Only", + "context": "Show on Overview Only", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:255", "comment": "" }, { @@ -7202,7 +7358,7 @@ { "term": "Show password", "context": "Show password", - "reference": "Modals/WifiPasswordModal.qml:587", + "reference": "Modals/WifiPasswordModal.qml:598", "comment": "" }, { @@ -7268,7 +7424,7 @@ { "term": "Size", "context": "Size", - "reference": "Modules/ProcessList/SystemTab.qml:442, Modules/Settings/DankBarTab.qml:908", + "reference": "Modules/ProcessList/SystemTab.qml:442, Modules/Settings/DankBarTab.qml:912", "comment": "" }, { @@ -7298,13 +7454,13 @@ { "term": "Smartcard Authentication", "context": "Smartcard Authentication", - "reference": "Modals/WifiPasswordModal.qml:287", + "reference": "Modals/WifiPasswordModal.qml:296", "comment": "" }, { "term": "Smartcard PIN", "context": "Smartcard PIN", - "reference": "Modals/WifiPasswordModal.qml:209", + "reference": "Modals/WifiPasswordModal.qml:215", "comment": "" }, { @@ -7346,19 +7502,19 @@ { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:993", + "reference": "Modules/Settings/ThemeColorsTab.qml:1071", "comment": "" }, { "term": "Space between windows (gappih/gappiv/gappoh/gappov)", "context": "Space between windows (gappih/gappiv/gappoh/gappov)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1199", + "reference": "Modules/Settings/ThemeColorsTab.qml:1277", "comment": "" }, { "term": "Space between windows (gaps_in and gaps_out)", "context": "Space between windows (gaps_in and gaps_out)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1096", + "reference": "Modules/Settings/ThemeColorsTab.qml:1174", "comment": "" }, { @@ -7370,7 +7526,7 @@ { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:162, Modules/Settings/DankBarTab.qml:862", + "reference": "Modules/Settings/DockTab.qml:162, Modules/Settings/DankBarTab.qml:866", "comment": "" }, { @@ -7394,7 +7550,7 @@ { "term": "Square Corners", "context": "Square Corners", - "reference": "Modules/Settings/DankBarTab.qml:987", + "reference": "Modules/Settings/DankBarTab.qml:991", "comment": "" }, { @@ -7477,8 +7633,8 @@ }, { "term": "Surface", - "context": "Surface", - "reference": "Modules/Settings/LauncherTab.qml:179", + "context": "shadow color option", + "reference": "Modules/Settings/LauncherTab.qml:179, Modules/Settings/DankBarTab.qml:1112", "comment": "" }, { @@ -7520,25 +7676,25 @@ { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:1300", + "reference": "Modules/Settings/ThemeColorsTab.qml:1378", "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:1301", + "reference": "Modules/Settings/ThemeColorsTab.qml:1379", "comment": "" }, { "term": "System", "context": "System", - "reference": "Services/AppSearchService.qml:356, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:235, Modules/ProcessList/SystemTab.qml:127", + "reference": "Services/AppSearchService.qml:471, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:235, Modules/ProcessList/SystemTab.qml:127", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:1644", + "reference": "Modules/Settings/ThemeColorsTab.qml:1911", "comment": "" }, { @@ -7550,7 +7706,7 @@ { "term": "System Monitor", "context": "System monitor widget name | sysmon window title", - "reference": "Modals/ProcessListModal.qml:49, Modals/ProcessListModal.qml:65, Modals/ProcessListModal.qml:203, Services/DesktopWidgetRegistry.qml:54", + "reference": "Modals/ProcessListModal.qml:49, Modals/ProcessListModal.qml:65, Modals/ProcessListModal.qml:203, Services/AppSearchService.qml:72, Services/DesktopWidgetRegistry.qml:54", "comment": "" }, { @@ -7640,7 +7796,7 @@ { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1310", + "reference": "Modules/Settings/ThemeColorsTab.qml:1388", "comment": "" }, { @@ -7657,8 +7813,8 @@ }, { "term": "Text", - "context": "Text", - "reference": "Modals/Clipboard/ClipboardEntry.qml:80", + "context": "shadow color option", + "reference": "Modals/Clipboard/ClipboardEntry.qml:80, Modules/Settings/DankBarTab.qml:1112", "comment": "" }, { @@ -7676,7 +7832,7 @@ { "term": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", "context": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", - "reference": "Modules/Settings/ThemeColorsTab.qml:1607", + "reference": "Modules/Settings/ThemeColorsTab.qml:1874", "comment": "" }, { @@ -7694,7 +7850,7 @@ { "term": "Theme Color", "context": "Theme Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:101", + "reference": "Modules/Settings/ThemeColorsTab.qml:179", "comment": "" }, { @@ -7712,7 +7868,7 @@ { "term": "Thickness", "context": "Thickness", - "reference": "Modules/Settings/DankBarTab.qml:1123, Modules/Settings/DankBarTab.qml:1211", + "reference": "Modules/Settings/DankBarTab.qml:1249, Modules/Settings/DankBarTab.qml:1337", "comment": "" }, { @@ -7838,7 +7994,7 @@ { "term": "Toggle visibility of this bar configuration", "context": "Toggle visibility of this bar configuration", - "reference": "Modules/Settings/DankBarTab.qml:484", + "reference": "Modules/Settings/DankBarTab.qml:488", "comment": "" }, { @@ -7874,7 +8030,7 @@ { "term": "Top", "context": "Top", - "reference": "Modules/Settings/DankBarTab.qml:374, Modules/Settings/DankBarTab.qml:382, Modules/Settings/DankBarTab.qml:610", + "reference": "Modules/Settings/DankBarTab.qml:378, Modules/Settings/DankBarTab.qml:386, Modules/Settings/DankBarTab.qml:614", "comment": "" }, { @@ -7928,7 +8084,19 @@ { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:196, Modules/Settings/DankBarTab.qml:1233, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:87, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342", + "reference": "Modules/Settings/DockTab.qml:196, Modules/Settings/DankBarTab.qml:1359, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:87, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342", + "comment": "" + }, + { + "term": "Trigger", + "context": "Trigger", + "reference": "Modules/Settings/LauncherTab.qml:448", + "comment": "" + }, + { + "term": "Trigger Prefix", + "context": "Trigger Prefix", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:117", "comment": "" }, { @@ -7943,6 +8111,12 @@ "reference": "Widgets/KeybindItem.qml:767", "comment": "" }, + { + "term": "Type this prefix to search keybinds", + "context": "Type this prefix to search keybinds", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:118", + "comment": "" + }, { "term": "Typography", "context": "Typography", @@ -7964,7 +8138,7 @@ { "term": "Uninstall", "context": "uninstall action button", - "reference": "Modules/Settings/ThemeBrowser.qml:654", + "reference": "Modules/Settings/ThemeBrowser.qml:649", "comment": "" }, { @@ -7976,25 +8150,25 @@ { "term": "Uninstall failed: %1", "context": "uninstallation error", - "reference": "Modules/Settings/ThemeColorsTab.qml:630, Modules/Settings/ThemeBrowser.qml:96", + "reference": "Modules/Settings/ThemeColorsTab.qml:708, Modules/Settings/ThemeBrowser.qml:96", "comment": "" }, { "term": "Uninstalled: %1", "context": "uninstallation success", - "reference": "Modules/Settings/ThemeColorsTab.qml:633, Modules/Settings/ThemeBrowser.qml:99", + "reference": "Modules/Settings/ThemeColorsTab.qml:711, Modules/Settings/ThemeBrowser.qml:99", "comment": "" }, { "term": "Uninstalling: %1", "context": "uninstallation progress", - "reference": "Modules/Settings/ThemeColorsTab.qml:627, Modules/Settings/ThemeBrowser.qml:93", + "reference": "Modules/Settings/ThemeColorsTab.qml:705, Modules/Settings/ThemeBrowser.qml:93", "comment": "" }, { "term": "Unknown", "context": "unknown author", - "reference": "Modules/Lock/LockScreenContent.qml:370, Modules/Lock/LockScreenContent.qml:490, Modules/Lock/LockScreenContent.qml:586, Modules/Settings/PluginBrowser.qml:492, Modules/Settings/PrinterTab.qml:1285, Modules/Settings/ThemeBrowser.qml:531, Modules/Settings/NetworkTab.qml:122, Modules/Settings/NetworkTab.qml:164, Modules/Settings/NetworkTab.qml:370, Modules/Settings/NetworkTab.qml:391, Modules/Settings/NetworkTab.qml:539, Modules/Settings/NetworkTab.qml:682, Modules/Settings/NetworkTab.qml:1091, Modules/ControlCenter/Details/BatteryDetail.qml:177, Modules/ControlCenter/Components/HeaderPane.qml:60", + "reference": "Modules/Lock/LockScreenContent.qml:370, Modules/Lock/LockScreenContent.qml:490, Modules/Lock/LockScreenContent.qml:586, Modules/Settings/PluginBrowser.qml:492, Modules/Settings/PrinterTab.qml:1285, Modules/Settings/ThemeBrowser.qml:526, Modules/Settings/NetworkTab.qml:122, Modules/Settings/NetworkTab.qml:164, Modules/Settings/NetworkTab.qml:370, Modules/Settings/NetworkTab.qml:391, Modules/Settings/NetworkTab.qml:539, Modules/Settings/NetworkTab.qml:682, Modules/Settings/NetworkTab.qml:1091, Modules/ControlCenter/Details/BatteryDetail.qml:177, Modules/ControlCenter/Components/HeaderPane.qml:60", "comment": "" }, { @@ -8021,10 +8195,16 @@ "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:552", "comment": "" }, + { + "term": "Unpin", + "context": "Unpin", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165", + "comment": "" + }, { "term": "Unpin from Dock", "context": "Unpin from Dock", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:26, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:102, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", "comment": "" }, { @@ -8063,6 +8243,12 @@ "reference": "Modules/Settings/PluginListItem.qml:213", "comment": "" }, + { + "term": "Usage Tips", + "context": "Usage Tips", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:200", + "comment": "" + }, { "term": "Use 24-hour time format instead of 12-hour AM/PM", "context": "Use 24-hour time format instead of 12-hour AM/PM", @@ -8126,13 +8312,13 @@ { "term": "Use custom border size", "context": "Use custom border size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1142, Modules/Settings/ThemeColorsTab.qml:1245", + "reference": "Modules/Settings/ThemeColorsTab.qml:1220, Modules/Settings/ThemeColorsTab.qml:1323", "comment": "" }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", - "reference": "Modules/Settings/ThemeColorsTab.qml:1039", + "reference": "Modules/Settings/ThemeColorsTab.qml:1117", "comment": "" }, { @@ -8144,19 +8330,19 @@ { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/ThemeColorsTab.qml:976, Modules/Settings/ThemeColorsTab.qml:1079, Modules/Settings/ThemeColorsTab.qml:1182", + "reference": "Modules/Settings/ThemeColorsTab.qml:1054, Modules/Settings/ThemeColorsTab.qml:1157, Modules/Settings/ThemeColorsTab.qml:1260", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1008, Modules/Settings/ThemeColorsTab.qml:1214", + "reference": "Modules/Settings/ThemeColorsTab.qml:1086, Modules/Settings/ThemeColorsTab.qml:1292", "comment": "" }, { "term": "Use custom window rounding instead of theme radius", "context": "Use custom window rounding instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1111", + "reference": "Modules/Settings/ThemeColorsTab.qml:1189", "comment": "" }, { @@ -8168,7 +8354,7 @@ { "term": "Use light theme instead of dark theme", "context": "Use light theme instead of dark theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:868", + "reference": "Modules/Settings/ThemeColorsTab.qml:946", "comment": "" }, { @@ -8177,6 +8363,12 @@ "reference": "Modules/Settings/SoundsTab.qml:60", "comment": "" }, + { + "term": "Use trigger prefix to activate", + "context": "Use trigger prefix to activate", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:103", + "comment": "" + }, { "term": "Use%", "context": "Use%", @@ -8204,7 +8396,7 @@ { "term": "Username", "context": "Username", - "reference": "Modals/WifiPasswordModal.qml:136, Modals/WifiPasswordModal.qml:440, Widgets/VpnProfileDelegate.qml:42, Modules/Settings/NetworkTab.qml:1797", + "reference": "Modals/WifiPasswordModal.qml:142, Modals/WifiPasswordModal.qml:451, Widgets/VpnProfileDelegate.qml:42, Modules/Settings/NetworkTab.qml:1797", "comment": "" }, { @@ -8216,7 +8408,7 @@ { "term": "Utilities", "context": "Utilities", - "reference": "Services/AppSearchService.qml:357, Services/AppSearchService.qml:358, Services/AppSearchService.qml:359, Services/AppSearchService.qml:360", + "reference": "Services/AppSearchService.qml:472, Services/AppSearchService.qml:473, Services/AppSearchService.qml:474, Services/AppSearchService.qml:475", "comment": "" }, { @@ -8234,7 +8426,7 @@ { "term": "VPN Password", "context": "VPN Password", - "reference": "Modals/WifiPasswordModal.qml:211", + "reference": "Modals/WifiPasswordModal.qml:217", "comment": "" }, { @@ -8342,7 +8534,7 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/Settings/TimeWeatherTab.qml:1035, Modules/Settings/DankBarTab.qml:660, Modules/DankBar/Widgets/WeatherForecastCard.qml:80", + "reference": "Modules/Settings/TimeWeatherTab.qml:1035, Modules/Settings/DankBarTab.qml:664, Modules/DankBar/Widgets/WeatherForecastCard.qml:80", "comment": "" }, { @@ -8396,7 +8588,7 @@ { "term": "Wallpaper Error", "context": "wallpaper error status", - "reference": "Modules/Settings/ThemeColorsTab.qml:347", + "reference": "Modules/Settings/ThemeColorsTab.qml:425", "comment": "" }, { @@ -8408,13 +8600,13 @@ { "term": "Wallpaper processing failed", "context": "wallpaper processing error", - "reference": "Modules/Settings/ThemeColorsTab.qml:364", + "reference": "Modules/Settings/ThemeColorsTab.qml:442", "comment": "" }, { "term": "Wallpaper processing failed - check wallpaper path", "context": "wallpaper error", - "reference": "Modules/Settings/ThemeColorsTab.qml:200", + "reference": "Modules/Settings/ThemeColorsTab.qml:278", "comment": "" }, { @@ -8486,7 +8678,7 @@ { "term": "Wi-Fi Password", "context": "Wi-Fi Password", - "reference": "Modals/WifiPasswordModal.qml:212", + "reference": "Modals/WifiPasswordModal.qml:218", "comment": "" }, { @@ -8516,13 +8708,13 @@ { "term": "WiFi disabled", "context": "WiFi disabled", - "reference": "Services/DMSNetworkService.qml:570", + "reference": "Services/DMSNetworkService.qml:569", "comment": "" }, { "term": "WiFi enabled", "context": "WiFi enabled", - "reference": "Services/DMSNetworkService.qml:570, Services/DMSNetworkService.qml:582", + "reference": "Services/DMSNetworkService.qml:569, Services/DMSNetworkService.qml:581", "comment": "" }, { @@ -8540,7 +8732,7 @@ { "term": "Widget Background Color", "context": "Widget Background Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:903", + "reference": "Modules/Settings/ThemeColorsTab.qml:981", "comment": "" }, { @@ -8552,25 +8744,25 @@ { "term": "Widget Outline", "context": "Widget Outline", - "reference": "Modules/Settings/DankBarTab.qml:1145", + "reference": "Modules/Settings/DankBarTab.qml:1271", "comment": "" }, { "term": "Widget Style", "context": "Widget Style", - "reference": "Modules/Settings/ThemeColorsTab.qml:888", + "reference": "Modules/Settings/ThemeColorsTab.qml:966", "comment": "" }, { "term": "Widget Styling", "context": "Widget Styling", - "reference": "Modules/Settings/ThemeColorsTab.qml:880", + "reference": "Modules/Settings/ThemeColorsTab.qml:958", "comment": "" }, { "term": "Widget Transparency", "context": "Widget Transparency", - "reference": "Modules/Settings/DankBarTab.qml:1260", + "reference": "Modules/Settings/DankBarTab.qml:1386", "comment": "" }, { @@ -8600,19 +8792,19 @@ { "term": "Width of window border (borderpx)", "context": "Width of window border (borderpx)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1261", + "reference": "Modules/Settings/ThemeColorsTab.qml:1339", "comment": "" }, { "term": "Width of window border (general.border_size)", "context": "Width of window border (general.border_size)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1158", + "reference": "Modules/Settings/ThemeColorsTab.qml:1236", "comment": "" }, { "term": "Width of window border and focus ring", "context": "Width of window border and focus ring", - "reference": "Modules/Settings/ThemeColorsTab.qml:1055", + "reference": "Modules/Settings/ThemeColorsTab.qml:1133", "comment": "" }, { @@ -8630,13 +8822,13 @@ { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1023, Modules/Settings/ThemeColorsTab.qml:1229", + "reference": "Modules/Settings/ThemeColorsTab.qml:1101, Modules/Settings/ThemeColorsTab.qml:1307", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:992, Modules/Settings/ThemeColorsTab.qml:1095, Modules/Settings/ThemeColorsTab.qml:1198", + "reference": "Modules/Settings/ThemeColorsTab.qml:1070, Modules/Settings/ThemeColorsTab.qml:1173, Modules/Settings/ThemeColorsTab.qml:1276", "comment": "" }, { @@ -8648,13 +8840,13 @@ { "term": "Window Rounding", "context": "Window Rounding", - "reference": "Modules/Settings/ThemeColorsTab.qml:1126", + "reference": "Modules/Settings/ThemeColorsTab.qml:1204", "comment": "" }, { "term": "Workspace", "context": "Workspace", - "reference": "Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:788, Modules/Settings/DankBarTab.qml:788, Modules/Settings/DankBarTab.qml:825", + "reference": "Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:792, Modules/Settings/DankBarTab.qml:792, Modules/Settings/DankBarTab.qml:829", "comment": "" }, { @@ -8702,13 +8894,13 @@ { "term": "X Axis", "context": "X Axis", - "reference": "Modules/Settings/DankBarTab.qml:823", + "reference": "Modules/Settings/DankBarTab.qml:827", "comment": "" }, { "term": "Y Axis", "context": "Y Axis", - "reference": "Modules/Settings/DankBarTab.qml:787", + "reference": "Modules/Settings/DankBarTab.qml:791", "comment": "" }, { @@ -8762,7 +8954,7 @@ { "term": "by %1", "context": "author attribution", - "reference": "Modules/Settings/PluginBrowser.qml:492, Modules/Settings/ThemeBrowser.qml:531", + "reference": "Modules/Settings/PluginBrowser.qml:492, Modules/Settings/ThemeBrowser.qml:526", "comment": "" }, { @@ -8789,6 +8981,12 @@ "reference": "Services/KeybindsService.qml:218", "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:1447", + "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.", @@ -8840,7 +9038,7 @@ { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:198", + "reference": "Modules/Settings/ThemeColorsTab.qml:276", "comment": "" }, { @@ -8870,7 +9068,7 @@ { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:462, Modules/Settings/ThemeBrowser.qml:498", + "reference": "Modules/Settings/PluginBrowser.qml:462, Modules/Settings/ThemeBrowser.qml:493", "comment": "" }, { diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index 246ebc59..fe9834c3 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "Activar" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "Activo" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Atrás • F1/I: Información del archivo • F10: Ayuda • Esc: Cerrar+" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "Mostrar siempre el porcentaje" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "Limpiar automáticamente despues" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "Cierre automático de la vista general de Niri al iniciar aplicaciones." }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "Limpiar al inicio" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Haz clic en \"Configurar\" para crear dms/binds.kdl y añadir include a config.kdl." }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "¡Copiado!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "Copiar ID del Proceso" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "Actual: %1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "Personal" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "Ocultar Retardo" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "Ocultar opciones cuando hay ventanas abiertas" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Ocultar el dock cuando no esté en uso y mostrarlo cuando se pasé el ratón cerca del área de este" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "Tecla" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Distribución de teclado" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "Montar" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "Mover widget" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "Desplazamiento" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "Buscar dentro de los archivos" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "Buscar combinaciones de tecla" }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "Buscar complementos..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "Selecciona un archivo de imagen..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "Elegir dispositivo..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "Selecciona el algoritmo de colores del fondo de pantalla" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "Seleccionar transiciones para aplicar de forma aleatoria" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "Mostrar en vista general" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "Mostrar en todas las pantallas conectadas" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "Transparencia" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "Apagar monitores después de" }, "Type": { "Type": "Tipo" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "Tipografía" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "Red desconocida" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "Desfijar del dock" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "Actualizar complemento" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "Usar formato de 24 horas en lugar de 12 horas AM/PM" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Usar tema de sonidos del sistema" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "Usar%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "por %1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Busqueda de temas" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl esta ahora incluido en config.kdl" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configuración dms/outputs existe pero no está incluida en la configuración del compositor. Los cambios de visualización no persistirán." }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "Widgets" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "fuente" }, diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json index 7b8c5606..80718720 100644 --- a/quickshell/translations/poexports/fa.json +++ b/quickshell/translations/poexports/fa.json @@ -15,7 +15,7 @@ "%1 connected": "%1 متصل" }, "%1 days ago": { - "%1 days ago": "" + "%1 days ago": "%1 روز پیش" }, "%1 display(s)": { "%1 display(s)": "%1 نمایشگر" @@ -24,7 +24,7 @@ "%1 job(s)": "%1 کار چاپ" }, "%1 notifications": { - "%1 notifications": "" + "%1 notifications": "%1 اعلان" }, "%1 printer(s)": { "%1 printer(s)": "%1 چاپگر" @@ -36,13 +36,13 @@ "%1 widgets": "%1 ابزارک" }, "%1m ago": { - "%1m ago": "" + "%1m ago": "%1 دقیقه پیش" }, "(Unnamed)": { "(Unnamed)": "(بدون نام)" }, "+ %1 more": { - "+ %1 more": "" + "+ %1 more": "+ %1 بیشتر" }, "0 = square corners": { "0 = square corners": "۰ = گوشه‌های مربعی" @@ -57,7 +57,7 @@ "1 minute": "۱ دقیقه" }, "1 notification": { - "1 notification": "" + "1 notification": "1 اعلان" }, "1 second": { "1 second": "۱ ثانیه" @@ -138,7 +138,7 @@ "About": "درباره" }, "Accent Color": { - "Accent Color": "" + "Accent Color": "رنگ تأکیدی" }, "Accept Jobs": { "Accept Jobs": "پذیرش کار‌های چاپ" @@ -164,6 +164,9 @@ "Activate": { "Activate": "فعال‌سازی" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "فعال" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: بازگشت • F1/I: اطلاعات فایل • F10: راهنما • Esc: بستن" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "همیشه درصد را نشان بده" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "پاک‌کردن خودکار پس از" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "هنگام اجرای برنامه‌ها نمای کلی نیری را خودکار ببند." }, @@ -516,7 +525,7 @@ "Border Opacity": "شفافیت حاشیه" }, "Border Size": { - "Border Size": "" + "Border Size": "اندازه حاشیه" }, "Border Thickness": { "Border Thickness": "ضخامت حاشیه" @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "پاک‌کردن در هنگام راه‌اندازی" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "برای ایجاد dms/binds.kdl و افزودن include به config.kdl، روی «راه‌اندازی» کلیک کنید." }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "کپی شد!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "کپی PID" }, @@ -932,11 +947,23 @@ "Current: %1": { "Current: %1": "کنونی: %1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "سفارشی" }, "Custom Color": { - "Custom Color": "" + "Custom Color": "رنگ سفارشی" }, "Custom Duration": { "Custom Duration": "مدت زمان سفارشی" @@ -1101,7 +1128,7 @@ "Desktop Clock": "ساعت دسکتاپ" }, "Detailed": { - "Detailed": "" + "Detailed": "با جزئیات" }, "Development": { "Development": "توسعه" @@ -1653,10 +1680,10 @@ "Force terminal applications to always use dark color schemes": "اجبار برنامه‌های ترمینال به استفاده از رنگ‌های تاریک" }, "Forecast": { - "Forecast": "" + "Forecast": "پیش‌بینی" }, "Forecast Days": { - "Forecast Days": "" + "Forecast Days": "پیش‌بینی روزها" }, "Forecast Not Available": { "Forecast Not Available": "پیش‌بینی موجود نیست" @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "تأخیر پنهان‌شدن" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "وقتی پنجره‌ها باز هستند پنهان کن" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "داک را هنگامی که استفاده نمی‌شود پنهان کن و هنگامی که موشواره نزدیک آن است نشان بده" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "کلید" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "نام جانمایی صفحه‌کلید" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "نصب‌کردن" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "انتقال ابزارک" }, @@ -2358,7 +2415,7 @@ "No VPN profiles": "پروفایل VPN یافت نشد" }, "No Weather Data": { - "No Weather Data": "" + "No Weather Data": "بدون داده آب و هوا" }, "No Weather Data Available": { "No Weather Data Available": "داده آب و هوا در دسترس نیست" @@ -2451,7 +2508,7 @@ "Not connected": "متصل نیست" }, "Not detected": { - "Not detected": "" + "Not detected": "تشخیص داده نشد" }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "نکته: این تنها درصد را تغییر می‌دهد، به طور واقعی محدودیت روی شارژ کردن اعمال نمی‌کند." @@ -2487,7 +2544,7 @@ "Notification toast popups": "پاپ‌آپ‌های اعلان به صورت تُست" }, "Notifications": { - "Notifications": "اعلانات" + "Notifications": "اعلان‌ها" }, "Numbers": { "Numbers": "شماره‌ها" @@ -2568,7 +2625,7 @@ "Override": "جایگزین" }, "Override Border Size": { - "Override Border Size": "" + "Override Border Size": "بازنویسی اندازه حاشیه" }, "Override Corner Radius": { "Override Corner Radius": "جایگزینی شعاع گوشه‌ها" @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "اسکرولینگ" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "جستجو در محتوای فایل" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "جستجو در کلید‌های میانبر..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "جستجوی افزونه‌ها..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "انتخاب فایل تصویر..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "انتخاب دستگاه..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "انتخاب الگوریتم پالت رنگی استفاده شده برای رنگ‌های بر اساس تصویر پس‌زمینه" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "انتخاب کنید کدام گذارها در تصادفی‌سازی باشند" }, @@ -3186,7 +3255,7 @@ "Show Feels Like Temperature": "" }, "Show Forecast": { - "Show Forecast": "" + "Show Forecast": "نمایش پیش‌بینی" }, "Show GPU Temperature": { "Show GPU Temperature": "نمایش دمای GPU" @@ -3201,16 +3270,16 @@ "Show Hour Numbers": "نمایش شماره‌های ساعت" }, "Show Hourly Forecast": { - "Show Hourly Forecast": "" + "Show Hourly Forecast": "نمایش پیش‌بینی ساعتی" }, "Show Humidity": { - "Show Humidity": "" + "Show Humidity": "نمایش رطوبت" }, "Show Line Numbers": { "Show Line Numbers": "نمایش شماره خطوط" }, "Show Location": { - "Show Location": "" + "Show Location": "نمایش موقعیت مکانی" }, "Show Lock": { "Show Lock": "نمایش قفل" @@ -3240,7 +3309,7 @@ "Show Precipitation Probability": "" }, "Show Pressure": { - "Show Pressure": "" + "Show Pressure": "نمایش فشار" }, "Show Reboot": { "Show Reboot": "نمایش راه‌اندازی مجدد" @@ -3252,7 +3321,7 @@ "Show Seconds": "نمایش ثانیه‌ها" }, "Show Sunrise/Sunset": { - "Show Sunrise/Sunset": "" + "Show Sunrise/Sunset": "نمایش طلوع/غروب" }, "Show Suspend": { "Show Suspend": "نمایش تعلیق" @@ -3261,13 +3330,13 @@ "Show Top Processes": "نمایش فرایند‌های مهم" }, "Show Weather Condition": { - "Show Weather Condition": "" + "Show Weather Condition": "نمایش شرایط آب و هوا" }, "Show Welcome": { - "Show Welcome": "" + "Show Welcome": "نمایش خوش آمدید" }, "Show Wind Speed": { - "Show Wind Speed": "" + "Show Wind Speed": "نمایش سرعت باد" }, "Show Workspace Apps": { "Show Workspace Apps": "نمایش برنامه‌های workspace" @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "نمایش روی نمای کلی" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "نمایش همه نمایشگر‌های متصل" }, @@ -3426,7 +3498,7 @@ "Stacked": "انباشته" }, "Standard": { - "Standard": "" + "Standard": "استاندارد" }, "Start": { "Start": "شروع" @@ -3528,7 +3600,7 @@ "System theme toggle": "تغییر تم سیستم" }, "System toast notifications": { - "System toast notifications": "اعلانات سیستم به صورت تُست" + "System toast notifications": "اعلان‌های سیستم به صورت تُست" }, "System update custom command": { "System update custom command": "دستور سفارشی بروزرسانی سیستم" @@ -3651,7 +3723,7 @@ "Toner Low": "تونر کم است" }, "Tools": { - "Tools": "" + "Tools": "ابزارها" }, "Top": { "Top": "بالا" @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "شفافیت" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "خاموش‌کردن مانیتور پس از" }, "Type": { "Type": "نوع" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "تایپوگرافی" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "شبکه ناشناخته" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "جداکردن از داک" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "بروزرسانی افزونه" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "استفاده از قالب 24 ساعته به جای 12 ساعته ق.ظ/ب.ظ" }, @@ -3765,10 +3852,10 @@ "Use animated wave progress bars for media playback": "استفاده از نوارهای پیشرفت موجی متحرک برای پخش رسانه" }, "Use custom border size": { - "Use custom border size": "" + "Use custom border size": "از اندازه حاشیه سفارشی استفاده کن" }, "Use custom border/focus-ring width": { - "Use custom border/focus-ring width": "" + "Use custom border/focus-ring width": "از طول حاشیه/focus-ring سفارشی استفاده کن" }, "Use custom command for update your system": { "Use custom command for update your system": "استفاده از دستور سفارشی برای بروزرسانی سیستم شما" @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "استفاده از تم صدا در تنظیمات سیستم" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "استفاده%" }, @@ -3876,7 +3966,7 @@ "Vibrant palette with playful saturation.": "پالتر رنگی پر جنب و جوش با اشباع رنگی سرزنده." }, "View Mode": { - "View Mode": "" + "View Mode": "حالت نمایش" }, "Visibility": { "Visibility": "دید" @@ -4019,7 +4109,7 @@ "Window Gaps (px)": "فاصله پنجره‌ها (px)" }, "Window Rounding": { - "Window Rounding": "" + "Window Rounding": "گردی پنجره" }, "Workspace": { "Workspace": "Workspace" @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "توسط %1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "مرور تم‌ها" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl اکنون در config.kdl گنجانده شده است" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "پیکربندی dms/outputs وجود دارد اما در پیکربندی کامپوزیتور شما گنجانده نشده است. تغییرات نمایشگر پایدار نخواهند بود." }, @@ -4142,102 +4238,102 @@ "Material Design inspired color themes": "رنگ‌های تم الهام گرفته شده از متریال دیزاین" }, "greeter back button": { - "Back": "" + "Back": "بازگشت" }, "greeter completion page subtitle": { "DankMaterialShell is ready to use": "" }, "greeter completion page title": { - "You're All Set!": "" + "You're All Set!": "همه چیز آماده است!" }, "greeter configure keybinds link": { "Configure Keybinds": "" }, "greeter dankbar description": { - "Widgets, layout, style": "" + "Widgets, layout, style": "ابزارک‌ها، layout، استایل" }, "greeter displays description": { - "Resolution, position, scale": "" + "Resolution, position, scale": "وضوح، موقعیت، مقیاس" }, "greeter dock description": { "Position, pinned apps": "" }, "greeter doctor page button": { - "Run Again": "" + "Run Again": "اجرای دوباره" }, "greeter doctor page empty state": { "No checks passed": "", - "No errors": "", + "No errors": "بدون خطا", "No info items": "", - "No warnings": "" + "No warnings": "بدون اخطار" }, "greeter doctor page error count": { - "%1 issue(s) found": "" + "%1 issue(s) found": "%1 مشکل پیدا شد" }, "greeter doctor page loading text": { "Analyzing configuration...": "" }, "greeter doctor page status card": { - "Errors": "", - "Info": "", - "OK": "", - "Warnings": "" + "Errors": "خطا‌ها", + "Info": "اطلاعات", + "OK": "باشه", + "Warnings": "اخطار‌ها" }, "greeter doctor page success": { "All checks passed": "" }, "greeter doctor page title": { - "System Check": "" + "System Check": "بررسی سیستم" }, "greeter documentation link": { - "Docs": "" + "Docs": "مستندات" }, "greeter explore section header": { "Explore": "" }, "greeter feature card description": { "Background app icons": "", - "Colors from wallpaper": "", - "Community themes": "", + "Colors from wallpaper": "رنگ‌ها از تصویر پس‌زمینه", + "Community themes": "تم‌های کامیونیتی", "Extensible architecture": "", - "GTK, Qt, IDEs, more": "", - "Modular widget bar": "", + "GTK, Qt, IDEs, more": "GTK، Qt، IDEها و بیشتر", + "Modular widget bar": "نوار ابزارک ماژولار", "Night mode & gamma": "", - "Per-screen config": "", + "Per-screen config": "پیکربندی به ازای هر صفحه", "Quick system toggles": "" }, "greeter feature card title": { - "App Theming": "", + "App Theming": "تم برنامه", "Control Center": "", - "Display Control": "", + "Display Control": "کنترل نمایشگر", "Dynamic Theming": "", - "Multi-Monitor": "", + "Multi-Monitor": "چند مانیتوره", "System Tray": "", - "Theme Registry": "" + "Theme Registry": "مخزن تم‌ها" }, "greeter feature card title | greeter plugins link": { - "Plugins": "" + "Plugins": "افزونه‌ها" }, "greeter feature card title | greeter settings link": { - "DankBar": "" + "DankBar": "DankBar" }, "greeter finish button": { - "Finish": "" + "Finish": "پایان" }, "greeter first page button": { - "Get Started": "" + "Get Started": "شروع کنید" }, "greeter keybinds niri description": { - "niri shortcuts config": "" + "niri shortcuts config": "پیکربندی میانبرهای نیری" }, "greeter keybinds section header": { "DMS Shortcuts": "" }, "greeter modal window title": { - "Welcome": "" + "Welcome": "خوش آمدید" }, "greeter next button": { - "Next": "" + "Next": "بعدی" }, "greeter no keybinds message": { "No DMS shortcuts configured": "" @@ -4246,15 +4342,15 @@ "Popup behavior, position": "" }, "greeter settings link": { - "Displays": "", - "Dock": "", + "Displays": "نمایشگر‌ها", + "Dock": "داک", "Keybinds": "", - "Notifications": "", - "Theme & Colors": "", - "Wallpaper": "" + "Notifications": "اعلان‌ها", + "Theme & Colors": "تم و رنگ‌ها", + "Wallpaper": "تصویر پس‌زمینه" }, "greeter settings section header": { - "Configure": "" + "Configure": "پیکربندی" }, "greeter skip button": { "Skip": "" @@ -4266,19 +4362,19 @@ "Dynamic colors, presets": "" }, "greeter themes link": { - "Themes": "" + "Themes": "تم‌ها" }, "greeter wallpaper description": { - "Background image": "" + "Background image": "تصویر پس‌زمینه" }, "greeter welcome page section header": { - "Features": "" + "Features": "ویژگی‌ها" }, "greeter welcome page tagline": { "A modern desktop shell for Wayland compositors": "" }, "greeter welcome page title": { - "Welcome to DankMaterialShell": "" + "Welcome to DankMaterialShell": "به DankMaterialShell خوش آمدید" }, "install action button": { "Install": "نصب" @@ -4302,17 +4398,17 @@ "Loading...": "درحال بارگذاری..." }, "lock screen notification mode option": { - "App Names": "", + "App Names": "نام برنامه‌ها", "Count Only": "", - "Disabled": "", - "Full Content": "" + "Disabled": "غیرفعال", + "Full Content": "محتوای کامل" }, "lock screen notification privacy setting": { "Control what notification information is shown on the lock screen": "", "Notification Display": "" }, "lock screen notifications settings card": { - "Lock Screen": "" + "Lock Screen": "صفحه قفل" }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl در دسترس نیست - یکپارچه‌سازی قفل به اتصال سوکت DMS نیاز دارد" @@ -4342,36 +4438,36 @@ "No wallpaper selected": "هیچ تصویر پس‌زمینه‌ای انتخاب نشده" }, "notification center tab": { - "Current": "", - "History": "" + "Current": "کنونی", + "History": "تاریخچه" }, "notification history filter": { - "All": "", - "Last hour": "", - "Today": "", - "Yesterday": "" + "All": "همه", + "Last hour": "ساعت گذشته", + "Today": "امروز", + "Yesterday": "دیروز" }, "notification history filter for content older than other filters": { - "Older": "" + "Older": "قدیمی‌تر" }, "notification history filter | notification history retention option": { - "30 days": "", - "7 days": "" + "30 days": "30 روز", + "7 days": "7 روز" }, "notification history limit": { - "Maximum number of notifications to keep": "" + "Maximum number of notifications to keep": "بیشینه تعداد اعلان‌هایی که باید نگه داشته شوند" }, "notification history retention option": { - "1 day": "", - "14 days": "", - "3 days": "", - "Forever": "" + "1 day": "1 روز", + "14 days": "14 روز", + "3 days": "3 روز", + "Forever": "برای همیشه" }, "notification history retention settings label": { - "History Retention": "" + "History Retention": "نگهداری تاریخچه" }, "notification history setting": { - "Auto-delete notifications older than this": "", + "Auto-delete notifications older than this": "اعلان‌های قدیمی تر از این را خودکار حذف کن", "Save critical priority notifications to history": "", "Save low priority notifications to history": "", "Save normal priority notifications to history": "" @@ -4380,10 +4476,10 @@ "Save dismissed notifications to history": "" }, "notification history toggle label": { - "Enable History": "" + "Enable History": "فعال‌کردن تاریخچه" }, "now": { - "now": "" + "now": "اکنون" }, "official": { "official": "رسمی" @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "ابزارک‌ها" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "منبع" }, @@ -4482,7 +4585,7 @@ "wtype not available - install wtype for paste support": "wtype در دسترس نیست - wtype را برای پشتیبانی از الصاق نصب کنید" }, "yesterday": { - "yesterday": "" + "yesterday": "دیروز" }, "• Install only from trusted sources": { "• Install only from trusted sources": "نصب تنها از منابع معتبر" diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index f0645f51..8c3bd7b9 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "הפעל/י" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "פעיל" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: חזרה • F1/I: מידע על הקובץ • F10: עזרה • Esc: סגירה" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "הצג/י תמיד אחוזים" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "" }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "הועתק!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "העתק/י PID" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "מותאם אישית" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "עיכוב הסתרה" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "הסתר/י את הDock כשאינו בשימוש והצג/י אותו מחדש בעת ריחוף ליד אזור העגינה" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "מקש" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "שם פריסת המקלדת" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "טעינה" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "גלילה" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "חפש/י בתוכן הקבצים" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "חפש/י קיצורי מקלדת..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "חפש/י תוספים..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "בחר/י קובץ תמונה..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "בחר/י התקן..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "בחר/י את האלגוריתם שייקבע את פלטת הצבעים עבור צבעים מבוססי תמונת רקע" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "בחר/י אילו מעברים לכלול באקראיות" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "הצג/י בתצוגת סקירה" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "הצג/י בכל המסכים המחוברים" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "שקיפות" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "כבה/י את כל המסכים לאחר" }, "Type": { "Type": "סוג" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "טיפוגרפיה" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "בטל/י נעיצה על הDock" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "עדכן/י תוסף" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "השתמש/י בתבנית 24 שעות במקום 12 שעות (AM/PM)" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "השתמש/י בערכת הצלילים מהגדרות המערכת" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "השתמש/י ב%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl כעת כלול בconfig.kdl" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index 4038de21..80523b8f 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "Aktiválás" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "Aktív" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Vissza • F1/I: Fájlinfó • F10: Súgó • Esc: Bezárás" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "Mindig mutassa a százalékot" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "Automatikus törlés" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "A Niri-áttekintés automatikus bezárása alkalmazások indításakor." }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "Törlés indításkor" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Kattints a „Beállítás” gombra a dms/binds.kdl létrehozásához és az include bejegyzés hozzádásához a config.kdl fájlhoz." }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "Másolva!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "PID másolása" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "Jelenleg: %1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "Egyéni" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "Elrejtési késleltetés" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "Elrejtés, amikor ablakok vannak megnyitva" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Dokk elrejtése, amikor az nincs használatban és megjelenítés, amikor az egér a dokkterület közelében van" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "Billentyű" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Billentyűzetkiosztás neve" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "Csatlakoztatás" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "Widget mozgatása" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "Görgetés" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "Fájltartalom keresése" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "Billentyűk keresése…" }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "Bővítmények keresése…" }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "Képfájl kiválasztása…" }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "Eszköz kiválasztása…" }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "Válaszd ki a háttérkép alapú színekhez használt paletta algoritmust" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "Válaszd ki, mely átmenetek legyenek a véletlenszerűsítésben" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "Megjelenítés az áttekintésben" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "Megjelenítés minden csatlakoztatott kijelzőn" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "Átlátszóság" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "Monitorok kikapcsolása ennyi idő után:" }, "Type": { "Type": "Típus" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "Tipográfia" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "Ismeretlen hálózat" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "Rögzítés feloldása a Dokkról" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "Bővítmény frissítése" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "24 órás időformátum használata a 12 órás AM/PM formátum helyett" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Hangtéma használata a rendszerbeállításokból" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "Használat%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "ettől: %1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Témák böngészése" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "A dms/binds.kdl most már szerepel a config.kdl fájlban" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "A dms/outputs konfiguráció létezik, de nincs benne a kompozitorod konfigurációjában. A kijelző változások nem maradnak meg." }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "Widgetek" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "forrás" }, diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index 55e62d3f..4f571129 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -24,7 +24,7 @@ "%1 job(s)": "%1 stampa/e" }, "%1 notifications": { - "%1 notifications": "" + "%1 notifications": "%1 notifiche" }, "%1 printer(s)": { "%1 printer(s)": "%1 stampante/i" @@ -42,7 +42,7 @@ "(Unnamed)": "(Senza Nome)" }, "+ %1 more": { - "+ %1 more": "" + "+ %1 more": "+ altre %1" }, "0 = square corners": { "0 = square corners": "0 = angoli squadrati" @@ -57,7 +57,7 @@ "1 minute": "1 minuto" }, "1 notification": { - "1 notification": "" + "1 notification": "1 notifica" }, "1 second": { "1 second": "1 secondo" @@ -138,7 +138,7 @@ "About": "Info" }, "Accent Color": { - "Accent Color": "" + "Accent Color": "Colore di Accento" }, "Accept Jobs": { "Accept Jobs": "Accetta Stampe" @@ -164,6 +164,9 @@ "Activate": { "Activate": "Attiva" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "Attivo" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Indietro • F1/I: File Info • F10: Aiuto • Esc: Chiudi" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "Mostra sempre percentuale" }, @@ -291,7 +297,7 @@ "Apps are ordered by usage frequency, then last used, then alphabetically.": "Le applicazioni sono ordinate per frequenza d'uso, poi per ultimo utilizzo, e infine in ordine alfabetico." }, "Arrange displays and configure resolution, refresh rate, and VRR": { - "Arrange displays and configure resolution, refresh rate, and VRR": "Disporre gli schermi e configurare risoluzione, frequenza di aggiornamento e VRR" + "Arrange displays and configure resolution, refresh rate, and VRR": "Disponi gli schermi e configurare risoluzione, frequenza di aggiornamento e VRR" }, "Audio": { "Audio": "Audio" @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "Cancellazione Automatica Dopo" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "Chiudi automaticamente la panoramica di Niri all'avvio delle app." }, @@ -426,7 +435,7 @@ "Available Screens (%1)": "Schermi disponibili (%1)" }, "Available in Detailed and Forecast view modes": { - "Available in Detailed and Forecast view modes": "" + "Available in Detailed and Forecast view modes": "Disponibile nelle modalità Dettagliata e Previsioni" }, "BSSID": { "BSSID": "BSSID" @@ -516,7 +525,7 @@ "Border Opacity": "Opacità Bordi" }, "Border Size": { - "Border Size": "" + "Border Size": "Spessore bordo" }, "Border Thickness": { "Border Thickness": "Spessore Bordi" @@ -612,7 +621,7 @@ "Center Section": "Sezione Centrale" }, "Center Single Column": { - "Center Single Column": "Al Centro Colonna Singola" + "Center Single Column": "Colonna Singola Centrale" }, "Center Tiling": { "Center Tiling": "Tiling Centrale" @@ -645,7 +654,7 @@ "Choose colors from palette": "Scegli i colori dalla tavolozza" }, "Choose how the weather widget is displayed": { - "Choose how the weather widget is displayed": "" + "Choose how the weather widget is displayed": "Scegli come visualizzare il widget meteo" }, "Choose icon": { "Choose icon": "Scegli icona" @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "Cancella all'Avvio" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Clicca su 'Configura' per creare dms/binds.kdl e aggiungere l'istruzione include a config.kdl." }, @@ -777,7 +789,7 @@ "Communication": "Comunicazione" }, "Compact": { - "Compact": "" + "Compact": "Compatto" }, "Compact Mode": { "Compact Mode": "Modalità Compatta" @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "Copiato!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "Copia PID" }, @@ -932,11 +947,23 @@ "Current: %1": { "Current: %1": "Attuale: %1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "Personalizzato" }, "Custom Color": { - "Custom Color": "" + "Custom Color": "Colore Personalizzato" }, "Custom Duration": { "Custom Duration": "Durata Personalizzata" @@ -1101,7 +1128,7 @@ "Desktop Clock": "Orologio Desktop" }, "Detailed": { - "Detailed": "" + "Detailed": "Dettagliata" }, "Development": { "Development": "Sviluppo" @@ -1191,7 +1218,7 @@ "Display currently focused application title": "Mostra il titolo dell'applicazione attualmente attiva" }, "Display hourly weather predictions": { - "Display hourly weather predictions": "" + "Display hourly weather predictions": "Mostra previsioni meteo orarie" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Mostra solo gli spazi di lavoro che contengono finestre" @@ -1314,7 +1341,7 @@ "Enable WiFi": "Abilita WiFi" }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { - "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Abilitare il livello di sfocatura compositore-targetable (namespace: dms:blurwallpaper). Richiede la configurazione manuale di niri." + "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Abilita il livello di sfocatura compositore-targetable (namespace: dms:blurwallpaper). Richiede la configurazione manuale di niri." }, "Enable fingerprint authentication": { "Enable fingerprint authentication": "Abilita autenticazione biometrica" @@ -1569,7 +1596,7 @@ "Failed to write temp file for validation": "Impossibile scrivere il file temporaneo per la validazione" }, "Feels": { - "Feels": "" + "Feels": "Percepita" }, "Feels Like": { "Feels Like": "Temp. percepita" @@ -1653,10 +1680,10 @@ "Force terminal applications to always use dark color schemes": "Forza applicazioni da terminale ad usare schemi di colori scuri" }, "Forecast": { - "Forecast": "" + "Forecast": "Previsioni" }, "Forecast Days": { - "Forecast Days": "" + "Forecast Days": "Giorni di Previsione" }, "Forecast Not Available": { "Forecast Not Available": "Previsioni Non Disponibili" @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "Ritardo Nascondi" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "Nascondi Quando le Finestre Sono Aperte" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando non è in uso e mostrala quando il cursore passa vicino all’area della dock" }, @@ -1812,7 +1854,7 @@ "Hourly Forecast": "Previsioni Orarie" }, "Hourly Forecast Count": { - "Hourly Forecast Count": "" + "Hourly Forecast Count": "Numero di Previsioni Orarie" }, "How often to change wallpaper": { "How often to change wallpaper": "Quanto spesso cambiare lo sfondo" @@ -1821,7 +1863,7 @@ "Humidity": "Umidità" }, "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "" + "Hyprland Layout Overrides": "Sovrascritture Layout di Hyprland" }, "I Understand": { "I Understand": "Ho capito" @@ -1937,6 +1979,15 @@ "Key": { "Key": "Tasto" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Nome Layout Tastiera" }, @@ -2091,7 +2142,7 @@ "Management": "Gestione" }, "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "" + "MangoWC Layout Overrides": "Sovrascritture Layout di MangoWC" }, "Manual Coordinates": { "Manual Coordinates": "Coordinate Manuali" @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "Monta" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "Sposta Widget" }, @@ -2358,7 +2415,7 @@ "No VPN profiles": "Nessun profilo VPN" }, "No Weather Data": { - "No Weather Data": "" + "No Weather Data": "Nessun Dato Meteo" }, "No Weather Data Available": { "No Weather Data Available": "Nessun Dato Meteo Disponibile" @@ -2451,7 +2508,7 @@ "Not connected": "Non connesso" }, "Not detected": { - "Not detected": "" + "Not detected": "Non rilevato" }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "Nota: questa opzione modifica solo la percentuale visualizzata, non limita fisicamente la carica." @@ -2568,7 +2625,7 @@ "Override": "Sovrascrivi" }, "Override Border Size": { - "Override Border Size": "" + "Override Border Size": "Sovrascrivi Spessore Bordi" }, "Override Corner Radius": { "Override Corner Radius": "Sovrascrivi Raggio Angoli" @@ -2745,7 +2802,7 @@ "Power source": "Sorgente di alimentazione" }, "Precip": { - "Precip": "" + "Precip": "Precipitazioni" }, "Precipitation Chance": { "Precipitation Chance": "Probabilità di Precipitazioni" @@ -2949,10 +3006,10 @@ "Rounded corners for windows": "Angoli arrotondati per le finestre" }, "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "" + "Rounded corners for windows (border_radius)": "Angoli arrotondati per le finestre (border_radius)" }, "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "" + "Rounded corners for windows (decoration.rounding)": "Angoli arrotondati per le finestre (decoration.rounding)" }, "Run DMS Templates": { "Run DMS Templates": "Esegui Template DMS" @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "Scorrimento" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "Cerca il contenuto dei file" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "Cerca scorciatoie..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "Cerca plugin..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "Seleziona un'immagine" }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "Seleziona un dispositivo..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "Seleziona l'algoritmo tavolozza usato per i colori basati sullo sfondo" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "Seleziona quali transizioni includere nella randomizzazione" }, @@ -3153,7 +3222,7 @@ "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Invio: Incolla • Shift+Canc: Cancella Tutto • Esc: Chiudi" }, "Short": { - "Short": "Corto" + "Short": "Breve" }, "Shortcuts": { "Shortcuts": "Scorciatoie" @@ -3183,10 +3252,10 @@ "Show Dock": "Mostra Dock" }, "Show Feels Like Temperature": { - "Show Feels Like Temperature": "" + "Show Feels Like Temperature": "Mostra Temperatura Percepita" }, "Show Forecast": { - "Show Forecast": "" + "Show Forecast": "Mostra Previsioni" }, "Show GPU Temperature": { "Show GPU Temperature": "Mostra Temperatura GPU" @@ -3201,16 +3270,16 @@ "Show Hour Numbers": "Mostra Numeri delle Ore" }, "Show Hourly Forecast": { - "Show Hourly Forecast": "" + "Show Hourly Forecast": "Mostra Previsioni Orarie" }, "Show Humidity": { - "Show Humidity": "" + "Show Humidity": "Mostra Umidità" }, "Show Line Numbers": { "Show Line Numbers": "Mostra Numero Righe" }, "Show Location": { - "Show Location": "" + "Show Location": "Mostra Posizione" }, "Show Lock": { "Show Lock": "Mostra Blocco" @@ -3237,10 +3306,10 @@ "Show Power Off": "Mostra Spegni" }, "Show Precipitation Probability": { - "Show Precipitation Probability": "" + "Show Precipitation Probability": "Mostra Probabilità di Precipitazioni" }, "Show Pressure": { - "Show Pressure": "" + "Show Pressure": "Mostra Pressione" }, "Show Reboot": { "Show Reboot": "Mostra Riavvia" @@ -3252,7 +3321,7 @@ "Show Seconds": "Mostra Secondi" }, "Show Sunrise/Sunset": { - "Show Sunrise/Sunset": "" + "Show Sunrise/Sunset": "Mostra Alba/Tramonto" }, "Show Suspend": { "Show Suspend": "Mostra Sospendi" @@ -3261,13 +3330,13 @@ "Show Top Processes": "Mostra Processi Principali" }, "Show Weather Condition": { - "Show Weather Condition": "" + "Show Weather Condition": "Mostra Condizioni Meteo" }, "Show Welcome": { - "Show Welcome": "" + "Show Welcome": "Mostra Benvenuto" }, "Show Wind Speed": { - "Show Wind Speed": "" + "Show Wind Speed": "Mostra Velocità del Vento" }, "Show Workspace Apps": { "Show Workspace Apps": "Mostra Icone negli Spazi di Lavoro" @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "Mostra in Panoramica" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "Mostra su tutti gli schermi connessi" }, @@ -3399,10 +3471,10 @@ "Space between windows": "Spazio tra le finestre" }, "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "" + "Space between windows (gappih/gappiv/gappoh/gappov)": "Spazio tra le finestre (gappih/gappiv/gappoh/gappov)" }, "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "" + "Space between windows (gaps_in and gaps_out)": "Spazio tra le finestre (gaps_in e gaps_out)" }, "Spacer": { "Spacer": "Spaziatore" @@ -3426,7 +3498,7 @@ "Stacked": "Impilato" }, "Standard": { - "Standard": "" + "Standard": "Standard" }, "Start": { "Start": "Avvio" @@ -3651,7 +3723,7 @@ "Toner Low": "Toner Basso" }, "Tools": { - "Tools": "" + "Tools": "Strumenti" }, "Top": { "Top": "In Alto" @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "Trasparenza" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "Spegni monitor dopo" }, "Type": { "Type": "Tipo" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "Tipografia" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "Rete sconosciuta" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "Rimuovi dalla Dock" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "Aggiorna Plugin" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "Usa formato 24-ore invece del 12-ore AM/PM" }, @@ -3765,10 +3852,10 @@ "Use animated wave progress bars for media playback": "Usa barre ad onde animate per la riproduzione media" }, "Use custom border size": { - "Use custom border size": "" + "Use custom border size": "Usa uno spessore bordo personalizzato" }, "Use custom border/focus-ring width": { - "Use custom border/focus-ring width": "" + "Use custom border/focus-ring width": "Usa larghezza bordo/anello di focus personalizzata" }, "Use custom command for update your system": { "Use custom command for update your system": "Usa comando personalizzato per aggiornare il sistema" @@ -3780,7 +3867,7 @@ "Use custom window radius instead of theme radius": "Usa un raggio finestra personalizzato invece di quello del tema" }, "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "" + "Use custom window rounding instead of theme radius": "Usa un arrotondamento finestre personalizzato invece del raggio del tema" }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Usa impronte digitali per autenticazione blocco schermo\n(richiede impronte digitali registrate)" @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Usa tema di suoni dalle impostazioni di sistema" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "Utilizzo%" }, @@ -3798,7 +3888,7 @@ "Used": "Usato" }, "Used when accent color is set to Custom": { - "Used when accent color is set to Custom": "" + "Used when accent color is set to Custom": "Utilizzato quando il colore di accento è impostato su Personalizzato" }, "User": { "User": "Utente" @@ -3876,7 +3966,7 @@ "Vibrant palette with playful saturation.": "Tavolozza vibrante con saturazione giocosa." }, "View Mode": { - "View Mode": "" + "View Mode": "Modalità Visualizzazione" }, "Visibility": { "Visibility": "Visibilità" @@ -3995,13 +4085,13 @@ "Widget removed": "Widget rimosso" }, "Width of window border (borderpx)": { - "Width of window border (borderpx)": "" + "Width of window border (borderpx)": "Larghezza bordo finestra (borderpx)" }, "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "" + "Width of window border (general.border_size)": "Larghezza bordo finestra (general.border_size)" }, "Width of window border and focus ring": { - "Width of window border and focus ring": "" + "Width of window border and focus ring": "Larghezza del bordo e dell'anello di fuoco delle finestre" }, "Wind": { "Wind": "Vento" @@ -4019,7 +4109,7 @@ "Window Gaps (px)": "Spazi tra finestre (px)" }, "Window Rounding": { - "Window Rounding": "" + "Window Rounding": "Arrotondamento Finestre" }, "Workspace": { "Workspace": "Spazio di Lavoro" @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "di %1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Sfoglia Temi" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl è ora incluso in config.kdl" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configurazione dms/outputs esiste ma non è inclusa nella configurazione del compositor. Le modifiche allo schermo non saranno persistenti." }, @@ -4142,143 +4238,143 @@ "Material Design inspired color themes": "Temi colore ispirati al Material Design" }, "greeter back button": { - "Back": "" + "Back": "Indietro" }, "greeter completion page subtitle": { - "DankMaterialShell is ready to use": "" + "DankMaterialShell is ready to use": "DankMaterialShell è pronta per l'uso" }, "greeter completion page title": { - "You're All Set!": "" + "You're All Set!": "Tutto Pronto!" }, "greeter configure keybinds link": { - "Configure Keybinds": "" + "Configure Keybinds": "Configura Tasti di Scelta Rapida" }, "greeter dankbar description": { - "Widgets, layout, style": "" + "Widgets, layout, style": "Widget, layout, stile" }, "greeter displays description": { - "Resolution, position, scale": "" + "Resolution, position, scale": "Risoluzione, posizione, scala" }, "greeter dock description": { - "Position, pinned apps": "" + "Position, pinned apps": "Posizione, app fissate" }, "greeter doctor page button": { - "Run Again": "" + "Run Again": "Esegui di Nuovo" }, "greeter doctor page empty state": { - "No checks passed": "", - "No errors": "", - "No info items": "", - "No warnings": "" + "No checks passed": "Nessun controllo superato", + "No errors": "Nessun errore", + "No info items": "Nessun elemento informativo", + "No warnings": "Nessun avviso" }, "greeter doctor page error count": { - "%1 issue(s) found": "" + "%1 issue(s) found": "%1 problema(i) rilevato(i)" }, "greeter doctor page loading text": { - "Analyzing configuration...": "" + "Analyzing configuration...": "Analisi configurazione in corso..." }, "greeter doctor page status card": { - "Errors": "", - "Info": "", - "OK": "", - "Warnings": "" + "Errors": "Errori", + "Info": "Informazioni", + "OK": "OK", + "Warnings": "Avvisi" }, "greeter doctor page success": { - "All checks passed": "" + "All checks passed": "Tutti i controlli superati" }, "greeter doctor page title": { - "System Check": "" + "System Check": "Controllo di Sistema" }, "greeter documentation link": { - "Docs": "" + "Docs": "Documentazione" }, "greeter explore section header": { - "Explore": "" + "Explore": "Esplora" }, "greeter feature card description": { - "Background app icons": "", - "Colors from wallpaper": "", - "Community themes": "", - "Extensible architecture": "", - "GTK, Qt, IDEs, more": "", - "Modular widget bar": "", - "Night mode & gamma": "", - "Per-screen config": "", - "Quick system toggles": "" + "Background app icons": "Icone app in background", + "Colors from wallpaper": "Colori dallo sfondo", + "Community themes": "Temi della community", + "Extensible architecture": "Architettura estensibile", + "GTK, Qt, IDEs, more": "GTK, Qt, IDE, altro", + "Modular widget bar": "Barra widget modulare", + "Night mode & gamma": "Modalità notte e gamma", + "Per-screen config": "Configurazione per schermo", + "Quick system toggles": "Comandi rapidi di sistema" }, "greeter feature card title": { - "App Theming": "", - "Control Center": "", - "Display Control": "", - "Dynamic Theming": "", - "Multi-Monitor": "", - "System Tray": "", - "Theme Registry": "" + "App Theming": "Theming Applicazioni", + "Control Center": "Centro di Controllo", + "Display Control": "Controllo Schermo", + "Dynamic Theming": "Theming Dinamico", + "Multi-Monitor": "Multi-Monitor", + "System Tray": "Area di Notifica", + "Theme Registry": "Registro dei Temi" }, "greeter feature card title | greeter plugins link": { - "Plugins": "" + "Plugins": "Plugin" }, "greeter feature card title | greeter settings link": { - "DankBar": "" + "DankBar": "DankBar" }, "greeter finish button": { - "Finish": "" + "Finish": "Fine" }, "greeter first page button": { - "Get Started": "" + "Get Started": "Inizia" }, "greeter keybinds niri description": { - "niri shortcuts config": "" + "niri shortcuts config": "configurazione scorciatoie niri" }, "greeter keybinds section header": { - "DMS Shortcuts": "" + "DMS Shortcuts": "Scorciatoie DMS" }, "greeter modal window title": { - "Welcome": "" + "Welcome": "Benvenuto" }, "greeter next button": { - "Next": "" + "Next": "Avanti" }, "greeter no keybinds message": { - "No DMS shortcuts configured": "" + "No DMS shortcuts configured": "Nessuna scorciatoia DMS configurata" }, "greeter notifications description": { - "Popup behavior, position": "" + "Popup behavior, position": "Comportamento e posizione dei popup" }, "greeter settings link": { - "Displays": "", - "Dock": "", - "Keybinds": "", - "Notifications": "", - "Theme & Colors": "", - "Wallpaper": "" + "Displays": "Schermi", + "Dock": "Dock", + "Keybinds": "Tasti di Scelta Rapida", + "Notifications": "Notifiche", + "Theme & Colors": "Temi & Colori", + "Wallpaper": "Sfondo" }, "greeter settings section header": { - "Configure": "" + "Configure": "Configura" }, "greeter skip button": { - "Skip": "" + "Skip": "Salta" }, "greeter skip button tooltip": { - "Skip setup": "" + "Skip setup": "Salta configurazione" }, "greeter theme description": { - "Dynamic colors, presets": "" + "Dynamic colors, presets": "Colori dinamici, preimpostazioni" }, "greeter themes link": { - "Themes": "" + "Themes": "Temi" }, "greeter wallpaper description": { - "Background image": "" + "Background image": "Immagine di sfondo" }, "greeter welcome page section header": { - "Features": "" + "Features": "Funzionalità" }, "greeter welcome page tagline": { - "A modern desktop shell for Wayland compositors": "" + "A modern desktop shell for Wayland compositors": "Una moderna shell desktop per compositor Wayland" }, "greeter welcome page title": { - "Welcome to DankMaterialShell": "" + "Welcome to DankMaterialShell": "Benvenuto in DankMaterialShell" }, "install action button": { "Install": "Installa" @@ -4302,17 +4398,17 @@ "Loading...": "Caricamento..." }, "lock screen notification mode option": { - "App Names": "", - "Count Only": "", - "Disabled": "", - "Full Content": "" + "App Names": "Nomi App", + "Count Only": "Solo Conteggio", + "Disabled": "Disabilitato", + "Full Content": "Contenuto Completo" }, "lock screen notification privacy setting": { - "Control what notification information is shown on the lock screen": "", - "Notification Display": "" + "Control what notification information is shown on the lock screen": "Controlla quali informazioni delle notifiche vengono mostrate sulla schermata di blocco", + "Notification Display": "Visualizzazione Notifiche" }, "lock screen notifications settings card": { - "Lock Screen": "" + "Lock Screen": "Schermata di Blocco" }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl non disponibile - integrazione blocco richiede connessione socket DMS" @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "Widget" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "sorgente" }, diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index 6e0e165a..a0c01614 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: 戻る • F1/I: ファイル情報 • F10: ヘルプ • Esc: 閉じる" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "" }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "コピーしました!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "PIDをコピー" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "カスタム" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "使用していないときはドックを非表示にし、ドックエリアの近くにホバーすると表示されます" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "キーボードレイアウト名" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "マウント" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "スクロール" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "ファイルの内容を検索" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "" }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "プラグインを検索..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "画像ファイルを選ぶ..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "" }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "壁紙ベースの色で、使用するパレットアルゴリズムを選ぶ" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "含めたいトランジションをランダム化に選択" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "概要に表示" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "すべての接続されたディスプレイに表示" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "後にモニターの電源を切る" }, "Type": { "Type": "" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "ドックから固定を解除" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "プラグインを更新" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "12時間制のAM/PMではなく、24時間表記を使用" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "システム設定からサウンドテーマを使用" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "使用%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index 9d3dc9d2..29dc2d64 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "Aktywuj" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "Aktywny" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Wstecz • F1/I: Informacje o pliku • F10: Pomoc • Esc: Zamknij" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "Zawsze pokazuj procenty" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "Automatycznie czyść po" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "Automatycznie zamknij podgląd Niri otwierając aplikacje." }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "Wyczyść przy starcie" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Kliknij 'Konfiguruj' by stworzyć dms/binds.kdl i dodać do config.kdl" }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "Skopiowane!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "Kopiuj PID" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "Aktualnie: %1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "Niestandardowy" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "Ukryj opóźnienie" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "Ukryj Gdy Otwarte Są Okna" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Ukryj dok, gdy nie jest używany, i odkryj go po najechaniu kursorem w jego pobliże" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "Klawisz" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Nazwa układu klawiatury" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "Zamontuj" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "Przesuń Widżet" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "Przewijanie" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "Przeszukaj zawartość plików" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "Wyszukaj skróty klawiszowe..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "Szukaj wtyczek..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "Wybierz plik obrazu..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "Wybierz urządzenie..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "Wybierz algorytm palety używany dla kolorów tapet." }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "Wybierz, które przejścia uwzględnić w losowaniu" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "Pokaż w podglądzie" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "Pokaż na wszystkich podłączonych wyświetlaczach" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "Przezroczystość" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "Wyłącz monitory po" }, "Type": { "Type": "Typ" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "Typografia" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "Nieznana Sieć" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "Odepnij z doku" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "Zaktualizuj wtyczkę" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "Użyj 24-godzinnego formatu czasu zamiast 12-godzinnego AM/PM" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Użyj motywu dźwiękowego z ustawień systemowych" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "Użycie %" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "od %1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Przeglądaj Motywy" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "Plik dms/binds.kdl jest teraz zawarty w pliku config.kdl" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "Konfiguracja dms/outputs istnieje, ale nie jest dodana do konfiguracji twojego kompozytora. Zmiany nie będą miały efektu." }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "Widżety" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "źródło" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index c9056b83..379666a6 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "Ativar" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "Ativa" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Voltar • F1/I: Informações de Arquivo • F10: Ajuda • Esc: Fechar" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "Sempre Mostrar Porcentagem" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "Fechar automaticamente overview do niri ao lançar aplicativos." }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "Limpar ao Iniciar" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "Copiado!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "Copiar PID" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "Customizado" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Esconder a dock quando não usada e mostrar ao passar o mouse próximo da área" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "Tecla" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Nome de Layout do Teclado" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "Ponto de montagem" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "Scrolling" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "Pesquisar conteúdos de arquivos" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "Pesquisar atalhos..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "Buscar plugins..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "Selecione um arquivo de imagem..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "Selecionar dispositivo..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "Selecione o algoritmo usado para cores baseadas no papel de parede" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "Selecionar quais transições incluir na randomização" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "Mostrar na Visão Geral" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "Mostrar em todas as telas conectadas" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "Transparência" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "Desligar monitores depois de" }, "Type": { "Type": "Tipo" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "Tipografia" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "Desafixar do Dock" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "Atualizar Plugin" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "Usar relógio de 24 horas em vez de 12 horas com AM/PM" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Usar tema de som das configurações do sistema" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "Uso%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl está agora incluído em config.kdl" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "" }, diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index cc24ace3..4c08e34d 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "Etkinleştir" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "Etkin" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Geri • F1/I: Dosya bilgisi • F10: Yardım • Esc: Kapat" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "Yüzdeyi Her Zaman Göster" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "Sonra Otomatik Sil" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "Uygulamaları başlatınca Niri genel görünümünü otomatik kapat." }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "Başlangıçta Temizle" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "dms/binds.kdl dosyasını oluşturmak ve config.kdl dosyasına eklemek için 'Kur' düğmesine tıklayın." }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "Kopyalandı!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "PID'i Kopyala" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "Mevcut: %1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "Özel" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "Gizleme Gecikmesi" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "Pencere Açıkken Gizle" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Kullanılmadığında dock'u gizle ve dock alanının yakınına geldiğinizde göster" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "Tuş" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Klavye Düzeni Adı" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "Bağlı" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "Widget Taşı" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "Kaydırma" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "Dosya içeriklerini ara" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "Tuş kombinasyonları ara..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "Eklentileri ara..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "Bir resim dosyası seçin..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "Aygıt seç..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "Duvar kağıdı tabanlı renkler için kullanılan palet algoritmasını seçin" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "Rastgele seçime dahil edilecek geçişleri seçin" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "Genel Görünümde Göster" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "Tüm bağlı ekranlarda göster" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "Transparanlık" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "Şu zaman sonra monitörleri kapat" }, "Type": { "Type": "Tip" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "Tipografi" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "Bilinmeyen Ağ" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "Dock'tan Sabitlemeyi Kaldır" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "Eklentiyi Güncelle" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "12 saatlik ÖÖ/ÖS yerine 24 saatlik zaman formatını kullanın." }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Sistem ayarlarındaki ses temasını kullan" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "Kullan%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "%1 tarafından" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Temalara Göz At" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl artık config.kdl dosyasına dahil edilmiştir." }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs yapılandırması mevcut ancak kompozitör yapılandırmanıza dahil edilmemiş. Ekran değişiklikleri kalıcı olmayacaktır." }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "Widgetlar" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "kaynak" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index da725f79..a32980b0 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -24,7 +24,7 @@ "%1 job(s)": "%1 个任务" }, "%1 notifications": { - "%1 notifications": "" + "%1 notifications": "%1条通知" }, "%1 printer(s)": { "%1 printer(s)": "%1 个打印机" @@ -42,7 +42,7 @@ "(Unnamed)": "(未命名)" }, "+ %1 more": { - "+ %1 more": "" + "+ %1 more": "+%1更多" }, "0 = square corners": { "0 = square corners": "0 = 直角" @@ -57,7 +57,7 @@ "1 minute": "1 分钟" }, "1 notification": { - "1 notification": "" + "1 notification": "1条通知" }, "1 second": { "1 second": "1 秒" @@ -138,7 +138,7 @@ "About": "关于" }, "Accent Color": { - "Accent Color": "" + "Accent Color": "重点色" }, "Accept Jobs": { "Accept Jobs": "接受任务" @@ -164,6 +164,9 @@ "Activate": { "Activate": "激活" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "活动" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/退格: 返回 • F1/I: 文件信息 • F10: 帮助 • Esc: 关闭" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "始终显示百分比" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "在此之后自动清除" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "当启动程序时自动关闭Niri概览。" }, @@ -426,7 +435,7 @@ "Available Screens (%1)": "可用屏幕(%1)" }, "Available in Detailed and Forecast view modes": { - "Available in Detailed and Forecast view modes": "" + "Available in Detailed and Forecast view modes": "提供详细视图和预测视图两种模式" }, "BSSID": { "BSSID": "BSSID" @@ -516,7 +525,7 @@ "Border Opacity": "边框透明度" }, "Border Size": { - "Border Size": "" + "Border Size": "边框宽度" }, "Border Thickness": { "Border Thickness": "边框厚度" @@ -645,7 +654,7 @@ "Choose colors from palette": "从调色板中选择颜色" }, "Choose how the weather widget is displayed": { - "Choose how the weather widget is displayed": "" + "Choose how the weather widget is displayed": "选择天气部件的显示方式" }, "Choose icon": { "Choose icon": "选择图标" @@ -663,7 +672,7 @@ "Choose where notification popups appear on screen": "设置通知弹窗的出现位置" }, "Choose where on-screen displays appear on screen": { - "Choose where on-screen displays appear on screen": "选择OSD在屏幕上出现的位置" + "Choose where on-screen displays appear on screen": "选择 OSD 在屏幕上出现的位置" }, "Choose which displays show this widget": { "Choose which displays show this widget": "选择要在哪个显示器显示该小部件" @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "启动时清除" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "点击设置以创建 dms/binds.kdl,并添加至config.kdl。" }, @@ -777,7 +789,7 @@ "Communication": "通讯" }, "Compact": { - "Compact": "" + "Compact": "紧凑" }, "Compact Mode": { "Compact Mode": "紧凑模式" @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "复制成功!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "复制进程ID" }, @@ -932,11 +947,23 @@ "Current: %1": { "Current: %1": "当前:%1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "自定义" }, "Custom Color": { - "Custom Color": "" + "Custom Color": "自定义颜色" }, "Custom Duration": { "Custom Duration": "自定义持续时间" @@ -1101,7 +1128,7 @@ "Desktop Clock": "桌面时钟" }, "Detailed": { - "Detailed": "" + "Detailed": "详细" }, "Development": { "Development": "开发" @@ -1191,7 +1218,7 @@ "Display currently focused application title": "显示当前聚焦应用的标题" }, "Display hourly weather predictions": { - "Display hourly weather predictions": "" + "Display hourly weather predictions": "显示每小时天气预报" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "只显示包含窗口的工作区" @@ -1569,7 +1596,7 @@ "Failed to write temp file for validation": "未能写入临时文件进行验证" }, "Feels": { - "Feels": "" + "Feels": "观感" }, "Feels Like": { "Feels Like": "体感温度" @@ -1653,10 +1680,10 @@ "Force terminal applications to always use dark color schemes": "强制终端应用使用暗色" }, "Forecast": { - "Forecast": "" + "Forecast": "预测" }, "Forecast Days": { - "Forecast Days": "" + "Forecast Days": "天气预测" }, "Forecast Not Available": { "Forecast Not Available": "暂无预报" @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "隐藏延迟" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "当窗口打开时隐藏" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示" }, @@ -1812,7 +1854,7 @@ "Hourly Forecast": "每小时预报" }, "Hourly Forecast Count": { - "Hourly Forecast Count": "" + "Hourly Forecast Count": "每小时预测计数" }, "How often to change wallpaper": { "How often to change wallpaper": "壁纸轮换频率" @@ -1821,7 +1863,7 @@ "Humidity": "湿度" }, "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "" + "Hyprland Layout Overrides": "Hyprland布局覆盖" }, "I Understand": { "I Understand": "我明白以上内容" @@ -1937,6 +1979,15 @@ "Key": { "Key": "键" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "键盘布局名称" }, @@ -2091,7 +2142,7 @@ "Management": "管理" }, "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "" + "MangoWC Layout Overrides": "MangoWC布局覆盖" }, "Manual Coordinates": { "Manual Coordinates": "手动设置坐标" @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "挂载" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "移动部件" }, @@ -2358,7 +2415,7 @@ "No VPN profiles": "无 VPN 配置" }, "No Weather Data": { - "No Weather Data": "" + "No Weather Data": "无天气数据" }, "No Weather Data Available": { "No Weather Data Available": "暂无天气数据" @@ -2451,7 +2508,7 @@ "Not connected": "未连接" }, "Not detected": { - "Not detected": "" + "Not detected": "未检测到" }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "注意:这只会改变百分比,而不会实际限制充电。" @@ -2568,7 +2625,7 @@ "Override": "覆盖" }, "Override Border Size": { - "Override Border Size": "" + "Override Border Size": "覆盖边框尺寸" }, "Override Corner Radius": { "Override Corner Radius": "覆盖角半径" @@ -2745,7 +2802,7 @@ "Power source": "电源" }, "Precip": { - "Precip": "" + "Precip": "降水" }, "Precipitation Chance": { "Precipitation Chance": "降水概率" @@ -2949,10 +3006,10 @@ "Rounded corners for windows": "窗口圆角" }, "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "" + "Rounded corners for windows (border_radius)": "窗口圆角(border_radius)" }, "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "" + "Rounded corners for windows (decoration.rounding)": "窗口圆角(decoration.rounding)" }, "Run DMS Templates": { "Run DMS Templates": "运行DMS模板" @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "滚动" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "检索文件内容" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "搜索按键绑定..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "搜索插件中..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "选择一张图片..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "选择设备..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "选择从壁纸取色的配色方案" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "选择在随机轮换中使用的过渡效果" }, @@ -3183,10 +3252,10 @@ "Show Dock": "显示程序坞" }, "Show Feels Like Temperature": { - "Show Feels Like Temperature": "" + "Show Feels Like Temperature": "显示感官温度" }, "Show Forecast": { - "Show Forecast": "" + "Show Forecast": "显示天气预测" }, "Show GPU Temperature": { "Show GPU Temperature": "显示GPU温度" @@ -3201,16 +3270,16 @@ "Show Hour Numbers": "显示小时数" }, "Show Hourly Forecast": { - "Show Hourly Forecast": "" + "Show Hourly Forecast": "显示每小时天气预测" }, "Show Humidity": { - "Show Humidity": "" + "Show Humidity": "显示湿度" }, "Show Line Numbers": { "Show Line Numbers": "显示行号" }, "Show Location": { - "Show Location": "" + "Show Location": "显示位置" }, "Show Lock": { "Show Lock": "显示锁定" @@ -3237,10 +3306,10 @@ "Show Power Off": "显示关机" }, "Show Precipitation Probability": { - "Show Precipitation Probability": "" + "Show Precipitation Probability": "显示降水概率" }, "Show Pressure": { - "Show Pressure": "" + "Show Pressure": "显示气压" }, "Show Reboot": { "Show Reboot": "显示重启" @@ -3252,7 +3321,7 @@ "Show Seconds": "显示秒数" }, "Show Sunrise/Sunset": { - "Show Sunrise/Sunset": "" + "Show Sunrise/Sunset": "显示日出/日落" }, "Show Suspend": { "Show Suspend": "显示挂起" @@ -3261,13 +3330,13 @@ "Show Top Processes": "显示占用多的进程" }, "Show Weather Condition": { - "Show Weather Condition": "" + "Show Weather Condition": "显示天气状况" }, "Show Welcome": { - "Show Welcome": "" + "Show Welcome": "显示欢迎信息" }, "Show Wind Speed": { - "Show Wind Speed": "" + "Show Wind Speed": "显示风速" }, "Show Workspace Apps": { "Show Workspace Apps": "显示工作区内应用" @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "概览中显示" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "在所有已连接的显示器上显示" }, @@ -3300,28 +3372,28 @@ "Show on screens:": "选择显示的屏幕:" }, "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "当亮度改变时显示OSD" + "Show on-screen display when brightness changes": "当亮度改变时显示 OSD" }, "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "当大小写状态变化时显示OSD" + "Show on-screen display when caps lock state changes": "当大小写状态变化时显示 OSD" }, "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "当循环切换音频输出设备时显示OSD" + "Show on-screen display when cycling audio output devices": "当循环切换音频输出设备时显示 OSD" }, "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "当空闲抑制状态改变时显示OSD" + "Show on-screen display when idle inhibitor state changes": "当空闲抑制状态改变时显示 OSD" }, "Show on-screen display when media player volume changes": { "Show on-screen display when media player volume changes": "当媒体音量改变时显示OSD" }, "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "当麦克风静音状态切换时显示OSD" + "Show on-screen display when microphone is muted/unmuted": "当麦克风静音状态切换时显示 OSD" }, "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "当电源配置改变时显示OSD" + "Show on-screen display when power profile changes": "当电源配置改变时显示 OSD" }, "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "当音量变化时显示OSD" + "Show on-screen display when volume changes": "当音量变化时显示 OSD" }, "Show only apps running in current workspace": { "Show only apps running in current workspace": "仅显示当前工作区中的活动应用" @@ -3399,10 +3471,10 @@ "Space between windows": "窗口间空隙" }, "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "" + "Space between windows (gappih/gappiv/gappoh/gappov)": "窗口间隙(gappih/gappiv/gappoh/gappov)" }, "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "" + "Space between windows (gaps_in and gaps_out)": "窗口间隙(gaps_in与gaps_out)" }, "Spacer": { "Spacer": "空白占位" @@ -3426,7 +3498,7 @@ "Stacked": "堆叠" }, "Standard": { - "Standard": "" + "Standard": "基础设置" }, "Start": { "Start": "开始" @@ -3651,7 +3723,7 @@ "Toner Low": "碳粉不足" }, "Tools": { - "Tools": "" + "Tools": "工具" }, "Top": { "Top": "顶部" @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "透明度" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "在此时间后关闭显示器" }, "Type": { "Type": "类型" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "排版" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "未知网络" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "从程序坞取消固定" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "更新插件" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "改用24小时制显示时间" }, @@ -3765,10 +3852,10 @@ "Use animated wave progress bars for media playback": "进行媒体播放时显示动画波形进度条" }, "Use custom border size": { - "Use custom border size": "" + "Use custom border size": "使用自定义边框尺寸" }, "Use custom border/focus-ring width": { - "Use custom border/focus-ring width": "" + "Use custom border/focus-ring width": "使用自定义边框/焦点环宽度" }, "Use custom command for update your system": { "Use custom command for update your system": "使用自定义命令来更新系统" @@ -3780,7 +3867,7 @@ "Use custom window radius instead of theme radius": "使用自定义窗口半径替代主题半径" }, "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "" + "Use custom window rounding instead of theme radius": "使用自定义窗口圆角代替主题半径" }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "使用指纹识别进行锁屏验证(需要录入指纹)" @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "使用系统设置中的声音主题" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "使用%" }, @@ -3798,7 +3888,7 @@ "Used": "已使用" }, "Used when accent color is set to Custom": { - "Used when accent color is set to Custom": "" + "Used when accent color is set to Custom": "当强调色为自定义时使用" }, "User": { "User": "用户" @@ -3876,7 +3966,7 @@ "Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。" }, "View Mode": { - "View Mode": "" + "View Mode": "查看模式" }, "Visibility": { "Visibility": "能见度" @@ -3995,13 +4085,13 @@ "Widget removed": "部件已移除" }, "Width of window border (borderpx)": { - "Width of window border (borderpx)": "" + "Width of window border (borderpx)": "窗口边框宽度(borderpx)" }, "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "" + "Width of window border (general.border_size)": "窗口边框宽度(general.border_size)" }, "Width of window border and focus ring": { - "Width of window border and focus ring": "" + "Width of window border and focus ring": "窗口边框宽度与聚焦环" }, "Wind": { "Wind": "风速" @@ -4019,7 +4109,7 @@ "Window Gaps (px)": "窗口间隙(像素)" }, "Window Rounding": { - "Window Rounding": "" + "Window Rounding": "窗口圆角" }, "Workspace": { "Workspace": "工作区" @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "%1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "浏览主题" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 现已包含在 config.kdl 中" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/输出配置存在,但不包含在你的合成器配置里。显示更改不会保留。" }, @@ -4142,143 +4238,143 @@ "Material Design inspired color themes": "受Material设计启发的色彩主题" }, "greeter back button": { - "Back": "" + "Back": "返回" }, "greeter completion page subtitle": { - "DankMaterialShell is ready to use": "" + "DankMaterialShell is ready to use": "DankMaterialShell现已可用" }, "greeter completion page title": { - "You're All Set!": "" + "You're All Set!": "已全部设置!" }, "greeter configure keybinds link": { - "Configure Keybinds": "" + "Configure Keybinds": "配置快捷键绑定" }, "greeter dankbar description": { - "Widgets, layout, style": "" + "Widgets, layout, style": "部件、布局与风格" }, "greeter displays description": { - "Resolution, position, scale": "" + "Resolution, position, scale": "分辨率、位置与缩放" }, "greeter dock description": { - "Position, pinned apps": "" + "Position, pinned apps": "位置与已固定应用" }, "greeter doctor page button": { - "Run Again": "" + "Run Again": "启动应用" }, "greeter doctor page empty state": { - "No checks passed": "", - "No errors": "", - "No info items": "", - "No warnings": "" + "No checks passed": "检查未通过", + "No errors": "无报错", + "No info items": "无信息项目", + "No warnings": "无警告" }, "greeter doctor page error count": { - "%1 issue(s) found": "" + "%1 issue(s) found": "发现%1个问题" }, "greeter doctor page loading text": { - "Analyzing configuration...": "" + "Analyzing configuration...": "配置分析中..." }, "greeter doctor page status card": { - "Errors": "", - "Info": "", - "OK": "", - "Warnings": "" + "Errors": "错误", + "Info": "信息", + "OK": "OK", + "Warnings": "警告" }, "greeter doctor page success": { - "All checks passed": "" + "All checks passed": "所有检查均已通过" }, "greeter doctor page title": { - "System Check": "" + "System Check": "系统检查" }, "greeter documentation link": { - "Docs": "" + "Docs": "文档" }, "greeter explore section header": { - "Explore": "" + "Explore": "浏览" }, "greeter feature card description": { - "Background app icons": "", - "Colors from wallpaper": "", - "Community themes": "", - "Extensible architecture": "", - "GTK, Qt, IDEs, more": "", - "Modular widget bar": "", - "Night mode & gamma": "", - "Per-screen config": "", - "Quick system toggles": "" + "Background app icons": "背景应用图标", + "Colors from wallpaper": "从壁纸选取颜色", + "Community themes": "社区主题", + "Extensible architecture": "可扩展架构", + "GTK, Qt, IDEs, more": "GTK、Qt、IDEs等", + "Modular widget bar": "模块化部件状态栏", + "Night mode & gamma": "夜间模式与伽玛", + "Per-screen config": "按屏幕区分设置", + "Quick system toggles": "快速系统切换" }, "greeter feature card title": { - "App Theming": "", - "Control Center": "", - "Display Control": "", - "Dynamic Theming": "", - "Multi-Monitor": "", - "System Tray": "", - "Theme Registry": "" + "App Theming": "应用主题", + "Control Center": "设置中心", + "Display Control": "显示控制", + "Dynamic Theming": "动态主题", + "Multi-Monitor": "多显示器", + "System Tray": "系统托盘", + "Theme Registry": "主题注册表" }, "greeter feature card title | greeter plugins link": { - "Plugins": "" + "Plugins": "插件" }, "greeter feature card title | greeter settings link": { - "DankBar": "" + "DankBar": "DankBar" }, "greeter finish button": { - "Finish": "" + "Finish": "完成" }, "greeter first page button": { - "Get Started": "" + "Get Started": "已开始" }, "greeter keybinds niri description": { - "niri shortcuts config": "" + "niri shortcuts config": "Niri快捷键设置" }, "greeter keybinds section header": { - "DMS Shortcuts": "" + "DMS Shortcuts": "DMS快捷键" }, "greeter modal window title": { - "Welcome": "" + "Welcome": "欢迎" }, "greeter next button": { - "Next": "" + "Next": "下一个" }, "greeter no keybinds message": { - "No DMS shortcuts configured": "" + "No DMS shortcuts configured": "未配置DMS快捷键" }, "greeter notifications description": { - "Popup behavior, position": "" + "Popup behavior, position": "弹窗行为与位置" }, "greeter settings link": { - "Displays": "", - "Dock": "", - "Keybinds": "", - "Notifications": "", - "Theme & Colors": "", - "Wallpaper": "" + "Displays": "显示器", + "Dock": "程序坞", + "Keybinds": "快捷键绑定", + "Notifications": "通知", + "Theme & Colors": "主题与颜色", + "Wallpaper": "壁纸" }, "greeter settings section header": { - "Configure": "" + "Configure": "配置" }, "greeter skip button": { - "Skip": "" + "Skip": "跳过" }, "greeter skip button tooltip": { - "Skip setup": "" + "Skip setup": "跳过设置" }, "greeter theme description": { - "Dynamic colors, presets": "" + "Dynamic colors, presets": "动态颜色与预设" }, "greeter themes link": { - "Themes": "" + "Themes": "主题" }, "greeter wallpaper description": { - "Background image": "" + "Background image": "背景图片" }, "greeter welcome page section header": { - "Features": "" + "Features": "功能" }, "greeter welcome page tagline": { - "A modern desktop shell for Wayland compositors": "" + "A modern desktop shell for Wayland compositors": "为wayland合成器设计的一款现代桌面shell" }, "greeter welcome page title": { - "Welcome to DankMaterialShell": "" + "Welcome to DankMaterialShell": "欢迎来到DankMaterialShell" }, "install action button": { "Install": "安装" @@ -4302,17 +4398,17 @@ "Loading...": "加载中..." }, "lock screen notification mode option": { - "App Names": "", - "Count Only": "", - "Disabled": "", - "Full Content": "" + "App Names": "仅应用名", + "Count Only": "仅数量", + "Disabled": "禁用", + "Full Content": "完整内容" }, "lock screen notification privacy setting": { - "Control what notification information is shown on the lock screen": "", - "Notification Display": "" + "Control what notification information is shown on the lock screen": "控制在锁屏上显示的通知内容", + "Notification Display": "通知显示" }, "lock screen notifications settings card": { - "Lock Screen": "" + "Lock Screen": "锁屏" }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 启用锁定集成需连接 DMS socket" @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "部件" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "源" }, diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index 0a2b02de..f1e4547f 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -164,6 +164,9 @@ "Activate": { "Activate": "啟用" }, + "Activation": { + "Activation": "" + }, "Active": { "Active": "啟用" }, @@ -233,6 +236,9 @@ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: 返回 • F1/I: 檔案資訊 • F10: 幫助 • Esc: 關閉" }, + "Always Active": { + "Always Active": "" + }, "Always Show Percentage": { "Always Show Percentage": "始終顯示百分比" }, @@ -365,6 +371,9 @@ "Auto-Clear After": { "Auto-Clear After": "自動清除於" }, + "Auto-Hide Timeout": { + "Auto-Hide Timeout": "" + }, "Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": "啟動應用程式時自動關閉 Niri 總覽。" }, @@ -692,6 +701,9 @@ "Clear at Startup": { "Clear at Startup": "啟動時清除" }, + "Click 'Setup' to create cursor config and add include to your compositor config.": { + "Click 'Setup' to create cursor config and add include to your compositor config.": "" + }, "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "按一下「設定」以建立 dms/binds.kdl 並將其包含至 config.kdl 中。" }, @@ -878,6 +890,9 @@ "Copied!": { "Copied!": "已複製!" }, + "Copy": { + "Copy": "" + }, "Copy PID": { "Copy PID": "複製 PID" }, @@ -932,6 +947,18 @@ "Current: %1": { "Current: %1": "目前:%1" }, + "Cursor Config Not Configured": { + "Cursor Config Not Configured": "" + }, + "Cursor Include Missing": { + "Cursor Include Missing": "" + }, + "Cursor Size": { + "Cursor Size": "" + }, + "Cursor Theme": { + "Cursor Theme": "" + }, "Custom": { "Custom": "自訂" }, @@ -1772,9 +1799,24 @@ "Hide Delay": { "Hide Delay": "隱藏延遲" }, + "Hide When Typing": { + "Hide When Typing": "" + }, "Hide When Windows Open": { "Hide When Windows Open": "視窗開啟時隱藏" }, + "Hide cursor after inactivity (0 = disabled)": { + "Hide cursor after inactivity (0 = disabled)": "" + }, + "Hide cursor when pressing keyboard keys": { + "Hide cursor when pressing keyboard keys": "" + }, + "Hide cursor when using touch input": { + "Hide cursor when using touch input": "" + }, + "Hide on Touch": { + "Hide on Touch": "" + }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock,並在 Dock 區域附近懸停時顯示 Dock" }, @@ -1937,6 +1979,15 @@ "Key": { "Key": "按鍵" }, + "Keybind Sources": { + "Keybind Sources": "" + }, + "Keybinds Search Settings": { + "Keybinds Search Settings": "" + }, + "Keybinds shown alongside regular search results": { + "Keybinds shown alongside regular search results": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "鍵盤布局名稱" }, @@ -2255,6 +2306,12 @@ "Mount": { "Mount": "掛載" }, + "Mouse pointer appearance": { + "Mouse pointer appearance": "" + }, + "Mouse pointer size in pixels": { + "Mouse pointer size in pixels": "" + }, "Move Widget": { "Move Widget": "移動小工具" }, @@ -3038,6 +3095,9 @@ "Scrolling": { "Scrolling": "滾動" }, + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" + }, "Search file contents": { "Search file contents": "搜尋檔案內容" }, @@ -3050,6 +3110,9 @@ "Search keybinds...": { "Search keybinds...": "搜尋按鍵綁定..." }, + "Search keyboard shortcuts from your compositor and applications": { + "Search keyboard shortcuts from your compositor and applications": "" + }, "Search plugins...": { "Search plugins...": "搜尋插件..." }, @@ -3092,6 +3155,9 @@ "Select an image file...": { "Select an image file...": "選擇一張圖片..." }, + "Select at least one provider": { + "Select at least one provider": "" + }, "Select device...": { "Select device...": "選擇裝置..." }, @@ -3116,6 +3182,9 @@ "Select the palette algorithm used for wallpaper-based colors": { "Select the palette algorithm used for wallpaper-based colors": "請選擇調色板演算法,以桌布的顏色為基底。" }, + "Select which keybind providers to include": { + "Select which keybind providers to include": "" + }, "Select which transitions to include in randomization": { "Select which transitions to include in randomization": "選擇要包含在隨機中的轉換效果" }, @@ -3293,6 +3362,9 @@ "Show on Overview": { "Show on Overview": "顯示在概覽畫面" }, + "Show on Overview Only": { + "Show on Overview Only": "" + }, "Show on all connected displays": { "Show on all connected displays": "在所有連接的螢幕上顯示" }, @@ -3683,12 +3755,21 @@ "Transparency": { "Transparency": "透明度" }, + "Trigger": { + "Trigger": "" + }, + "Trigger Prefix": { + "Trigger Prefix": "" + }, "Turn off monitors after": { "Turn off monitors after": "關閉螢幕之後" }, "Type": { "Type": "類型" }, + "Type this prefix to search keybinds": { + "Type this prefix to search keybinds": "" + }, "Typography": { "Typography": "字體排版" }, @@ -3716,6 +3797,9 @@ "Unknown Network": { "Unknown Network": "未知網路" }, + "Unpin": { + "Unpin": "" + }, "Unpin from Dock": { "Unpin from Dock": "取消 Dock 釘選" }, @@ -3737,6 +3821,9 @@ "Update Plugin": { "Update Plugin": "更新插件" }, + "Usage Tips": { + "Usage Tips": "" + }, "Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": "使用 24 小時時間格式,而不是 12 小時 AM/PM" }, @@ -3791,6 +3878,9 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "使用系統設定中的音效主題" }, + "Use trigger prefix to activate": { + "Use trigger prefix to activate": "" + }, "Use%": { "Use%": "使用%" }, @@ -4072,6 +4162,9 @@ "author attribution": { "by %1": "作者:%1" }, + "bar shadow settings card": { + "Shadow": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "瀏覽佈景主題" }, @@ -4105,6 +4198,9 @@ "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 現已包含在 config.kdl 中" }, + "dms/cursor config exists but is not included. Cursor settings won't apply.": { + "dms/cursor config exists but is not included. Cursor settings won't apply.": "" + }, "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs 組態存在,但未包含在您的合成器組態中。顯示變更將不會保留。" }, @@ -4421,6 +4517,13 @@ "settings_displays": { "Widgets": "小工具" }, + "shadow color option": { + "Surface": "", + "Text": "" + }, + "shadow intensity slider": { + "Intensity": "" + }, "source code link": { "source": "來源" }, diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index 3633535e..41f22f13 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -1283,6 +1283,20 @@ "start" ] }, + { + "section": "builtInPlugins", + "label": "DMS", + "tabIndex": 9, + "category": "Launcher", + "keywords": [ + "dms", + "drawer", + "launcher", + "menu", + "start" + ], + "icon": "extension" + }, { "section": "niriOverviewOverlayEnabled", "label": "Enable Overview Overlay", @@ -1535,6 +1549,28 @@ "icon": "terminal", "description": "Sync dark mode with settings portals for system-wide theme hints" }, + { + "section": "cursorHideAfterInactive", + "label": "Auto-Hide Timeout", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "after", + "appearance", + "auto", + "colors", + "cursor", + "hide", + "inactive", + "inactivity", + "look", + "scheme", + "style", + "theme", + "timeout" + ], + "description": "Hide cursor after inactivity (0 = disabled)" + }, { "section": "niriLayoutBorderSize", "label": "Border Size", @@ -1649,6 +1685,48 @@ ], "description": "0 = square corners" }, + { + "section": "cursorSize", + "label": "Cursor Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "cursor", + "look", + "mouse", + "pixels", + "pointer", + "scheme", + "size", + "style", + "theme" + ], + "description": "Mouse pointer size in pixels" + }, + { + "section": "cursorTheme", + "label": "Cursor Theme", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "colour", + "cursor", + "look", + "mouse", + "pointer", + "scheme", + "size", + "style", + "theme" + ], + "icon": "mouse", + "description": "Mouse pointer appearance", + "conditionKey": "isNiri" + }, { "section": "modalDarkenBackground", "label": "Darken Modal Background", @@ -1726,6 +1804,48 @@ "theme" ] }, + { + "section": "cursorHideWhenTyping", + "label": "Hide When Typing", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "cursor", + "hide", + "keyboard", + "keys", + "look", + "pressing", + "scheme", + "style", + "theme", + "typing" + ], + "description": "Hide cursor when pressing keyboard keys", + "conditionKey": "isNiri" + }, + { + "section": "cursorHideOnTouch", + "label": "Hide on Touch", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "cursor", + "hide", + "input", + "look", + "scheme", + "style", + "theme", + "touch" + ], + "description": "Hide cursor when using touch input", + "conditionKey": "isHyprland" + }, { "section": "matugenTemplateHyprland", "label": "Hyprland", diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 3532b3f0..5bb1272c 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -398,6 +398,13 @@ "reference": "", "comment": "" }, + { + "term": "Activation", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Active", "translation": "", @@ -566,6 +573,13 @@ "reference": "", "comment": "" }, + { + "term": "Always Active", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Always Show Percentage", "translation": "", @@ -902,6 +916,13 @@ "reference": "", "comment": "" }, + { + "term": "Auto-Hide Timeout", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Auto-close Niri overview when launching apps.", "translation": "", @@ -1700,6 +1721,13 @@ "reference": "", "comment": "" }, + { + "term": "Click 'Setup' to create cursor config and add include to your compositor config.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.", "translation": "", @@ -2183,6 +2211,13 @@ "reference": "", "comment": "" }, + { + "term": "Copy", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Copy PID", "translation": "", @@ -2330,6 +2365,34 @@ "reference": "", "comment": "" }, + { + "term": "Cursor Config Not Configured", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Cursor Include Missing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Cursor Size", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Cursor Theme", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Custom", "translation": "", @@ -4374,6 +4437,13 @@ "reference": "", "comment": "" }, + { + "term": "Hide When Typing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hide When Windows Open", "translation": "", @@ -4381,6 +4451,34 @@ "reference": "", "comment": "" }, + { + "term": "Hide cursor after inactivity (0 = disabled)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide cursor when pressing keyboard keys", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide cursor when using touch input", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide on Touch", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hide the dock when not in use and reveal it when hovering near the dock area", "translation": "", @@ -4766,6 +4864,13 @@ "reference": "", "comment": "" }, + { + "term": "Intensity", + "translation": "", + "context": "shadow intensity slider", + "reference": "", + "comment": "" + }, { "term": "Interface:", "translation": "", @@ -4857,6 +4962,13 @@ "reference": "", "comment": "" }, + { + "term": "Keybind Sources", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Keybinds", "translation": "", @@ -4864,6 +4976,20 @@ "reference": "", "comment": "" }, + { + "term": "Keybinds Search Settings", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Keybinds shown alongside regular search results", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Keyboard Layout Name", "translation": "", @@ -5641,6 +5767,20 @@ "reference": "", "comment": "" }, + { + "term": "Mouse pointer appearance", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Mouse pointer size in pixels", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Move Widget", "translation": "", @@ -6190,7 +6330,7 @@ { "term": "Notepad", "translation": "", - "context": "", + "context": "Notepad", "reference": "", "comment": "" }, @@ -7629,6 +7769,13 @@ "reference": "", "comment": "" }, + { + "term": "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Search file contents", "translation": "", @@ -7657,6 +7804,13 @@ "reference": "", "comment": "" }, + { + "term": "Search keyboard shortcuts from your compositor and applications", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Search plugins...", "translation": "", @@ -7790,6 +7944,13 @@ "reference": "", "comment": "" }, + { + "term": "Select at least one provider", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select device...", "translation": "", @@ -7846,6 +8007,13 @@ "reference": "", "comment": "" }, + { + "term": "Select which keybind providers to include", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select which transitions to include in randomization", "translation": "", @@ -7923,6 +8091,13 @@ "reference": "", "comment": "" }, + { + "term": "Shadow", + "translation": "", + "context": "bar shadow settings card", + "reference": "", + "comment": "" + }, { "term": "Shell", "translation": "", @@ -8315,6 +8490,13 @@ "reference": "", "comment": "" }, + { + "term": "Show on Overview Only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show on all connected displays", "translation": "", @@ -8724,7 +8906,7 @@ { "term": "Surface", "translation": "", - "context": "", + "context": "shadow color option", "reference": "", "comment": "" }, @@ -8934,7 +9116,7 @@ { "term": "Text", "translation": "", - "context": "", + "context": "shadow color option", "reference": "", "comment": "" }, @@ -9253,6 +9435,20 @@ "reference": "", "comment": "" }, + { + "term": "Trigger", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Trigger Prefix", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Turn off monitors after", "translation": "", @@ -9267,6 +9463,13 @@ "reference": "", "comment": "" }, + { + "term": "Type this prefix to search keybinds", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Typography", "translation": "", @@ -9358,6 +9561,13 @@ "reference": "", "comment": "" }, + { + "term": "Unpin", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Unpin from Dock", "translation": "", @@ -9407,6 +9617,13 @@ "reference": "", "comment": "" }, + { + "term": "Usage Tips", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use 24-hour time format instead of 12-hour AM/PM", "translation": "", @@ -9540,6 +9757,13 @@ "reference": "", "comment": "" }, + { + "term": "Use trigger prefix to activate", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use%", "translation": "", @@ -10254,6 +10478,13 @@ "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": "",