diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index 4cd36b52..48cdbc10 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -477,6 +477,11 @@ Singleton { property bool matugenTemplateEmacs: true property bool matugenTemplateZed: true + property var matugenTemplateNeovimSettings: ({ + "dark": { "baseTheme": "github_dark", "harmony": 0.5 }, + "light": { "baseTheme": "github_light", "harmony": 0.5 } + }) + property bool showDock: false property bool dockAutoHide: false property bool dockSmartAutoHide: false diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index 68fd6940..55447285 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -292,6 +292,13 @@ var SPEC = { matugenTemplateEmacs: { def: true }, matugenTemplateZed: { def: true }, + matugenTemplateNeovimSettings: { + def: { + dark: { baseTheme: "github_dark", harmony: 0.5 }, + light: { baseTheme: "github_light", harmony: 0.5 } + } + }, + showDock: { def: false }, dockAutoHide: { def: false }, dockSmartAutoHide: { def: false }, diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index 821c5c38..c008c3f8 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -2568,18 +2568,96 @@ Item { onToggled: checked => SettingsData.set("matugenTemplateFoot", checked) } + SettingsDivider { + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + } + SettingsToggleRow { + id: neovimThemeToggle tab: "theme" tags: ["matugen", "neovim", "terminal", "template"] settingKey: "matugenTemplateNeovim" text: "neovim" - description: getTemplateDescription("nvim", I18n.tr("Requires lazy plugin manager", "neovim template description")) + description: getTemplateDescription("nvim", I18n.tr("Required plugin: ") + "https://github.com/AvengeMedia/base46") descriptionColor: getTemplateDescriptionColor("nvim") visible: SettingsData.runDmsMatugenTemplates checked: SettingsData.matugenTemplateNeovim onToggled: checked => SettingsData.set("matugenTemplateNeovim", checked) } + + SettingsDropdownRow { + text: I18n.tr("Dark mode base") + tab: "theme" + tags: ["matugen", "neovim", "terminal", "template"] + settingKey: "matugenTemplateNeovimSettings" + description: "Base to derive dark theme from" + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + currentValue: SettingsData.matugenTemplateNeovimSettings?.dark?.baseTheme ?? "github_dark" + options: ["aquarium", "ashes", "aylin", "ayu_dark", "bearded-arc", "carbonfox", "catppuccin", "chadracula", "chadracula-evondev", "chadtain", "chocolate", "darcula-dark", "dark_horizon", "decay", "default-dark", "doomchad", "eldritch", "embark", "everblush", "everforest", "falcon", "flexoki", "flouromachine", "gatekeeper", "github_dark", "gruvbox", "gruvchad", "hiberbee", "horizon", "jabuti", "jellybeans", "kanagawa", "kanagawa-dragon", "material-darker", "material-deep-ocean", "melange", "midnight_breeze", "mito-laser", "monekai", "monochrome", "mountain", "neofusion", "nightfox", "nightlamp", "nightowl", "nord", "obsidian-ember", "oceanic-next", "onedark", "onenord", "oxocarbon", "palenight", "pastelDark", "pastelbeans", "penumbra_dark", "poimandres", "radium", "rosepine", "rxyhn", "scaryforest", "seoul256_dark", "solarized_dark", "solarized_osaka", "starlight", "sweetpastel", "tokyodark", "tokyonight", "tomorrow_night", "tundra", "vesper", "vscode_dark", "wombat", "yoru", "zenburn"] + enableFuzzySearch: true + onValueChanged: value => { + const settings = SettingsData.matugenTemplateNeovimSettings; + settings.dark.baseTheme = value; + SettingsData.set("matugenTemplateNeovimSettings", settings); + } + } + + SettingsDropdownRow { + text: I18n.tr("Light mode base") + tab: "theme" + tags: ["matugen", "neovim", "terminal", "template"] + settingKey: "matugenTemplateNeovimSettings" + description: "Base to derive light theme from" + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + currentValue: SettingsData.matugenTemplateNeovimSettings?.light?.baseTheme ?? "github_light" + options: ["ayu_light", "blossom_light", "catppuccin-latte", "default-light", "everforest_light", "flex-light", "flexoki-light", "github_light", "gruvbox_light", "material-lighter", "nano-light", "oceanic-light", "one_light", "onenord_light", "penumbra_light", "rosepine-dawn", "seoul256_light", "solarized_light", "sunrise_breeze", "vscode_light"] + enableFuzzySearch: true + onValueChanged: value => { + const settings = SettingsData.matugenTemplateNeovimSettings; + settings.light.baseTheme = value; + SettingsData.set("matugenTemplateNeovimSettings", settings); + } + } + + SettingsSliderRow { + text: I18n.tr("Dark mode harmony") + tags: ["matugen", "neovim", "terminal", "template"] + settingKey: "matugenTemplateNeovimSettings" + description: "How much should the base dark theme be tinted" + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + minimum: 0 + maximum: 100 + value: (SettingsData.matugenTemplateNeovimSettings?.dark?.harmony ?? 0.5) * 100 + defaultValue: 50 + onSliderValueChanged: value => { + const settings = SettingsData.matugenTemplateNeovimSettings; + settings.dark.harmony = value / 100; + SettingsData.set("matugenTemplateNeovimSettings", settings); + } + } + + SettingsSliderRow { + text: I18n.tr("Light mode harmony") + tags: ["matugen", "neovim", "terminal", "template"] + settingKey: "matugenTemplateNeovimSettings" + description: "How much should the base light theme be tinted" + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + minimum: 0 + maximum: 100 + value: (SettingsData.matugenTemplateNeovimSettings?.light?.harmony ?? 0.5) * 100 + defaultValue: 50 + onSliderValueChanged: value => { + const settings = SettingsData.matugenTemplateNeovimSettings; + settings.light.harmony = value / 100; + SettingsData.set("matugenTemplateNeovimSettings", settings); + } + } + + SettingsDivider { + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + } + SettingsToggleRow { tab: "theme" tags: ["matugen", "alacritty", "terminal", "template"] diff --git a/quickshell/matugen/configs/neovim.toml b/quickshell/matugen/configs/neovim.toml index 2609acd4..7c4ddc3a 100644 --- a/quickshell/matugen/configs/neovim.toml +++ b/quickshell/matugen/configs/neovim.toml @@ -1,3 +1,3 @@ [templates.dmsneovim] input_path = 'SHELL_DIR/matugen/templates/neovim.lua' -output_path = 'CONFIG_DIR/nvim/lua/plugins/dankcolors.lua' +output_path = 'CONFIG_DIR/nvim/colors/dms.lua' diff --git a/quickshell/matugen/templates/neovim.lua b/quickshell/matugen/templates/neovim.lua index b43216c8..4c39c3ea 100644 --- a/quickshell/matugen/templates/neovim.lua +++ b/quickshell/matugen/templates/neovim.lua @@ -1,40 +1,83 @@ -return { - { - "RRethy/base16-nvim", - priority = 1000, - config = function() - require('base16-colorscheme').setup({ +local present, base46 = pcall(require, "base46") +if not present or not base46._DMS_SUPPORT then + vim.notify( + "base46 plugin not found or incorrect, make sure to install AvengeMedia/base46", + vim.log.levels.ERROR, + { title = "dms integration" } + ) + return +end - base00 = '{{colors.background.dark.hex}}', - base01 = '{{colors.surface_container_low.dark.hex}}', - base02 = '{{colors.surface_container.dark.hex}}', - base03 = '{{dank16.color8.dark.hex}}', - base0B = '{{dank16.color3.dark.hex}}', - base04 = '{{dank16.color7.default.hex}}', - base05 = '{{dank16.color15.default.hex}}', - base06 = '{{dank16.color15.default.hex}}', - base07 = '{{dank16.color15.default.hex}}', - base08 = '{{dank16.color9.default.hex}}', - base09 = '{{dank16.color9.default.hex}}', - base0A = '{{dank16.color12.default.hex}}', - base0C = '{{dank16.color14.default.hex}}', - base0D = '{{dank16.color12.default.hex}}', - base0E = '{{dank16.color13.default.hex}}', - base0F = '{{dank16.color13.default.hex}}', - }) +local config_home = vim.env.XDG_CONFIG_HOME +if config_home == nil or #config_home == 0 then + config_home = vim.fs.joinpath(vim.env.HOME, ".config") +end +local settings_file_path = vim.fs.joinpath(config_home, "DankMaterialShell", "settings.json") +local settings_file = io.open(settings_file_path, "r") +if settings_file == nil then + vim.notify( + "cannnot read dms settings file at '" .. settings_file_path .. "'", + vim.log.levels.ERROR, + { title = "dms integration" } + ) + return +end +local settings = vim.json.decode(settings_file:read("*a")) +settings_file:close() - local current_file_path = vim.fn.stdpath("config") .. "/lua/plugins/dankcolors.lua" - if not _G._matugen_theme_watcher then - local uv = vim.uv or vim.loop - _G._matugen_theme_watcher = uv.new_fs_event() - _G._matugen_theme_watcher:start(current_file_path, {}, vim.schedule_wrap(function() - local new_spec = dofile(current_file_path) - if new_spec and new_spec[1] and new_spec[1].config then - new_spec[1].config() - print("Theme reload") - end - end)) - end +local function deepGet(t, k) + for _, s in ipairs(k) do + if type(t) ~= "table" then + return end - } -} + t = t[s] + end + return t +end + +local current_file_path = debug.getinfo(1, "S").source:sub(2) +local theme_base = deepGet(settings, { "matugenTemplateNeovimSettings", vim.o.background, "baseTheme" }) + or ("github_" .. vim.o.background) +local harmony = deepGet(settings, { "matugenTemplateNeovimSettings", vim.o.background, "harmony" }) or 0.5 +local theme_name = "dms" + +if not _G._matugen_theme_watcher then + local uv = vim.uv or vim.loop + _G._matugen_theme_watcher = { uv.new_fs_event(), uv.new_fs_event(), reload_timer = uv.new_timer() } + + local debounce_time = 100 -- ms + local function handler() + _G._matugen_theme_watcher.reload_timer:stop() + _G._matugen_theme_watcher.reload_timer:start( + debounce_time, + 0, + vim.schedule_wrap(function() + base46.theme_tables[theme_name] = nil + if vim.g.colors_name == theme_name then + vim.cmd.colorscheme(theme_name) + vim.notify("Theme reload", vim.log.levels.INFO, { title = "dms integration" }) + end + -- NOTE: contrary to what the documentation says, uv fs events usually do not manage to react to more than one edit. + -- I understand that this is not intended: some edit processes in a typical system (e.g. the one neovim uses with + -- multiple renames and changes) make things hard to follow for libuv. Therefore, a restart is the best option. + _G._matugen_theme_watcher[1]:stop() + _G._matugen_theme_watcher[2]:stop() + _G._matugen_theme_watcher[1]:start(current_file_path, {}, handler) + _G._matugen_theme_watcher[2]:start(settings_file_path, {}, handler) + end) + ) + end + _G._matugen_theme_watcher[1]:start(current_file_path, {}, handler) + _G._matugen_theme_watcher[2]:start(settings_file_path, {}, handler) +end + +if not base46.theme_tables[theme_name] or base46.theme_tables[theme_name].type ~= vim.o.background then + local builtin = vim.deepcopy(assert(base46.get_builtin_theme(theme_base))) + local harmonized = base46.theme_harmonize(builtin, "{{colors.source_color.default.hex}}", harmony) + harmonized = base46.theme_set_bg(harmonized, "{{colors.background.default.hex}}") + + base46.theme_tables[theme_name] = harmonized +end + +base46.load(theme_name) +vim.g.colors_name = theme_name diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index af6a20b5..6513d5c2 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -116,7 +116,7 @@ { "term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", "context": "lock screen U2F security key mode setting", - "reference": "Modules/Settings/LockScreenTab.qml:197", + "reference": "Modules/Settings/LockScreenTab.qml:242", "comment": "" }, { @@ -140,19 +140,19 @@ { "term": "/path/to/videos", "context": "/path/to/videos", - "reference": "Modules/Settings/LockScreenTab.qml:261", + "reference": "Modules/Settings/LockScreenTab.qml:306", "comment": "" }, { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:1596", + "reference": "Modules/Settings/ThemeColorsTab.qml:1609", "comment": "" }, { "term": "1 day", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:819, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:837, Modules/Settings/ClipboardTab.qml:103", + "reference": "Modules/Settings/NotificationsTab.qml:839, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:857, Modules/Settings/ClipboardTab.qml:103", "comment": "" }, { @@ -182,7 +182,7 @@ { "term": "1 minute", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:62, Modules/Notifications/Center/NotificationSettings.qml:69", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:69", "comment": "" }, { @@ -194,19 +194,19 @@ { "term": "1 second", "context": "1 second", - "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:34, Modules/Notifications/Center/NotificationSettings.qml:41", + "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:37, Modules/Notifications/Center/NotificationSettings.qml:41", "comment": "" }, { "term": "10 minutes", "context": "10 minutes", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:74, Modules/Notifications/Center/NotificationSettings.qml:81", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:77, Modules/Notifications/Center/NotificationSettings.qml:81", "comment": "" }, { "term": "10 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:50, Modules/Notifications/Center/NotificationSettings.qml:57", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:53, Modules/Notifications/Center/NotificationSettings.qml:57", "comment": "" }, { @@ -224,7 +224,7 @@ { "term": "14 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:825, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:843, Modules/Settings/ClipboardTab.qml:115", + "reference": "Modules/Settings/NotificationsTab.qml:845, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:863, Modules/Settings/ClipboardTab.qml:115", "comment": "" }, { @@ -236,13 +236,13 @@ { "term": "15 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:54, Modules/Notifications/Center/NotificationSettings.qml:61", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:57, Modules/Notifications/Center/NotificationSettings.qml:61", "comment": "" }, { "term": "180°", "context": "180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1794, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1815", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1797, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1818", "comment": "" }, { @@ -254,7 +254,7 @@ { "term": "2 minutes", "context": "2 minutes", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:66, Modules/Notifications/Center/NotificationSettings.qml:73", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:69, Modules/Notifications/Center/NotificationSettings.qml:73", "comment": "" }, { @@ -284,7 +284,7 @@ { "term": "24-hour clock", "context": "24-hour clock", - "reference": "Modules/Settings/GreeterTab.qml:541", + "reference": "Modules/Settings/GreeterTab.qml:601", "comment": "" }, { @@ -308,13 +308,13 @@ { "term": "270°", "context": "270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1796, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1817", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1799, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1820", "comment": "" }, { "term": "3 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:821, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:839, Modules/Settings/ClipboardTab.qml:107", + "reference": "Modules/Settings/NotificationsTab.qml:841, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:859, Modules/Settings/ClipboardTab.qml:107", "comment": "" }, { @@ -332,13 +332,13 @@ { "term": "3 seconds", "context": "3 seconds", - "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:38, Modules/Notifications/Center/NotificationSettings.qml:45", + "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:41, Modules/Notifications/Center/NotificationSettings.qml:45", "comment": "" }, { "term": "30 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:827, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:845, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", + "reference": "Modules/Settings/NotificationsTab.qml:847, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:865, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", "comment": "" }, { @@ -350,7 +350,7 @@ { "term": "30 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:58, Modules/Notifications/Center/NotificationSettings.qml:65", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:61, Modules/Notifications/Center/NotificationSettings.qml:65", "comment": "" }, { @@ -362,7 +362,7 @@ { "term": "3rd party", "context": "3rd party", - "reference": "Modules/Settings/PluginBrowser.qml:527", + "reference": "Modules/Settings/PluginBrowser.qml:529", "comment": "" }, { @@ -392,13 +392,13 @@ { "term": "5 minutes", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/WallpaperTab.qml:1020, Modules/Settings/WallpaperTab.qml:1044, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:70, Modules/Notifications/Center/NotificationSettings.qml:77", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/WallpaperTab.qml:1020, Modules/Settings/WallpaperTab.qml:1044, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:73, Modules/Notifications/Center/NotificationSettings.qml:77", "comment": "" }, { "term": "5 seconds", "context": "wallpaper interval", - "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:42, Modules/Settings/NotificationsTab.qml:157, Modules/Notifications/Center/NotificationSettings.qml:49", + "reference": "Modules/Settings/WallpaperTab.qml:996, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:482, Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Notifications/Center/NotificationSettings.qml:49", "comment": "" }, { @@ -428,7 +428,7 @@ { "term": "7 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:823, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:841, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", + "reference": "Modules/Settings/NotificationsTab.qml:843, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:861, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", "comment": "" }, { @@ -446,7 +446,7 @@ { "term": "8 seconds", "context": "8 seconds", - "reference": "Modules/Settings/NotificationsTab.qml:46, Modules/Notifications/Center/NotificationSettings.qml:53", + "reference": "Modules/Settings/NotificationsTab.qml:49, Modules/Notifications/Center/NotificationSettings.qml:53", "comment": "" }, { @@ -458,7 +458,7 @@ { "term": "90°", "context": "90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1792, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1813", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1795, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1816", "comment": "" }, { @@ -542,13 +542,13 @@ { "term": "Action", "context": "Action", - "reference": "Widgets/KeybindItem.qml:941, Widgets/KeybindItem.qml:1136, Modules/Settings/NotificationsTab.qml:566", + "reference": "Widgets/KeybindItem.qml:941, Widgets/KeybindItem.qml:1136, Modules/Settings/NotificationsTab.qml:586", "comment": "" }, { "term": "Action failed or terminal was closed.", "context": "Action failed or terminal was closed.", - "reference": "Modules/Settings/GreeterTab.qml:317", + "reference": "Modules/Settings/GreeterTab.qml:385", "comment": "" }, { @@ -560,19 +560,19 @@ { "term": "Activate", "context": "Activate", - "reference": "Modules/Settings/GreeterTab.qml:55, Modules/Settings/GreeterTab.qml:103, Modules/ControlCenter/Details/NetworkDetail.qml:403", + "reference": "Modules/Settings/GreeterTab.qml:122, Modules/Settings/GreeterTab.qml:170, Modules/ControlCenter/Details/NetworkDetail.qml:403", "comment": "" }, { "term": "Activate Greeter", "context": "greeter action confirmation", - "reference": "Modules/Settings/GreeterTab.qml:101", + "reference": "Modules/Settings/GreeterTab.qml:168", "comment": "" }, { "term": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", "context": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", - "reference": "Modules/Settings/GreeterTab.qml:102", + "reference": "Modules/Settings/GreeterTab.qml:169", "comment": "" }, { @@ -584,7 +584,7 @@ { "term": "Active", "context": "Active", - "reference": "Modules/Settings/ThemeColorsTab.qml:1385, Modules/Settings/NetworkTab.qml:754, Modules/ControlCenter/Details/AudioInputDetail.qml:254, Modules/ControlCenter/Details/AudioOutputDetail.qml:263", + "reference": "Modules/Settings/NetworkTab.qml:754, Modules/Settings/ThemeColorsTab.qml:1398, Modules/ControlCenter/Details/AudioOutputDetail.qml:263, Modules/ControlCenter/Details/AudioInputDetail.qml:254", "comment": "" }, { @@ -596,13 +596,13 @@ { "term": "Active Lock Screen Monitor", "context": "Active Lock Screen Monitor", - "reference": "Modules/Settings/LockScreenTab.qml:310", + "reference": "Modules/Settings/LockScreenTab.qml:355", "comment": "" }, { "term": "Active tile background and icon color", "context": "control center tile color setting description", - "reference": "Modules/Settings/ThemeColorsTab.qml:1518", + "reference": "Modules/Settings/ThemeColorsTab.qml:1531", "comment": "" }, { @@ -632,7 +632,7 @@ { "term": "Add", "context": "Add", - "reference": "Widgets/KeybindItem.qml:1830, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:152", + "reference": "Widgets/KeybindItem.qml:1830, Modules/Settings/DesktopWidgetsTab.qml:152, Modules/Plugins/ListSettingWithInput.qml:126", "comment": "" }, { @@ -662,7 +662,7 @@ { "term": "Add Widget", "context": "Add Widget", - "reference": "Modules/Settings/WidgetsTabSection.qml:772, Modules/Settings/WidgetSelectionPopup.qml:93, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:95, Modules/Settings/WidgetsTabSection.qml:772, Modules/Settings/WidgetSelectionPopup.qml:93, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", "comment": "" }, { @@ -674,7 +674,7 @@ { "term": "Add a border around the dock", "context": "Add a border around the dock", - "reference": "Modules/Settings/DockTab.qml:581", + "reference": "Modules/Settings/DockTab.qml:591", "comment": "" }, { @@ -722,13 +722,13 @@ { "term": "All", "context": "notification history filter", - "reference": "Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:684, Services/AppSearchService.qml:705, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:625, Modals/DankLauncherV2/LauncherContent.qml:307, Modals/DankLauncherV2/LauncherContent.qml:584, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:2016, Modules/Settings/WidgetsTabSection.qml:2070, Modules/Settings/KeybindsTab.qml:410, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:87", + "reference": "Services/AppSearchService.qml:684, Services/AppSearchService.qml:705, Modals/ProcessListModal.qml:377, Modals/DankLauncherV2/LauncherContent.qml:307, Modals/DankLauncherV2/LauncherContent.qml:584, Modals/DankLauncherV2/Controller.qml:625, Modules/Settings/KeybindsTab.qml:410, Modules/Settings/WidgetsTabSection.qml:2016, Modules/Settings/WidgetsTabSection.qml:2070, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Notifications/Center/HistoryNotificationList.qml:87, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101", "comment": "" }, { "term": "All Monitors", "context": "All Monitors", - "reference": "Modules/Settings/LockScreenTab.qml:312, Modules/Settings/LockScreenTab.qml:322, Modules/Settings/LockScreenTab.qml:332, Modules/Settings/LockScreenTab.qml:336", + "reference": "Modules/Settings/LockScreenTab.qml:357, Modules/Settings/LockScreenTab.qml:367, Modules/Settings/LockScreenTab.qml:377, Modules/Settings/LockScreenTab.qml:381", "comment": "" }, { @@ -746,7 +746,7 @@ { "term": "All displays", "context": "All displays", - "reference": "Modules/Plugins/PluginSettings.qml:255, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:313, Modules/Settings/DankBarTab.qml:450, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:313, Modules/Settings/DankBarTab.qml:450, Modules/Plugins/PluginSettings.qml:255, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", "comment": "" }, { @@ -764,7 +764,7 @@ { "term": "Alternative (OR)", "context": "U2F mode option: key works as standalone unlock method", - "reference": "Modules/Settings/LockScreenTab.qml:199, Modules/Settings/LockScreenTab.qml:200", + "reference": "Modules/Settings/LockScreenTab.qml:244, Modules/Settings/LockScreenTab.qml:245", "comment": "" }, { @@ -806,7 +806,7 @@ { "term": "Always show when there's only one connected display", "context": "Always show when there's only one connected display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:423", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:432", "comment": "" }, { @@ -842,7 +842,7 @@ { "term": "Animation Speed", "context": "Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:197, Modules/Settings/NotificationsTab.qml:304", + "reference": "Modules/Settings/TypographyMotionTab.qml:197, Modules/Settings/NotificationsTab.qml:316", "comment": "" }, { @@ -884,7 +884,7 @@ { "term": "App Names", "context": "lock screen notification mode option | notification rule match field option", - "reference": "Modules/Settings/LockScreenTab.qml:103, Modules/Settings/NotificationsTab.qml:82, Modules/Settings/NotificationsTab.qml:709", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:85, Modules/Settings/NotificationsTab.qml:729", "comment": "" }, { @@ -908,7 +908,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modals/DankLauncherV2/Controller.qml:150, Modules/Settings/ThemeColorsTab.qml:2119, Modules/Dock/DockLauncherButton.qml:25", + "reference": "Modals/DankLauncherV2/Controller.qml:150, Modules/Settings/ThemeColorsTab.qml:2132, Modules/Dock/DockLauncherButton.qml:25", "comment": "" }, { @@ -920,13 +920,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2702", + "reference": "Modules/Settings/ThemeColorsTab.qml:2801", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2736", + "reference": "Modules/Settings/ThemeColorsTab.qml:2835", "comment": "" }, { @@ -956,7 +956,7 @@ { "term": "Apps Icon", "context": "Apps Icon", - "reference": "Modules/Settings/DockTab.qml:256, Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -974,7 +974,7 @@ { "term": "Apps with notification popups muted. Unmute or delete to remove.", "context": "Apps with notification popups muted. Unmute or delete to remove.", - "reference": "Modules/Settings/NotificationsTab.qml:621", + "reference": "Modules/Settings/NotificationsTab.qml:641", "comment": "" }, { @@ -1112,13 +1112,13 @@ { "term": "Auto", "context": "theme category option", - "reference": "Modules/Settings/ThemeColorsTab.qml:281, Modules/Settings/ThemeColorsTab.qml:281, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:887, Modules/Settings/NetworkTab.qml:888, Modules/Settings/NetworkTab.qml:891, Modules/Settings/DisplayConfigTab.qml:150, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124", + "reference": "Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:887, Modules/Settings/NetworkTab.qml:888, Modules/Settings/NetworkTab.qml:891, Modules/Settings/DisplayConfigTab.qml:150, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124", "comment": "" }, { "term": "Auto (Bar-aware)", "context": "bar shadow direction source option | shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/ThemeColorsTab.qml:1693, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/DankBarTab.qml:1120, Modules/Settings/DankBarTab.qml:1124, Modules/Settings/DankBarTab.qml:1132", + "reference": "Modules/Settings/DankBarTab.qml:1120, Modules/Settings/DankBarTab.qml:1124, Modules/Settings/DankBarTab.qml:1132, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/ThemeColorsTab.qml:1719", "comment": "" }, { @@ -1148,7 +1148,7 @@ { "term": "Auto-Hide Timeout", "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:2297", + "reference": "Modules/Settings/ThemeColorsTab.qml:2310", "comment": "" }, { @@ -1160,7 +1160,7 @@ { "term": "Auto-delete notifications older than this", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:813", + "reference": "Modules/Settings/NotificationsTab.qml:833", "comment": "" }, { @@ -1202,19 +1202,19 @@ { "term": "Automatic Color Mode", "context": "Automatic Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1005", + "reference": "Modules/Settings/ThemeColorsTab.qml:1018", "comment": "" }, { "term": "Automatic Control", "context": "Automatic Control", - "reference": "Modules/Settings/ThemeColorsTab.qml:1016, Modules/Settings/GammaControlTab.qml:139", + "reference": "Modules/Settings/ThemeColorsTab.qml:1029, Modules/Settings/GammaControlTab.qml:139", "comment": "" }, { "term": "Automatic Cycling", "context": "Automatic Cycling", - "reference": "Modules/Settings/WallpaperTab.qml:907, Modules/Settings/LockScreenTab.qml:282", + "reference": "Modules/Settings/WallpaperTab.qml:907, Modules/Settings/LockScreenTab.qml:327", "comment": "" }, { @@ -1250,25 +1250,25 @@ { "term": "Automatically lock the screen when DMS starts", "context": "Automatically lock the screen when DMS starts", - "reference": "Modules/Settings/LockScreenTab.qml:166", + "reference": "Modules/Settings/LockScreenTab.qml:211", "comment": "" }, { "term": "Automatically lock the screen when the system prepares to suspend", "context": "Automatically lock the screen when the system prepares to suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:93, Modules/Settings/LockScreenTab.qml:147", + "reference": "Modules/Settings/LockScreenTab.qml:192, Modules/Settings/PowerSleepTab.qml:93", "comment": "" }, { "term": "Automation", "context": "Automation", - "reference": "Modules/Settings/ThemeColorsTab.qml:1342", + "reference": "Modules/Settings/ThemeColorsTab.qml:1355", "comment": "" }, { "term": "Available", "context": "Available", - "reference": "Modules/Settings/PrinterTab.qml:202, Modules/ControlCenter/Details/AudioInputDetail.qml:254, Modules/ControlCenter/Details/AudioOutputDetail.qml:263", + "reference": "Modules/Settings/PrinterTab.qml:202, Modules/ControlCenter/Details/AudioOutputDetail.qml:263, Modules/ControlCenter/Details/AudioInputDetail.qml:254", "comment": "" }, { @@ -1301,6 +1301,12 @@ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", "comment": "" }, + { + "term": "Available.", + "context": "Available.", + "reference": "Modules/Settings/GreeterTab.qml:63", + "comment": "" + }, { "term": "BSSID", "context": "BSSID", @@ -1310,25 +1316,25 @@ { "term": "Back", "context": "greeter back button", - "reference": "Modals/Greeter/GreeterModal.qml:285, Modules/DankBar/Widgets/SystemTrayBar.qml:1550", + "reference": "Modals/Greeter/GreeterModal.qml:285, Modules/DankBar/Widgets/SystemTrayBar.qml:1542", "comment": "" }, { "term": "Backend", "context": "Backend", - "reference": "Modules/Settings/AboutTab.qml:634, Modules/Settings/NetworkTab.qml:170", + "reference": "Modules/Settings/NetworkTab.qml:170, Modules/Settings/AboutTab.qml:634", "comment": "" }, { "term": "Background", "context": "Background", - "reference": "Modules/Settings/GreeterTab.qml:590", + "reference": "Modules/Settings/GreeterTab.qml:650", "comment": "" }, { "term": "Background Opacity", "context": "Background Opacity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", + "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63", "comment": "" }, { @@ -1370,7 +1376,7 @@ { "term": "Bar Shadows", "context": "Bar Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1781", + "reference": "Modules/Settings/ThemeColorsTab.qml:1794", "comment": "" }, { @@ -1382,19 +1388,19 @@ { "term": "Base color for shadows (opacity is applied automatically)", "context": "Base color for shadows (opacity is applied automatically)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1650", + "reference": "Modules/Settings/ThemeColorsTab.qml:1663", "comment": "" }, { "term": "Base duration for animations (drag to use Custom)", "context": "Base duration for animations (drag to use Custom)", - "reference": "Modules/Settings/NotificationsTab.qml:346", + "reference": "Modules/Settings/NotificationsTab.qml:359", "comment": "" }, { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:1127, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "reference": "Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/Settings/WidgetsTabSection.qml:1127, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "" }, { @@ -1424,7 +1430,7 @@ { "term": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "context": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:133", + "reference": "Modules/Settings/LockScreenTab.qml:178", "comment": "" }, { @@ -1442,7 +1448,7 @@ { "term": "Bit Depth", "context": "Bit Depth", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1245", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1248", "comment": "" }, { @@ -1514,37 +1520,37 @@ { "term": "Body", "context": "notification rule match field option", - "reference": "Modules/Settings/NotificationsTab.qml:94", + "reference": "Modules/Settings/NotificationsTab.qml:97", "comment": "" }, { "term": "Border", "context": "launcher border option", - "reference": "Modules/Settings/DockTab.qml:574, Modules/Settings/DockTab.qml:580, Modules/Settings/LauncherTab.qml:432, Modules/Settings/DankBarTab.qml:1384", + "reference": "Modules/Settings/DockTab.qml:584, Modules/Settings/DockTab.qml:590, Modules/Settings/DankBarTab.qml:1384, Modules/Settings/LauncherTab.qml:432", "comment": "" }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/DockTab.qml:587, Modules/Settings/WorkspacesTab.qml:358", + "reference": "Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/DockTab.qml:597", "comment": "" }, { "term": "Border Opacity", "context": "Border Opacity", - "reference": "Modules/Settings/DockTab.qml:624", + "reference": "Modules/Settings/DockTab.qml:634", "comment": "" }, { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1880, Modules/Settings/ThemeColorsTab.qml:1983, Modules/Settings/ThemeColorsTab.qml:2086", + "reference": "Modules/Settings/ThemeColorsTab.qml:1893, Modules/Settings/ThemeColorsTab.qml:1996, Modules/Settings/ThemeColorsTab.qml:2099", "comment": "" }, { "term": "Border Thickness", "context": "Border Thickness", - "reference": "Modules/Settings/DockTab.qml:635", + "reference": "Modules/Settings/DockTab.qml:645", "comment": "" }, { @@ -1556,25 +1562,25 @@ { "term": "Bottom", "context": "shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/ThemeColorsTab.qml:1699, Modules/Settings/ThemeColorsTab.qml:1712, Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:286, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1161, Modules/Settings/DankBarTab.qml:1175", + "reference": "Modules/Settings/DockTab.qml:102, Modules/Settings/DankBarTab.qml:286, Modules/Settings/DankBarTab.qml:542, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1161, Modules/Settings/DankBarTab.qml:1175, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1712, Modules/Settings/ThemeColorsTab.qml:1725", "comment": "" }, { "term": "Bottom Center", "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66, Modules/Settings/NotificationsTab.qml:224, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:241", + "reference": "Modules/Settings/NotificationsTab.qml:227, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:244, Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66", "comment": "" }, { "term": "Bottom Left", "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/NotificationsTab.qml:218, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:247, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "reference": "Modules/Settings/NotificationsTab.qml:221, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:250, Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", "comment": "" }, { "term": "Bottom Right", "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/NotificationsTab.qml:222, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:244, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "reference": "Modules/Settings/NotificationsTab.qml:225, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:247, Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", "comment": "" }, { @@ -1592,7 +1598,7 @@ { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/WidgetsTabSection.qml:1117, Modules/Settings/DockTab.qml:474, Modules/Settings/LauncherTab.qml:276, Modules/Settings/OSDTab.qml:117", + "reference": "Modules/Settings/DockTab.qml:484, Modules/Settings/WidgetsTabSection.qml:1117, Modules/Settings/OSDTab.qml:117, Modules/Settings/LauncherTab.qml:276", "comment": "" }, { @@ -1610,13 +1616,13 @@ { "term": "Brightness control not available", "context": "Brightness control not available", - "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:147, Modules/ControlCenter/Models/WidgetModel.qml:148", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:148, Modules/ControlCenter/Details/BrightnessDetail.qml:147", "comment": "" }, { "term": "Browse", "context": "theme category option", - "reference": "Modals/DankLauncherV2/Controller.qml:157, Modals/DankLauncherV2/Controller.qml:1168, Modules/Settings/ThemeColorsTab.qml:281, Modules/Settings/GreeterTab.qml:623, Modules/Settings/PluginsTab.qml:209, Modules/Settings/LockScreenTab.qml:273", + "reference": "Modals/DankLauncherV2/Controller.qml:157, Modals/DankLauncherV2/Controller.qml:1166, Modules/Settings/LockScreenTab.qml:318, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/GreeterTab.qml:683, Modules/Settings/PluginsTab.qml:209", "comment": "" }, { @@ -1628,13 +1634,13 @@ { "term": "Browse Plugins", "context": "plugin browser header | plugin browser window title", - "reference": "Modules/Settings/PluginBrowser.qml:147, Modules/Settings/PluginBrowser.qml:257, Modules/Settings/DesktopWidgetsTab.qml:101", + "reference": "Modules/Settings/DesktopWidgetsTab.qml:101, Modules/Settings/PluginBrowser.qml:147, Modules/Settings/PluginBrowser.qml:257", "comment": "" }, { "term": "Browse Themes", "context": "browse themes button | theme browser header | theme browser window title", - "reference": "Modules/Settings/ThemeColorsTab.qml:993, Modules/Settings/ThemeBrowser.qml:146, Modules/Settings/ThemeBrowser.qml:243", + "reference": "Modules/Settings/ThemeColorsTab.qml:764, Modules/Settings/ThemeBrowser.qml:146, Modules/Settings/ThemeBrowser.qml:243", "comment": "" }, { @@ -1646,7 +1652,7 @@ { "term": "Button Color", "context": "Button Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1549", + "reference": "Modules/Settings/ThemeColorsTab.qml:1562", "comment": "" }, { @@ -1724,7 +1730,7 @@ { "term": "Cancel", "context": "Cancel", - "reference": "Modals/WindowRuleModal.qml:1130, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:354, Modals/WifiPasswordModal.qml:691, Widgets/KeybindItem.qml:1814, Modals/DankLauncherV2/LauncherContent.qml:985, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:830, Modules/Settings/GreeterTab.qml:113, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/DisplayConfigTab.qml:256, Modules/Settings/DisplayConfigTab.qml:301, Modules/Settings/AudioTab.qml:726", + "reference": "Widgets/KeybindItem.qml:1814, Modals/WindowRuleModal.qml:1130, Modals/PolkitAuthModal.qml:354, Modals/WifiPasswordModal.qml:691, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:272, Modals/DankLauncherV2/LauncherContent.qml:985, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/DisplayConfigTab.qml:256, Modules/Settings/DisplayConfigTab.qml:301, Modules/Settings/AudioTab.qml:726, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/GreeterTab.qml:180, Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:832", "comment": "" }, { @@ -1754,7 +1760,7 @@ { "term": "Capacity", "context": "Capacity", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:175, Modules/DankBar/Popouts/BatteryPopout.qml:333, Modules/DankBar/Popouts/BatteryPopout.qml:491", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:333, Modules/DankBar/Popouts/BatteryPopout.qml:491, Modules/ControlCenter/Details/BatteryDetail.qml:175", "comment": "" }, { @@ -1814,7 +1820,7 @@ { "term": "Change bar appearance", "context": "Change bar appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:1468", + "reference": "Modules/Settings/ThemeColorsTab.qml:1481", "comment": "" }, { @@ -1850,19 +1856,19 @@ { "term": "Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.", "context": "Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.", - "reference": "Modules/Settings/GreeterTab.qml:383", + "reference": "Modules/Settings/GreeterTab.qml:451", "comment": "" }, { "term": "Checking whether sudo authentication is needed…", "context": "Checking whether sudo authentication is needed…", - "reference": "Modules/Settings/GreeterTab.qml:126", + "reference": "Modules/Settings/GreeterTab.qml:193", "comment": "" }, { "term": "Checking…", "context": "greeter status loading", - "reference": "Modules/Settings/GreeterTab.qml:405", + "reference": "Modules/Settings/GreeterTab.qml:473", "comment": "" }, { @@ -1880,7 +1886,7 @@ { "term": "Choose Dock Launcher Logo Color", "context": "Choose Dock Launcher Logo Color", - "reference": "Modules/Settings/DockTab.qml:440", + "reference": "Modules/Settings/DockTab.qml:450", "comment": "" }, { @@ -1934,13 +1940,13 @@ { "term": "Choose the background color for widgets", "context": "Choose the background color for widgets", - "reference": "Modules/Settings/ThemeColorsTab.qml:1483", + "reference": "Modules/Settings/ThemeColorsTab.qml:1496", "comment": "" }, { "term": "Choose the border accent color", "context": "Choose the border accent color", - "reference": "Modules/Settings/DockTab.qml:588", + "reference": "Modules/Settings/DockTab.qml:598", "comment": "" }, { @@ -1952,7 +1958,7 @@ { "term": "Choose where notification popups appear on screen", "context": "Choose where notification popups appear on screen", - "reference": "Modules/Settings/NotificationsTab.qml:210", + "reference": "Modules/Settings/NotificationsTab.qml:213", "comment": "" }, { @@ -1970,7 +1976,7 @@ { "term": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "context": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", - "reference": "Modules/Settings/LockScreenTab.qml:299", + "reference": "Modules/Settings/LockScreenTab.qml:344", "comment": "" }, { @@ -1988,7 +1994,7 @@ { "term": "Circle", "context": "dock indicator style option", - "reference": "Modules/Settings/DockTab.qml:167", + "reference": "Modules/Settings/DockTab.qml:177", "comment": "" }, { @@ -2054,7 +2060,7 @@ { "term": "Click 'Setup' to create cursor config and add include to your compositor config.", "context": "Click 'Setup' to create cursor config and add include to your compositor config.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2196", + "reference": "Modules/Settings/ThemeColorsTab.qml:2209", "comment": "" }, { @@ -2072,7 +2078,7 @@ { "term": "Click Refresh to check status.", "context": "greeter status placeholder", - "reference": "Modules/Settings/GreeterTab.qml:405", + "reference": "Modules/Settings/GreeterTab.qml:473", "comment": "" }, { @@ -2096,7 +2102,7 @@ { "term": "Click to select a custom theme JSON file", "context": "custom theme file hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:558", + "reference": "Modules/Settings/ThemeColorsTab.qml:557", "comment": "" }, { @@ -2162,7 +2168,7 @@ { "term": "Close", "context": "Close", - "reference": "Modules/SystemUpdatePopout.qml:303, Modals/NetworkWiredInfoModal.qml:129, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:872", + "reference": "Modules/SystemUpdatePopout.qml:303, Modals/NetworkInfoModal.qml:129, Modals/NetworkWiredInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:872", "comment": "" }, { @@ -2180,13 +2186,13 @@ { "term": "Close Window", "context": "Close Window", - "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141, Modules/Dock/DockContextMenu.qml:537, Modules/DankBar/Widgets/AppsDockContextMenu.qml:447", + "reference": "Modules/Dock/DockContextMenu.qml:537, Modules/DankBar/Widgets/AppsDockContextMenu.qml:447, dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141", "comment": "" }, { "term": "Color", "context": "border color", - "reference": "Modules/Settings/LauncherTab.qml:459, Modules/Settings/DankBarTab.qml:1193, Modules/Settings/DankBarTab.qml:1267, Modules/Settings/DankBarTab.qml:1392, Modules/Settings/DankBarTab.qml:1482, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "reference": "Modules/Settings/DankBarTab.qml:1193, Modules/Settings/DankBarTab.qml:1267, Modules/Settings/DankBarTab.qml:1392, Modules/Settings/DankBarTab.qml:1482, Modules/Settings/LauncherTab.qml:459, Modules/Settings/Widgets/SettingsColorPicker.qml:29", "comment": "" }, { @@ -2198,19 +2204,19 @@ { "term": "Color Management", "context": "Color Management", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1247", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1250", "comment": "" }, { "term": "Color Mode", "context": "Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1438", + "reference": "Modules/Settings/ThemeColorsTab.qml:1451", "comment": "" }, { "term": "Color Override", "context": "Color Override", - "reference": "Modules/Settings/DockTab.qml:357, Modules/Settings/LauncherTab.qml:159", + "reference": "Modules/Settings/DockTab.qml:367, Modules/Settings/LauncherTab.qml:159", "comment": "" }, { @@ -2228,13 +2234,13 @@ { "term": "Color displayed on monitors without the lock screen", "context": "Color displayed on monitors without the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:367", + "reference": "Modules/Settings/LockScreenTab.qml:412", "comment": "" }, { "term": "Color for primary action buttons", "context": "Color for primary action buttons", - "reference": "Modules/Settings/ThemeColorsTab.qml:1550", + "reference": "Modules/Settings/ThemeColorsTab.qml:1563", "comment": "" }, { @@ -2264,13 +2270,13 @@ { "term": "Color theme from DMS registry", "context": "registry theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:238", + "reference": "Modules/Settings/ThemeColorsTab.qml:237", "comment": "" }, { "term": "Colorful", "context": "widget style option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1469", + "reference": "Modules/Settings/ThemeColorsTab.qml:1482", "comment": "" }, { @@ -2336,7 +2342,7 @@ { "term": "Compact", "context": "Compact", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/NotificationsTab.qml:267", + "reference": "Modules/Settings/NotificationsTab.qml:270, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15", "comment": "" }, { @@ -2354,13 +2360,13 @@ { "term": "Compositor", "context": "Compositor", - "reference": "Modules/Settings/DockTab.qml:270, Modules/Settings/LauncherTab.qml:73", + "reference": "Modules/Settings/DockTab.qml:280, Modules/Settings/LauncherTab.qml:73", "comment": "" }, { "term": "Compositor Settings", "context": "Compositor Settings", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:38, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:38", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:38, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:38", "comment": "" }, { @@ -2372,7 +2378,7 @@ { "term": "Config Format", "context": "Config Format", - "reference": "Modules/Settings/DisplayConfigTab.qml:413, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1209", + "reference": "Modules/Settings/DisplayConfigTab.qml:413, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1212", "comment": "" }, { @@ -2384,7 +2390,7 @@ { "term": "Config validation failed", "context": "Config validation failed", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1292, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1300", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1303", "comment": "" }, { @@ -2426,7 +2432,7 @@ { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "context": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", - "reference": "Modules/Settings/WorkspacesTab.qml:413", + "reference": "Modules/Settings/WorkspacesTab.qml:423", "comment": "" }, { @@ -2504,7 +2510,7 @@ { "term": "Connected", "context": "network status", - "reference": "Modules/Settings/AboutTab.qml:718, Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1558, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:609, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:337, Modules/ControlCenter/Components/DragDropGrid.qml:340, Modules/ControlCenter/Components/DragDropGrid.qml:342, Modules/ControlCenter/Components/DragDropGrid.qml:345", + "reference": "Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1558, Modules/Settings/AboutTab.qml:718, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:337, Modules/ControlCenter/Components/DragDropGrid.qml:340, Modules/ControlCenter/Components/DragDropGrid.qml:342, Modules/ControlCenter/Components/DragDropGrid.qml:345, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:609", "comment": "" }, { @@ -2540,7 +2546,7 @@ { "term": "Contains", "context": "notification rule match type option", - "reference": "Modules/Settings/NotificationsTab.qml:101", + "reference": "Modules/Settings/NotificationsTab.qml:104", "comment": "" }, { @@ -2552,13 +2558,13 @@ { "term": "Content copied", "context": "Content copied", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:262, dms-plugins/DankGifSearch/DankGifSearch.qml:209", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:209, dms-plugins/DankStickerSearch/DankStickerSearch.qml:262", "comment": "" }, { "term": "Contrast", "context": "Contrast", - "reference": "Modules/Settings/DockTab.qml:486, Modules/Settings/LauncherTab.qml:288", + "reference": "Modules/Settings/DockTab.qml:496, Modules/Settings/LauncherTab.qml:288", "comment": "" }, { @@ -2570,13 +2576,13 @@ { "term": "Control Center Tile Color", "context": "Control Center Tile Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1517", + "reference": "Modules/Settings/ThemeColorsTab.qml:1530", "comment": "" }, { "term": "Control animation duration for notification popups and history", "context": "Control animation duration for notification popups and history", - "reference": "Modules/Settings/NotificationsTab.qml:312", + "reference": "Modules/Settings/NotificationsTab.qml:324", "comment": "" }, { @@ -2588,7 +2594,7 @@ { "term": "Control what notification information is shown on the lock screen", "context": "lock screen notification privacy setting", - "reference": "Modules/Settings/LockScreenTab.qml:102, Modules/Settings/NotificationsTab.qml:708", + "reference": "Modules/Settings/LockScreenTab.qml:147, Modules/Settings/NotificationsTab.qml:728", "comment": "" }, { @@ -2606,31 +2612,31 @@ { "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:1582", + "reference": "Modules/Settings/ThemeColorsTab.qml:1595", "comment": "" }, { "term": "Controls shadow cast direction for elevation layers", "context": "Controls shadow cast direction for elevation layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:1688", + "reference": "Modules/Settings/ThemeColorsTab.qml:1701", "comment": "" }, { "term": "Controls the base blur radius and offset of shadows", "context": "Controls the base blur radius and offset of shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1620", + "reference": "Modules/Settings/ThemeColorsTab.qml:1633", "comment": "" }, { "term": "Controls the transparency of the shadow", "context": "Controls the transparency of the shadow", - "reference": "Modules/Settings/ThemeColorsTab.qml:1635", + "reference": "Modules/Settings/ThemeColorsTab.qml:1648", "comment": "" }, { "term": "Convenience options for the login screen. Sync to apply.", "context": "Convenience options for the login screen. Sync to apply.", - "reference": "Modules/Settings/GreeterTab.qml:664", + "reference": "Modules/Settings/GreeterTab.qml:724", "comment": "" }, { @@ -2642,25 +2648,25 @@ { "term": "Copied GIF", "context": "Copied GIF", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:283, dms-plugins/DankGifSearch/DankGifSearch.qml:230", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:230, dms-plugins/DankStickerSearch/DankStickerSearch.qml:283", "comment": "" }, { "term": "Copied MP4", "context": "Copied MP4", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:293, dms-plugins/DankGifSearch/DankGifSearch.qml:240", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:240, dms-plugins/DankStickerSearch/DankStickerSearch.qml:293", "comment": "" }, { "term": "Copied WebP", "context": "Copied WebP", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:273, dms-plugins/DankGifSearch/DankGifSearch.qml:220", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:220, dms-plugins/DankStickerSearch/DankStickerSearch.qml:273", "comment": "" }, { "term": "Copied to clipboard", "context": "Copied to clipboard", - "reference": "Services/ClipboardService.qml:108, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:315, Modals/Settings/SettingsModal.qml:332, Modules/Notepad/NotepadTextEditor.qml:250, Modules/Settings/DesktopWidgetInstanceCard.qml:426", + "reference": "Services/ClipboardService.qml:108, Modals/Settings/SettingsModal.qml:315, Modals/Settings/SettingsModal.qml:332, Modules/Settings/DesktopWidgetInstanceCard.qml:426, Modules/Notepad/NotepadTextEditor.qml:250, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230", "comment": "" }, { @@ -2678,7 +2684,7 @@ { "term": "Copy Content", "context": "Copy Content", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:259, dms-plugins/DankGifSearch/DankGifSearch.qml:206", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:206, dms-plugins/DankStickerSearch/DankStickerSearch.qml:259", "comment": "" }, { @@ -2714,13 +2720,13 @@ { "term": "Copy path", "context": "Copy path", - "reference": "Modals/DankLauncherV2/Controller.qml:1047", + "reference": "Modals/DankLauncherV2/Controller.qml:1045", "comment": "" }, { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modals/WindowRuleModal.qml:795, Modules/Settings/ThemeColorsTab.qml:1595", + "reference": "Modals/WindowRuleModal.qml:795, Modules/Settings/ThemeColorsTab.qml:1608", "comment": "" }, { @@ -2738,7 +2744,7 @@ { "term": "Count Only", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:103, Modules/Settings/NotificationsTab.qml:709", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:729", "comment": "" }, { @@ -2780,7 +2786,7 @@ { "term": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", "context": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", - "reference": "Modules/Settings/NotificationsTab.qml:418", + "reference": "Modules/Settings/NotificationsTab.qml:438", "comment": "" }, { @@ -2792,7 +2798,7 @@ { "term": "Critical Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:151, Modules/Settings/NotificationsTab.qml:765, Modules/Settings/NotificationsTab.qml:872, Modules/Notifications/Center/NotificationSettings.qml:201, Modules/Notifications/Center/NotificationSettings.qml:408", + "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:785, Modules/Settings/NotificationsTab.qml:892, Modules/Notifications/Center/NotificationSettings.qml:201, Modules/Notifications/Center/NotificationSettings.qml:408", "comment": "" }, { @@ -2840,7 +2846,7 @@ { "term": "Current Theme: %1", "context": "current theme label", - "reference": "Modules/Settings/ThemeColorsTab.qml:222, Modules/Settings/ThemeColorsTab.qml:224, Modules/Settings/ThemeColorsTab.qml:225", + "reference": "Modules/Settings/ThemeColorsTab.qml:221, Modules/Settings/ThemeColorsTab.qml:223, Modules/Settings/ThemeColorsTab.qml:224", "comment": "" }, { @@ -2876,31 +2882,31 @@ { "term": "Cursor Config Not Configured", "context": "Cursor Config Not Configured", - "reference": "Modules/Settings/ThemeColorsTab.qml:2189", + "reference": "Modules/Settings/ThemeColorsTab.qml:2202", "comment": "" }, { "term": "Cursor Include Missing", "context": "Cursor Include Missing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2189", + "reference": "Modules/Settings/ThemeColorsTab.qml:2202", "comment": "" }, { "term": "Cursor Size", "context": "Cursor Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2237", + "reference": "Modules/Settings/ThemeColorsTab.qml:2250", "comment": "" }, { "term": "Cursor Theme", "context": "Cursor Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2147, Modules/Settings/ThemeColorsTab.qml:2221", + "reference": "Modules/Settings/ThemeColorsTab.qml:2160, Modules/Settings/ThemeColorsTab.qml:2234", "comment": "" }, { "term": "Custom", "context": "shadow color option | theme category option", - "reference": "Widgets/KeybindItem.qml:1403, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:281, Modules/Settings/ThemeColorsTab.qml:281, Modules/Settings/ThemeColorsTab.qml:1651, Modules/Settings/ThemeColorsTab.qml:1661, Modules/Settings/ThemeColorsTab.qml:1672, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/DockTab.qml:272, Modules/Settings/DockTab.qml:379, Modules/Settings/LauncherTab.qml:75, Modules/Settings/LauncherTab.qml:181, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/NotificationsTab.qml:325, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", + "reference": "Widgets/KeybindItem.qml:1403, Modules/Settings/DockTab.qml:282, Modules/Settings/DockTab.qml:389, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1674, Modules/Settings/ThemeColorsTab.qml:1685, Modules/Settings/NotificationsTab.qml:337, Modules/Settings/LauncherTab.qml:75, Modules/Settings/LauncherTab.qml:181, Modules/Settings/Widgets/DeviceAliasRow.qml:92, Modules/Settings/Widgets/SettingsColorPicker.qml:52, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47", "comment": "" }, { @@ -2966,7 +2972,7 @@ { "term": "Custom Shadow Color", "context": "Custom Shadow Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1732", + "reference": "Modules/Settings/ThemeColorsTab.qml:1745", "comment": "" }, { @@ -2996,7 +3002,7 @@ { "term": "Custom theme loaded from JSON file", "context": "custom theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:240", + "reference": "Modules/Settings/ThemeColorsTab.qml:239", "comment": "" }, { @@ -3008,7 +3014,7 @@ { "term": "Custom: ", "context": "Custom: ", - "reference": "Modules/Settings/GreeterTab.qml:581, Modules/Settings/TimeWeatherTab.qml:160, Modules/Settings/TimeWeatherTab.qml:247", + "reference": "Modules/Settings/GreeterTab.qml:641, Modules/Settings/TimeWeatherTab.qml:160, Modules/Settings/TimeWeatherTab.qml:247", "comment": "" }, { @@ -3050,7 +3056,7 @@ { "term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", "context": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.", - "reference": "Modules/Settings/GreeterTab.qml:697", + "reference": "Modules/Settings/GreeterTab.qml:757", "comment": "" }, { @@ -3098,7 +3104,7 @@ { "term": "Dank", "context": "Dank", - "reference": "Modules/Settings/DockTab.qml:256, Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -3122,19 +3128,31 @@ { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2345", + "reference": "Modules/Settings/ThemeColorsTab.qml:2358", "comment": "" }, { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1376, Modules/Settings/WallpaperTab.qml:582, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:620", + "reference": "Modules/Settings/WallpaperTab.qml:582, Modules/Settings/ThemeColorsTab.qml:1389, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:620", + "comment": "" + }, + { + "term": "Dark mode base", + "context": "Dark mode base", + "reference": "Modules/Settings/ThemeColorsTab.qml:2590", + "comment": "" + }, + { + "term": "Dark mode harmony", + "context": "Dark mode harmony", + "reference": "Modules/Settings/ThemeColorsTab.qml:2622", "comment": "" }, { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2109", + "reference": "Modules/Settings/ThemeColorsTab.qml:2122", "comment": "" }, { @@ -3146,13 +3164,13 @@ { "term": "Date format", "context": "Date format", - "reference": "Modules/Settings/GreeterTab.qml:575", + "reference": "Modules/Settings/GreeterTab.qml:635", "comment": "" }, { "term": "Date format on greeter", "context": "Date format on greeter", - "reference": "Modules/Settings/GreeterTab.qml:565", + "reference": "Modules/Settings/GreeterTab.qml:625", "comment": "" }, { @@ -3176,13 +3194,13 @@ { "term": "Day Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:330, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:128, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:215, Modules/Settings/TimeWeatherTab.qml:252", + "reference": "Modules/Settings/GreeterTab.qml:398, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:128, Modules/Settings/TimeWeatherTab.qml:165, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:215, Modules/Settings/TimeWeatherTab.qml:252", "comment": "" }, { "term": "Day Month Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:334, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:132, Modules/Settings/TimeWeatherTab.qml:166, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:219, Modules/Settings/TimeWeatherTab.qml:253", + "reference": "Modules/Settings/GreeterTab.qml:402, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:132, Modules/Settings/TimeWeatherTab.qml:166, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:219, Modules/Settings/TimeWeatherTab.qml:253", "comment": "" }, { @@ -3206,13 +3224,13 @@ { "term": "Default", "context": "notification rule action option | notification rule urgency option | widget style option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/DockTab.qml:379, Modules/Settings/LauncherTab.qml:181, Modules/Settings/NotificationsTab.qml:116, Modules/Settings/NotificationsTab.qml:139", + "reference": "Modules/Settings/DockTab.qml:389, Modules/Settings/ThemeColorsTab.qml:1482, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142, Modules/Settings/LauncherTab.qml:181", "comment": "" }, { "term": "Default (Black)", "context": "shadow color option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1651, Modules/Settings/ThemeColorsTab.qml:1663, Modules/Settings/DankBarTab.qml:1211", + "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1676", "comment": "" }, { @@ -3248,7 +3266,7 @@ { "term": "Delete", "context": "Delete", - "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/PrinterTab.qml:1094, Modules/Settings/PrinterTab.qml:1680, Modules/Settings/NetworkTab.qml:1825, Modules/Settings/DisplayConfigTab.qml:291", + "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/PrinterTab.qml:1094, Modules/Settings/PrinterTab.qml:1680, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/NetworkTab.qml:1825, Modules/Settings/DisplayConfigTab.qml:291", "comment": "" }, { @@ -3296,7 +3314,7 @@ { "term": "Dependencies & documentation", "context": "Dependencies & documentation", - "reference": "Modules/Settings/GreeterTab.qml:693", + "reference": "Modules/Settings/GreeterTab.qml:753", "comment": "" }, { @@ -3326,7 +3344,7 @@ { "term": "Desktop Entry", "context": "notification rule match field option", - "reference": "Modules/Settings/NotificationsTab.qml:86", + "reference": "Modules/Settings/NotificationsTab.qml:89", "comment": "" }, { @@ -3380,7 +3398,7 @@ { "term": "Device paired", "context": "Phone Connect pairing action", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:164, Modules/ControlCenter/Details/BluetoothDetail.qml:54", + "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:54, dms-plugins/DankKDEConnect/DankKDEConnect.qml:164", "comment": "" }, { @@ -3422,25 +3440,19 @@ { "term": "Disable Output", "context": "Disable Output", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:76, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:63", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:63, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:76", "comment": "" }, { "term": "Disabled", "context": "bluetooth status | lock screen notification mode option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1350, Modules/Settings/LockScreenTab.qml:103, Modules/Settings/NetworkTab.qml:823, Modules/Settings/DankBarTab.qml:357, Modules/Settings/NotificationsTab.qml:709, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1223, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1229, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1231, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1243, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1257, Modules/ControlCenter/Components/DragDropGrid.qml:317", - "comment": "" - }, - { - "term": "Disabled.", - "context": "Disabled.", - "reference": "Modules/Settings/GreeterTab.qml:489", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/DankBarTab.qml:357, Modules/Settings/NetworkTab.qml:823, Modules/Settings/ThemeColorsTab.qml:1363, Modules/Settings/NotificationsTab.qml:729, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260, Modules/ControlCenter/Components/DragDropGrid.qml:317", "comment": "" }, { "term": "Disabling WiFi...", "context": "network status", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:192, Modules/ControlCenter/Components/DragDropGrid.qml:293", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:293, Modules/ControlCenter/Details/NetworkDetail.qml:192", "comment": "" }, { @@ -3470,7 +3482,7 @@ { "term": "Disconnected", "context": "Disconnected", - "reference": "Modules/Settings/NetworkTab.qml:215, Modules/Settings/NetworkTab.qml:450, Modules/Settings/NetworkTab.qml:1555, Modules/Settings/DisplayConfig/OutputCard.qml:74, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", + "reference": "Modules/Settings/NetworkTab.qml:215, Modules/Settings/NetworkTab.qml:450, Modules/Settings/NetworkTab.qml:1555, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/Settings/DisplayConfig/OutputCard.qml:74, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", "comment": "" }, { @@ -3566,7 +3578,7 @@ { "term": "Display all priorities over fullscreen apps", "context": "Display all priorities over fullscreen apps", - "reference": "Modules/Settings/NotificationsTab.qml:259, Modules/Notifications/Center/NotificationSettings.qml:249", + "reference": "Modules/Settings/NotificationsTab.qml:262, Modules/Notifications/Center/NotificationSettings.qml:249", "comment": "" }, { @@ -3608,7 +3620,7 @@ { "term": "Display only workspaces that contain windows", "context": "Display only workspaces that contain windows", - "reference": "Modules/Settings/WorkspacesTab.qml:142", + "reference": "Modules/Settings/WorkspacesTab.qml:152", "comment": "" }, { @@ -3638,13 +3650,13 @@ { "term": "Displays", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:206, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", + "reference": "Modals/Settings/SettingsSidebar.qml:206, Modals/Greeter/GreeterCompletePage.qml:373, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", "comment": "" }, { "term": "Displays count when overflow is active", "context": "Displays count when overflow is active", - "reference": "Modules/Settings/DockTab.qml:207", + "reference": "Modules/Settings/DockTab.qml:217", "comment": "" }, { @@ -3668,13 +3680,13 @@ { "term": "Do Not Disturb", "context": "Do Not Disturb", - "reference": "Modules/Settings/NotificationsTab.qml:366, Modules/ControlCenter/Models/WidgetModel.qml:85, Modules/ControlCenter/Components/DragDropGrid.qml:622, Modules/Notifications/Center/NotificationHeader.qml:63, Modules/Notifications/Center/NotificationSettings.qml:141", + "reference": "Modules/Settings/NotificationsTab.qml:386, Modules/Notifications/Center/NotificationSettings.qml:141, Modules/Notifications/Center/NotificationHeader.qml:63, Modules/ControlCenter/Models/WidgetModel.qml:85, Modules/ControlCenter/Components/DragDropGrid.qml:622", "comment": "" }, { "term": "Dock", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:185", + "reference": "Modals/Settings/SettingsSidebar.qml:185, Modals/Greeter/GreeterCompletePage.qml:422", "comment": "" }, { @@ -3686,7 +3698,7 @@ { "term": "Dock Transparency", "context": "Dock Transparency", - "reference": "Modules/Settings/DockTab.qml:561", + "reference": "Modules/Settings/DockTab.qml:571", "comment": "" }, { @@ -3740,7 +3752,7 @@ { "term": "Drag to Reorder", "context": "Drag to Reorder", - "reference": "Modules/Settings/WorkspacesTab.qml:161", + "reference": "Modules/Settings/WorkspacesTab.qml:171", "comment": "" }, { @@ -3752,7 +3764,7 @@ { "term": "Drag workspace indicators to reorder them", "context": "Drag workspace indicators to reorder them", - "reference": "Modules/Settings/WorkspacesTab.qml:162", + "reference": "Modules/Settings/WorkspacesTab.qml:172", "comment": "" }, { @@ -3782,7 +3794,7 @@ { "term": "Duration", "context": "Duration", - "reference": "Modules/Settings/NotificationsTab.qml:345", + "reference": "Modules/Settings/NotificationsTab.qml:358", "comment": "" }, { @@ -3806,7 +3818,7 @@ { "term": "Dynamic", "context": "dynamic theme name", - "reference": "Modules/Settings/ThemeColorsTab.qml:222", + "reference": "Modules/Settings/ThemeColorsTab.qml:221", "comment": "" }, { @@ -3824,7 +3836,7 @@ { "term": "Dynamic colors from wallpaper", "context": "dynamic colors description", - "reference": "Modules/Settings/ThemeColorsTab.qml:480", + "reference": "Modules/Settings/ThemeColorsTab.qml:479", "comment": "" }, { @@ -3884,13 +3896,13 @@ { "term": "Enable Do Not Disturb", "context": "Enable Do Not Disturb", - "reference": "Modules/Settings/NotificationsTab.qml:372", + "reference": "Modules/Settings/NotificationsTab.qml:392", "comment": "" }, { "term": "Enable History", "context": "notification history toggle label", - "reference": "Modules/Settings/NotificationsTab.qml:789", + "reference": "Modules/Settings/NotificationsTab.qml:809", "comment": "" }, { @@ -3914,7 +3926,7 @@ { "term": "Enable Video Screensaver", "context": "Enable Video Screensaver", - "reference": "Modules/Settings/LockScreenTab.qml:228", + "reference": "Modules/Settings/LockScreenTab.qml:273", "comment": "" }, { @@ -3944,55 +3956,115 @@ { "term": "Enable fingerprint at login", "context": "Enable fingerprint at login", - "reference": "Modules/Settings/GreeterTab.qml:470", + "reference": "Modules/Settings/GreeterTab.qml:538", "comment": "" }, { "term": "Enable fingerprint authentication", "context": "Enable fingerprint authentication", - "reference": "Modules/Settings/LockScreenTab.qml:174", + "reference": "Modules/Settings/LockScreenTab.qml:219", "comment": "" }, { "term": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.", "context": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.", - "reference": "Modules/Settings/GreeterTab.qml:460", + "reference": "Modules/Settings/GreeterTab.qml:528", "comment": "" }, { "term": "Enable loginctl lock integration", "context": "Enable loginctl lock integration", - "reference": "Modules/Settings/LockScreenTab.qml:132", + "reference": "Modules/Settings/LockScreenTab.qml:177", "comment": "" }, { "term": "Enable security key at login", "context": "Enable security key at login", - "reference": "Modules/Settings/GreeterTab.qml:485", + "reference": "Modules/Settings/GreeterTab.qml:549", "comment": "" }, { "term": "Enable security key authentication", "context": "Enable FIDO2/U2F hardware security key for lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:185", + "reference": "Modules/Settings/LockScreenTab.qml:230", "comment": "" }, { "term": "Enabled", "context": "bluetooth status", - "reference": "Modules/Settings/ThemeColorsTab.qml:1350, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1223, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1231, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1257, Modules/ControlCenter/Components/DragDropGrid.qml:318", + "reference": "Modules/Settings/ThemeColorsTab.qml:1363, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260, Modules/ControlCenter/Components/DragDropGrid.qml:318", + "comment": "" + }, + { + "term": "Enabled, but fingerprint availability could not be confirmed.", + "context": "Enabled, but fingerprint availability could not be confirmed.", + "reference": "Modules/Settings/LockScreenTab.qml:28, Modules/Settings/GreeterTab.qml:49", + "comment": "" + }, + { + "term": "Enabled, but no fingerprint reader was detected.", + "context": "Enabled, but no fingerprint reader was detected.", + "reference": "Modules/Settings/LockScreenTab.qml:24, Modules/Settings/GreeterTab.qml:45", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.", + "context": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.", + "reference": "Modules/Settings/GreeterTab.qml:42", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.", + "context": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.", + "reference": "Modules/Settings/LockScreenTab.qml:21", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key and run Sync.", + "context": "Enabled, but no registered security key was found yet. Register a key and run Sync.", + "reference": "Modules/Settings/GreeterTab.qml:66", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.", + "context": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.", + "reference": "Modules/Settings/LockScreenTab.qml:38", + "comment": "" + }, + { + "term": "Enabled, but security-key availability could not be confirmed.", + "context": "Enabled, but security-key availability could not be confirmed.", + "reference": "Modules/Settings/LockScreenTab.qml:43, Modules/Settings/GreeterTab.qml:71", + "comment": "" + }, + { + "term": "Enabled. PAM already provides fingerprint auth.", + "context": "Enabled. PAM already provides fingerprint auth.", + "reference": "Modules/Settings/GreeterTab.qml:27", + "comment": "" + }, + { + "term": "Enabled. PAM already provides security-key auth.", + "context": "Enabled. PAM already provides security-key auth.", + "reference": "Modules/Settings/GreeterTab.qml:58", + "comment": "" + }, + { + "term": "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.", + "context": "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.", + "reference": "Modules/Settings/GreeterTab.qml:29", "comment": "" }, { "term": "Enabling WiFi...", "context": "network status", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:192, Modules/ControlCenter/Components/DragDropGrid.qml:293", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:293, Modules/ControlCenter/Details/NetworkDetail.qml:192", "comment": "" }, { "term": "End", "context": "End", - "reference": "Modules/Settings/ThemeColorsTab.qml:1165, Modules/Settings/GammaControlTab.qml:295", + "reference": "Modules/Settings/ThemeColorsTab.qml:1178, Modules/Settings/GammaControlTab.qml:295", "comment": "" }, { @@ -4022,7 +4094,7 @@ { "term": "Enter PIN for ", "context": "Enter PIN for ", - "reference": "Modals/BluetoothPairingModal.qml:137, Modals/WifiPasswordModal.qml:351", + "reference": "Modals/WifiPasswordModal.qml:351, Modals/BluetoothPairingModal.qml:137", "comment": "" }, { @@ -4142,19 +4214,19 @@ { "term": "Ethernet", "context": "network status", - "reference": "Modules/Settings/NetworkTab.qml:211, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:328, Modules/ControlCenter/Details/NetworkDetail.qml:136, Modules/ControlCenter/Components/DragDropGrid.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:300", + "reference": "Modules/Settings/NetworkTab.qml:211, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:328, Modules/ControlCenter/Components/DragDropGrid.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:300, Modules/ControlCenter/Details/NetworkDetail.qml:136", "comment": "" }, { "term": "Exact", "context": "notification rule match type option", - "reference": "Modules/Settings/NotificationsTab.qml:105", + "reference": "Modules/Settings/NotificationsTab.qml:108", "comment": "" }, { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:536, Modules/Settings/DankBarTab.qml:830", + "reference": "Modules/Settings/DockTab.qml:546, Modules/Settings/DankBarTab.qml:830", "comment": "" }, { @@ -4424,7 +4496,7 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1280", + "reference": "Common/SettingsData.qml:1346", "comment": "" }, { @@ -4436,7 +4508,7 @@ { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1218, Common/SettingsData.qml:2677", + "reference": "Common/SettingsData.qml:1247, Common/SettingsData.qml:2743", "comment": "" }, { @@ -4508,7 +4580,7 @@ { "term": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "context": "greeter status error", - "reference": "Modules/Settings/GreeterTab.qml:206", + "reference": "Modules/Settings/GreeterTab.qml:274", "comment": "" }, { @@ -4640,7 +4712,7 @@ { "term": "Failed to write temp file for validation", "context": "Failed to write temp file for validation", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1291", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1294", "comment": "" }, { @@ -4664,7 +4736,7 @@ { "term": "Feels Like %1°", "context": "weather feels like temperature", - "reference": "Modules/DankDash/WeatherTab.qml:309, Modules/Settings/TimeWeatherTab.qml:766", + "reference": "Modules/Settings/TimeWeatherTab.qml:766, Modules/DankDash/WeatherTab.qml:309", "comment": "" }, { @@ -4676,7 +4748,7 @@ { "term": "Field", "context": "Field", - "reference": "Modules/Settings/NotificationsTab.qml:525", + "reference": "Modules/Settings/NotificationsTab.qml:545", "comment": "" }, { @@ -4712,7 +4784,7 @@ { "term": "Files", "context": "Files", - "reference": "Modals/DankLauncherV2/Controller.qml:164, Modals/DankLauncherV2/Controller.qml:959, Modals/DankLauncherV2/Controller.qml:980, Modals/DankLauncherV2/LauncherContent.qml:317, Modals/DankLauncherV2/LauncherContent.qml:589", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:317, Modals/DankLauncherV2/LauncherContent.qml:589, Modals/DankLauncherV2/Controller.qml:164, Modals/DankLauncherV2/Controller.qml:959, Modals/DankLauncherV2/Controller.qml:980", "comment": "" }, { @@ -4724,7 +4796,7 @@ { "term": "Fill", "context": "wallpaper fill mode", - "reference": "Modules/Settings/GreeterTab.qml:638, Modules/Settings/WallpaperTab.qml:312", + "reference": "Modules/Settings/WallpaperTab.qml:312, Modules/Settings/GreeterTab.qml:698", "comment": "" }, { @@ -4739,6 +4811,24 @@ "reference": "Modules/Notepad/NotepadTextEditor.qml:372", "comment": "" }, + { + "term": "Fingerprint availability could not be confirmed.", + "context": "Fingerprint availability could not be confirmed.", + "reference": "Modules/Settings/LockScreenTab.qml:28, Modules/Settings/GreeterTab.qml:49", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", + "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", + "reference": "Modules/Settings/LockScreenTab.qml:22", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", + "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", + "reference": "Modules/Settings/GreeterTab.qml:43", + "comment": "" + }, { "term": "Finish", "context": "greeter finish button", @@ -4766,13 +4856,13 @@ { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/ThemeColorsTab.qml:2207, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/KeybindsTab.qml:371, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", + "reference": "Modules/Settings/KeybindsTab.qml:371, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/ThemeColorsTab.qml:2207, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/KeybindsTab.qml:368, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", + "reference": "Modules/Settings/KeybindsTab.qml:368, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", "comment": "" }, { @@ -4784,25 +4874,25 @@ { "term": "Flipped", "context": "Flipped", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1798, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1819", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1801, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1822", "comment": "" }, { "term": "Flipped 180°", "context": "Flipped 180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1802, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1823", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1805, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1826", "comment": "" }, { "term": "Flipped 270°", "context": "Flipped 270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1804, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1825", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1807, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1828", "comment": "" }, { "term": "Flipped 90°", "context": "Flipped 90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1800, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1821", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1803, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1824", "comment": "" }, { @@ -4820,19 +4910,25 @@ { "term": "Focus at Startup", "context": "Focus at Startup", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1233", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236", "comment": "" }, { "term": "Focused Border", "context": "Focused Border", - "reference": "Modules/Settings/WorkspacesTab.qml:344", + "reference": "Modules/Settings/WorkspacesTab.qml:354", "comment": "" }, { "term": "Focused Color", "context": "Focused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:186", + "reference": "Modules/Settings/WorkspacesTab.qml:196", + "comment": "" + }, + { + "term": "Focused Monitor Only", + "context": "Focused Monitor Only", + "reference": "Modules/Settings/NotificationsTab.qml:297", "comment": "" }, { @@ -4841,6 +4937,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:59", "comment": "" }, + { + "term": "Focused monitor only", + "context": "Focused monitor only", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:422", + "comment": "" + }, { "term": "Fog", "context": "Fog", @@ -4856,13 +4958,13 @@ { "term": "Folders", "context": "Folders", - "reference": "Modals/DankLauncherV2/Controller.qml:970, Modals/DankLauncherV2/Controller.qml:980, Modals/DankLauncherV2/LauncherContent.qml:594", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:594, Modals/DankLauncherV2/Controller.qml:970, Modals/DankLauncherV2/Controller.qml:980", "comment": "" }, { "term": "Follow Monitor Focus", "context": "Follow Monitor Focus", - "reference": "Modules/Settings/WorkspacesTab.qml:131", + "reference": "Modules/Settings/WorkspacesTab.qml:141", "comment": "" }, { @@ -4874,7 +4976,7 @@ { "term": "Font", "context": "Font", - "reference": "Modules/Settings/GreeterTab.qml:505", + "reference": "Modules/Settings/GreeterTab.qml:565", "comment": "" }, { @@ -4886,7 +4988,7 @@ { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:183, Modules/Settings/DankBarTab.qml:951", + "reference": "Modules/Settings/DankBarTab.qml:951, Modules/Settings/TypographyMotionTab.qml:183", "comment": "" }, { @@ -4904,13 +5006,13 @@ { "term": "Font used on the login screen", "context": "Font used on the login screen", - "reference": "Modules/Settings/GreeterTab.qml:516", + "reference": "Modules/Settings/GreeterTab.qml:576", "comment": "" }, { "term": "Force HDR", "context": "Force HDR", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1253", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1256", "comment": "" }, { @@ -4922,13 +5024,13 @@ { "term": "Force Wide Color", "context": "Force Wide Color", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1255", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1258", "comment": "" }, { "term": "Force terminal applications to always use dark color schemes", "context": "Force terminal applications to always use dark color schemes", - "reference": "Modules/Settings/ThemeColorsTab.qml:2138", + "reference": "Modules/Settings/ThemeColorsTab.qml:2151", "comment": "" }, { @@ -4952,7 +5054,7 @@ { "term": "Forever", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:817, Modules/Settings/NotificationsTab.qml:832, Modules/Settings/NotificationsTab.qml:835", + "reference": "Modules/Settings/NotificationsTab.qml:837, Modules/Settings/NotificationsTab.qml:852, Modules/Settings/NotificationsTab.qml:855", "comment": "" }, { @@ -5024,19 +5126,19 @@ { "term": "Full Content", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:103, Modules/Settings/NotificationsTab.qml:709", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NotificationsTab.qml:729", "comment": "" }, { "term": "Full Day & Month", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:358, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:156, Modules/Settings/TimeWeatherTab.qml:172, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:243, Modules/Settings/TimeWeatherTab.qml:259", + "reference": "Modules/Settings/GreeterTab.qml:426, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:156, Modules/Settings/TimeWeatherTab.qml:172, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:243, Modules/Settings/TimeWeatherTab.qml:259", "comment": "" }, { "term": "Full with Year", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:350, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:148, Modules/Settings/TimeWeatherTab.qml:170, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:235, Modules/Settings/TimeWeatherTab.qml:257", + "reference": "Modules/Settings/GreeterTab.qml:418, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:148, Modules/Settings/TimeWeatherTab.qml:170, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:235, Modules/Settings/TimeWeatherTab.qml:257", "comment": "" }, { @@ -5114,7 +5216,7 @@ { "term": "Generic", "context": "theme category option", - "reference": "Modules/Settings/ThemeColorsTab.qml:281, Modules/Settings/ThemeColorsTab.qml:281", + "reference": "Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280", "comment": "" }, { @@ -5192,49 +5294,49 @@ { "term": "Greeter Appearance", "context": "Greeter Appearance", - "reference": "Modules/Settings/GreeterTab.qml:501", + "reference": "Modules/Settings/GreeterTab.qml:561", "comment": "" }, { "term": "Greeter Behavior", "context": "Greeter Behavior", - "reference": "Modules/Settings/GreeterTab.qml:660", + "reference": "Modules/Settings/GreeterTab.qml:720", "comment": "" }, { "term": "Greeter Status", "context": "Greeter Status", - "reference": "Modules/Settings/GreeterTab.qml:379", + "reference": "Modules/Settings/GreeterTab.qml:447", "comment": "" }, { "term": "Greeter activated. greetd is now enabled.", "context": "Greeter activated. greetd is now enabled.", - "reference": "Modules/Settings/GreeterTab.qml:313", + "reference": "Modules/Settings/GreeterTab.qml:381", "comment": "" }, { "term": "Greeter font", "context": "Greeter font", - "reference": "Modules/Settings/GreeterTab.qml:515", + "reference": "Modules/Settings/GreeterTab.qml:575", "comment": "" }, { "term": "Greeter only — does not affect main clock", "context": "Greeter only — does not affect main clock", - "reference": "Modules/Settings/GreeterTab.qml:542", + "reference": "Modules/Settings/GreeterTab.qml:602", "comment": "" }, { "term": "Greeter only — format for the date on the login screen", "context": "Greeter only — format for the date on the login screen", - "reference": "Modules/Settings/GreeterTab.qml:576", + "reference": "Modules/Settings/GreeterTab.qml:636", "comment": "" }, { "term": "Grid", "context": "Grid", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:355, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:364, Modules/DankBar/Popouts/DWLLayoutPopout.qml:48", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:48, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:355, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:364", "comment": "" }, { @@ -5270,7 +5372,7 @@ { "term": "Group by App", "context": "Group by App", - "reference": "Modules/Settings/WidgetsTabSection.qml:1795, Modules/Settings/DockTab.qml:157", + "reference": "Modules/Settings/DockTab.qml:157, Modules/Settings/WidgetsTabSection.qml:1795", "comment": "" }, { @@ -5330,7 +5432,7 @@ { "term": "Health", "context": "Health", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:140, Modules/DankBar/Popouts/BatteryPopout.qml:298, Modules/DankBar/Popouts/BatteryPopout.qml:454", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:298, Modules/DankBar/Popouts/BatteryPopout.qml:454, Modules/ControlCenter/Details/BatteryDetail.qml:140", "comment": "" }, { @@ -5378,7 +5480,7 @@ { "term": "Hibernate", "context": "Hibernate", - "reference": "Modals/PowerMenuModal.qml:210, Modules/Lock/LockPowerMenu.qml:128, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:210, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:128", "comment": "" }, { @@ -5450,7 +5552,7 @@ { "term": "Hide When Typing", "context": "Hide When Typing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2251", + "reference": "Modules/Settings/ThemeColorsTab.qml:2264", "comment": "" }, { @@ -5462,19 +5564,19 @@ { "term": "Hide cursor after inactivity (0 = disabled)", "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2298", + "reference": "Modules/Settings/ThemeColorsTab.qml:2311", "comment": "" }, { "term": "Hide cursor when pressing keyboard keys", "context": "Hide cursor when pressing keyboard keys", - "reference": "Modules/Settings/ThemeColorsTab.qml:2252", + "reference": "Modules/Settings/ThemeColorsTab.qml:2265", "comment": "" }, { "term": "Hide cursor when using touch input", "context": "Hide cursor when using touch input", - "reference": "Modules/Settings/ThemeColorsTab.qml:2281", + "reference": "Modules/Settings/ThemeColorsTab.qml:2294", "comment": "" }, { @@ -5492,13 +5594,13 @@ { "term": "Hide notification content until expanded; popups show collapsed by default", "context": "Hide notification content until expanded; popups show collapsed by default", - "reference": "Modules/Settings/NotificationsTab.qml:286", + "reference": "Modules/Settings/NotificationsTab.qml:289", "comment": "" }, { "term": "Hide on Touch", "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:2280", + "reference": "Modules/Settings/ThemeColorsTab.qml:2293", "comment": "" }, { @@ -5507,6 +5609,18 @@ "reference": "Common/Theme.qml:484", "comment": "" }, + { + "term": "Highlight Active Workspace App", + "context": "Highlight Active Workspace App", + "reference": "Modules/Settings/WorkspacesTab.qml:131", + "comment": "" + }, + { + "term": "Highlight the currently focused app inside workspace indicators", + "context": "Highlight the currently focused app inside workspace indicators", + "reference": "Modules/Settings/WorkspacesTab.qml:132", + "comment": "" + }, { "term": "History", "context": "notification center tab", @@ -5516,13 +5630,13 @@ { "term": "History Retention", "context": "notification history retention settings label", - "reference": "Modules/Settings/NotificationsTab.qml:812", + "reference": "Modules/Settings/NotificationsTab.qml:832", "comment": "" }, { "term": "History Settings", "context": "History Settings", - "reference": "Modules/Settings/NotificationsTab.qml:783, Modules/Settings/ClipboardTab.qml:278, Modules/Notifications/Center/NotificationSettings.qml:316", + "reference": "Modules/Settings/NotificationsTab.qml:803, Modules/Settings/ClipboardTab.qml:278, Modules/Notifications/Center/NotificationSettings.qml:316", "comment": "" }, { @@ -5582,7 +5696,7 @@ { "term": "Hot Corners", "context": "Hot Corners", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1235", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238", "comment": "" }, { @@ -5594,7 +5708,7 @@ { "term": "Hour", "context": "Hour", - "reference": "Modules/Settings/ThemeColorsTab.qml:1103, Modules/Settings/GammaControlTab.qml:232", + "reference": "Modules/Settings/ThemeColorsTab.qml:1116, Modules/Settings/GammaControlTab.qml:232", "comment": "" }, { @@ -5618,19 +5732,19 @@ { "term": "How the background image is scaled", "context": "How the background image is scaled", - "reference": "Modules/Settings/GreeterTab.qml:633", + "reference": "Modules/Settings/GreeterTab.qml:693", "comment": "" }, { "term": "Humidity", "context": "Humidity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherTab.qml:84, Modules/DankDash/WeatherForecastCard.qml:80, Modules/Settings/TimeWeatherTab.qml:923", + "reference": "Modules/Settings/TimeWeatherTab.qml:923, Modules/DankDash/WeatherForecastCard.qml:80, Modules/DankDash/WeatherTab.qml:84, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413", "comment": "" }, { "term": "Hyprland Layout Overrides", "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1895", + "reference": "Modules/Settings/ThemeColorsTab.qml:1908", "comment": "" }, { @@ -5642,7 +5756,7 @@ { "term": "I Understand", "context": "I Understand", - "reference": "Modules/Settings/PluginBrowser.qml:836", + "reference": "Modules/Settings/PluginBrowser.qml:838", "comment": "" }, { @@ -5666,13 +5780,13 @@ { "term": "ISO Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:354, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:152, Modules/Settings/TimeWeatherTab.qml:171, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:239, Modules/Settings/TimeWeatherTab.qml:258", + "reference": "Modules/Settings/GreeterTab.qml:422, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:152, Modules/Settings/TimeWeatherTab.qml:171, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:239, Modules/Settings/TimeWeatherTab.qml:258", "comment": "" }, { "term": "Icon", "context": "Icon", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:864, Modules/Settings/DockTab.qml:237", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:864, Modules/Settings/DockTab.qml:247", "comment": "" }, { @@ -5684,7 +5798,7 @@ { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/DockTab.qml:508, Modules/Settings/WorkspacesTab.qml:109", + "reference": "Modules/Settings/WorkspacesTab.qml:109, Modules/Settings/DockTab.qml:518", "comment": "" }, { @@ -5696,7 +5810,7 @@ { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2336, Modules/Settings/ThemeColorsTab.qml:2344", + "reference": "Modules/Settings/ThemeColorsTab.qml:2349, Modules/Settings/ThemeColorsTab.qml:2357", "comment": "" }, { @@ -5726,13 +5840,13 @@ { "term": "If the field is hidden, it will appear as soon as a key is pressed.", "context": "If the field is hidden, it will appear as soon as a key is pressed.", - "reference": "Modules/Settings/LockScreenTab.qml:85", + "reference": "Modules/Settings/LockScreenTab.qml:130", "comment": "" }, { "term": "Ignore Completely", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:124", + "reference": "Modules/Settings/NotificationsTab.qml:127", "comment": "" }, { @@ -5762,7 +5876,7 @@ { "term": "Inactive Monitor Color", "context": "Inactive Monitor Color", - "reference": "Modules/Settings/LockScreenTab.qml:361, Modules/Settings/LockScreenTab.qml:392", + "reference": "Modules/Settings/LockScreenTab.qml:406, Modules/Settings/LockScreenTab.qml:437", "comment": "" }, { @@ -5792,7 +5906,7 @@ { "term": "Indicator Style", "context": "Indicator Style", - "reference": "Modules/Settings/DockTab.qml:166", + "reference": "Modules/Settings/DockTab.qml:176", "comment": "" }, { @@ -5846,13 +5960,13 @@ { "term": "Install", "context": "install action button", - "reference": "Modules/Settings/PluginBrowser.qml:121, Modules/Settings/PluginBrowser.qml:632, Modules/Settings/GreeterTab.qml:53, Modules/Settings/GreeterTab.qml:99, Modules/Settings/ThemeBrowser.qml:120, Modules/Settings/ThemeBrowser.qml:648", + "reference": "Modules/Settings/ThemeBrowser.qml:120, Modules/Settings/ThemeBrowser.qml:648, Modules/Settings/GreeterTab.qml:120, Modules/Settings/GreeterTab.qml:166, Modules/Settings/PluginBrowser.qml:121, Modules/Settings/PluginBrowser.qml:634", "comment": "" }, { "term": "Install Greeter", "context": "greeter action confirmation", - "reference": "Modules/Settings/GreeterTab.qml:97", + "reference": "Modules/Settings/GreeterTab.qml:164", "comment": "" }, { @@ -5876,19 +5990,19 @@ { "term": "Install complete. Greeter has been installed.", "context": "Install complete. Greeter has been installed.", - "reference": "Modules/Settings/GreeterTab.qml:311", + "reference": "Modules/Settings/GreeterTab.qml:379", "comment": "" }, { "term": "Install failed: %1", "context": "installation error", - "reference": "Modules/Settings/PluginBrowser.qml:85, Modules/Settings/ThemeBrowser.qml:68", + "reference": "Modules/Settings/ThemeBrowser.qml:68, Modules/Settings/PluginBrowser.qml:85", "comment": "" }, { "term": "Install matugen package for dynamic theming", "context": "matugen installation hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:477", + "reference": "Modules/Settings/ThemeColorsTab.qml:476", "comment": "" }, { @@ -5906,7 +6020,7 @@ { "term": "Install the DMS greeter? A terminal will open for sudo authentication.", "context": "Install the DMS greeter? A terminal will open for sudo authentication.", - "reference": "Modules/Settings/GreeterTab.qml:98", + "reference": "Modules/Settings/GreeterTab.qml:165", "comment": "" }, { @@ -5918,25 +6032,25 @@ { "term": "Installation and PAM setup: see the ", "context": "Installation and PAM setup: see the ", - "reference": "Modules/Settings/GreeterTab.qml:705", + "reference": "Modules/Settings/GreeterTab.qml:765", "comment": "" }, { "term": "Installed", "context": "installed status", - "reference": "Modules/Settings/PluginBrowser.qml:628, Modules/Settings/ThemeBrowser.qml:651", + "reference": "Modules/Settings/ThemeBrowser.qml:651, Modules/Settings/PluginBrowser.qml:630", "comment": "" }, { "term": "Installed: %1", "context": "installation success", - "reference": "Modules/Settings/PluginBrowser.qml:88, Modules/Settings/ThemeBrowser.qml:71", + "reference": "Modules/Settings/ThemeBrowser.qml:71, Modules/Settings/PluginBrowser.qml:88", "comment": "" }, { "term": "Installing: %1", "context": "installation progress", - "reference": "Modules/Settings/PluginBrowser.qml:82, Modules/Settings/ThemeBrowser.qml:65", + "reference": "Modules/Settings/ThemeBrowser.qml:65, Modules/Settings/PluginBrowser.qml:82", "comment": "" }, { @@ -5978,7 +6092,7 @@ { "term": "Invalid configuration", "context": "Invalid configuration", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1299", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1302", "comment": "" }, { @@ -6170,13 +6284,13 @@ { "term": "Latitude", "context": "Latitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1248, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:492", + "reference": "Modules/Settings/ThemeColorsTab.qml:1261, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:492", "comment": "" }, { "term": "Launch", "context": "Launch", - "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:154, Modals/DankLauncherV2/Controller.qml:1035, Modals/DankLauncherV2/Controller.qml:1428", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:154, Modals/DankLauncherV2/Controller.qml:1033, Modals/DankLauncherV2/Controller.qml:1426", "comment": "" }, { @@ -6200,7 +6314,7 @@ { "term": "Launcher Button", "context": "Launcher Button", - "reference": "Modules/Settings/DockTab.qml:216", + "reference": "Modules/Settings/DockTab.qml:226", "comment": "" }, { @@ -6212,7 +6326,7 @@ { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1237, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167", + "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240", "comment": "" }, { @@ -6224,7 +6338,7 @@ { "term": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", "context": "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.", - "reference": "Modules/Settings/GreeterTab.qml:648", + "reference": "Modules/Settings/GreeterTab.qml:708", "comment": "" }, { @@ -6248,13 +6362,13 @@ { "term": "Light Direction", "context": "Light Direction", - "reference": "Modules/Settings/ThemeColorsTab.qml:1687", + "reference": "Modules/Settings/ThemeColorsTab.qml:1700", "comment": "" }, { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1376, Modules/Settings/ThemeColorsTab.qml:1446, Modules/Settings/WallpaperTab.qml:392", + "reference": "Modules/Settings/WallpaperTab.qml:392, Modules/Settings/ThemeColorsTab.qml:1389, Modules/Settings/ThemeColorsTab.qml:1459", "comment": "" }, { @@ -6275,10 +6389,22 @@ "reference": "Services/WeatherService.qml:145", "comment": "" }, + { + "term": "Light mode base", + "context": "Light mode base", + "reference": "Modules/Settings/ThemeColorsTab.qml:2606", + "comment": "" + }, + { + "term": "Light mode harmony", + "context": "Light mode harmony", + "reference": "Modules/Settings/ThemeColorsTab.qml:2638", + "comment": "" + }, { "term": "Line", "context": "dock indicator style option", - "reference": "Modules/Settings/DockTab.qml:167", + "reference": "Modules/Settings/DockTab.qml:177", "comment": "" }, { @@ -6326,13 +6452,13 @@ { "term": "Loading trending...", "context": "Loading trending...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/DankStickerSearch/DankStickerSearch.qml:153", "comment": "" }, { "term": "Loading...", "context": "loading indicator", - "reference": "Widgets/VpnProfileDelegate.qml:220, Modules/Settings/PluginBrowser.qml:389, Modules/Settings/PrinterTab.qml:707, Modules/Settings/ThemeBrowser.qml:357, Modules/Settings/NetworkTab.qml:681, Modules/Settings/NetworkTab.qml:1398, Modules/Settings/NetworkTab.qml:1884", + "reference": "Widgets/VpnProfileDelegate.qml:220, Modules/Settings/PrinterTab.qml:707, Modules/Settings/NetworkTab.qml:681, Modules/Settings/NetworkTab.qml:1398, Modules/Settings/NetworkTab.qml:1884, Modules/Settings/ThemeBrowser.qml:357, Modules/Settings/PluginBrowser.qml:389", "comment": "" }, { @@ -6356,7 +6482,7 @@ { "term": "Location", "context": "theme auto mode tab", - "reference": "Modules/Settings/ThemeColorsTab.qml:1059, Modules/Settings/PrinterTab.qml:775, Modules/Settings/PrinterTab.qml:1164", + "reference": "Modules/Settings/PrinterTab.qml:775, Modules/Settings/PrinterTab.qml:1164, Modules/Settings/ThemeColorsTab.qml:1072", "comment": "" }, { @@ -6374,13 +6500,13 @@ { "term": "Lock Screen", "context": "greeter feature card title | lock screen notifications settings card", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:286, Modules/Settings/NotificationsTab.qml:701", + "reference": "Modals/Settings/SettingsSidebar.qml:286, Modals/Greeter/GreeterWelcomePage.qml:158, Modules/Settings/NotificationsTab.qml:721", "comment": "" }, { "term": "Lock Screen Display", "context": "Lock Screen Display", - "reference": "Modules/Settings/LockScreenTab.qml:294", + "reference": "Modules/Settings/LockScreenTab.qml:339", "comment": "" }, { @@ -6392,25 +6518,25 @@ { "term": "Lock Screen behaviour", "context": "Lock Screen behaviour", - "reference": "Modules/Settings/LockScreenTab.qml:117", + "reference": "Modules/Settings/LockScreenTab.qml:162", "comment": "" }, { "term": "Lock Screen layout", "context": "Lock Screen layout", - "reference": "Modules/Settings/LockScreenTab.qml:38", + "reference": "Modules/Settings/LockScreenTab.qml:83", "comment": "" }, { "term": "Lock at startup", "context": "Lock at startup", - "reference": "Modules/Settings/LockScreenTab.qml:165", + "reference": "Modules/Settings/LockScreenTab.qml:210", "comment": "" }, { "term": "Lock before suspend", "context": "Lock before suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:92, Modules/Settings/LockScreenTab.qml:146", + "reference": "Modules/Settings/LockScreenTab.qml:191, Modules/Settings/PowerSleepTab.qml:92", "comment": "" }, { @@ -6428,19 +6554,19 @@ { "term": "Log Out", "context": "Log Out", - "reference": "Modals/PowerMenuModal.qml:186, Modules/Lock/LockPowerMenu.qml:110, Modules/Settings/PowerSleepTab.qml:378, Modules/Settings/PowerSleepTab.qml:384", + "reference": "Modals/PowerMenuModal.qml:186, Modules/Settings/PowerSleepTab.qml:378, Modules/Settings/PowerSleepTab.qml:384, Modules/Lock/LockPowerMenu.qml:110", "comment": "" }, { "term": "Login Authentication", "context": "Login Authentication", - "reference": "Modules/Settings/GreeterTab.qml:456", + "reference": "Modules/Settings/GreeterTab.qml:524", "comment": "" }, { "term": "Long", "context": "Long", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:325", + "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337", "comment": "" }, { @@ -6458,13 +6584,13 @@ { "term": "Longitude", "context": "Longitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1271, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:541", + "reference": "Modules/Settings/ThemeColorsTab.qml:1284, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:541", "comment": "" }, { "term": "Low Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:143, Modules/Settings/NotificationsTab.qml:731, Modules/Settings/NotificationsTab.qml:854, Modules/Notifications/Center/NotificationSettings.qml:171, Modules/Notifications/Center/NotificationSettings.qml:340", + "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:751, Modules/Settings/NotificationsTab.qml:874, Modules/Notifications/Center/NotificationSettings.qml:171, Modules/Notifications/Center/NotificationSettings.qml:340", "comment": "" }, { @@ -6506,7 +6632,7 @@ { "term": "MangoWC Layout Overrides", "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1998", + "reference": "Modules/Settings/ThemeColorsTab.qml:2011", "comment": "" }, { @@ -6518,7 +6644,7 @@ { "term": "Manual Coordinates", "context": "Manual Coordinates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1233, Modules/Settings/GammaControlTab.qml:367", + "reference": "Modules/Settings/ThemeColorsTab.qml:1246, Modules/Settings/GammaControlTab.qml:367", "comment": "" }, { @@ -6548,7 +6674,7 @@ { "term": "Margin", "context": "Margin", - "reference": "Modules/Settings/DockTab.qml:545", + "reference": "Modules/Settings/DockTab.qml:555", "comment": "" }, { @@ -6596,31 +6722,31 @@ { "term": "Material Design inspired color themes", "context": "generic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:241", + "reference": "Modules/Settings/ThemeColorsTab.qml:240", "comment": "" }, { "term": "Material colors generated from wallpaper", "context": "dynamic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:236", + "reference": "Modules/Settings/ThemeColorsTab.qml:235", "comment": "" }, { "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", "context": "Material inspired shadows and elevation on modals, popouts, and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1610", + "reference": "Modules/Settings/ThemeColorsTab.qml:1623", "comment": "" }, { "term": "Matugen Missing", "context": "matugen not found status", - "reference": "Modules/Settings/ThemeColorsTab.qml:460", + "reference": "Modules/Settings/ThemeColorsTab.qml:459", "comment": "" }, { "term": "Matugen Palette", "context": "Matugen Palette", - "reference": "Modules/Settings/ThemeColorsTab.qml:496", + "reference": "Modules/Settings/ThemeColorsTab.qml:495", "comment": "" }, { @@ -6632,7 +6758,7 @@ { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2363", + "reference": "Modules/Settings/ThemeColorsTab.qml:2376", "comment": "" }, { @@ -6656,7 +6782,7 @@ { "term": "Max Pinned Apps (0 = Unlimited)", "context": "Max Pinned Apps (0 = Unlimited)", - "reference": "Modules/Settings/DockTab.qml:182", + "reference": "Modules/Settings/DockTab.qml:192", "comment": "" }, { @@ -6668,7 +6794,7 @@ { "term": "Max Running Apps (0 = Unlimited)", "context": "Max Running Apps (0 = Unlimited)", - "reference": "Modules/Settings/DockTab.qml:194", + "reference": "Modules/Settings/DockTab.qml:204", "comment": "" }, { @@ -6728,7 +6854,7 @@ { "term": "Maximum History", "context": "Maximum History", - "reference": "Modules/Settings/NotificationsTab.qml:798, Modules/Settings/ClipboardTab.qml:287", + "reference": "Modules/Settings/NotificationsTab.qml:818, Modules/Settings/ClipboardTab.qml:287", "comment": "" }, { @@ -6752,7 +6878,7 @@ { "term": "Maximum number of notifications to keep", "context": "notification history limit", - "reference": "Modules/Settings/NotificationsTab.qml:799", + "reference": "Modules/Settings/NotificationsTab.qml:819", "comment": "" }, { @@ -6836,13 +6962,13 @@ { "term": "Medium", "context": "Medium", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WidgetsTabSection.qml:1598, Modules/Settings/NotificationsTab.qml:325", + "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WidgetsTabSection.qml:1598, Modules/Settings/NotificationsTab.qml:337", "comment": "" }, { "term": "Memory", "context": "Memory", - "reference": "Modules/ProcessList/ProcessListPopout.qml:319, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", + "reference": "Modules/ProcessList/PerformanceView.qml:91, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/ProcessListPopout.qml:319, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", "comment": "" }, { @@ -6932,7 +7058,7 @@ { "term": "Minute", "context": "Minute", - "reference": "Modules/Settings/ThemeColorsTab.qml:1111, Modules/Settings/GammaControlTab.qml:240", + "reference": "Modules/Settings/ThemeColorsTab.qml:1124, Modules/Settings/GammaControlTab.qml:240", "comment": "" }, { @@ -6944,19 +7070,19 @@ { "term": "Missing Environment Variables", "context": "qt theme env error title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2354", + "reference": "Modules/Settings/ThemeColorsTab.qml:2367", "comment": "" }, { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2101", + "reference": "Modules/Settings/ThemeColorsTab.qml:2114", "comment": "" }, { "term": "Modal Shadows", "context": "Modal Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1759", + "reference": "Modules/Settings/ThemeColorsTab.qml:1772", "comment": "" }, { @@ -6968,7 +7094,7 @@ { "term": "Mode", "context": "Mode", - "reference": "Modules/Settings/NetworkTab.qml:1438, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1217", + "reference": "Modules/Settings/NetworkTab.qml:1438, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1220", "comment": "" }, { @@ -6980,13 +7106,13 @@ { "term": "Model", "context": "Model", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1208", + "reference": "Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", "comment": "" }, { "term": "Modified", "context": "Modified", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:662, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:675, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1235, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1237", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:662, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:675, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1238, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240", "comment": "" }, { @@ -7040,7 +7166,7 @@ { "term": "Month Date", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:338, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:136, Modules/Settings/TimeWeatherTab.qml:167, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:223, Modules/Settings/TimeWeatherTab.qml:254", + "reference": "Modules/Settings/GreeterTab.qml:406, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:136, Modules/Settings/TimeWeatherTab.qml:167, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:223, Modules/Settings/TimeWeatherTab.qml:254", "comment": "" }, { @@ -7058,13 +7184,13 @@ { "term": "Mouse pointer appearance", "context": "Mouse pointer appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:2222", + "reference": "Modules/Settings/ThemeColorsTab.qml:2235", "comment": "" }, { "term": "Mouse pointer size in pixels", "context": "Mouse pointer size in pixels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2238", + "reference": "Modules/Settings/ThemeColorsTab.qml:2251", "comment": "" }, { @@ -7100,7 +7226,7 @@ { "term": "Mute Popups", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:120", + "reference": "Modules/Settings/NotificationsTab.qml:123", "comment": "" }, { @@ -7118,7 +7244,7 @@ { "term": "Muted Apps", "context": "Muted Apps", - "reference": "Modules/Settings/NotificationsTab.qml:612", + "reference": "Modules/Settings/NotificationsTab.qml:632", "comment": "" }, { @@ -7136,13 +7262,13 @@ { "term": "Name", "context": "Name", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:660, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:674, Modals/DankLauncherV2/LauncherContent.qml:844, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1208, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:660, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:674, Modals/DankLauncherV2/LauncherContent.qml:844, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DisplayConfigTab.qml:422, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", "comment": "" }, { "term": "Named Workspace Icons", "context": "Named Workspace Icons", - "reference": "Modules/Settings/WorkspacesTab.qml:407", + "reference": "Modules/Settings/WorkspacesTab.qml:417", "comment": "" }, { @@ -7154,7 +7280,7 @@ { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:232, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1082, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:101", + "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:232, Modules/Settings/WidgetsTabSection.qml:1082, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Models/WidgetModel.qml:101, Modules/ControlCenter/Details/NetworkDetail.qml:88", "comment": "" }, { @@ -7172,7 +7298,7 @@ { "term": "Network Information", "context": "Network Information", - "reference": "Modals/NetworkWiredInfoModal.qml:62, Modals/NetworkInfoModal.qml:62", + "reference": "Modals/NetworkInfoModal.qml:62, Modals/NetworkWiredInfoModal.qml:62", "comment": "" }, { @@ -7208,7 +7334,7 @@ { "term": "Never", "context": "Never", - "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:30, Modules/Settings/NotificationsTab.qml:163, Modules/Settings/ClipboardTab.qml:99, Modules/Notifications/Center/NotificationSettings.qml:37", + "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:33, Modules/Settings/NotificationsTab.qml:166, Modules/Settings/ClipboardTab.qml:99, Modules/Notifications/Center/NotificationSettings.qml:37", "comment": "" }, { @@ -7268,7 +7394,7 @@ { "term": "Next Transition", "context": "Next Transition", - "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/GammaControlTab.qml:643", + "reference": "Modules/Settings/ThemeColorsTab.qml:1425, Modules/Settings/GammaControlTab.qml:643", "comment": "" }, { @@ -7304,7 +7430,7 @@ { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1792", + "reference": "Modules/Settings/ThemeColorsTab.qml:1805", "comment": "" }, { @@ -7316,7 +7442,7 @@ { "term": "No", "context": "No", - "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1229, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1233, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1243, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1253, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1255", + "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1256, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1258", "comment": "" }, { @@ -7394,7 +7520,7 @@ { "term": "No History", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:132", + "reference": "Modules/Settings/NotificationsTab.qml:135", "comment": "" }, { @@ -7436,7 +7562,7 @@ { "term": "No Weather Data Available", "context": "No Weather Data Available", - "reference": "Modules/DankDash/WeatherTab.qml:135, Modules/Settings/TimeWeatherTab.qml:641", + "reference": "Modules/Settings/TimeWeatherTab.qml:641, Modules/DankDash/WeatherTab.qml:135", "comment": "" }, { @@ -7478,7 +7604,7 @@ { "term": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", "context": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", - "reference": "Modules/Settings/NotificationsTab.qml:621", + "reference": "Modules/Settings/NotificationsTab.qml:641", "comment": "" }, { @@ -7508,13 +7634,13 @@ { "term": "No custom theme file", "context": "no custom theme file status", - "reference": "Modules/Settings/ThemeColorsTab.qml:549", + "reference": "Modules/Settings/ThemeColorsTab.qml:548", "comment": "" }, { "term": "No devices", "context": "Phone Connect no devices status | bluetooth status", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:368", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:368, dms-plugins/DankKDEConnect/DankKDEConnect.qml:33", "comment": "" }, { @@ -7526,7 +7652,7 @@ { "term": "No devices found", "context": "KDE Connect no devices message", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:124, dms-plugins/DankKDEConnect/components/EmptyState.qml:11, Modules/Settings/PrinterTab.qml:436", + "reference": "Modules/Settings/PrinterTab.qml:436, dms-plugins/DankKDEConnect/components/EmptyState.qml:11, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:124", "comment": "" }, { @@ -7538,7 +7664,7 @@ { "term": "No disk data available", "context": "No disk data available", - "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:48", + "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:48, Modules/ControlCenter/Details/DiskUsageDetail.qml:65", "comment": "" }, { @@ -7565,6 +7691,12 @@ "reference": "Modals/DankLauncherV2/ResultsList.qml:481", "comment": "" }, + { + "term": "No fingerprint reader detected.", + "context": "No fingerprint reader detected.", + "reference": "Modules/Settings/LockScreenTab.qml:24, Modules/Settings/GreeterTab.qml:45", + "comment": "" + }, { "term": "No folders found", "context": "No folders found", @@ -7664,7 +7796,7 @@ { "term": "No plugins found", "context": "empty plugin list", - "reference": "Modules/Settings/PluginBrowser.qml:706", + "reference": "Modules/Settings/PluginBrowser.qml:708", "comment": "" }, { @@ -7706,7 +7838,7 @@ { "term": "No results found", "context": "No results found", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96, Modals/DankLauncherV2/ResultsList.qml:483, Modals/DankLauncherV2/ResultsList.qml:490", + "reference": "Modals/DankLauncherV2/ResultsList.qml:483, Modals/DankLauncherV2/ResultsList.qml:490, dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/DankStickerSearch/DankStickerSearch.qml:153", "comment": "" }, { @@ -7718,7 +7850,7 @@ { "term": "No status output.", "context": "No status output.", - "reference": "Modules/Settings/GreeterTab.qml:201", + "reference": "Modules/Settings/GreeterTab.qml:269", "comment": "" }, { @@ -7730,13 +7862,13 @@ { "term": "No themes installed. Browse themes to install from the registry.", "context": "no registry themes installed hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:983", + "reference": "Modules/Settings/ThemeColorsTab.qml:754", "comment": "" }, { "term": "No trigger", "context": "No trigger", - "reference": "Modals/DankLauncherV2/Controller.qml:1170, Modules/Settings/LauncherTab.qml:742", + "reference": "Modals/DankLauncherV2/Controller.qml:1168, Modules/Settings/LauncherTab.qml:742", "comment": "" }, { @@ -7748,7 +7880,7 @@ { "term": "No wallpaper selected", "context": "no wallpaper status", - "reference": "Modules/Settings/ThemeColorsTab.qml:463, Modules/Settings/WallpaperTab.qml:240", + "reference": "Modules/Settings/WallpaperTab.qml:240, Modules/Settings/ThemeColorsTab.qml:462", "comment": "" }, { @@ -7790,13 +7922,13 @@ { "term": "None", "context": "wallpaper transition option", - "reference": "Modals/WindowRuleModal.qml:740, Services/CupsService.qml:784, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/NotificationsTab.qml:325, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", + "reference": "Services/CupsService.qml:784, Modals/WindowRuleModal.qml:740, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", "comment": "" }, { "term": "Normal", "context": "Normal", - "reference": "Modals/WindowRuleModal.qml:762, Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1790, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1806, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1811", + "reference": "Modals/WindowRuleModal.qml:762, Modules/Settings/DisplayConfig/OutputCard.qml:257, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1793, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1809, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1814", "comment": "" }, { @@ -7808,7 +7940,7 @@ { "term": "Normal Priority", "context": "notification rule urgency option", - "reference": "Modules/Settings/NotificationsTab.qml:147, Modules/Settings/NotificationsTab.qml:748, Modules/Settings/NotificationsTab.qml:863, Modules/Notifications/Center/NotificationSettings.qml:186, Modules/Notifications/Center/NotificationSettings.qml:374", + "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:768, Modules/Settings/NotificationsTab.qml:883, Modules/Notifications/Center/NotificationSettings.qml:186, Modules/Notifications/Center/NotificationSettings.qml:374", "comment": "" }, { @@ -7818,15 +7950,27 @@ "comment": "" }, { - "term": "Not available — install fprintd and enroll fingerprints.", - "context": "Not available — install fprintd and enroll fingerprints.", - "reference": "Modules/Settings/GreeterTab.qml:473", + "term": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", + "context": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", + "reference": "Modules/Settings/GreeterTab.qml:47", "comment": "" }, { - "term": "Not available — install pam_u2f and enroll keys.", - "context": "Not available — install pam_u2f and enroll keys.", - "reference": "Modules/Settings/GreeterTab.qml:488", + "term": "Not available — install fprintd and pam_fprintd.", + "context": "Not available — install fprintd and pam_fprintd.", + "reference": "Modules/Settings/LockScreenTab.qml:26", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f, or configure greetd PAM.", + "context": "Not available — install or configure pam_u2f, or configure greetd PAM.", + "reference": "Modules/Settings/GreeterTab.qml:69", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f.", + "context": "Not available — install or configure pam_u2f.", + "reference": "Modules/Settings/LockScreenTab.qml:41", "comment": "" }, { @@ -7838,13 +7982,7 @@ { "term": "Not detected", "context": "Not detected", - "reference": "Modules/Settings/ThemeColorsTab.qml:119, Modules/Settings/ThemeColorsTab.qml:120", - "comment": "" - }, - { - "term": "Not enrolled", - "context": "fingerprint not detected status | security key not detected status", - "reference": "Modules/Settings/LockScreenTab.qml:175, Modules/Settings/LockScreenTab.qml:186", + "reference": "Modules/Settings/ThemeColorsTab.qml:118, Modules/Settings/ThemeColorsTab.qml:119", "comment": "" }, { @@ -7904,25 +8042,25 @@ { "term": "Notification Display", "context": "lock screen notification privacy setting", - "reference": "Modules/Settings/LockScreenTab.qml:101, Modules/Settings/NotificationsTab.qml:707", + "reference": "Modules/Settings/LockScreenTab.qml:146, Modules/Settings/NotificationsTab.qml:727", "comment": "" }, { "term": "Notification Overlay", "context": "Notification Overlay", - "reference": "Modules/Settings/NotificationsTab.qml:258, Modules/Notifications/Center/NotificationSettings.qml:243", + "reference": "Modules/Settings/NotificationsTab.qml:261, Modules/Notifications/Center/NotificationSettings.qml:243", "comment": "" }, { "term": "Notification Popups", "context": "Notification Popups", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:203", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:206", "comment": "" }, { "term": "Notification Rules", "context": "Notification Rules", - "reference": "Modules/Settings/NotificationsTab.qml:383", + "reference": "Modules/Settings/NotificationsTab.qml:403", "comment": "" }, { @@ -7934,7 +8072,7 @@ { "term": "Notification Timeouts", "context": "Notification Timeouts", - "reference": "Modules/Settings/NotificationsTab.qml:723, Modules/Notifications/Center/NotificationSettings.qml:164", + "reference": "Modules/Settings/NotificationsTab.qml:743, Modules/Notifications/Center/NotificationSettings.qml:164", "comment": "" }, { @@ -7946,7 +8084,7 @@ { "term": "Notifications", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:146, Modules/Notifications/Center/NotificationHeader.qml:49", + "reference": "Modals/Settings/SettingsSidebar.qml:146, Modals/Greeter/GreeterCompletePage.qml:397, Modules/Notifications/Center/NotificationHeader.qml:49", "comment": "" }, { @@ -7958,13 +8096,13 @@ { "term": "Numeric (D/M)", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:346, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:144, Modules/Settings/TimeWeatherTab.qml:169, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:231, Modules/Settings/TimeWeatherTab.qml:256", + "reference": "Modules/Settings/GreeterTab.qml:414, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:144, Modules/Settings/TimeWeatherTab.qml:169, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:231, Modules/Settings/TimeWeatherTab.qml:256", "comment": "" }, { "term": "Numeric (M/D)", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:342, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:140, Modules/Settings/TimeWeatherTab.qml:168, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:227, Modules/Settings/TimeWeatherTab.qml:255", + "reference": "Modules/Settings/GreeterTab.qml:410, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:140, Modules/Settings/TimeWeatherTab.qml:168, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:227, Modules/Settings/TimeWeatherTab.qml:255", "comment": "" }, { @@ -7976,7 +8114,7 @@ { "term": "OS Logo", "context": "OS Logo", - "reference": "Modules/Settings/DockTab.qml:256, Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:266, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -7988,13 +8126,13 @@ { "term": "Occupied Color", "context": "Occupied Color", - "reference": "Modules/Settings/WorkspacesTab.qml:224", + "reference": "Modules/Settings/WorkspacesTab.qml:234", "comment": "" }, { "term": "Off", "context": "bluetooth status", - "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/DisplayConfig/OutputCard.qml:280, Modules/Settings/DisplayConfig/OutputCard.qml:289, Modules/Settings/DisplayConfig/OutputCard.qml:292, Modules/Settings/DisplayConfig/OutputCard.qml:303, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/OutputCard.qml:315, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:89, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/ControlCenter/Components/DragDropGrid.qml:355", + "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:89, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/Settings/DisplayConfig/OutputCard.qml:280, Modules/Settings/DisplayConfig/OutputCard.qml:289, Modules/Settings/DisplayConfig/OutputCard.qml:292, Modules/Settings/DisplayConfig/OutputCard.qml:303, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/OutputCard.qml:315, Modules/ControlCenter/Components/DragDropGrid.qml:355", "comment": "" }, { @@ -8052,9 +8190,9 @@ "comment": "" }, { - "term": "Only off for DMS-managed PAM lines. If greetd includes system-auth/common-auth/password-auth with pam_fprintd, fingerprint still stays enabled.", - "context": "Only off for DMS-managed PAM lines. If greetd includes system-auth/common-auth/password-auth with pam_fprintd, fingerprint still stays enabled.", - "reference": "Modules/Settings/GreeterTab.qml:474", + "term": "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.", + "context": "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.", + "reference": "Modules/Settings/GreeterTab.qml:39", "comment": "" }, { @@ -8084,7 +8222,7 @@ { "term": "Open", "context": "Open", - "reference": "Modals/DankLauncherV2/Controller.qml:1039, Modals/DankLauncherV2/Controller.qml:1043, Modals/DankLauncherV2/Controller.qml:1047, Modules/Notepad/NotepadTextEditor.qml:779, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1448, Modules/ControlCenter/Details/NetworkDetail.qml:609", + "reference": "Modals/DankLauncherV2/Controller.qml:1037, Modals/DankLauncherV2/Controller.qml:1041, Modals/DankLauncherV2/Controller.qml:1045, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1448, Modules/Notepad/NotepadTextEditor.qml:779, Modules/ControlCenter/Details/NetworkDetail.qml:609", "comment": "" }, { @@ -8114,19 +8252,19 @@ { "term": "Open folder", "context": "Open folder", - "reference": "Modals/DankLauncherV2/Controller.qml:1047", + "reference": "Modals/DankLauncherV2/Controller.qml:1045", "comment": "" }, { "term": "Open in Browser", "context": "Open in Browser", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:301, dms-plugins/DankGifSearch/DankGifSearch.qml:248", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:248, dms-plugins/DankStickerSearch/DankStickerSearch.qml:301", "comment": "" }, { "term": "Open in terminal", "context": "Open in terminal", - "reference": "Modals/DankLauncherV2/Controller.qml:1047", + "reference": "Modals/DankLauncherV2/Controller.qml:1045", "comment": "" }, { @@ -8168,7 +8306,7 @@ { "term": "Opening terminal: ", "context": "Opening terminal: ", - "reference": "Modules/Settings/GreeterTab.qml:89", + "reference": "Modules/Settings/GreeterTab.qml:156", "comment": "" }, { @@ -8276,19 +8414,19 @@ { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1864, Modules/Settings/ThemeColorsTab.qml:1967, Modules/Settings/ThemeColorsTab.qml:2070", + "reference": "Modules/Settings/ThemeColorsTab.qml:1877, Modules/Settings/ThemeColorsTab.qml:1980, Modules/Settings/ThemeColorsTab.qml:2083", "comment": "" }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1833, Modules/Settings/ThemeColorsTab.qml:1936, Modules/Settings/ThemeColorsTab.qml:2039", + "reference": "Modules/Settings/ThemeColorsTab.qml:1846, Modules/Settings/ThemeColorsTab.qml:1949, Modules/Settings/ThemeColorsTab.qml:2052", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1801, Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:2007", + "reference": "Modules/Settings/ThemeColorsTab.qml:1814, Modules/Settings/ThemeColorsTab.qml:1917, Modules/Settings/ThemeColorsTab.qml:2020", "comment": "" }, { @@ -8327,6 +8465,36 @@ "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:108", "comment": "" }, + { + "term": "PAM already provides fingerprint auth. Enable this to show it at login.", + "context": "PAM already provides fingerprint auth. Enable this to show it at login.", + "reference": "Modules/Settings/GreeterTab.qml:27", + "comment": "" + }, + { + "term": "PAM already provides security-key auth. Enable this to show it at login.", + "context": "PAM already provides security-key auth. Enable this to show it at login.", + "reference": "Modules/Settings/GreeterTab.qml:58", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but availability could not be confirmed.", + "context": "PAM provides fingerprint auth, but availability could not be confirmed.", + "reference": "Modules/Settings/GreeterTab.qml:33", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no prints are enrolled yet.", + "context": "PAM provides fingerprint auth, but no prints are enrolled yet.", + "reference": "Modules/Settings/GreeterTab.qml:29", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no reader was detected.", + "context": "PAM provides fingerprint auth, but no reader was detected.", + "reference": "Modules/Settings/GreeterTab.qml:31", + "comment": "" + }, { "term": "PIN", "context": "PIN", @@ -8348,19 +8516,19 @@ { "term": "Pad hours (02:00 vs 2:00)", "context": "Pad hours (02:00 vs 2:00)", - "reference": "Modules/Settings/GreeterTab.qml:558", + "reference": "Modules/Settings/GreeterTab.qml:618", "comment": "" }, { "term": "Padding", "context": "Padding", - "reference": "Modules/Settings/DockTab.qml:527, Modules/Settings/DankBarTab.qml:872", + "reference": "Modules/Settings/DockTab.qml:537, Modules/Settings/DankBarTab.qml:872", "comment": "" }, { "term": "Pair", "context": "KDE Connect pair button", - "reference": "Modals/BluetoothPairingModal.qml:324, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:391, Modules/ControlCenter/Details/BluetoothDetail.qml:558", + "reference": "Modals/BluetoothPairingModal.qml:324, Modules/ControlCenter/Details/BluetoothDetail.qml:558, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:391", "comment": "" }, { @@ -8384,7 +8552,7 @@ { "term": "Pairing failed", "context": "Phone Connect error", - "reference": "Modals/BluetoothPairingModal.qml:400, dms-plugins/DankKDEConnect/DankKDEConnect.qml:152, Modules/ControlCenter/Details/BluetoothDetail.qml:50", + "reference": "Modals/BluetoothPairingModal.qml:400, Modules/ControlCenter/Details/BluetoothDetail.qml:50, dms-plugins/DankKDEConnect/DankKDEConnect.qml:152", "comment": "" }, { @@ -8432,19 +8600,19 @@ { "term": "Paste", "context": "Paste", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:248, dms-plugins/DankGifSearch/DankGifSearch.qml:195", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:195, dms-plugins/DankStickerSearch/DankStickerSearch.qml:248", "comment": "" }, { "term": "Path to a video file or folder containing videos", "context": "Path to a video file or folder containing videos", - "reference": "Modules/Settings/LockScreenTab.qml:247", + "reference": "Modules/Settings/LockScreenTab.qml:292", "comment": "" }, { "term": "Pattern", "context": "Pattern", - "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:502, Modules/Settings/NotificationsTab.qml:511", + "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:522, Modules/Settings/NotificationsTab.qml:531", "comment": "" }, { @@ -8498,13 +8666,13 @@ { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTabSection.qml:983, Modules/Settings/WidgetsTab.qml:125", + "reference": "Modules/Settings/WidgetsTab.qml:125, Modules/Settings/WidgetsTabSection.qml:983", "comment": "" }, { "term": "Performance", "context": "power profile option", - "reference": "Modals/ProcessListModal.qml:311, Common/Theme.qml:1474", + "reference": "Common/Theme.qml:1474, Modals/ProcessListModal.qml:311", "comment": "" }, { @@ -8540,7 +8708,7 @@ { "term": "Pick a different random video each time from the same folder", "context": "Pick a different random video each time from the same folder", - "reference": "Modules/Settings/LockScreenTab.qml:283", + "reference": "Modules/Settings/LockScreenTab.qml:328", "comment": "" }, { @@ -8552,7 +8720,7 @@ { "term": "Pin", "context": "Pin", - "reference": "Modals/WindowRuleModal.qml:971, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/Settings/WindowRulesTab.qml:563, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/AudioInputDetail.qml:295, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/NetworkDetail.qml:676", + "reference": "Modals/WindowRuleModal.qml:971, Modules/Settings/WindowRulesTab.qml:563, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/NetworkDetail.qml:676, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/AudioInputDetail.qml:295, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165", "comment": "" }, { @@ -8582,7 +8750,7 @@ { "term": "Pinned", "context": "Pinned", - "reference": "Modals/DankLauncherV2/Controller.qml:143, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/AudioInputDetail.qml:295, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/NetworkDetail.qml:676", + "reference": "Modals/DankLauncherV2/Controller.qml:143, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/NetworkDetail.qml:676, Modules/ControlCenter/Details/AudioOutputDetail.qml:304, Modules/ControlCenter/Details/AudioInputDetail.qml:295", "comment": "" }, { @@ -8612,7 +8780,7 @@ { "term": "Play a video when the screen locks.", "context": "Play a video when the screen locks.", - "reference": "Modules/Settings/LockScreenTab.qml:229", + "reference": "Modules/Settings/LockScreenTab.qml:274", "comment": "" }, { @@ -8702,7 +8870,7 @@ { "term": "Plugins", "context": "greeter feature card title | greeter plugins link", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/LauncherContent.qml:322, Modals/Settings/SettingsSidebar.qml:306, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", + "reference": "Modals/Settings/SettingsSidebar.qml:306, Modals/DankLauncherV2/LauncherContent.qml:322, Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", "comment": "" }, { @@ -8714,7 +8882,7 @@ { "term": "Popout Shadows", "context": "Popout Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1770", + "reference": "Modules/Settings/ThemeColorsTab.qml:1783", "comment": "" }, { @@ -8732,25 +8900,25 @@ { "term": "Popup Only", "context": "notification rule action option", - "reference": "Modules/Settings/NotificationsTab.qml:128", + "reference": "Modules/Settings/NotificationsTab.qml:131", "comment": "" }, { "term": "Popup Position", "context": "Popup Position", - "reference": "Modules/Settings/NotificationsTab.qml:209", + "reference": "Modules/Settings/NotificationsTab.qml:212", "comment": "" }, { "term": "Popup Shadow", "context": "Popup Shadow", - "reference": "Modules/Settings/NotificationsTab.qml:276", + "reference": "Modules/Settings/NotificationsTab.qml:279", "comment": "" }, { "term": "Popup Transparency", "context": "Popup Transparency", - "reference": "Modules/Settings/ThemeColorsTab.qml:1581", + "reference": "Modules/Settings/ThemeColorsTab.qml:1594", "comment": "" }, { @@ -8774,7 +8942,7 @@ { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:92, Modules/Settings/DankBarTab.qml:531, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1215", + "reference": "Modules/Settings/DockTab.qml:92, Modules/Settings/DankBarTab.qml:531, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1218", "comment": "" }, { @@ -8822,7 +8990,7 @@ { "term": "Power Off", "context": "Power Off", - "reference": "Modals/PowerMenuModal.qml:192, Modules/Lock/LockPowerMenu.qml:116, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:192, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:116", "comment": "" }, { @@ -8840,7 +9008,7 @@ { "term": "Power Profile Degradation", "context": "Power Profile Degradation", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:246, Modules/DankBar/Popouts/BatteryPopout.qml:613", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:613, Modules/ControlCenter/Details/BatteryDetail.qml:246", "comment": "" }, { @@ -8852,7 +9020,7 @@ { "term": "Power off monitors on lock", "context": "Power off monitors on lock", - "reference": "Modules/Settings/LockScreenTab.qml:156", + "reference": "Modules/Settings/LockScreenTab.qml:201", "comment": "" }, { @@ -8870,13 +9038,13 @@ { "term": "Pre-fill the last successful username on the greeter", "context": "Pre-fill the last successful username on the greeter", - "reference": "Modules/Settings/GreeterTab.qml:684", + "reference": "Modules/Settings/GreeterTab.qml:744", "comment": "" }, { "term": "Pre-select the last used session on the greeter", "context": "Pre-select the last used session on the greeter", - "reference": "Modules/Settings/GreeterTab.qml:675", + "reference": "Modules/Settings/GreeterTab.qml:735", "comment": "" }, { @@ -8930,7 +9098,7 @@ { "term": "Pressure", "context": "Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449, Modules/DankDash/WeatherTab.qml:94, Modules/DankDash/WeatherForecastCard.qml:90, Modules/Settings/TimeWeatherTab.qml:1024", + "reference": "Modules/Settings/TimeWeatherTab.qml:1024, Modules/DankDash/WeatherForecastCard.qml:90, Modules/DankDash/WeatherTab.qml:94, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449", "comment": "" }, { @@ -8948,13 +9116,13 @@ { "term": "Primary", "context": "button color option | color option | primary color | shadow color option | tile color option", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1519, Modules/Settings/ThemeColorsTab.qml:1529, Modules/Settings/ThemeColorsTab.qml:1551, Modules/Settings/ThemeColorsTab.qml:1561, Modules/Settings/ThemeColorsTab.qml:1651, Modules/Settings/ThemeColorsTab.qml:1657, Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/DockTab.qml:379, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/WorkspacesTab.qml:359, Modules/Settings/NetworkTab.qml:227, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "reference": "Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/NetworkTab.qml:227, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1542, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1574, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1670, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/Widgets/SettingsColorPicker.qml:42, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39", "comment": "" }, { "term": "Primary Container", "context": "button color option | tile color option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1519, Modules/Settings/ThemeColorsTab.qml:1523, Modules/Settings/ThemeColorsTab.qml:1533, Modules/Settings/ThemeColorsTab.qml:1551, Modules/Settings/ThemeColorsTab.qml:1555, Modules/Settings/ThemeColorsTab.qml:1565", + "reference": "Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1536, Modules/Settings/ThemeColorsTab.qml:1546, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1568, Modules/Settings/ThemeColorsTab.qml:1578", "comment": "" }, { @@ -9008,7 +9176,7 @@ { "term": "Printers", "context": "Printers", - "reference": "Modals/Settings/SettingsSidebar.qml:264, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:197, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", + "reference": "Modals/Settings/SettingsSidebar.qml:264, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16, Modules/ControlCenter/Models/WidgetModel.qml:197", "comment": "" }, { @@ -9026,7 +9194,7 @@ { "term": "Priority", "context": "Priority", - "reference": "Modules/Settings/NotificationsTab.qml:587", + "reference": "Modules/Settings/NotificationsTab.qml:607", "comment": "" }, { @@ -9038,7 +9206,7 @@ { "term": "Privacy Mode", "context": "Privacy Mode", - "reference": "Modules/Settings/NotificationsTab.qml:285, Modules/Notifications/Center/NotificationSettings.qml:287", + "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:287", "comment": "" }, { @@ -9056,7 +9224,7 @@ { "term": "Processes", "context": "Processes", - "reference": "Modals/ProcessListModal.qml:307, Modules/ProcessList/ProcessListPopout.qml:140, Modules/ProcessList/SystemView.qml:88", + "reference": "Modals/ProcessListModal.qml:307, Modules/ProcessList/SystemView.qml:88, Modules/ProcessList/ProcessListPopout.qml:140", "comment": "" }, { @@ -9134,7 +9302,7 @@ { "term": "QtMultimedia is not available - video screensaver requires qt multimedia services", "context": "QtMultimedia is not available - video screensaver requires qt multimedia services", - "reference": "Modules/Settings/LockScreenTab.qml:218", + "reference": "Modules/Settings/LockScreenTab.qml:263", "comment": "" }, { @@ -9230,7 +9398,7 @@ { "term": "Reboot", "context": "Reboot", - "reference": "Modals/PowerMenuModal.qml:180, Modules/Lock/LockPowerMenu.qml:104, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:180, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:104", "comment": "" }, { @@ -9254,7 +9422,7 @@ { "term": "Refresh", "context": "Phone Connect refresh tooltip", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:296, Modules/Settings/GreeterTab.qml:436, Modules/DankDash/Overview/WeatherOverviewCard.qml:38", + "reference": "Modules/Settings/GreeterTab.qml:504, Modules/DankDash/Overview/WeatherOverviewCard.qml:38, dms-plugins/DankKDEConnect/DankKDEConnect.qml:296", "comment": "" }, { @@ -9266,7 +9434,7 @@ { "term": "Regex", "context": "notification rule match type option", - "reference": "Modules/Settings/NotificationsTab.qml:109", + "reference": "Modules/Settings/NotificationsTab.qml:112", "comment": "" }, { @@ -9308,13 +9476,13 @@ { "term": "Remember last session", "context": "Remember last session", - "reference": "Modules/Settings/GreeterTab.qml:674", + "reference": "Modules/Settings/GreeterTab.qml:734", "comment": "" }, { "term": "Remember last user", "context": "Remember last user", - "reference": "Modules/Settings/GreeterTab.qml:683", + "reference": "Modules/Settings/GreeterTab.qml:743", "comment": "" }, { @@ -9377,10 +9545,16 @@ "reference": "Modules/Settings/PowerSleepTab.qml:473", "comment": "" }, + { + "term": "Required plugin: ", + "context": "Required plugin: ", + "reference": "Modules/Settings/ThemeColorsTab.qml:2581", + "comment": "" + }, { "term": "Requires %1", "context": "version requirement", - "reference": "Modules/Settings/PluginBrowser.qml:630", + "reference": "Modules/Settings/PluginBrowser.qml:632", "comment": "" }, { @@ -9401,12 +9575,6 @@ "reference": "Modules/Settings/WidgetsTab.qml:41", "comment": "" }, - { - "term": "Requires lazy plugin manager", - "context": "neovim template description", - "reference": "Modules/Settings/ThemeColorsTab.qml:2563", - "comment": "" - }, { "term": "Requires night mode support", "context": "Requires night mode support", @@ -9422,13 +9590,13 @@ { "term": "Reset Position", "context": "Reset Position", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:135, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108", + "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:135, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416", "comment": "" }, { "term": "Reset Size", "context": "Reset Size", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:149, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122", + "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:149, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430", "comment": "" }, { @@ -9473,6 +9641,12 @@ "reference": "Modules/Settings/AudioTab.qml:503", "comment": "" }, + { + "term": "Restore Special Workspace Windows", + "context": "Restore Special Workspace Windows", + "reference": "Modules/Settings/DockTab.qml:166", + "comment": "" + }, { "term": "Resume", "context": "Resume", @@ -9482,13 +9656,13 @@ { "term": "Reverse Scrolling Direction", "context": "Reverse Scrolling Direction", - "reference": "Modules/Settings/WorkspacesTab.qml:151", + "reference": "Modules/Settings/WorkspacesTab.qml:161", "comment": "" }, { "term": "Reverse workspace switch direction when scrolling over the bar", "context": "Reverse workspace switch direction when scrolling over the bar", - "reference": "Modules/Settings/WorkspacesTab.qml:152", + "reference": "Modules/Settings/WorkspacesTab.qml:162", "comment": "" }, { @@ -9566,25 +9740,25 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1850", + "reference": "Modules/Settings/ThemeColorsTab.qml:1863", "comment": "" }, { "term": "Rounded corners for windows (border_radius)", "context": "Rounded corners for windows (border_radius)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2056", + "reference": "Modules/Settings/ThemeColorsTab.qml:2069", "comment": "" }, { "term": "Rounded corners for windows (decoration.rounding)", "context": "Rounded corners for windows (decoration.rounding)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1953", + "reference": "Modules/Settings/ThemeColorsTab.qml:1966", "comment": "" }, { "term": "Rule", "context": "Rule", - "reference": "Modals/WindowRuleModal.qml:254, Modules/Settings/NotificationsTab.qml:448", + "reference": "Modals/WindowRuleModal.qml:254, Modules/Settings/NotificationsTab.qml:468", "comment": "" }, { @@ -9608,25 +9782,25 @@ { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2384", + "reference": "Modules/Settings/ThemeColorsTab.qml:2397", "comment": "" }, { "term": "Run Sync to apply.", "context": "Run Sync to apply.", - "reference": "Modules/Settings/GreeterTab.qml:489", + "reference": "Modules/Settings/GreeterTab.qml:63", "comment": "" }, { "term": "Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.", "context": "Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.", - "reference": "Modules/Settings/GreeterTab.qml:474", + "reference": "Modules/Settings/GreeterTab.qml:39", "comment": "" }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2374", + "reference": "Modules/Settings/ThemeColorsTab.qml:2387", "comment": "" }, { @@ -9656,19 +9830,19 @@ { "term": "Running greeter sync…", "context": "Running greeter sync…", - "reference": "Modules/Settings/GreeterTab.qml:264", + "reference": "Modules/Settings/GreeterTab.qml:332", "comment": "" }, { "term": "SDR Brightness", "context": "SDR Brightness", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1249", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1252, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246", "comment": "" }, { "term": "SDR Saturation", "context": "SDR Saturation", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:279, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1251", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1254, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:279", "comment": "" }, { @@ -9680,7 +9854,7 @@ { "term": "Save", "context": "Save", - "reference": "Modals/DankColorPickerModal.qml:750, Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modals/DankLauncherV2/LauncherContent.qml:1009, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Notepad/NotepadTextEditor.qml:763, Modules/Notepad/Notepad.qml:472, Modules/Settings/AudioTab.qml:693", + "reference": "Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modals/DankColorPickerModal.qml:750, Modals/DankLauncherV2/LauncherContent.qml:1009, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Settings/AudioTab.qml:693, Modules/Notepad/NotepadTextEditor.qml:763, Modules/Notepad/Notepad.qml:472", "comment": "" }, { @@ -9704,25 +9878,25 @@ { "term": "Save critical priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:873", + "reference": "Modules/Settings/NotificationsTab.qml:893", "comment": "" }, { "term": "Save dismissed notifications to history", "context": "notification history toggle description", - "reference": "Modules/Settings/NotificationsTab.qml:790", + "reference": "Modules/Settings/NotificationsTab.qml:810", "comment": "" }, { "term": "Save low priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:855", + "reference": "Modules/Settings/NotificationsTab.qml:875", "comment": "" }, { "term": "Save normal priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:864", + "reference": "Modules/Settings/NotificationsTab.qml:884", "comment": "" }, { @@ -9734,7 +9908,7 @@ { "term": "Saved", "context": "Saved", - "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Notepad/NotepadTextEditor.qml:861, Modules/Settings/NetworkTab.qml:1214, Modules/ControlCenter/Details/NetworkDetail.qml:615", + "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Settings/NetworkTab.qml:1214, Modules/Notepad/NotepadTextEditor.qml:861, Modules/ControlCenter/Details/NetworkDetail.qml:615", "comment": "" }, { @@ -9764,7 +9938,7 @@ { "term": "Scale", "context": "Scale", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:154, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1219", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:154, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1222", "comment": "" }, { @@ -9842,7 +10016,7 @@ { "term": "Scroll Wheel", "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:53, Modules/Settings/DankBarTab.qml:719", + "reference": "Modules/Settings/DankBarTab.qml:719, Modules/Settings/MediaPlayerTab.qml:53", "comment": "" }, { @@ -9926,31 +10100,31 @@ { "term": "Search widgets...", "context": "Search widgets...", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:271, Modules/Settings/DesktopWidgetBrowser.qml:287", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:287, Modules/Settings/WidgetSelectionPopup.qml:271", "comment": "" }, { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:296, Modals/Settings/SettingsSidebar.qml:629, Modules/ProcessList/ProcessListPopout.qml:185", + "reference": "Widgets/DankDropdown.qml:301, Modals/Settings/SettingsSidebar.qml:629, Modules/ProcessList/ProcessListPopout.qml:185", "comment": "" }, { "term": "Searching...", "context": "Searching...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/DankGifSearch/DankGifSearch.qml:83", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:83, dms-plugins/DankStickerSearch/DankStickerSearch.qml:140", "comment": "" }, { "term": "Second Factor (AND)", "context": "U2F mode option: key required after password or fingerprint", - "reference": "Modules/Settings/LockScreenTab.qml:199, Modules/Settings/LockScreenTab.qml:200, Modules/Settings/LockScreenTab.qml:202", + "reference": "Modules/Settings/LockScreenTab.qml:244, Modules/Settings/LockScreenTab.qml:245, Modules/Settings/LockScreenTab.qml:247", "comment": "" }, { "term": "Secondary", "context": "button color option | color option | secondary color | tile color option", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1519, Modules/Settings/ThemeColorsTab.qml:1525, Modules/Settings/ThemeColorsTab.qml:1535, Modules/Settings/ThemeColorsTab.qml:1551, Modules/Settings/ThemeColorsTab.qml:1557, Modules/Settings/ThemeColorsTab.qml:1567, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:477, Modules/Settings/WorkspacesTab.qml:359, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "reference": "Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DockTab.qml:600, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1538, Modules/Settings/ThemeColorsTab.qml:1548, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1570, Modules/Settings/ThemeColorsTab.qml:1580, Modules/Settings/LauncherTab.qml:477, Modules/Settings/Widgets/SettingsColorPicker.qml:47, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43", "comment": "" }, { @@ -9974,13 +10148,25 @@ { "term": "Security key mode", "context": "lock screen U2F security key mode setting", - "reference": "Modules/Settings/LockScreenTab.qml:196", + "reference": "Modules/Settings/LockScreenTab.qml:241", + "comment": "" + }, + { + "term": "Security-key availability could not be confirmed.", + "context": "Security-key availability could not be confirmed.", + "reference": "Modules/Settings/LockScreenTab.qml:43, Modules/Settings/GreeterTab.qml:71", + "comment": "" + }, + { + "term": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", + "context": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", + "reference": "Modules/Settings/LockScreenTab.qml:39, Modules/Settings/GreeterTab.qml:67", "comment": "" }, { "term": "Select", "context": "Select", - "reference": "Modals/DankLauncherV2/Controller.qml:1303", + "reference": "Modals/DankLauncherV2/Controller.qml:1301", "comment": "" }, { @@ -9998,7 +10184,7 @@ { "term": "Select Custom Theme", "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2777", + "reference": "Modules/Settings/ThemeColorsTab.qml:2876", "comment": "" }, { @@ -10028,7 +10214,7 @@ { "term": "Select Video or Folder", "context": "Select Video or Folder", - "reference": "Modules/Settings/LockScreenTab.qml:14", + "reference": "Modules/Settings/LockScreenTab.qml:59", "comment": "" }, { @@ -10070,7 +10256,7 @@ { "term": "Select an image file...", "context": "Select an image file...", - "reference": "Modules/Settings/DockTab.qml:330, Modules/Settings/LauncherTab.qml:132", + "reference": "Modules/Settings/DockTab.qml:340, Modules/Settings/LauncherTab.qml:132", "comment": "" }, { @@ -10106,7 +10292,7 @@ { "term": "Select greeter background image", "context": "Select greeter background image", - "reference": "Modules/Settings/GreeterTab.qml:23", + "reference": "Modules/Settings/GreeterTab.qml:90", "comment": "" }, { @@ -10142,7 +10328,7 @@ { "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:497", + "reference": "Modules/Settings/ThemeColorsTab.qml:496", "comment": "" }, { @@ -10262,7 +10448,7 @@ { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:168, Services/AppSearchService.qml:201, Services/AppSearchService.qml:640, Services/PopoutService.qml:405, Services/PopoutService.qml:422, Modals/Settings/SettingsSidebar.qml:114, Modals/Settings/SettingsModal.qml:82, Modals/Settings/SettingsModal.qml:222, Modules/DankDash/DankDashPopout.qml:291", + "reference": "Services/PopoutService.qml:405, Services/PopoutService.qml:422, Services/AppSearchService.qml:168, Services/AppSearchService.qml:201, Services/AppSearchService.qml:640, Modals/Settings/SettingsModal.qml:82, Modals/Settings/SettingsModal.qml:222, Modals/Settings/SettingsSidebar.qml:114, Modules/DankDash/DankDashPopout.qml:291", "comment": "" }, { @@ -10274,25 +10460,25 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2207, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/KeybindsTab.qml:370, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83", + "reference": "Modules/Settings/KeybindsTab.qml:370, Modules/Settings/WindowRulesTab.qml:367, Modules/Settings/ThemeColorsTab.qml:2220, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83", "comment": "" }, { "term": "Shadow Color", "context": "Shadow Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:131, Modules/Settings/ThemeColorsTab.qml:1649", + "reference": "Modules/Settings/ThemeColorsTab.qml:130, Modules/Settings/ThemeColorsTab.qml:1662", "comment": "" }, { "term": "Shadow Intensity", "context": "Shadow Intensity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1619", + "reference": "Modules/Settings/ThemeColorsTab.qml:1632", "comment": "" }, { "term": "Shadow Opacity", "context": "Shadow Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1634", + "reference": "Modules/Settings/ThemeColorsTab.qml:1647", "comment": "" }, { @@ -10304,25 +10490,25 @@ { "term": "Shadow elevation on bars and panels", "context": "Shadow elevation on bars and panels", - "reference": "Modules/Settings/ThemeColorsTab.qml:1782", + "reference": "Modules/Settings/ThemeColorsTab.qml:1795", "comment": "" }, { "term": "Shadow elevation on modals and dialogs", "context": "Shadow elevation on modals and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1760", + "reference": "Modules/Settings/ThemeColorsTab.qml:1773", "comment": "" }, { "term": "Shadow elevation on popouts, OSDs, and dropdowns", "context": "Shadow elevation on popouts, OSDs, and dropdowns", - "reference": "Modules/Settings/ThemeColorsTab.qml:1771", + "reference": "Modules/Settings/ThemeColorsTab.qml:1784", "comment": "" }, { "term": "Shadows", "context": "Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1609", + "reference": "Modules/Settings/ThemeColorsTab.qml:1622", "comment": "" }, { @@ -10334,7 +10520,7 @@ { "term": "Share Gamma Control Settings", "context": "Share Gamma Control Settings", - "reference": "Modules/Settings/ThemeColorsTab.qml:1037", + "reference": "Modules/Settings/ThemeColorsTab.qml:1050", "comment": "" }, { @@ -10370,7 +10556,7 @@ { "term": "Shift+Enter to paste", "context": "Shift+Enter to paste", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:176, dms-plugins/DankGifSearch/DankGifSearch.qml:119", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:119, dms-plugins/DankStickerSearch/DankStickerSearch.qml:176", "comment": "" }, { @@ -10388,7 +10574,7 @@ { "term": "Short", "context": "Short", - "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:325", + "reference": "Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/NotificationsTab.qml:337", "comment": "" }, { @@ -10418,7 +10604,7 @@ { "term": "Show All Tags", "context": "Show All Tags", - "reference": "Modules/Settings/WorkspacesTab.qml:171", + "reference": "Modules/Settings/WorkspacesTab.qml:181", "comment": "" }, { @@ -10520,7 +10706,7 @@ { "term": "Show Launcher Button", "context": "Show Launcher Button", - "reference": "Modules/Settings/DockTab.qml:222", + "reference": "Modules/Settings/DockTab.qml:232", "comment": "" }, { @@ -10556,7 +10742,7 @@ { "term": "Show Media Player", "context": "Enable media player controls on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:93", + "reference": "Modules/Settings/LockScreenTab.qml:138", "comment": "" }, { @@ -10592,25 +10778,25 @@ { "term": "Show Occupied Workspaces Only", "context": "Show Occupied Workspaces Only", - "reference": "Modules/Settings/WorkspacesTab.qml:141", + "reference": "Modules/Settings/WorkspacesTab.qml:151", "comment": "" }, { "term": "Show Overflow Badge Count", "context": "Show Overflow Badge Count", - "reference": "Modules/Settings/DockTab.qml:206", + "reference": "Modules/Settings/DockTab.qml:216", "comment": "" }, { "term": "Show Password Field", "context": "Enable password field display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:84", + "reference": "Modules/Settings/LockScreenTab.qml:129", "comment": "" }, { "term": "Show Power Actions", "context": "Enable power action icon on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:44", + "reference": "Modules/Settings/LockScreenTab.qml:89", "comment": "" }, { @@ -10634,7 +10820,7 @@ { "term": "Show Profile Image", "context": "Enable profile image display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:76", + "reference": "Modules/Settings/LockScreenTab.qml:121", "comment": "" }, { @@ -10682,19 +10868,19 @@ { "term": "Show System Date", "context": "Enable system date display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:68", + "reference": "Modules/Settings/LockScreenTab.qml:113", "comment": "" }, { "term": "Show System Icons", "context": "Enable system status icons on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:52", + "reference": "Modules/Settings/LockScreenTab.qml:97", "comment": "" }, { "term": "Show System Time", "context": "Enable system time display on the lock screen window", - "reference": "Modules/Settings/LockScreenTab.qml:60", + "reference": "Modules/Settings/LockScreenTab.qml:105", "comment": "" }, { @@ -10730,13 +10916,13 @@ { "term": "Show all 9 tags instead of only occupied tags (DWL only)", "context": "Show all 9 tags instead of only occupied tags (DWL only)", - "reference": "Modules/Settings/WorkspacesTab.qml:172", + "reference": "Modules/Settings/WorkspacesTab.qml:182", "comment": "" }, { "term": "Show an outline ring around the focused workspace indicator", "context": "Show an outline ring around the focused workspace indicator", - "reference": "Modules/Settings/WorkspacesTab.qml:345", + "reference": "Modules/Settings/WorkspacesTab.qml:355", "comment": "" }, { @@ -10748,7 +10934,7 @@ { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:2110", + "reference": "Modules/Settings/ThemeColorsTab.qml:2123", "comment": "" }, { @@ -10766,7 +10952,7 @@ { "term": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", "context": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", - "reference": "Modules/Settings/NotificationsTab.qml:277", + "reference": "Modules/Settings/NotificationsTab.qml:280", "comment": "" }, { @@ -10787,10 +10973,22 @@ "reference": "Modules/Settings/LauncherTab.qml:414", "comment": "" }, + { + "term": "Show notification popups only on the currently focused monitor", + "context": "Show notification popups only on the currently focused monitor", + "reference": "Modules/Settings/NotificationsTab.qml:298", + "comment": "" + }, + { + "term": "Show notifications only on the currently focused monitor", + "context": "Show notifications only on the currently focused monitor", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:423", + "comment": "" + }, { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:422, Modules/Settings/DankBarTab.qml:462", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:462", "comment": "" }, { @@ -10802,7 +11000,7 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DockTab.qml:81, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:696", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DockTab.qml:81, Modules/Settings/DankBarTab.qml:696", "comment": "" }, { @@ -10880,7 +11078,7 @@ { "term": "Show seconds", "context": "Show seconds", - "reference": "Modules/Settings/GreeterTab.qml:550", + "reference": "Modules/Settings/GreeterTab.qml:610", "comment": "" }, { @@ -10904,7 +11102,7 @@ { "term": "Show workspaces of the currently focused monitor", "context": "Show workspaces of the currently focused monitor", - "reference": "Modules/Settings/WorkspacesTab.qml:132", + "reference": "Modules/Settings/WorkspacesTab.qml:142", "comment": "" }, { @@ -10952,7 +11150,7 @@ { "term": "Size", "context": "launcher size option", - "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:664, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:676, Modules/Settings/LauncherTab.qml:369, Modules/Settings/DankBarTab.qml:851, Modules/Settings/WindowRulesTab.qml:565", + "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:664, Modals/DankLauncherV2/LauncherContent.qml:669, Modals/DankLauncherV2/LauncherContent.qml:676, Modules/Settings/DankBarTab.qml:851, Modules/Settings/WindowRulesTab.qml:565, Modules/Settings/LauncherTab.qml:369", "comment": "" }, { @@ -10964,13 +11162,13 @@ { "term": "Size Offset", "context": "Size Offset", - "reference": "Modules/Settings/DockTab.qml:455, Modules/Settings/LauncherTab.qml:257", + "reference": "Modules/Settings/DockTab.qml:465, Modules/Settings/LauncherTab.qml:257", "comment": "" }, { "term": "Sizing", "context": "Sizing", - "reference": "Modules/Settings/DockTab.qml:502", + "reference": "Modules/Settings/DockTab.qml:512", "comment": "" }, { @@ -11060,19 +11258,19 @@ { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1819", + "reference": "Modules/Settings/ThemeColorsTab.qml:1832", "comment": "" }, { "term": "Space between windows (gappih/gappiv/gappoh/gappov)", "context": "Space between windows (gappih/gappiv/gappoh/gappov)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2025", + "reference": "Modules/Settings/ThemeColorsTab.qml:2038", "comment": "" }, { "term": "Space between windows (gaps_in and gaps_out)", "context": "Space between windows (gaps_in and gaps_out)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1922", + "reference": "Modules/Settings/ThemeColorsTab.qml:1935", "comment": "" }, { @@ -11084,7 +11282,7 @@ { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:521, Modules/Settings/DankBarTab.qml:803", + "reference": "Modules/Settings/DockTab.qml:531, Modules/Settings/DankBarTab.qml:803", "comment": "" }, { @@ -11126,7 +11324,7 @@ { "term": "Start", "context": "Start", - "reference": "Modules/Settings/ThemeColorsTab.qml:1123, Modules/Settings/GammaControlTab.qml:252", + "reference": "Modules/Settings/ThemeColorsTab.qml:1136, Modules/Settings/GammaControlTab.qml:252", "comment": "" }, { @@ -11156,7 +11354,7 @@ { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:55, Modules/Settings/AboutTab.qml:700, Modules/Settings/PrinterTab.qml:186, Modules/Settings/NetworkTab.qml:182", + "reference": "Widgets/DankIconPicker.qml:55, Modules/Settings/PrinterTab.qml:186, Modules/Settings/NetworkTab.qml:182, Modules/Settings/AboutTab.qml:700", "comment": "" }, { @@ -11192,43 +11390,43 @@ { "term": "Summary", "context": "notification rule match field option", - "reference": "Modules/Settings/NotificationsTab.qml:90", + "reference": "Modules/Settings/NotificationsTab.qml:93", "comment": "" }, { "term": "Sunrise", "context": "Sunrise", - "reference": "Services/WeatherService.qml:245, Modules/DankDash/WeatherTab.qml:104, Modules/Settings/GammaControlTab.qml:574", + "reference": "Services/WeatherService.qml:245, Modules/Settings/GammaControlTab.qml:574, Modules/DankDash/WeatherTab.qml:104", "comment": "" }, { "term": "Sunset", "context": "Sunset", - "reference": "Services/WeatherService.qml:270, Modules/DankDash/WeatherTab.qml:109, Modules/Settings/GammaControlTab.qml:610", + "reference": "Services/WeatherService.qml:270, Modules/Settings/GammaControlTab.qml:610, Modules/DankDash/WeatherTab.qml:109", "comment": "" }, { "term": "Suppress notification popups while enabled", "context": "Suppress notification popups while enabled", - "reference": "Modules/Settings/NotificationsTab.qml:373", + "reference": "Modules/Settings/NotificationsTab.qml:393", "comment": "" }, { "term": "Surface", "context": "color option | shadow color option", - "reference": "Modules/Settings/DockTab.qml:379, Modules/Settings/DockTab.qml:590, Modules/Settings/LauncherTab.qml:181, Modules/Settings/WorkspacesTab.qml:359, Modules/Settings/DankBarTab.qml:1211", + "reference": "Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/LauncherTab.qml:181", "comment": "" }, { "term": "Surface Variant", "context": "button color option | shadow color option | tile color option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1519, Modules/Settings/ThemeColorsTab.qml:1527, Modules/Settings/ThemeColorsTab.qml:1537, Modules/Settings/ThemeColorsTab.qml:1551, Modules/Settings/ThemeColorsTab.qml:1559, Modules/Settings/ThemeColorsTab.qml:1569, Modules/Settings/ThemeColorsTab.qml:1651, Modules/Settings/ThemeColorsTab.qml:1659, Modules/Settings/ThemeColorsTab.qml:1670", + "reference": "Modules/Settings/ThemeColorsTab.qml:1532, Modules/Settings/ThemeColorsTab.qml:1540, Modules/Settings/ThemeColorsTab.qml:1550, Modules/Settings/ThemeColorsTab.qml:1564, Modules/Settings/ThemeColorsTab.qml:1572, Modules/Settings/ThemeColorsTab.qml:1582, Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1672, Modules/Settings/ThemeColorsTab.qml:1683", "comment": "" }, { "term": "Suspend", "context": "Suspend", - "reference": "Modals/PowerMenuModal.qml:204, Modules/Lock/LockPowerMenu.qml:122, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378", + "reference": "Modals/PowerMenuModal.qml:204, Modules/Settings/PowerSleepTab.qml:311, Modules/Settings/PowerSleepTab.qml:378, Modules/Lock/LockPowerMenu.qml:122", "comment": "" }, { @@ -11252,7 +11450,7 @@ { "term": "Switch User", "context": "Switch User", - "reference": "Modules/Greetd/GreeterContent.qml:1048", + "reference": "Modules/Greetd/GreeterContent.qml:1174", "comment": "" }, { @@ -11264,13 +11462,13 @@ { "term": "Sync", "context": "Sync", - "reference": "Modules/Settings/GreeterTab.qml:444", + "reference": "Modules/Settings/GreeterTab.qml:512", "comment": "" }, { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:2127", + "reference": "Modules/Settings/ThemeColorsTab.qml:2140", "comment": "" }, { @@ -11288,37 +11486,37 @@ { "term": "Sync completed successfully.", "context": "Sync completed successfully.", - "reference": "Modules/Settings/GreeterTab.qml:233", + "reference": "Modules/Settings/GreeterTab.qml:301", "comment": "" }, { "term": "Sync dark mode with settings portals for system-wide theme hints", "context": "Sync dark mode with settings portals for system-wide theme hints", - "reference": "Modules/Settings/ThemeColorsTab.qml:2128", + "reference": "Modules/Settings/ThemeColorsTab.qml:2141", "comment": "" }, { "term": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", "context": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", - "reference": "Modules/Settings/GreeterTab.qml:240", + "reference": "Modules/Settings/GreeterTab.qml:308", "comment": "" }, { "term": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "context": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", - "reference": "Modules/Settings/GreeterTab.qml:269", + "reference": "Modules/Settings/GreeterTab.qml:337", "comment": "" }, { "term": "System", "context": "System", - "reference": "Modals/ProcessListModal.qml:319, Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:641, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/ProcessListPopout.qml:155", + "reference": "Services/AppSearchService.qml:641, Widgets/DankIconPicker.qml:43, Modals/ProcessListModal.qml:319, Modals/ProcessListModal.qml:377, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/ProcessListPopout.qml:155", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:2675", + "reference": "Modules/Settings/ThemeColorsTab.qml:2774", "comment": "" }, { @@ -11330,7 +11528,7 @@ { "term": "System Default", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:326, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:124, Modules/Settings/TimeWeatherTab.qml:164, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:211, Modules/Settings/TimeWeatherTab.qml:251, Modules/Settings/LocaleTab.qml:9", + "reference": "Modules/Settings/LocaleTab.qml:9, Modules/Settings/GreeterTab.qml:394, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:121, Modules/Settings/TimeWeatherTab.qml:124, Modules/Settings/TimeWeatherTab.qml:164, Modules/Settings/TimeWeatherTab.qml:208, Modules/Settings/TimeWeatherTab.qml:211, Modules/Settings/TimeWeatherTab.qml:251", "comment": "" }, { @@ -11342,7 +11540,7 @@ { "term": "System Monitor", "context": "System monitor widget name | sysmon window title", - "reference": "Modals/ProcessListModal.qml:51, Modals/ProcessListModal.qml:85, Modals/ProcessListModal.qml:261, Services/AppSearchService.qml:190, Services/DesktopWidgetRegistry.qml:54", + "reference": "Services/DesktopWidgetRegistry.qml:54, Services/AppSearchService.qml:190, Modals/ProcessListModal.qml:51, Modals/ProcessListModal.qml:85, Modals/ProcessListModal.qml:261", "comment": "" }, { @@ -11432,25 +11630,25 @@ { "term": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "context": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", - "reference": "Modules/Settings/GreeterTab.qml:292", + "reference": "Modules/Settings/GreeterTab.qml:360", "comment": "" }, { "term": "Terminal fallback opened. Complete sync there; it will close automatically when done.", "context": "Terminal fallback opened. Complete sync there; it will close automatically when done.", - "reference": "Modules/Settings/GreeterTab.qml:288", + "reference": "Modules/Settings/GreeterTab.qml:356", "comment": "" }, { "term": "Terminal opened. Complete sync authentication there; it will close automatically when done.", "context": "Terminal opened. Complete sync authentication there; it will close automatically when done.", - "reference": "Modules/Settings/GreeterTab.qml:288", + "reference": "Modules/Settings/GreeterTab.qml:356", "comment": "" }, { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2137", + "reference": "Modules/Settings/ThemeColorsTab.qml:2150", "comment": "" }, { @@ -11486,7 +11684,7 @@ { "term": "Text Color", "context": "shadow color option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1651, Modules/Settings/ThemeColorsTab.qml:1655, Modules/Settings/ThemeColorsTab.qml:1675", + "reference": "Modules/Settings/ThemeColorsTab.qml:1664, Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/ThemeColorsTab.qml:1688", "comment": "" }, { @@ -11504,7 +11702,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:2664", + "reference": "Modules/Settings/ThemeColorsTab.qml:2763", "comment": "" }, { @@ -11516,13 +11714,13 @@ { "term": "Theme & Colors", "context": "greeter settings link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:82", + "reference": "Modals/Settings/SettingsSidebar.qml:82, Modals/Greeter/GreeterCompletePage.qml:389", "comment": "" }, { "term": "Theme Color", "context": "Theme Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:201", + "reference": "Modules/Settings/ThemeColorsTab.qml:200", "comment": "" }, { @@ -11540,19 +11738,19 @@ { "term": "Thickness", "context": "border thickness", - "reference": "Modules/Settings/LauncherTab.qml:445, Modules/Settings/WorkspacesTab.qml:393, Modules/Settings/DankBarTab.qml:1451, Modules/Settings/DankBarTab.qml:1541", + "reference": "Modules/Settings/WorkspacesTab.qml:403, Modules/Settings/DankBarTab.qml:1451, Modules/Settings/DankBarTab.qml:1541, Modules/Settings/LauncherTab.qml:445", "comment": "" }, { "term": "Third-Party Plugin Warning", "context": "Third-Party Plugin Warning", - "reference": "Modules/Settings/PluginBrowser.qml:733, Modules/Settings/PluginBrowser.qml:767", + "reference": "Modules/Settings/PluginBrowser.qml:735, Modules/Settings/PluginBrowser.qml:769", "comment": "" }, { "term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", "context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", - "reference": "Modules/Settings/PluginBrowser.qml:791", + "reference": "Modules/Settings/PluginBrowser.qml:793", "comment": "" }, { @@ -11648,7 +11846,7 @@ { "term": "Time", "context": "theme auto mode tab | wallpaper cycling mode tab", - "reference": "Modules/Settings/ThemeColorsTab.qml:1055, Modules/Settings/WallpaperTab.qml:960", + "reference": "Modules/Settings/WallpaperTab.qml:960, Modules/Settings/ThemeColorsTab.qml:1068", "comment": "" }, { @@ -11672,7 +11870,7 @@ { "term": "Time format", "context": "Time format", - "reference": "Modules/Settings/GreeterTab.qml:531", + "reference": "Modules/Settings/GreeterTab.qml:591", "comment": "" }, { @@ -11696,19 +11894,19 @@ { "term": "Timeout for critical priority notifications", "context": "Timeout for critical priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:766", + "reference": "Modules/Settings/NotificationsTab.qml:786", "comment": "" }, { "term": "Timeout for low priority notifications", "context": "Timeout for low priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:732", + "reference": "Modules/Settings/NotificationsTab.qml:752", "comment": "" }, { "term": "Timeout for normal priority notifications", "context": "Timeout for normal priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:749", + "reference": "Modules/Settings/NotificationsTab.qml:769", "comment": "" }, { @@ -11804,7 +12002,7 @@ { "term": "Top (Default)", "context": "shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/ThemeColorsTab.qml:1701", + "reference": "Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1714", "comment": "" }, { @@ -11816,13 +12014,13 @@ { "term": "Top Center", "context": "screen position option", - "reference": "Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60, Modules/Settings/NotificationsTab.qml:213, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:238", + "reference": "Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:241, Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60", "comment": "" }, { "term": "Top Left", "context": "screen position option | shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/ThemeColorsTab.qml:1695, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1157, Modules/Settings/DankBarTab.qml:1167, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:220, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "reference": "Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1157, Modules/Settings/DankBarTab.qml:1167, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/NotificationsTab.qml:223, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:238, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", "comment": "" }, { @@ -11834,7 +12032,7 @@ { "term": "Top Right", "context": "screen position option | shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/ThemeColorsTab.qml:1697, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1159, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:226, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", + "reference": "Modules/Settings/DankBarTab.qml:1153, Modules/Settings/DankBarTab.qml:1159, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/ThemeColorsTab.qml:1723, Modules/Settings/NotificationsTab.qml:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:144", "comment": "" }, { @@ -11858,7 +12056,7 @@ { "term": "Transform", "context": "Transform", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:240, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1221", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:240, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1224", "comment": "" }, { @@ -11870,7 +12068,7 @@ { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:557, Modules/Settings/DankBarTab.qml:1000, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", + "reference": "Modules/Settings/DockTab.qml:567, Modules/Settings/DankBarTab.qml:1000, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", "comment": "" }, { @@ -11900,7 +12098,7 @@ { "term": "Trigger: %1", "context": "Trigger: %1", - "reference": "Modals/DankLauncherV2/Controller.qml:1169, Modules/Settings/LauncherTab.qml:742", + "reference": "Modals/DankLauncherV2/Controller.qml:1167, Modules/Settings/LauncherTab.qml:742", "comment": "" }, { @@ -11912,13 +12110,13 @@ { "term": "Try a different search", "context": "Try a different search", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:98, dms-plugins/DankStickerSearch/DankStickerSearch.qml:155", "comment": "" }, { "term": "Turn off all displays immediately when the lock screen activates", "context": "Turn off all displays immediately when the lock screen activates", - "reference": "Modules/Settings/LockScreenTab.qml:157", + "reference": "Modules/Settings/LockScreenTab.qml:202", "comment": "" }, { @@ -11930,7 +12128,7 @@ { "term": "Type", "context": "Type", - "reference": "Widgets/KeybindItem.qml:834, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:546", + "reference": "Widgets/KeybindItem.qml:834, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:566", "comment": "" }, { @@ -11978,13 +12176,13 @@ { "term": "Unavailable", "context": "Phone Connect unavailable status", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:31, Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkTab.qml:452", + "reference": "Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkTab.qml:452, dms-plugins/DankKDEConnect/DankKDEConnect.qml:31", "comment": "" }, { "term": "Unfocused Color", "context": "Unfocused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:266", + "reference": "Modules/Settings/WorkspacesTab.qml:276", "comment": "" }, { @@ -11996,13 +12194,13 @@ { "term": "Uninstall", "context": "uninstall action button", - "reference": "Modules/Settings/GreeterTab.qml:56, Modules/Settings/GreeterTab.qml:107, Modules/Settings/ThemeBrowser.qml:650", + "reference": "Modules/Settings/ThemeBrowser.qml:650, Modules/Settings/GreeterTab.qml:123, Modules/Settings/GreeterTab.qml:174", "comment": "" }, { "term": "Uninstall Greeter", "context": "greeter action confirmation", - "reference": "Modules/Settings/GreeterTab.qml:105", + "reference": "Modules/Settings/GreeterTab.qml:172", "comment": "" }, { @@ -12014,37 +12212,37 @@ { "term": "Uninstall complete. Greeter has been removed.", "context": "Uninstall complete. Greeter has been removed.", - "reference": "Modules/Settings/GreeterTab.qml:315", + "reference": "Modules/Settings/GreeterTab.qml:383", "comment": "" }, { "term": "Uninstall failed: %1", "context": "uninstallation error", - "reference": "Modules/Settings/ThemeColorsTab.qml:741, Modules/Settings/ThemeBrowser.qml:97", + "reference": "Modules/Settings/ThemeColorsTab.qml:740, Modules/Settings/ThemeBrowser.qml:97", "comment": "" }, { "term": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "context": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", - "reference": "Modules/Settings/GreeterTab.qml:106", + "reference": "Modules/Settings/GreeterTab.qml:173", "comment": "" }, { "term": "Uninstalled: %1", "context": "uninstallation success", - "reference": "Modules/Settings/ThemeColorsTab.qml:744, Modules/Settings/ThemeBrowser.qml:100", + "reference": "Modules/Settings/ThemeColorsTab.qml:743, Modules/Settings/ThemeBrowser.qml:100", "comment": "" }, { "term": "Uninstalling: %1", "context": "uninstallation progress", - "reference": "Modules/Settings/ThemeColorsTab.qml:738, Modules/Settings/ThemeBrowser.qml:94", + "reference": "Modules/Settings/ThemeColorsTab.qml:737, Modules/Settings/ThemeBrowser.qml:94", "comment": "" }, { "term": "Unknown", "context": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status", - "reference": "Common/Theme.qml:1476, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Services/BatteryService.qml:148, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:364, Modules/Lock/LockScreenContent.qml:484, Modules/Lock/LockScreenContent.qml:580, Modules/Settings/PluginBrowser.qml:537, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:431, Modules/Settings/NetworkTab.qml:454, Modules/Settings/NetworkTab.qml:602, Modules/Settings/NetworkTab.qml:747, Modules/Settings/NetworkTab.qml:1172, Modules/Settings/NotificationsTab.qml:646, Modules/ControlCenter/Details/BatteryDetail.qml:183, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:325, Modules/ControlCenter/Components/DragDropGrid.qml:626", + "reference": "Services/BatteryService.qml:148, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Common/Theme.qml:1476, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:431, Modules/Settings/NetworkTab.qml:454, Modules/Settings/NetworkTab.qml:602, Modules/Settings/NetworkTab.qml:747, Modules/Settings/NetworkTab.qml:1172, Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/NotificationsTab.qml:666, Modules/Settings/PluginBrowser.qml:539, Modules/Lock/LockScreenContent.qml:364, Modules/Lock/LockScreenContent.qml:484, Modules/Lock/LockScreenContent.qml:580, Modules/ControlCenter/Components/DragDropGrid.qml:325, Modules/ControlCenter/Components/DragDropGrid.qml:626, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Details/BatteryDetail.qml:183, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201", "comment": "" }, { @@ -12104,7 +12302,7 @@ { "term": "Unmute", "context": "Unmute", - "reference": "Modules/Settings/NotificationsTab.qml:659", + "reference": "Modules/Settings/NotificationsTab.qml:679", "comment": "" }, { @@ -12206,7 +12404,7 @@ { "term": "Urgent Color", "context": "Urgent Color", - "reference": "Modules/Settings/WorkspacesTab.qml:303", + "reference": "Modules/Settings/WorkspacesTab.qml:313", "comment": "" }, { @@ -12236,7 +12434,7 @@ { "term": "Use IP Location", "context": "Use IP Location", - "reference": "Modules/Settings/ThemeColorsTab.qml:1213, Modules/Settings/GammaControlTab.qml:345", + "reference": "Modules/Settings/ThemeColorsTab.qml:1226, Modules/Settings/GammaControlTab.qml:345", "comment": "" }, { @@ -12263,16 +12461,10 @@ "reference": "Modules/Settings/SoundsTab.qml:59", "comment": "" }, - { - "term": "Use a FIDO2/U2F security key (e.g. YubiKey) for lock screen authentication (requires enrolled keys)", - "context": "lock screen U2F security key setting", - "reference": "Modules/Settings/LockScreenTab.qml:186", - "comment": "" - }, { "term": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "context": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", - "reference": "Modules/Settings/GreeterTab.qml:598", + "reference": "Modules/Settings/GreeterTab.qml:658", "comment": "" }, { @@ -12281,6 +12473,12 @@ "reference": "Modules/Settings/DankBarTab.qml:1151", "comment": "" }, + { + "term": "Use a security key for lock screen authentication.", + "context": "lock screen U2F security key setting", + "reference": "Modules/Settings/LockScreenTab.qml:35", + "comment": "" + }, { "term": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "context": "wallpaper settings disable description", @@ -12296,13 +12494,13 @@ { "term": "Use custom border size", "context": "Use custom border size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1968, Modules/Settings/ThemeColorsTab.qml:2071", + "reference": "Modules/Settings/ThemeColorsTab.qml:1981, Modules/Settings/ThemeColorsTab.qml:2084", "comment": "" }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", - "reference": "Modules/Settings/ThemeColorsTab.qml:1865", + "reference": "Modules/Settings/ThemeColorsTab.qml:1878", "comment": "" }, { @@ -12314,37 +12512,37 @@ { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1802, Modules/Settings/ThemeColorsTab.qml:1905, Modules/Settings/ThemeColorsTab.qml:2008", + "reference": "Modules/Settings/ThemeColorsTab.qml:1815, Modules/Settings/ThemeColorsTab.qml:1918, Modules/Settings/ThemeColorsTab.qml:2021", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1834, Modules/Settings/ThemeColorsTab.qml:2040", + "reference": "Modules/Settings/ThemeColorsTab.qml:1847, Modules/Settings/ThemeColorsTab.qml:2053", "comment": "" }, { "term": "Use custom window rounding instead of theme radius", "context": "Use custom window rounding instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1937", + "reference": "Modules/Settings/ThemeColorsTab.qml:1950", "comment": "" }, { "term": "Use desktop wallpaper", "context": "Use desktop wallpaper", - "reference": "Modules/Settings/GreeterTab.qml:612", + "reference": "Modules/Settings/GreeterTab.qml:672", "comment": "" }, { - "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "context": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "reference": "Modules/Settings/LockScreenTab.qml:175", + "term": "Use fingerprint authentication for the lock screen.", + "context": "Use fingerprint authentication for the lock screen.", + "reference": "Modules/Settings/LockScreenTab.qml:18", "comment": "" }, { "term": "Use light theme instead of dark theme", "context": "Use light theme instead of dark theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1447", + "reference": "Modules/Settings/ThemeColorsTab.qml:1460", "comment": "" }, { @@ -12356,7 +12554,7 @@ { "term": "Use smaller notification cards", "context": "Use smaller notification cards", - "reference": "Modules/Settings/NotificationsTab.qml:268", + "reference": "Modules/Settings/NotificationsTab.qml:271", "comment": "" }, { @@ -12392,13 +12590,13 @@ { "term": "Username", "context": "Username", - "reference": "Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Widgets/VpnProfileDelegate.qml:45, Modules/Settings/NetworkTab.qml:1910", + "reference": "Widgets/VpnProfileDelegate.qml:45, Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Modules/Settings/NetworkTab.qml:1910", "comment": "" }, { "term": "Uses sunrise/sunset times based on your location.", "context": "Uses sunrise/sunset times based on your location.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1292", + "reference": "Modules/Settings/ThemeColorsTab.qml:1305", "comment": "" }, { @@ -12410,7 +12608,7 @@ { "term": "Using shared settings from Gamma Control", "context": "Using shared settings from Gamma Control", - "reference": "Modules/Settings/ThemeColorsTab.qml:1304", + "reference": "Modules/Settings/ThemeColorsTab.qml:1317", "comment": "" }, { @@ -12422,7 +12620,7 @@ { "term": "VPN", "context": "VPN", - "reference": "Modules/Settings/WidgetsTabSection.qml:1087, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/NetworkTab.qml:1544, Modules/ControlCenter/Models/WidgetModel.qml:187, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", + "reference": "Modules/Settings/NetworkTab.qml:1544, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/WidgetsTabSection.qml:1087, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15, Modules/ControlCenter/Models/WidgetModel.qml:187", "comment": "" }, { @@ -12476,19 +12674,19 @@ { "term": "VRR", "context": "VRR", - "reference": "Modules/Settings/WindowRulesTab.qml:544, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1223", + "reference": "Modules/Settings/WindowRulesTab.qml:544, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226", "comment": "" }, { "term": "VRR Fullscreen Only", "context": "VRR Fullscreen Only", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1257", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260", "comment": "" }, { "term": "VRR On-Demand", "context": "VRR On-Demand", - "reference": "Modals/WindowRuleModal.qml:701, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1231", + "reference": "Modals/WindowRuleModal.qml:701, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234", "comment": "" }, { @@ -12548,13 +12746,13 @@ { "term": "Video Path", "context": "Video Path", - "reference": "Modules/Settings/LockScreenTab.qml:241", + "reference": "Modules/Settings/LockScreenTab.qml:286", "comment": "" }, { "term": "Video Screensaver", "context": "Video Screensaver", - "reference": "Modules/Lock/VideoScreensaver.qml:57, Modules/Lock/VideoScreensaver.qml:102, Modules/Lock/VideoScreensaver.qml:126, Modules/Settings/LockScreenTab.qml:213", + "reference": "Modules/Settings/LockScreenTab.qml:258, Modules/Lock/VideoScreensaver.qml:57, Modules/Lock/VideoScreensaver.qml:102, Modules/Lock/VideoScreensaver.qml:126", "comment": "" }, { @@ -12572,7 +12770,7 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1118, Modules/Settings/DankBarTab.qml:589", + "reference": "Modules/Settings/DankBarTab.qml:589, Modules/Settings/TimeWeatherTab.qml:1118, Modules/DankDash/WeatherForecastCard.qml:100", "comment": "" }, { @@ -12626,13 +12824,13 @@ { "term": "Wallpaper", "context": "greeter settings link", - "reference": "Widgets/KeybindItem.qml:1097, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1113, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:76, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63", + "reference": "Widgets/KeybindItem.qml:1097, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1113, Modals/Settings/SettingsSidebar.qml:76, Modals/Greeter/GreeterCompletePage.qml:381, Modules/Settings/WallpaperTab.qml:63, Modules/Settings/DisplayWidgetsTab.qml:43", "comment": "" }, { "term": "Wallpaper Error", "context": "wallpaper error status", - "reference": "Modules/Settings/ThemeColorsTab.qml:458", + "reference": "Modules/Settings/ThemeColorsTab.qml:457", "comment": "" }, { @@ -12644,19 +12842,19 @@ { "term": "Wallpaper fill mode", "context": "Wallpaper fill mode", - "reference": "Modules/Settings/GreeterTab.qml:632", + "reference": "Modules/Settings/GreeterTab.qml:692", "comment": "" }, { "term": "Wallpaper processing failed", "context": "wallpaper processing error", - "reference": "Modules/Settings/ThemeColorsTab.qml:475", + "reference": "Modules/Settings/ThemeColorsTab.qml:474", "comment": "" }, { "term": "Wallpaper processing failed - check wallpaper path", "context": "wallpaper error", - "reference": "Modules/Settings/ThemeColorsTab.qml:302", + "reference": "Modules/Settings/ThemeColorsTab.qml:301", "comment": "" }, { @@ -12692,7 +12890,7 @@ { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/DankDash/DankDashPopout.qml:285, Modules/Settings/TimeWeatherTab.qml:382", + "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/Settings/TimeWeatherTab.qml:382, Modules/DankDash/DankDashPopout.qml:285", "comment": "" }, { @@ -12713,6 +12911,12 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:47", "comment": "" }, + { + "term": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", + "context": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", + "reference": "Modules/Settings/DockTab.qml:167", + "comment": "" + }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "context": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", @@ -12800,7 +13004,7 @@ { "term": "Widget Background Color", "context": "Widget Background Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1482", + "reference": "Modules/Settings/ThemeColorsTab.qml:1495", "comment": "" }, { @@ -12818,13 +13022,13 @@ { "term": "Widget Style", "context": "Widget Style", - "reference": "Modules/Settings/ThemeColorsTab.qml:1467", + "reference": "Modules/Settings/ThemeColorsTab.qml:1480", "comment": "" }, { "term": "Widget Styling", "context": "Widget Styling", - "reference": "Modules/Settings/ThemeColorsTab.qml:1459", + "reference": "Modules/Settings/ThemeColorsTab.qml:1472", "comment": "" }, { @@ -12866,25 +13070,25 @@ { "term": "Width of window border (borderpx)", "context": "Width of window border (borderpx)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2087", + "reference": "Modules/Settings/ThemeColorsTab.qml:2100", "comment": "" }, { "term": "Width of window border (general.border_size)", "context": "Width of window border (general.border_size)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1984", + "reference": "Modules/Settings/ThemeColorsTab.qml:1997", "comment": "" }, { "term": "Width of window border and focus ring", "context": "Width of window border and focus ring", - "reference": "Modules/Settings/ThemeColorsTab.qml:1881", + "reference": "Modules/Settings/ThemeColorsTab.qml:1894", "comment": "" }, { "term": "Wind", "context": "Wind", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:89, Modules/Settings/TimeWeatherTab.qml:967", + "reference": "Modules/Settings/TimeWeatherTab.qml:967, Modules/DankDash/WeatherTab.qml:89, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425", "comment": "" }, { @@ -12902,13 +13106,13 @@ { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1849, Modules/Settings/ThemeColorsTab.qml:2055", + "reference": "Modules/Settings/ThemeColorsTab.qml:1862, Modules/Settings/ThemeColorsTab.qml:2068", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1818, Modules/Settings/ThemeColorsTab.qml:1921, Modules/Settings/ThemeColorsTab.qml:2024", + "reference": "Modules/Settings/ThemeColorsTab.qml:1831, Modules/Settings/ThemeColorsTab.qml:1934, Modules/Settings/ThemeColorsTab.qml:2037", "comment": "" }, { @@ -12932,7 +13136,7 @@ { "term": "Window Rounding", "context": "Window Rounding", - "reference": "Modules/Settings/ThemeColorsTab.qml:1952", + "reference": "Modules/Settings/ThemeColorsTab.qml:1965", "comment": "" }, { @@ -12962,13 +13166,13 @@ { "term": "Workspace", "context": "Workspace", - "reference": "Modals/WindowRuleModal.qml:586, Modals/WindowRuleModal.qml:1076, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/WindowRulesTab.qml:541, Modules/Settings/WindowRulesTab.qml:568", + "reference": "Widgets/DankIconPicker.qml:27, Modals/WindowRuleModal.qml:586, Modals/WindowRuleModal.qml:1076, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:729, Modules/Settings/DankBarTab.qml:766, Modules/Settings/WindowRulesTab.qml:541, Modules/Settings/WindowRulesTab.qml:568", "comment": "" }, { "term": "Workspace Appearance", "context": "Workspace Appearance", - "reference": "Modules/Settings/WorkspacesTab.qml:182", + "reference": "Modules/Settings/WorkspacesTab.qml:192", "comment": "" }, { @@ -13040,7 +13244,7 @@ { "term": "Yes", "context": "Yes", - "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1229, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1233, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1243, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1253, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1255", + "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1236, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1256, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1258", "comment": "" }, { @@ -13076,7 +13280,7 @@ { "term": "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.", "context": "qt theme env error body", - "reference": "Modules/Settings/ThemeColorsTab.qml:2354", + "reference": "Modules/Settings/ThemeColorsTab.qml:2367", "comment": "" }, { @@ -13100,13 +13304,13 @@ { "term": "by %1", "context": "author attribution", - "reference": "Modules/Settings/PluginBrowser.qml:537, Modules/Settings/ThemeBrowser.qml:527", + "reference": "Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/PluginBrowser.qml:539", "comment": "" }, { "term": "days", "context": "days", - "reference": "Modules/Settings/NotificationsTab.qml:829, Modules/Settings/ClipboardTab.qml:179", + "reference": "Modules/Settings/NotificationsTab.qml:849, Modules/Settings/ClipboardTab.qml:179", "comment": "" }, { @@ -13124,13 +13328,13 @@ { "term": "dgop not available", "context": "dgop not available", - "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:45", + "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:45, Modules/ControlCenter/Details/DiskUsageDetail.qml:65", "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:2196", + "reference": "Modules/Settings/ThemeColorsTab.qml:2209", "comment": "" }, { @@ -13172,7 +13376,7 @@ { "term": "featured", "context": "featured", - "reference": "Modules/Settings/PluginBrowser.qml:485, Modules/Settings/DesktopWidgetBrowser.qml:389", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:487", "comment": "" }, { @@ -13184,19 +13388,19 @@ { "term": "loginctl not available - lock integration requires DMS socket connection", "context": "loginctl not available - lock integration requires DMS socket connection", - "reference": "Modules/Settings/LockScreenTab.qml:121", + "reference": "Modules/Settings/LockScreenTab.qml:166", "comment": "" }, { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:300", + "reference": "Modules/Settings/ThemeColorsTab.qml:299", "comment": "" }, { "term": "minutes", "context": "minutes", - "reference": "Modules/Settings/NotificationsTab.qml:168", + "reference": "Modules/Settings/NotificationsTab.qml:171", "comment": "" }, { @@ -13226,7 +13430,7 @@ { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:507, Modules/Settings/ThemeBrowser.qml:494", + "reference": "Modules/Settings/ThemeBrowser.qml:494, Modules/Settings/PluginBrowser.qml:509", "comment": "" }, { @@ -13274,7 +13478,7 @@ { "term": "or run ", "context": "or run ", - "reference": "Modules/Settings/GreeterTab.qml:705", + "reference": "Modules/Settings/GreeterTab.qml:765", "comment": "" }, { @@ -13286,13 +13490,13 @@ { "term": "seconds", "context": "seconds", - "reference": "Modules/Settings/NotificationsTab.qml:167", + "reference": "Modules/Settings/NotificationsTab.qml:170", "comment": "" }, { "term": "source", "context": "source code link", - "reference": "Modules/Settings/PluginBrowser.qml:538", + "reference": "Modules/Settings/PluginBrowser.qml:540", "comment": "" }, { @@ -13328,7 +13532,7 @@ { "term": "• Install only from trusted sources", "context": "• Install only from trusted sources", - "reference": "Modules/Settings/PluginBrowser.qml:814", + "reference": "Modules/Settings/PluginBrowser.qml:816", "comment": "" }, { @@ -13358,13 +13562,13 @@ { "term": "• Plugins may contain bugs or security issues", "context": "• Plugins may contain bugs or security issues", - "reference": "Modules/Settings/PluginBrowser.qml:802", + "reference": "Modules/Settings/PluginBrowser.qml:804", "comment": "" }, { "term": "• Review code before installation when possible", "context": "• Review code before installation when possible", - "reference": "Modules/Settings/PluginBrowser.qml:808", + "reference": "Modules/Settings/PluginBrowser.qml:810", "comment": "" }, { diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index 9fa4d507..d1c73998 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -2583,6 +2583,29 @@ "description": "Mouse pointer appearance", "conditionKey": "isNiri" }, + { + "section": "matugenTemplateNeovimSettings", + "label": "Dark mode base", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "base", + "colors", + "dark", + "dark mode", + "look", + "matugen", + "mode", + "neovim", + "night", + "scheme", + "style", + "template", + "terminal", + "theme" + ] + }, { "section": "modalDarkenBackground", "label": "Darken Modal Background", @@ -3948,20 +3971,17 @@ "keywords": [ "appearance", "colors", - "lazy", "look", - "manager", "matugen", "neovim", - "plugin", - "requires", + "required", "scheme", "style", "template", "terminal", "theme" ], - "description": "Requires lazy plugin manager" + "description": "Required plugin: " }, { "section": "matugenTemplateNiri", @@ -4138,18 +4158,14 @@ "authentication", "biometric", "enable", - "enrolled", "fingerprint", "fprint", "lock", - "lockscreen", "login", "password", - "reader", "screen", "security" - ], - "description": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)" + ] }, { "section": "loginctlLockIntegration", @@ -4182,20 +4198,17 @@ "keywords": [ "authentication", "enable", - "enrolled", "fido", "hardware", "key", "lock", - "lockscreen", "login", "password", "screen", "security", "u2f", "yubikey" - ], - "description": "Use a FIDO2/U2F security key (e.g. YubiKey) for lock screen authentication (requires enrolled keys)" + ] }, { "section": "lockDisplay", @@ -4286,6 +4299,27 @@ ], "description": "Automatically lock the screen when DMS starts" }, + { + "section": "lockBeforeSuspend", + "label": "Lock before suspend", + "tabIndex": 11, + "category": "Lock Screen", + "keywords": [ + "automatic", + "automatically", + "before", + "lock", + "login", + "password", + "prepares", + "screen", + "security", + "sleep", + "suspend", + "system" + ], + "description": "Automatically lock the screen when the system prepares to suspend" + }, { "section": "lockScreenNotificationMode", "label": "Notification Display", @@ -6288,27 +6322,6 @@ "icon": "schedule", "description": "Gradually fade the screen before locking with a configurable grace period" }, - { - "section": "lockBeforeSuspend", - "label": "Lock before suspend", - "tabIndex": 21, - "category": "Power & Sleep", - "keywords": [ - "automatically", - "before", - "energy", - "lock", - "power", - "prepares", - "screen", - "security", - "shutdown", - "sleep", - "suspend", - "system" - ], - "description": "Automatically lock the screen when the system prepares to suspend" - }, { "section": "fadeToLockGracePeriod", "label": "Lock fade grace period", diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 78c4d488..98c49c39 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -1518,6 +1518,13 @@ "reference": "", "comment": "" }, + { + "term": "Available.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "BSSID", "translation": "", @@ -3653,6 +3660,20 @@ "reference": "", "comment": "" }, + { + "term": "Dark mode base", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Dark mode harmony", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Darken Modal Background", "translation": "", @@ -4003,13 +4024,6 @@ "reference": "", "comment": "" }, - { - "term": "Disabled.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Disabling WiFi...", "translation": "", @@ -4647,6 +4661,76 @@ "reference": "", "comment": "" }, + { + "term": "Enabled, but fingerprint availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no fingerprint reader was detected.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key and run Sync.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled, but security-key availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled. PAM already provides fingerprint auth.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled. PAM already provides security-key auth.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Enabling WiFi...", "translation": "", @@ -5529,6 +5613,27 @@ "reference": "", "comment": "" }, + { + "term": "Fingerprint availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Finish", "translation": "", @@ -5641,6 +5746,13 @@ "reference": "", "comment": "" }, + { + "term": "Focused Monitor Only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Focused Window", "translation": "", @@ -5648,6 +5760,13 @@ "reference": "", "comment": "" }, + { + "term": "Focused monitor only", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Fog", "translation": "", @@ -6425,6 +6544,20 @@ "reference": "", "comment": "" }, + { + "term": "Highlight Active Workspace App", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Highlight the currently focused app inside workspace indicators", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "History", "translation": "", @@ -7321,6 +7454,20 @@ "reference": "", "comment": "" }, + { + "term": "Light mode base", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Light mode harmony", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Line", "translation": "", @@ -8826,6 +8973,13 @@ "reference": "", "comment": "" }, + { + "term": "No fingerprint reader detected.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No folders found", "translation": "", @@ -9121,14 +9275,28 @@ "comment": "" }, { - "term": "Not available — install fprintd and enroll fingerprints.", + "term": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Not available — install pam_u2f and enroll keys.", + "term": "Not available — install fprintd and pam_fprintd.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f, or configure greetd PAM.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Not available — install or configure pam_u2f.", "translation": "", "context": "", "reference": "", @@ -9148,13 +9316,6 @@ "reference": "", "comment": "" }, - { - "term": "Not enrolled", - "translation": "", - "context": "fingerprint not detected status | security key not detected status", - "reference": "", - "comment": "" - }, { "term": "Not paired", "translation": "", @@ -9394,7 +9555,7 @@ "comment": "" }, { - "term": "Only off for DMS-managed PAM lines. If greetd includes system-auth/common-auth/password-auth with pam_fprintd, fingerprint still stays enabled.", + "term": "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.", "translation": "", "context": "", "reference": "", @@ -9715,6 +9876,41 @@ "reference": "", "comment": "" }, + { + "term": "PAM already provides fingerprint auth. Enable this to show it at login.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM already provides security-key auth. Enable this to show it at login.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no prints are enrolled yet.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "PAM provides fingerprint auth, but no reader was detected.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "PIN", "translation": "", @@ -10940,6 +11136,13 @@ "reference": "", "comment": "" }, + { + "term": "Required plugin: ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Requires %1", "translation": "", @@ -10968,13 +11171,6 @@ "reference": "", "comment": "" }, - { - "term": "Requires lazy plugin manager", - "translation": "", - "context": "neovim template description", - "reference": "", - "comment": "" - }, { "term": "Requires night mode support", "translation": "", @@ -11052,6 +11248,13 @@ "reference": "", "comment": "" }, + { + "term": "Restore Special Workspace Windows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Resume", "translation": "", @@ -11640,6 +11843,20 @@ "reference": "", "comment": "" }, + { + "term": "Security-key availability could not be confirmed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select", "translation": "", @@ -12585,6 +12802,20 @@ "reference": "", "comment": "" }, + { + "term": "Show notification popups only on the currently focused monitor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show notifications only on the currently focused monitor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show on Last Display", "translation": "", @@ -14307,13 +14538,6 @@ "reference": "", "comment": "" }, - { - "term": "Use a FIDO2/U2F security key (e.g. YubiKey) for lock screen authentication (requires enrolled keys)", - "translation": "", - "context": "lock screen U2F security key setting", - "reference": "", - "comment": "" - }, { "term": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "translation": "", @@ -14328,6 +14552,13 @@ "reference": "", "comment": "" }, + { + "term": "Use a security key for lock screen authentication.", + "translation": "", + "context": "lock screen U2F security key setting", + "reference": "", + "comment": "" + }, { "term": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "translation": "", @@ -14392,7 +14623,7 @@ "comment": "" }, { - "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", + "term": "Use fingerprint authentication for the lock screen.", "translation": "", "context": "", "reference": "", @@ -14832,6 +15063,13 @@ "reference": "", "comment": "" }, + { + "term": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "translation": "",