From 516c478f3da2f75c5dc2590541810311d6c9def3 Mon Sep 17 00:00:00 2001 From: Jonas Bloch <128738169+Silzinc@users.noreply.github.com> Date: Wed, 25 Mar 2026 14:16:01 +0100 Subject: [PATCH] Neovim template enhancements (#2078) * feat: add neovim-lualine template, set vim.o.background automatically based on dms light/dark mode * feat(matugen): add option to follow dms background color or not on neovim * chore: regenerate settings and translation index after merging master --- quickshell/Common/SettingsData.qml | 1 + quickshell/Common/settings/SettingsSpec.js | 1 + .../Modules/Settings/ThemeColorsTab.qml | 9 + quickshell/matugen/configs/neovim.toml | 8 +- .../{neovim.lua => neovim-colors.lua} | 13 +- .../matugen/templates/neovim-lualine.lua | 3 + quickshell/translations/en.json | 364 +++++++++--------- .../translations/settings_search_index.json | 67 +++- quickshell/translations/template.json | 7 + 9 files changed, 270 insertions(+), 203 deletions(-) rename quickshell/matugen/templates/{neovim.lua => neovim-colors.lua} (88%) create mode 100644 quickshell/matugen/templates/neovim-lualine.lua diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index 5f96dbfd..0435f8f4 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -494,6 +494,7 @@ Singleton { "harmony": 0.5 } }) + property bool matugenTemplateNeovimSetBackground: true property bool showDock: false property bool dockAutoHide: false diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index 44bd17d6..20b9bd0b 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -305,6 +305,7 @@ var SPEC = { light: { baseTheme: "github_light", harmony: 0.5 } } }, + matugenTemplateNeovimSetBackground: true, showDock: { def: false }, dockAutoHide: { def: false }, diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index 6ffb4512..80e92e53 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -2671,6 +2671,15 @@ Item { } } + SettingsToggleRow { + text: I18n.tr("Follow DMS background color") + tags: ["matugen", "neovim", "terminal", "template"] + settingKey: "matugenTemplateNeovimSetBackground" + visible: neovimThemeToggle.visible && neovimThemeToggle.checked + checked: SettingsData.matugenTemplateNeovimSetBackground ?? true + onToggled: checked => SettingsData.set("matugenTemplateNeovimSetBackground", checked) + } + SettingsDivider { visible: neovimThemeToggle.visible && neovimThemeToggle.checked } diff --git a/quickshell/matugen/configs/neovim.toml b/quickshell/matugen/configs/neovim.toml index 7c4ddc3a..80723d6a 100644 --- a/quickshell/matugen/configs/neovim.toml +++ b/quickshell/matugen/configs/neovim.toml @@ -1,3 +1,7 @@ -[templates.dmsneovim] -input_path = 'SHELL_DIR/matugen/templates/neovim.lua' +[templates.dmsneovim-colors] +input_path = 'SHELL_DIR/matugen/templates/neovim-colors.lua' output_path = 'CONFIG_DIR/nvim/colors/dms.lua' + +[templates.dmsneovim-lualine] +input_path = 'SHELL_DIR/matugen/templates/neovim-lualine.lua' +output_path = 'CONFIG_DIR/nvim/lua/lualine/themes/dms.lua' diff --git a/quickshell/matugen/templates/neovim.lua b/quickshell/matugen/templates/neovim-colors.lua similarity index 88% rename from quickshell/matugen/templates/neovim.lua rename to quickshell/matugen/templates/neovim-colors.lua index 4c39c3ea..eb6db53c 100644 --- a/quickshell/matugen/templates/neovim.lua +++ b/quickshell/matugen/templates/neovim-colors.lua @@ -35,6 +35,15 @@ local function deepGet(t, k) return t end +local mode = vim.system({ "dms", "ipc", "call", "theme", "getMode" }, { text = true }):wait().stdout +if mode ~= nil then + if mode:match("light") then + vim.o.background = "light" + elseif mode:match("dark") then + vim.o.background = "dark" + end +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) @@ -74,7 +83,9 @@ 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}}") + if settings.matugenTemplateNeovimSetBackground ~= false then + harmonized = base46.theme_set_bg(harmonized, "{{colors.background.default.hex}}") + end base46.theme_tables[theme_name] = harmonized end diff --git a/quickshell/matugen/templates/neovim-lualine.lua b/quickshell/matugen/templates/neovim-lualine.lua new file mode 100644 index 00000000..0e86d5fe --- /dev/null +++ b/quickshell/matugen/templates/neovim-lualine.lua @@ -0,0 +1,3 @@ +-- NOTE: this file should never be accessed if AvengeMedia/base46 is not installed, +-- the neovim-colors.lua template will fail first. +return require("lualine.themes._base46")("dms") diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index 4a131e9c..48add73f 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -656,7 +656,7 @@ { "term": "Active", "context": "Active", - "reference": "Modules/Settings/ThemeColorsTab.qml:1415, 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:1415, Modules/ControlCenter/Details/AudioOutputDetail.qml:263, Modules/ControlCenter/Details/AudioInputDetail.qml:254", "comment": "" }, { @@ -704,7 +704,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": "" }, { @@ -734,7 +734,7 @@ { "term": "Add Widget", "context": "Add Widget", - "reference": "Modules/Settings/WidgetsTabSection.qml:773, 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:773, Modules/Settings/WidgetSelectionPopup.qml:93, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", "comment": "" }, { @@ -800,7 +800,7 @@ { "term": "All", "context": "notification history filter", - "reference": "Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:698, Services/AppSearchService.qml:719, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:628, Modals/DankLauncherV2/LauncherContent.qml:340, Modals/DankLauncherV2/LauncherContent.qml:616, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:2361, Modules/Settings/WidgetsTabSection.qml:2415, 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:698, Services/AppSearchService.qml:719, Modals/ProcessListModal.qml:377, Modals/DankLauncherV2/LauncherContent.qml:340, Modals/DankLauncherV2/LauncherContent.qml:616, Modals/DankLauncherV2/Controller.qml:628, Modules/Settings/KeybindsTab.qml:410, Modules/Settings/WidgetsTabSection.qml:2361, Modules/Settings/WidgetsTabSection.qml:2415, 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": "" }, { @@ -824,7 +824,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": "" }, { @@ -998,13 +998,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2822", + "reference": "Modules/Settings/ThemeColorsTab.qml:2831", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2856", + "reference": "Modules/Settings/ThemeColorsTab.qml:2865", "comment": "" }, { @@ -1214,13 +1214,13 @@ { "term": "Auto", "context": "theme category option", - "reference": "Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, 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:1719, Modules/Settings/ThemeColorsTab.qml:1723, Modules/Settings/ThemeColorsTab.qml:1736, 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:1719, Modules/Settings/ThemeColorsTab.qml:1723, Modules/Settings/ThemeColorsTab.qml:1736", "comment": "" }, { @@ -1358,7 +1358,7 @@ { "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:192", + "reference": "Modules/Settings/LockScreenTab.qml:192, Modules/Settings/PowerSleepTab.qml:93", "comment": "" }, { @@ -1370,7 +1370,7 @@ { "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": "" }, { @@ -1424,7 +1424,7 @@ { "term": "Backend", "context": "Backend", - "reference": "Modules/Settings/AboutTab.qml:632, Modules/Settings/NetworkTab.qml:170", + "reference": "Modules/Settings/NetworkTab.qml:170, Modules/Settings/AboutTab.qml:632", "comment": "" }, { @@ -1436,7 +1436,7 @@ { "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": "" }, { @@ -1502,7 +1502,7 @@ { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:1155, Modules/Settings/WidgetsTabSection.qml:1329, 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:1155, Modules/Settings/WidgetsTabSection.qml:1329, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "" }, { @@ -1634,13 +1634,13 @@ { "term": "Border", "context": "launcher border option", - "reference": "Modules/Settings/DockTab.qml:584, Modules/Settings/DockTab.qml:590, 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:597, Modules/Settings/WorkspacesTab.qml:368", + "reference": "Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/DockTab.qml:597", "comment": "" }, { @@ -1670,25 +1670,25 @@ { "term": "Bottom", "context": "shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1719, Modules/Settings/ThemeColorsTab.qml:1729, Modules/Settings/ThemeColorsTab.qml:1742, 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:1719, Modules/Settings/ThemeColorsTab.qml:1729, Modules/Settings/ThemeColorsTab.qml:1742", "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:227, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:244", + "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:221, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:250, 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:225, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:247, 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": "" }, { @@ -1706,7 +1706,7 @@ { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/WidgetsTabSection.qml:1140, Modules/Settings/WidgetsTabSection.qml:1327, Modules/Settings/DockTab.qml:484, Modules/Settings/LauncherTab.qml:276, Modules/Settings/OSDTab.qml:117", + "reference": "Modules/Settings/DockTab.qml:484, Modules/Settings/WidgetsTabSection.qml:1140, Modules/Settings/WidgetsTabSection.qml:1327, Modules/Settings/OSDTab.qml:117, Modules/Settings/LauncherTab.qml:276", "comment": "" }, { @@ -1724,13 +1724,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:1169, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/GreeterTab.qml:683, Modules/Settings/PluginsTab.qml:209, Modules/Settings/LockScreenTab.qml:318", + "reference": "Modals/DankLauncherV2/Controller.qml:157, Modals/DankLauncherV2/Controller.qml:1169, Modules/Settings/LockScreenTab.qml:318, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/GreeterTab.qml:683, Modules/Settings/PluginsTab.qml:209", "comment": "" }, { @@ -1742,7 +1742,7 @@ { "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": "" }, { @@ -1838,7 +1838,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:1026, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:832, Modules/Settings/GreeterTab.qml:180, 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:1026, 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": "" }, { @@ -1868,7 +1868,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": "" }, { @@ -2288,7 +2288,7 @@ { "term": "Close", "context": "Close", - "reference": "Modules/SystemUpdatePopout.qml:307, Modals/NetworkWiredInfoModal.qml:129, Modals/MuxModal.qml:594, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:872", + "reference": "Modules/SystemUpdatePopout.qml:307, Modals/NetworkInfoModal.qml:129, Modals/NetworkWiredInfoModal.qml:129, Modals/MuxModal.qml:594, Modules/DankBar/Widgets/RunningApps.qml:872", "comment": "" }, { @@ -2306,13 +2306,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": "" }, { @@ -2468,7 +2468,7 @@ { "term": "Compact", "context": "Compact", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/NotificationsTab.qml:270", + "reference": "Modules/Settings/NotificationsTab.qml:270, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15", "comment": "" }, { @@ -2492,7 +2492,7 @@ { "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": "" }, { @@ -2636,7 +2636,7 @@ { "term": "Connected", "context": "network status", - "reference": "Modules/Settings/AboutTab.qml:716, 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:716, 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": "" }, { @@ -2684,7 +2684,7 @@ { "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": "" }, { @@ -2774,25 +2774,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:259, 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:259, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230", "comment": "" }, { @@ -2810,7 +2810,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": "" }, { @@ -3038,7 +3038,7 @@ { "term": "Custom", "context": "shadow color option | theme category option", - "reference": "Widgets/KeybindItem.qml:1403, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:280, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/ThemeColorsTab.qml:1691, Modules/Settings/ThemeColorsTab.qml:1702, Modules/Settings/TypographyMotionTab.qml:212, Modules/Settings/TypographyMotionTab.qml:315, Modules/Settings/TypographyMotionTab.qml:399, Modules/Settings/DockTab.qml:282, Modules/Settings/DockTab.qml:389, Modules/Settings/LauncherTab.qml:75, Modules/Settings/LauncherTab.qml:181, Modules/Settings/DankBarTab.qml:1211, Modules/Settings/NotificationsTab.qml:337, 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:1681, Modules/Settings/ThemeColorsTab.qml:1691, Modules/Settings/ThemeColorsTab.qml:1702, 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": "" }, { @@ -3266,7 +3266,7 @@ { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1406, 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:1406, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:620", "comment": "" }, { @@ -3356,13 +3356,13 @@ { "term": "Default", "context": "notification rule action option | notification rule urgency option | widget style option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1499, Modules/Settings/DockTab.qml:389, Modules/Settings/LauncherTab.qml:181, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", + "reference": "Modules/Settings/DockTab.qml:389, Modules/Settings/ThemeColorsTab.qml:1499, 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:1681, Modules/Settings/ThemeColorsTab.qml:1693, Modules/Settings/DankBarTab.qml:1211", + "reference": "Modules/Settings/DankBarTab.qml:1211, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/ThemeColorsTab.qml:1693", "comment": "" }, { @@ -3398,7 +3398,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": "" }, { @@ -3506,7 +3506,7 @@ { "term": "Details for \"%1\"", "context": "Details for \"%1\"", - "reference": "Modals/NetworkWiredInfoModal.qml:69, Modals/NetworkInfoModal.qml:69", + "reference": "Modals/NetworkInfoModal.qml:69, Modals/NetworkWiredInfoModal.qml:69", "comment": "" }, { @@ -3536,7 +3536,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": "" }, { @@ -3578,19 +3578,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:1380, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NetworkTab.qml:823, Modules/Settings/DankBarTab.qml:357, Modules/Settings/NotificationsTab.qml:729, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1226, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1232, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1234, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1260, Modules/ControlCenter/Components/DragDropGrid.qml:317", + "reference": "Modules/Settings/LockScreenTab.qml:148, Modules/Settings/DankBarTab.qml:357, Modules/Settings/NetworkTab.qml:823, Modules/Settings/ThemeColorsTab.qml:1380, 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": "" }, { @@ -3620,7 +3620,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": "" }, { @@ -3788,7 +3788,7 @@ { "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": "" }, { @@ -3818,13 +3818,13 @@ { "term": "Do Not Disturb", "context": "Do Not Disturb", - "reference": "Modules/Settings/NotificationsTab.qml:386, Modules/ControlCenter/Models/WidgetModel.qml:85, Modules/ControlCenter/Components/DragDropGrid.qml:622, Modules/Notifications/Center/NotificationHeader.qml:63, Modules/Notifications/Center/NotificationSettings.qml:151", + "reference": "Modules/Settings/NotificationsTab.qml:386, Modules/Notifications/Center/NotificationSettings.qml:151, 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": "" }, { @@ -4136,13 +4136,13 @@ { "term": "Enabled, but fingerprint availability could not be confirmed.", "context": "Enabled, but fingerprint availability could not be confirmed.", - "reference": "Modules/Settings/GreeterTab.qml:49, Modules/Settings/LockScreenTab.qml:28", + "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/GreeterTab.qml:45, Modules/Settings/LockScreenTab.qml:24", + "reference": "Modules/Settings/LockScreenTab.qml:24, Modules/Settings/GreeterTab.qml:45", "comment": "" }, { @@ -4172,7 +4172,7 @@ { "term": "Enabled, but security-key availability could not be confirmed.", "context": "Enabled, but security-key availability could not be confirmed.", - "reference": "Modules/Settings/GreeterTab.qml:71, Modules/Settings/LockScreenTab.qml:43", + "reference": "Modules/Settings/LockScreenTab.qml:43, Modules/Settings/GreeterTab.qml:71", "comment": "" }, { @@ -4196,7 +4196,7 @@ { "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": "" }, { @@ -4232,7 +4232,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": "" }, { @@ -4352,7 +4352,7 @@ { "term": "Error", "context": "Error", - "reference": "Modules/SystemUpdatePopout.qml:72, Services/CupsService.qml:834", + "reference": "Services/CupsService.qml:834, Modules/SystemUpdatePopout.qml:72", "comment": "" }, { @@ -4364,7 +4364,7 @@ { "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": "" }, { @@ -4652,7 +4652,7 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1357", + "reference": "Common/SettingsData.qml:1358", "comment": "" }, { @@ -4664,7 +4664,7 @@ { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1260, Common/SettingsData.qml:2760", + "reference": "Common/SettingsData.qml:1261, Common/SettingsData.qml:2761", "comment": "" }, { @@ -4898,7 +4898,7 @@ { "term": "Feels Like %1°", "context": "weather feels like temperature", - "reference": "Modules/DankDash/WeatherTab.qml:309, Modules/Settings/TimeWeatherTab.qml:776", + "reference": "Modules/Settings/TimeWeatherTab.qml:776, Modules/DankDash/WeatherTab.qml:309", "comment": "" }, { @@ -4946,7 +4946,7 @@ { "term": "Files", "context": "Files", - "reference": "Modals/DankLauncherV2/Controller.qml:164, Modals/DankLauncherV2/Controller.qml:962, Modals/DankLauncherV2/Controller.qml:983, Modals/DankLauncherV2/LauncherContent.qml:350, Modals/DankLauncherV2/LauncherContent.qml:621", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:350, Modals/DankLauncherV2/LauncherContent.qml:621, Modals/DankLauncherV2/Controller.qml:164, Modals/DankLauncherV2/Controller.qml:962, Modals/DankLauncherV2/Controller.qml:983", "comment": "" }, { @@ -4958,7 +4958,7 @@ { "term": "Fill", "context": "wallpaper fill mode", - "reference": "Modules/Settings/GreeterTab.qml:698, Modules/Settings/WallpaperTab.qml:312", + "reference": "Modules/Settings/WallpaperTab.qml:312, Modules/Settings/GreeterTab.qml:698", "comment": "" }, { @@ -4976,7 +4976,7 @@ { "term": "Fingerprint availability could not be confirmed.", "context": "Fingerprint availability could not be confirmed.", - "reference": "Modules/Settings/GreeterTab.qml:49, Modules/Settings/LockScreenTab.qml:28", + "reference": "Modules/Settings/LockScreenTab.qml:28, Modules/Settings/GreeterTab.qml:49", "comment": "" }, { @@ -5018,13 +5018,13 @@ { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/ThemeColorsTab.qml:2237, 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:2237, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/ThemeColorsTab.qml:2237, 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:2237, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81", "comment": "" }, { @@ -5120,7 +5120,13 @@ { "term": "Folders", "context": "Folders", - "reference": "Modals/DankLauncherV2/Controller.qml:973, Modals/DankLauncherV2/Controller.qml:983, Modals/DankLauncherV2/LauncherContent.qml:626", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:626, Modals/DankLauncherV2/Controller.qml:973, Modals/DankLauncherV2/Controller.qml:983", + "comment": "" + }, + { + "term": "Follow DMS background color", + "context": "Follow DMS background color", + "reference": "Modules/Settings/ThemeColorsTab.qml:2675", "comment": "" }, { @@ -5150,7 +5156,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": "" }, { @@ -5396,7 +5402,7 @@ { "term": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.

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

It is recommended to configure adw-gtk3 prior to applying GTK themes.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2874", + "reference": "Modules/Settings/ThemeColorsTab.qml:2883", "comment": "" }, { @@ -5522,7 +5528,7 @@ { "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": "" }, { @@ -5558,7 +5564,7 @@ { "term": "Group by App", "context": "Group by App", - "reference": "Modules/Settings/WidgetsTabSection.qml:2140, Modules/Settings/DockTab.qml:157", + "reference": "Modules/Settings/DockTab.qml:157, Modules/Settings/WidgetsTabSection.qml:2140", "comment": "" }, { @@ -5618,7 +5624,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": "" }, { @@ -5666,7 +5672,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": "" }, { @@ -5924,7 +5930,7 @@ { "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:933", + "reference": "Modules/Settings/TimeWeatherTab.qml:933, Modules/DankDash/WeatherForecastCard.qml:80, Modules/DankDash/WeatherTab.qml:84, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413", "comment": "" }, { @@ -5996,7 +6002,7 @@ { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/DockTab.qml:518, Modules/Settings/WorkspacesTab.qml:109", + "reference": "Modules/Settings/WorkspacesTab.qml:109, Modules/Settings/DockTab.qml:518", "comment": "" }, { @@ -6170,7 +6176,7 @@ { "term": "Install", "context": "install action button", - "reference": "Modules/Settings/PluginBrowser.qml:121, Modules/Settings/PluginBrowser.qml:634, Modules/Settings/GreeterTab.qml:120, Modules/Settings/GreeterTab.qml:166, 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": "" }, { @@ -6206,7 +6212,7 @@ { "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": "" }, { @@ -6248,19 +6254,19 @@ { "term": "Installed", "context": "installed status", - "reference": "Modules/Settings/PluginBrowser.qml:630, 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": "" }, { @@ -6566,7 +6572,7 @@ { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1240, 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": "" }, { @@ -6608,7 +6614,7 @@ { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1406, Modules/Settings/ThemeColorsTab.qml:1476, Modules/Settings/WallpaperTab.qml:392", + "reference": "Modules/Settings/WallpaperTab.qml:392, Modules/Settings/ThemeColorsTab.qml:1406, Modules/Settings/ThemeColorsTab.qml:1476", "comment": "" }, { @@ -6698,13 +6704,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, Modules/DankDash/Overview/WeatherOverviewCard.qml:31", + "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, Modules/DankDash/Overview/WeatherOverviewCard.qml:31", "comment": "" }, { @@ -6728,7 +6734,7 @@ { "term": "Location", "context": "theme auto mode tab", - "reference": "Modules/Settings/ThemeColorsTab.qml:1089, Modules/Settings/GammaControlTab.qml:188, 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:1089, Modules/Settings/GammaControlTab.qml:188", "comment": "" }, { @@ -6746,7 +6752,7 @@ { "term": "Lock Screen", "context": "greeter feature card title | lock screen notifications settings card", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:292, Modules/Settings/NotificationsTab.qml:721", + "reference": "Modals/Settings/SettingsSidebar.qml:292, Modals/Greeter/GreeterWelcomePage.qml:158, Modules/Settings/NotificationsTab.qml:721", "comment": "" }, { @@ -6782,7 +6788,7 @@ { "term": "Lock before suspend", "context": "Lock before suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:92, Modules/Settings/LockScreenTab.qml:191", + "reference": "Modules/Settings/LockScreenTab.qml:191, Modules/Settings/PowerSleepTab.qml:92", "comment": "" }, { @@ -6800,7 +6806,7 @@ { "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": "" }, { @@ -7232,7 +7238,7 @@ { "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": "" }, { @@ -7370,7 +7376,7 @@ { "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:1211", + "reference": "Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DisplayConfigTab.qml:422, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1211", "comment": "" }, { @@ -7544,7 +7550,7 @@ { "term": "Name", "context": "Name", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:692, Modals/DankLauncherV2/LauncherContent.qml:701, Modals/DankLauncherV2/LauncherContent.qml:706, Modals/DankLauncherV2/LauncherContent.qml:876, 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:1211, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:692, Modals/DankLauncherV2/LauncherContent.qml:701, Modals/DankLauncherV2/LauncherContent.qml:706, Modals/DankLauncherV2/LauncherContent.qml:876, 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": "" }, { @@ -7568,7 +7574,7 @@ { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:232, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1080, Modules/Settings/WidgetsTabSection.qml:1320, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:101", + "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:232, Modules/Settings/WidgetsTabSection.qml:1080, Modules/Settings/WidgetsTabSection.qml:1320, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Models/WidgetModel.qml:101, Modules/ControlCenter/Details/NetworkDetail.qml:88", "comment": "" }, { @@ -7586,7 +7592,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": "" }, { @@ -7862,7 +7868,7 @@ { "term": "No Weather Data Available", "context": "No Weather Data Available", - "reference": "Modules/DankDash/WeatherTab.qml:135, Modules/Settings/TimeWeatherTab.qml:651", + "reference": "Modules/Settings/TimeWeatherTab.qml:651, Modules/DankDash/WeatherTab.qml:135", "comment": "" }, { @@ -7946,7 +7952,7 @@ { "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": "" }, { @@ -7958,7 +7964,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": "" }, { @@ -7970,7 +7976,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": "" }, { @@ -8000,7 +8006,7 @@ { "term": "No fingerprint reader detected.", "context": "No fingerprint reader detected.", - "reference": "Modules/Settings/GreeterTab.qml:45, Modules/Settings/LockScreenTab.qml:24", + "reference": "Modules/Settings/LockScreenTab.qml:24, Modules/Settings/GreeterTab.qml:45", "comment": "" }, { @@ -8024,7 +8030,7 @@ { "term": "No information available", "context": "No information available", - "reference": "Modals/NetworkWiredInfoModal.qml:105, Modals/NetworkInfoModal.qml:105", + "reference": "Modals/NetworkInfoModal.qml:105, Modals/NetworkWiredInfoModal.qml:105", "comment": "" }, { @@ -8156,7 +8162,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": "" }, { @@ -8204,7 +8210,7 @@ { "term": "No wallpaper selected", "context": "no wallpaper status", - "reference": "Modules/Settings/ThemeColorsTab.qml:462, Modules/Settings/WallpaperTab.qml:240", + "reference": "Modules/Settings/WallpaperTab.qml:240, Modules/Settings/ThemeColorsTab.qml:462", "comment": "" }, { @@ -8252,7 +8258,7 @@ { "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:337, 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": "" }, { @@ -8414,7 +8420,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": "" }, { @@ -8462,7 +8468,7 @@ { "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": "" }, { @@ -8552,7 +8558,7 @@ { "term": "Open", "context": "Open", - "reference": "Modals/DankLauncherV2/Controller.qml:1040, Modals/DankLauncherV2/Controller.qml:1044, Modals/DankLauncherV2/Controller.qml:1048, Modules/Notepad/NotepadTextEditor.qml:790, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1448, Modules/ControlCenter/Details/NetworkDetail.qml:609, Modules/Notifications/Center/NotificationCard.qml:716, Modules/Notifications/Center/NotificationCard.qml:852", + "reference": "Modals/DankLauncherV2/Controller.qml:1040, Modals/DankLauncherV2/Controller.qml:1044, Modals/DankLauncherV2/Controller.qml:1048, Modules/Settings/NetworkTab.qml:1201, Modules/Settings/NetworkTab.qml:1448, Modules/Notepad/NotepadTextEditor.qml:790, Modules/Notifications/Center/NotificationCard.qml:716, Modules/Notifications/Center/NotificationCard.qml:852, Modules/ControlCenter/Details/NetworkDetail.qml:609", "comment": "" }, { @@ -8588,7 +8594,7 @@ { "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": "" }, { @@ -8870,7 +8876,7 @@ { "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": "" }, { @@ -8894,7 +8900,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": "" }, { @@ -8948,7 +8954,7 @@ { "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": "" }, { @@ -9014,13 +9020,13 @@ { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTabSection.qml:984, Modules/Settings/WidgetsTab.qml:125", + "reference": "Modules/Settings/WidgetsTab.qml:125, Modules/Settings/WidgetsTabSection.qml:984", "comment": "" }, { "term": "Performance", "context": "power profile option", - "reference": "Modals/ProcessListModal.qml:311, Common/Theme.qml:1476", + "reference": "Common/Theme.qml:1476, Modals/ProcessListModal.qml:311", "comment": "" }, { @@ -9068,7 +9074,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": "" }, { @@ -9098,7 +9104,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": "" }, { @@ -9224,7 +9230,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:355, Modals/Settings/SettingsSidebar.qml:312, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", + "reference": "Modals/Settings/SettingsSidebar.qml:312, Modals/DankLauncherV2/LauncherContent.qml:355, Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", "comment": "" }, { @@ -9314,7 +9320,7 @@ { "term": "Power", "context": "Power", - "reference": "Modules/Settings/WidgetsTab.qml:253, Modules/ControlCenter/Details/BatteryDetail.qml:72, Modules/DankBar/Popouts/BatteryPopout.qml:191", + "reference": "Modules/Settings/WidgetsTab.qml:253, Modules/DankBar/Popouts/BatteryPopout.qml:191, Modules/ControlCenter/Details/BatteryDetail.qml:72", "comment": "" }, { @@ -9344,7 +9350,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": "" }, { @@ -9362,7 +9368,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": "" }, { @@ -9380,7 +9386,7 @@ { "term": "Power profile management available", "context": "Power profile management available", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:106, Modules/DankBar/Popouts/BatteryPopout.qml:176", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:176, Modules/ControlCenter/Details/BatteryDetail.qml:106", "comment": "" }, { @@ -9458,7 +9464,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:1034", + "reference": "Modules/Settings/TimeWeatherTab.qml:1034, Modules/DankDash/WeatherForecastCard.qml:90, Modules/DankDash/WeatherTab.qml:94, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449", "comment": "" }, { @@ -9476,7 +9482,7 @@ { "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:1549, Modules/Settings/ThemeColorsTab.qml:1559, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1591, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/ThemeColorsTab.qml:1687, Modules/Settings/ThemeColorsTab.qml:1698, Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/WorkspacesTab.qml:369, 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:1549, Modules/Settings/ThemeColorsTab.qml:1559, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1591, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/ThemeColorsTab.qml:1687, Modules/Settings/ThemeColorsTab.qml:1698, Modules/Settings/LauncherTab.qml:181, Modules/Settings/LauncherTab.qml:477, Modules/Settings/Widgets/SettingsColorPicker.qml:42, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39", "comment": "" }, { @@ -9536,7 +9542,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": "" }, { @@ -9584,7 +9590,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": "" }, { @@ -9758,7 +9764,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": "" }, { @@ -9782,7 +9788,7 @@ { "term": "Refresh", "context": "Phone Connect refresh tooltip", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:296, Modules/Settings/GreeterTab.qml:504, 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": "" }, { @@ -9866,7 +9872,7 @@ { "term": "Rename", "context": "Rename", - "reference": "Modals/MuxModal.qml:597, Modals/WorkspaceRenameModal.qml:185", + "reference": "Modals/WorkspaceRenameModal.qml:185, Modals/MuxModal.qml:597", "comment": "" }, { @@ -9956,13 +9962,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": "" }, { @@ -10202,13 +10208,13 @@ { "term": "SDR Brightness", "context": "SDR Brightness", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:246, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1252", + "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:1254", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1254, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:279", "comment": "" }, { @@ -10220,7 +10226,7 @@ { "term": "Save", "context": "Save", - "reference": "Modals/DankColorPickerModal.qml:757, Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modals/DankLauncherV2/LauncherContent.qml:1050, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Notepad/NotepadTextEditor.qml:774, Modules/Notepad/Notepad.qml:482, Modules/Settings/AudioTab.qml:693", + "reference": "Widgets/KeybindItem.qml:1365, Widgets/KeybindItem.qml:1830, Modals/DankColorPickerModal.qml:757, Modals/DankLauncherV2/LauncherContent.qml:1050, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Settings/AudioTab.qml:693, Modules/Notepad/NotepadTextEditor.qml:774, Modules/Notepad/Notepad.qml:482", "comment": "" }, { @@ -10274,7 +10280,7 @@ { "term": "Saved", "context": "Saved", - "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Notepad/NotepadTextEditor.qml:880, 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:880, Modules/ControlCenter/Details/NetworkDetail.qml:615", "comment": "" }, { @@ -10388,7 +10394,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": "" }, { @@ -10478,7 +10484,7 @@ { "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": "" }, { @@ -10490,7 +10496,7 @@ { "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": "" }, { @@ -10502,7 +10508,7 @@ { "term": "Secondary", "context": "button color option | color option | secondary color | tile color option", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1549, Modules/Settings/ThemeColorsTab.qml:1555, Modules/Settings/ThemeColorsTab.qml:1565, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1587, Modules/Settings/ThemeColorsTab.qml:1597, Modules/Settings/DockTab.qml:600, Modules/Settings/LauncherTab.qml:477, Modules/Settings/WorkspacesTab.qml:369, 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:1549, Modules/Settings/ThemeColorsTab.qml:1555, Modules/Settings/ThemeColorsTab.qml:1565, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1587, Modules/Settings/ThemeColorsTab.qml:1597, Modules/Settings/LauncherTab.qml:477, Modules/Settings/Widgets/SettingsColorPicker.qml:47, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43", "comment": "" }, { @@ -10532,13 +10538,13 @@ { "term": "Security-key availability could not be confirmed.", "context": "Security-key availability could not be confirmed.", - "reference": "Modules/Settings/GreeterTab.qml:71, Modules/Settings/LockScreenTab.qml:43", + "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/GreeterTab.qml:67, Modules/Settings/LockScreenTab.qml:39", + "reference": "Modules/Settings/LockScreenTab.qml:39, Modules/Settings/GreeterTab.qml:67", "comment": "" }, { @@ -10562,7 +10568,7 @@ { "term": "Select Custom Theme", "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2897", + "reference": "Modules/Settings/ThemeColorsTab.qml:2906", "comment": "" }, { @@ -10832,7 +10838,7 @@ { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:168, Services/AppSearchService.qml:212, Services/AppSearchService.qml:654, 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:292", + "reference": "Services/PopoutService.qml:405, Services/PopoutService.qml:422, Services/AppSearchService.qml:168, Services/AppSearchService.qml:212, Services/AppSearchService.qml:654, Modals/Settings/SettingsModal.qml:82, Modals/Settings/SettingsModal.qml:222, Modals/Settings/SettingsSidebar.qml:114, Modules/DankDash/DankDashPopout.qml:292", "comment": "" }, { @@ -10844,7 +10850,7 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2237, 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:2237, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83", "comment": "" }, { @@ -10940,7 +10946,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": "" }, { @@ -11396,7 +11402,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": "" }, { @@ -11552,7 +11558,7 @@ { "term": "Size", "context": "launcher size option", - "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:696, Modals/DankLauncherV2/LauncherContent.qml:701, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/LauncherTab.qml:369, Modules/Settings/DankBarTab.qml:851, Modules/Settings/WindowRulesTab.qml:565", + "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:696, Modals/DankLauncherV2/LauncherContent.qml:701, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/DankBarTab.qml:851, Modules/Settings/WindowRulesTab.qml:565, Modules/Settings/LauncherTab.qml:369", "comment": "" }, { @@ -11756,7 +11762,7 @@ { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:55, Modules/Settings/AboutTab.qml:698, 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:698", "comment": "" }, { @@ -11798,13 +11804,13 @@ { "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": "" }, { @@ -11816,7 +11822,7 @@ { "term": "Surface", "context": "color option | shadow color option", - "reference": "Modules/Settings/DockTab.qml:389, Modules/Settings/DockTab.qml:600, Modules/Settings/LauncherTab.qml:181, Modules/Settings/WorkspacesTab.qml:369, 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": "" }, { @@ -11828,7 +11834,7 @@ { "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": "" }, { @@ -11918,13 +11924,13 @@ { "term": "System", "context": "System", - "reference": "Modals/ProcessListModal.qml:319, Modals/ProcessListModal.qml:377, Services/AppSearchService.qml:655, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/ProcessListPopout.qml:155", + "reference": "Services/AppSearchService.qml:655, 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:2795", + "reference": "Modules/Settings/ThemeColorsTab.qml:2804", "comment": "" }, { @@ -11936,7 +11942,7 @@ { "term": "System Default", "context": "date format option", - "reference": "Modules/Settings/GreeterTab.qml:394, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:134, Modules/Settings/TimeWeatherTab.qml:174, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:221, Modules/Settings/TimeWeatherTab.qml:261, 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:131, Modules/Settings/TimeWeatherTab.qml:134, Modules/Settings/TimeWeatherTab.qml:174, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:221, Modules/Settings/TimeWeatherTab.qml:261", "comment": "" }, { @@ -11948,7 +11954,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": "" }, { @@ -12122,7 +12128,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:2784", + "reference": "Modules/Settings/ThemeColorsTab.qml:2793", "comment": "" }, { @@ -12140,7 +12146,7 @@ { "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": "" }, { @@ -12164,7 +12170,7 @@ { "term": "Thickness", "context": "border thickness", - "reference": "Modules/Settings/LauncherTab.qml:445, Modules/Settings/WorkspacesTab.qml:403, 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": "" }, { @@ -12272,7 +12278,7 @@ { "term": "Time", "context": "theme auto mode tab | wallpaper cycling mode tab", - "reference": "Modules/Settings/ThemeColorsTab.qml:1085, Modules/Settings/GammaControlTab.qml:184, Modules/Settings/WallpaperTab.qml:960", + "reference": "Modules/Settings/WallpaperTab.qml:960, Modules/Settings/ThemeColorsTab.qml:1085, Modules/Settings/GammaControlTab.qml:184", "comment": "" }, { @@ -12302,13 +12308,13 @@ { "term": "Time remaining: %1", "context": "Time remaining: %1", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:109, Modules/DankBar/Popouts/BatteryPopout.qml:179", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:179, Modules/ControlCenter/Details/BatteryDetail.qml:109", "comment": "" }, { "term": "Time until full: %1", "context": "Time until full: %1", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:109, Modules/DankBar/Popouts/BatteryPopout.qml:179", + "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:179, Modules/ControlCenter/Details/BatteryDetail.qml:109", "comment": "" }, { @@ -12446,13 +12452,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:216, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:241", + "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:1719, Modules/Settings/ThemeColorsTab.qml:1725, Modules/Settings/ThemeColorsTab.qml:1738, 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:223, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:238, 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:1719, Modules/Settings/ThemeColorsTab.qml:1725, Modules/Settings/ThemeColorsTab.qml:1738, 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": "" }, { @@ -12464,7 +12470,7 @@ { "term": "Top Right", "context": "screen position option | shadow direction option", - "reference": "Modules/Settings/ThemeColorsTab.qml:1719, Modules/Settings/ThemeColorsTab.qml:1727, Modules/Settings/ThemeColorsTab.qml:1740, 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:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:235, 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:1719, Modules/Settings/ThemeColorsTab.qml:1727, Modules/Settings/ThemeColorsTab.qml:1740, 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": "" }, { @@ -12500,7 +12506,7 @@ { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:567, 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": "" }, { @@ -12542,7 +12548,7 @@ { "term": "Try a different search", "context": "Try a different search", - "reference": "Modals/MuxModal.qml:569, dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98", + "reference": "Modals/MuxModal.qml:569, dms-plugins/DankGifSearch/DankGifSearch.qml:98, dms-plugins/DankStickerSearch/DankStickerSearch.qml:155", "comment": "" }, { @@ -12608,7 +12614,7 @@ { "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": "" }, { @@ -12626,7 +12632,7 @@ { "term": "Uninstall", "context": "uninstall action button", - "reference": "Modules/Settings/GreeterTab.qml:123, Modules/Settings/GreeterTab.qml:174, Modules/Settings/ThemeBrowser.qml:650", + "reference": "Modules/Settings/ThemeBrowser.qml:650, Modules/Settings/GreeterTab.qml:123, Modules/Settings/GreeterTab.qml:174", "comment": "" }, { @@ -12674,7 +12680,7 @@ { "term": "Unknown", "context": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status", - "reference": "Common/Theme.qml:1478, 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:539, 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:666, Modules/ControlCenter/Details/BatteryDetail.qml:183, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:325, Modules/ControlCenter/Components/DragDropGrid.qml:626, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:341", + "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:1478, 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/DankBar/Popouts/BatteryPopout.qml:341, Modules/DankDash/Overview/MediaOverviewCard.qml:91, 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": "" }, { @@ -13034,7 +13040,7 @@ { "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": "" }, { @@ -13070,7 +13076,7 @@ { "term": "VPN", "context": "VPN", - "reference": "Modules/Settings/WidgetsTabSection.qml:1090, Modules/Settings/WidgetsTabSection.qml:1321, 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:1090, Modules/Settings/WidgetsTabSection.qml:1321, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15, Modules/ControlCenter/Models/WidgetModel.qml:187", "comment": "" }, { @@ -13202,7 +13208,7 @@ { "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:258", + "reference": "Modules/Settings/LockScreenTab.qml:258, Modules/Lock/VideoScreensaver.qml:57, Modules/Lock/VideoScreensaver.qml:102, Modules/Lock/VideoScreensaver.qml:126", "comment": "" }, { @@ -13220,7 +13226,7 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1128, Modules/Settings/DankBarTab.qml:589", + "reference": "Modules/Settings/DankBarTab.qml:589, Modules/Settings/TimeWeatherTab.qml:1128, Modules/DankDash/WeatherForecastCard.qml:100", "comment": "" }, { @@ -13274,7 +13280,7 @@ { "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": "" }, { @@ -13340,7 +13346,7 @@ { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/DankDash/DankDashPopout.qml:286, Modules/Settings/TimeWeatherTab.qml:392", + "reference": "Widgets/KeybindItem.qml:1099, Widgets/KeybindItem.qml:1104, Widgets/KeybindItem.qml:1116, Modules/Settings/TimeWeatherTab.qml:392, Modules/DankDash/DankDashPopout.qml:286", "comment": "" }, { @@ -13538,7 +13544,7 @@ { "term": "Wind", "context": "Wind", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:89, Modules/Settings/TimeWeatherTab.qml:977", + "reference": "Modules/Settings/TimeWeatherTab.qml:977, Modules/DankDash/WeatherTab.qml:89, dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425", "comment": "" }, { @@ -13616,7 +13622,7 @@ { "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": "" }, { @@ -13766,7 +13772,7 @@ { "term": "by %1", "context": "author attribution", - "reference": "Modules/Settings/PluginBrowser.qml:539, Modules/Settings/ThemeBrowser.qml:527", + "reference": "Modules/Settings/ThemeBrowser.qml:527, Modules/Settings/PluginBrowser.qml:539", "comment": "" }, { @@ -13796,7 +13802,7 @@ { "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": "" }, { @@ -13856,7 +13862,7 @@ { "term": "featured", "context": "featured", - "reference": "Modules/Settings/PluginBrowser.qml:487, Modules/Settings/DesktopWidgetBrowser.qml:389", + "reference": "Modules/Settings/DesktopWidgetBrowser.qml:389, Modules/Settings/PluginBrowser.qml:487", "comment": "" }, { @@ -13940,7 +13946,7 @@ { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:509, Modules/Settings/ThemeBrowser.qml:494", + "reference": "Modules/Settings/ThemeBrowser.qml:494, Modules/Settings/PluginBrowser.qml:509", "comment": "" }, { diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index cb697c64..50dbdb41 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -2696,6 +2696,31 @@ "theme" ] }, + { + "section": "matugenTemplateNeovimSetBackground", + "label": "Follow DMS background color", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "background", + "color", + "colors", + "colour", + "dms", + "follow", + "hue", + "look", + "matugen", + "neovim", + "scheme", + "style", + "template", + "terminal", + "theme", + "tint" + ] + }, { "section": "matugenTemplateGtk", "label": "GTK", @@ -4359,6 +4384,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", @@ -6361,27 +6407,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 48c0d567..3b8a087d 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -5977,6 +5977,13 @@ "reference": "", "comment": "" }, + { + "term": "Follow DMS background color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Follow Monitor Focus", "translation": "",