From cd672c341fc32825241bc73f975f80dc696752c1 Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 10 Jun 2026 18:53:43 -0400 Subject: [PATCH] settings: add DankSpinner, re-org some settings --- quickshell/Common/settings/Processes.qml | 4 +- .../Modals/Clipboard/ClipboardContent.qml | 4 +- .../Modals/Settings/SettingsContent.qml | 47 +- .../Modals/Settings/SettingsSidebar.qml | 32 +- .../ControlCenter/Components/HeaderPane.qml | 2 +- .../Overview/CalendarOverviewCard.qml | 7 +- .../DankDash/Overview/UserInfoCard.qml | 2 +- .../DankDash/Overview/WeatherOverviewCard.qml | 10 +- .../Modules/Settings/CompositorLayoutTab.qml | 16 +- quickshell/Modules/Settings/CompositorTab.qml | 167 -- quickshell/Modules/Settings/DankBarTab.qml | 4 +- quickshell/Modules/Settings/GreeterTab.qml | 8 +- quickshell/Modules/Settings/NetworkTab.qml | 108 +- quickshell/Modules/Settings/PluginBrowser.qml | 69 +- quickshell/Modules/Settings/ThemeBrowser.qml | 27 +- quickshell/Modules/Settings/UsersTab.qml | 4 +- quickshell/Services/SettingsSearchService.qml | 3 + quickshell/Widgets/DankSpinner.qml | 108 ++ quickshell/Widgets/VpnProfileDelegate.qml | 16 +- quickshell/translations/en.json | 1626 ++++++++-------- .../translations/extract_settings_index.py | 35 +- quickshell/translations/poexports/de.json | 408 ++-- quickshell/translations/poexports/es.json | 192 +- quickshell/translations/poexports/fa.json | 192 +- quickshell/translations/poexports/fr.json | 192 +- quickshell/translations/poexports/he.json | 408 ++-- quickshell/translations/poexports/hu.json | 458 +++-- quickshell/translations/poexports/it.json | 412 ++-- quickshell/translations/poexports/ja.json | 192 +- quickshell/translations/poexports/nl.json | 192 +- quickshell/translations/poexports/pl.json | 192 +- quickshell/translations/poexports/pt.json | 192 +- quickshell/translations/poexports/ru.json | 192 +- quickshell/translations/poexports/sv.json | 192 +- quickshell/translations/poexports/tr.json | 192 +- quickshell/translations/poexports/zh_CN.json | 484 ++--- quickshell/translations/poexports/zh_TW.json | 874 +++++---- .../translations/settings_search_index.json | 1727 +++++++---------- quickshell/translations/template.json | 321 +-- 39 files changed, 4788 insertions(+), 4523 deletions(-) delete mode 100644 quickshell/Modules/Settings/CompositorTab.qml create mode 100644 quickshell/Widgets/DankSpinner.qml diff --git a/quickshell/Common/settings/Processes.qml b/quickshell/Common/settings/Processes.qml index ff6f2cf1..8b2ac865 100644 --- a/quickshell/Common/settings/Processes.qml +++ b/quickshell/Common/settings/Processes.qml @@ -570,7 +570,7 @@ Singleton { onExited: exitCode => { const enabling = root.settingsRoot && root.settingsRoot.greeterAutoLogin; if (exitCode === 0) { - ToastService.showWarning(enabling ? I18n.tr("Applying auto-login on startup…") : I18n.tr("Disabling auto-login on startup…"), "", "dms greeter sync --autologin", "greeter-autologin-sync"); + ToastService.showWarning(enabling ? I18n.tr("Applying auto-login on startup...") : I18n.tr("Disabling auto-login on startup..."), "", "dms greeter sync --autologin", "greeter-autologin-sync"); root.greeterAutoLoginSyncProcess.running = true; return; } @@ -645,7 +645,7 @@ Singleton { onExited: exitCode => { const err = (root.authApplySudoProbeStderr || "").trim(); if (exitCode === 0) { - ToastService.showInfo(I18n.tr("Applying authentication changes…"), "", "", "auth-sync"); + ToastService.showInfo(I18n.tr("Applying authentication changes..."), "", "", "auth-sync"); root.authApplyProcess.running = true; return; } diff --git a/quickshell/Modals/Clipboard/ClipboardContent.qml b/quickshell/Modals/Clipboard/ClipboardContent.qml index 8b174539..48a38455 100644 --- a/quickshell/Modals/Clipboard/ClipboardContent.qml +++ b/quickshell/Modals/Clipboard/ClipboardContent.qml @@ -128,7 +128,7 @@ Item { } StyledText { - text: clipboardContent.modal.clipboardAvailable ? I18n.tr("No recent clipboard entries found") : I18n.tr("Connecting to clipboard service…") + text: clipboardContent.modal.clipboardAvailable ? I18n.tr("No recent clipboard entries found") : I18n.tr("Connecting to clipboard service...") anchors.centerIn: parent font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText @@ -202,7 +202,7 @@ Item { } StyledText { - text: clipboardContent.modal.clipboardAvailable ? I18n.tr("No saved clipboard entries") : I18n.tr("Connecting to clipboard service…") + text: clipboardContent.modal.clipboardAvailable ? I18n.tr("No saved clipboard entries") : I18n.tr("Connecting to clipboard service...") anchors.centerIn: parent font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText diff --git a/quickshell/Modals/Settings/SettingsContent.qml b/quickshell/Modals/Settings/SettingsContent.qml index 90a01e6d..facd76f0 100644 --- a/quickshell/Modals/Settings/SettingsContent.qml +++ b/quickshell/Modals/Settings/SettingsContent.qml @@ -98,7 +98,7 @@ FocusScope { visible: active focus: active - sourceComponent: CompositorTab {} + sourceComponent: WorkspacesTab {} onActiveChanged: { if (active && item) @@ -106,6 +106,44 @@ FocusScope { } } + Loader { + id: compositorLayoutLoader + anchors.fill: parent + active: root.currentIndex === 37 + visible: active + focus: active + + sourceComponent: CompositorLayoutTab {} + + onActiveChanged: { + if (active && item) + Qt.callLater(() => item.forceActiveFocus()); + } + } + + Loader { + id: windowRulesLoader + + property bool loadedOnce: false + + anchors.fill: parent + active: root.currentIndex === 38 || loadedOnce + visible: root.currentIndex === 38 && status === Loader.Ready + focus: visible + asynchronous: true + + sourceComponent: WindowRulesTab { + pageActive: root.currentIndex === 38 + } + + onLoaded: loadedOnce = true + } + + DankSpinner { + anchors.centerIn: parent + visible: root.currentIndex === 38 && windowRulesLoader.status === Loader.Loading + } + Loader { id: dankBarAppearanceLoader anchors.fill: parent @@ -388,7 +426,7 @@ FocusScope { } } - Loader { + Loader { id: defaultAppsLoader anchors.fill: parent active: root.currentIndex === 34 @@ -474,12 +512,9 @@ FocusScope { } } - StyledText { + DankSpinner { anchors.centerIn: parent visible: root.currentIndex === 22 && widgetsLoader.status === Loader.Loading - text: I18n.tr("Loading...", "loading indicator") - color: Theme.surfaceVariantText - font.pixelSize: Theme.fontSizeMedium } Loader { diff --git a/quickshell/Modals/Settings/SettingsSidebar.qml b/quickshell/Modals/Settings/SettingsSidebar.qml index d53ede18..dc50ec21 100644 --- a/quickshell/Modals/Settings/SettingsSidebar.qml +++ b/quickshell/Modals/Settings/SettingsSidebar.qml @@ -102,6 +102,13 @@ Rectangle { "icon": "volume_up", "tabIndex": 15, "soundsOnly": true + }, + { + "id": "compositor_layout", + "text": CompositorService.isNiri ? "niri" : (CompositorService.isHyprland ? "Hyprland" : "MangoWC"), + "icon": "crop_square", + "tabIndex": 37, + "layoutCapable": true } ] }, @@ -128,6 +135,12 @@ Rectangle { "icon": "widgets", "tabIndex": 22 }, + { + "id": "workspaces", + "text": I18n.tr("Workspaces"), + "icon": "view_module", + "tabIndex": 4 + }, { "id": "frame", "text": I18n.tr("Frame"), @@ -188,12 +201,6 @@ Rectangle { } ] }, - { - "id": "compositor", - "text": I18n.tr("Compositor"), - "icon": "layers", - "tabIndex": 4 - }, { "id": "keybinds", "text": I18n.tr("Keyboard Shortcuts"), @@ -259,6 +266,13 @@ Rectangle { "icon": "line_start", "tabIndex": 36, "autostartOnly": true + }, + { + "id": "window_rules", + "text": I18n.tr("Window Rules"), + "icon": "select_window", + "tabIndex": 38, + "windowRulesCapable": true } ] }, @@ -372,6 +386,8 @@ Rectangle { return false; if (item.windowRulesCapable && !CompositorService.isNiri && !CompositorService.isHyprland && !CompositorService.isMango) return false; + if (item.layoutCapable && !CompositorService.isNiri && !CompositorService.isHyprland && !CompositorService.isMango) + return false; if (item.niriOnly && !CompositorService.isNiri) return false; if (item.clipboardOnly && (!DMSService.isConnected || DMSService.apiVersion < 23)) @@ -544,8 +560,8 @@ Rectangle { return -1; var normalized = name.toLowerCase().replace(/[_\-\s]/g, ""); - if (normalized === "workspaces") - normalized = "compositor"; + if (normalized === "compositor") + normalized = "workspaces"; for (var i = 0; i < categoryStructure.length; i++) { var cat = categoryStructure[i]; diff --git a/quickshell/Modules/ControlCenter/Components/HeaderPane.qml b/quickshell/Modules/ControlCenter/Components/HeaderPane.qml index 66e3a59d..d0af2d79 100644 --- a/quickshell/Modules/ControlCenter/Components/HeaderPane.qml +++ b/quickshell/Modules/ControlCenter/Components/HeaderPane.qml @@ -60,7 +60,7 @@ Rectangle { } Typography { - text: DgopService.uptime ? I18n.tr("up") + " " + DgopService.uptime.slice(3) : I18n.tr("Unknown") + text: DgopService.uptime ? I18n.tr("up", "uptime prefix, e.g. 'up 4h 2m'") + " " + DgopService.uptime.slice(3) : I18n.tr("Unknown") style: Typography.Style.Caption color: Theme.surfaceVariantText } diff --git a/quickshell/Modules/DankDash/Overview/CalendarOverviewCard.qml b/quickshell/Modules/DankDash/Overview/CalendarOverviewCard.qml index 6bcefaf9..4a1c1145 100644 --- a/quickshell/Modules/DankDash/Overview/CalendarOverviewCard.qml +++ b/quickshell/Modules/DankDash/Overview/CalendarOverviewCard.qml @@ -183,7 +183,7 @@ Rectangle { text: { const dateStr = Qt.formatDate(selectedDate, "MMM d"); if (selectedDateEvents && selectedDateEvents.length > 0) { - const eventCount = selectedDateEvents.length === 1 ? I18n.tr("1 task") : selectedDateEvents.length + " " + I18n.tr("tasks"); + const eventCount = selectedDateEvents.length === 1 ? I18n.tr("1 task", "task count next to a date") : I18n.tr("%1 tasks", "task count next to a date, %1 is the number of tasks").arg(selectedDateEvents.length); return dateStr + " • " + eventCount; } return dateStr; @@ -775,7 +775,7 @@ Rectangle { width: parent.width text: { if (!modelData || modelData.allDay) { - return I18n.tr("All day"); + return I18n.tr("All day", "calendar task with no specific time"); } else if (modelData.start && modelData.end) { const timeFormat = SettingsData.use24HourClock ? "HH:mm" : "h:mm AP"; const startTime = Qt.formatTime(modelData.start, timeFormat); @@ -950,9 +950,8 @@ Rectangle { selectByMouse: true clip: true - // Hint placeholder text Text { - text: I18n.tr("Add a task...") + text: I18n.tr("Add a task...", "placeholder in the new-task input field") color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.4) visible: !taskInput.text && !taskInput.activeFocus font.pixelSize: Theme.fontSizeSmall diff --git a/quickshell/Modules/DankDash/Overview/UserInfoCard.qml b/quickshell/Modules/DankDash/Overview/UserInfoCard.qml index 5858f269..4893ee43 100644 --- a/quickshell/Modules/DankDash/Overview/UserInfoCard.qml +++ b/quickshell/Modules/DankDash/Overview/UserInfoCard.qml @@ -98,7 +98,7 @@ Card { } StyledText { - text: DgopService.shortUptime ? I18n.tr("up") + DgopService.shortUptime.slice(2) : I18n.tr("up") + text: DgopService.shortUptime ? I18n.tr("up", "uptime prefix, e.g. 'up 4h 2m'") + DgopService.shortUptime.slice(2) : I18n.tr("up", "uptime prefix, e.g. 'up 4h 2m'") font.pixelSize: Theme.fontSizeSmall color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7) anchors.verticalCenter: parent.verticalCenter diff --git a/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml b/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml index 0bba92ee..d1cfdfa3 100644 --- a/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml +++ b/quickshell/Modules/DankDash/Overview/WeatherOverviewCard.qml @@ -20,17 +20,25 @@ Card { spacing: Theme.spacingS visible: !WeatherService.weather.available + DankSpinner { + size: 24 + visible: WeatherService.weather.loading + anchors.horizontalCenter: parent.horizontalCenter + } + DankIcon { name: "cloud_off" size: 24 color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.5) + visible: !WeatherService.weather.loading anchors.horizontalCenter: parent.horizontalCenter } StyledText { - text: WeatherService.weather.loading ? I18n.tr("Loading...") : I18n.tr("No Weather") + text: I18n.tr("No Weather") font.pixelSize: Theme.fontSizeSmall color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7) + visible: !WeatherService.weather.loading anchors.horizontalCenter: parent.horizontalCenter } diff --git a/quickshell/Modules/Settings/CompositorLayoutTab.qml b/quickshell/Modules/Settings/CompositorLayoutTab.qml index bf6a5420..9f3c0ffd 100644 --- a/quickshell/Modules/Settings/CompositorLayoutTab.qml +++ b/quickshell/Modules/Settings/CompositorLayoutTab.qml @@ -145,7 +145,7 @@ Item { tags: ["hyprland", "gaps", "override"] settingKey: "hyprlandLayoutGapsOverride" text: I18n.tr("Window Gaps") - description: I18n.tr("Space between windows (gaps_in and gaps_out)") + description: I18n.tr("Space between windows") + " (gaps_in/gaps_out)" visible: SettingsData.hyprlandLayoutGapsOverride >= 0 value: Math.max(0, SettingsData.hyprlandLayoutGapsOverride) minimum: 0 @@ -159,7 +159,7 @@ Item { tags: ["hyprland", "radius", "override", "rounding"] settingKey: "hyprlandLayoutRadiusOverrideEnabled" text: I18n.tr("Override Corner Radius") - description: I18n.tr("Use custom window rounding instead of theme radius") + description: I18n.tr("Use custom window radius instead of theme radius") checked: SettingsData.hyprlandLayoutRadiusOverride >= 0 onToggled: checked => { if (checked) { @@ -173,8 +173,8 @@ Item { SettingsSliderRow { tags: ["hyprland", "radius", "override", "rounding"] settingKey: "hyprlandLayoutRadiusOverride" - text: I18n.tr("Window Rounding") - description: I18n.tr("Rounded corners for windows (decoration.rounding)") + text: I18n.tr("Window Corner Radius") + description: I18n.tr("Rounded corners for windows") + " (decoration.rounding)" visible: SettingsData.hyprlandLayoutRadiusOverride >= 0 value: Math.max(0, SettingsData.hyprlandLayoutRadiusOverride) minimum: 0 @@ -203,7 +203,7 @@ Item { tags: ["hyprland", "border", "override"] settingKey: "hyprlandLayoutBorderSize" text: I18n.tr("Border Size") - description: I18n.tr("Width of window border (general.border_size)") + description: I18n.tr("Width of window border") + " (general.border_size)" visible: SettingsData.hyprlandLayoutBorderSize >= 0 value: Math.max(0, SettingsData.hyprlandLayoutBorderSize) minimum: 0 @@ -251,7 +251,7 @@ Item { tags: ["mangowc", "mango", "gaps", "override"] settingKey: "mangoLayoutGapsOverride" text: I18n.tr("Window Gaps") - description: I18n.tr("Space between windows (gappih/gappiv/gappoh/gappov)") + description: I18n.tr("Space between windows") + " (gappih/gappiv/gappoh/gappov)" visible: SettingsData.mangoLayoutGapsOverride >= 0 value: Math.max(0, SettingsData.mangoLayoutGapsOverride) minimum: 0 @@ -280,7 +280,7 @@ Item { tags: ["mangowc", "mango", "radius", "override"] settingKey: "mangoLayoutRadiusOverride" text: I18n.tr("Window Corner Radius") - description: I18n.tr("Rounded corners for windows (border_radius)") + description: I18n.tr("Rounded corners for windows") + " (border_radius)" visible: SettingsData.mangoLayoutRadiusOverride >= 0 value: Math.max(0, SettingsData.mangoLayoutRadiusOverride) minimum: 0 @@ -309,7 +309,7 @@ Item { tags: ["mangowc", "mango", "border", "override"] settingKey: "mangoLayoutBorderSize" text: I18n.tr("Border Size") - description: I18n.tr("Width of window border (borderpx)") + description: I18n.tr("Width of window border") + " (borderpx)" visible: SettingsData.mangoLayoutBorderSize >= 0 value: Math.max(0, SettingsData.mangoLayoutBorderSize) minimum: 0 diff --git a/quickshell/Modules/Settings/CompositorTab.qml b/quickshell/Modules/Settings/CompositorTab.qml deleted file mode 100644 index 9ca275ff..00000000 --- a/quickshell/Modules/Settings/CompositorTab.qml +++ /dev/null @@ -1,167 +0,0 @@ -pragma ComponentBehavior: Bound - -import QtQuick -import QtQuick.Layouts -import qs.Common -import qs.Services -import qs.Widgets - -Item { - id: root - - LayoutMirroring.enabled: I18n.isRtl - LayoutMirroring.childrenInherit: true - - property int subTabIndex: 0 - - readonly property var workspaceSections: ({ - "workspaceSettings": true, - "showWorkspaceIndex": true, - "showWorkspaceName": true, - "showWorkspacePadding": true, - "showWorkspaceApps": true, - "groupWorkspaceApps": true, - "groupActiveWorkspaceApps": true, - "workspaceActiveAppHighlightEnabled": true, - "workspaceFollowFocus": true, - "showOccupiedWorkspacesOnly": true, - "reverseScrolling": true, - "workspaceDragReorder": true, - "dwlShowAllTags": true, - "workspaceIcons": true - }) - readonly property var layoutSections: ({ - "niriLayout": true, - "niriLayoutGapsOverrideEnabled": true, - "niriLayoutGapsOverride": true, - "niriLayoutRadiusOverrideEnabled": true, - "niriLayoutRadiusOverride": true, - "niriLayoutBorderSizeEnabled": true, - "niriLayoutBorderSize": true, - "hyprlandLayout": true, - "hyprlandLayoutGapsOverrideEnabled": true, - "hyprlandLayoutGapsOverride": true, - "hyprlandLayoutRadiusOverrideEnabled": true, - "hyprlandLayoutRadiusOverride": true, - "hyprlandLayoutBorderSizeEnabled": true, - "hyprlandLayoutBorderSize": true, - "hyprlandResizeOnBorder": true, - "mangoLayout": true, - "mangoLayoutGapsOverrideEnabled": true, - "mangoLayoutGapsOverride": true, - "mangoLayoutRadiusOverrideEnabled": true, - "mangoLayoutRadiusOverride": true, - "mangoLayoutBorderSizeEnabled": true, - "mangoLayoutBorderSize": true - }) - - function routeSearchTarget(target) { - if (!target) - return; - if (workspaceSections[target]) { - subTabIndex = 0; - } else if (layoutSections[target]) { - subTabIndex = 1; - } else if (target === "windowRules" || target.startsWith("windowRule")) { - subTabIndex = 2; - } - } - - Component.onCompleted: routeSearchTarget(SettingsSearchService.targetSection) - - Connections { - target: SettingsSearchService - - function onTargetSectionChanged() { - root.routeSearchTarget(SettingsSearchService.targetSection); - } - } - - ColumnLayout { - anchors.fill: parent - spacing: 0 - - Rectangle { - Layout.fillWidth: true - Layout.preferredHeight: 60 - color: "transparent" - - DankTabBar { - id: compositorTabBar - - width: Math.min(500, parent.width - Theme.spacingL * 2) - height: 45 - anchors.centerIn: parent - model: [ - { - "text": I18n.tr("Workspaces"), - "icon": "view_module" - }, - { - "text": I18n.tr("Window Layout"), - "icon": "crop_square" - }, - { - "text": I18n.tr("Window Rules"), - "icon": "select_window" - } - ] - currentIndex: root.subTabIndex - onTabClicked: index => root.subTabIndex = index - } - - Rectangle { - anchors.horizontalCenter: parent.horizontalCenter - y: compositorTabBar.y + compositorTabBar.height + 10 - width: compositorTabBar.width - height: 1 - color: Theme.surface - opacity: 0.56 - } - } - - Item { - Layout.fillWidth: true - Layout.fillHeight: true - clip: true - - Loader { - anchors.fill: parent - active: root.subTabIndex === 0 - visible: active - sourceComponent: WorkspacesTab {} - } - - Loader { - anchors.fill: parent - active: root.subTabIndex === 1 - visible: active - sourceComponent: CompositorLayoutTab {} - } - - Loader { - id: windowRulesLoader - - property bool loadedOnce: false - - anchors.fill: parent - active: root.subTabIndex === 2 || loadedOnce - visible: root.subTabIndex === 2 && status === Loader.Ready - asynchronous: true - sourceComponent: WindowRulesTab { - pageActive: root.subTabIndex === 2 - } - - onLoaded: loadedOnce = true - } - - StyledText { - anchors.centerIn: parent - visible: root.subTabIndex === 2 && windowRulesLoader.status === Loader.Loading - text: I18n.tr("Loading...", "loading indicator") - color: Theme.surfaceVariantText - font.pixelSize: Theme.fontSizeMedium - } - } - } -} diff --git a/quickshell/Modules/Settings/DankBarTab.qml b/quickshell/Modules/Settings/DankBarTab.qml index 9a338b09..69f8fdc2 100644 --- a/quickshell/Modules/Settings/DankBarTab.qml +++ b/quickshell/Modules/Settings/DankBarTab.qml @@ -41,8 +41,8 @@ Item { SettingsData.barConfigs; const index = SettingsData.barConfigs.findIndex(config => config.id === selectedBarId); if (index < 0) - return I18n.tr("Bar"); - return SettingsData.barConfigs[index].name || I18n.tr("Bar %1").arg(index + 1); + return I18n.tr("Bar", "fallback name for an unnamed bar"); + return SettingsData.barConfigs[index].name || I18n.tr("Bar %1", "numbered name for an unnamed bar, %1 is its position").arg(index + 1); } property bool selectedBarIsVertical: { diff --git a/quickshell/Modules/Settings/GreeterTab.qml b/quickshell/Modules/Settings/GreeterTab.qml index 16f18c8a..b5736c70 100644 --- a/quickshell/Modules/Settings/GreeterTab.qml +++ b/quickshell/Modules/Settings/GreeterTab.qml @@ -151,7 +151,7 @@ Item { function runGreeterInstallAction() { root.greeterPendingAction = !root.greeterInstalled ? "install" : !root.greeterEnabled ? "activate" : "uninstall"; - greeterStatusText = I18n.tr("Opening terminal: ") + root.greeterActionLabel + "…"; + greeterStatusText = I18n.tr("Opening terminal: ") + root.greeterActionLabel + "..."; greeterInstallActionRunning = true; greeterInstallActionProcess.running = true; } @@ -188,7 +188,7 @@ Item { greeterSudoProbeStderr = ""; greeterTerminalFallbackStderr = ""; greeterTerminalFallbackFromPrecheck = false; - greeterStatusText = I18n.tr("Checking whether sudo authentication is needed…"); + greeterStatusText = I18n.tr("Checking whether sudo authentication is needed..."); greeterSyncRunning = true; greeterSudoProbeProcess.running = true; } @@ -327,7 +327,7 @@ Item { onExited: exitCode => { const err = (root.greeterSudoProbeStderr || "").trim(); if (exitCode === 0) { - root.greeterStatusText = I18n.tr("Running greeter sync…"); + root.greeterStatusText = I18n.tr("Running greeter sync..."); greeterSyncProcess.running = true; return; } @@ -468,7 +468,7 @@ Item { id: statusTextArea anchors.fill: parent anchors.margins: Theme.spacingM - text: root.greeterStatusRunning ? I18n.tr("Checking…", "greeter status loading") : (root.greeterStatusText || I18n.tr("Click Refresh to check status.", "greeter status placeholder")) + text: root.greeterStatusRunning ? I18n.tr("Checking...", "greeter status loading") : (root.greeterStatusText || I18n.tr("Click Refresh to check status.", "greeter status placeholder")) font.pixelSize: Theme.fontSizeSmall font.family: "monospace" color: root.greeterStatusRunning ? Theme.surfaceVariantText : Theme.surfaceText diff --git a/quickshell/Modules/Settings/NetworkTab.qml b/quickshell/Modules/Settings/NetworkTab.qml index 677c90de..025b3aeb 100644 --- a/quickshell/Modules/Settings/NetworkTab.qml +++ b/quickshell/Modules/Settings/NetworkTab.qml @@ -643,41 +643,9 @@ Item { height: NetworkService.networkWiredInfoLoading ? 40 : 0 visible: NetworkService.networkWiredInfoLoading - Row { + DankSpinner { anchors.centerIn: parent - spacing: Theme.spacingS - - DankIcon { - id: wiredLoadIcon - name: "sync" - size: 16 - color: Theme.surfaceVariantText - - SequentialAnimation { - running: NetworkService.networkWiredInfoLoading - loops: Animation.Infinite - OpacityAnimator { - target: wiredLoadIcon - to: 0.3 - duration: 400 - easing.type: Easing.InOutQuad - } - OpacityAnimator { - target: wiredLoadIcon - to: 1.0 - duration: 400 - easing.type: Easing.InOutQuad - } - onRunningChanged: if (!running) - wiredLoadIcon.opacity = 1.0 - } - } - - StyledText { - text: I18n.tr("Loading...") - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - } + size: 20 } } } @@ -1360,41 +1328,9 @@ Item { height: NetworkService.networkInfoLoading ? 40 : 0 visible: NetworkService.networkInfoLoading - Row { + DankSpinner { anchors.centerIn: parent - spacing: Theme.spacingS - - DankIcon { - id: wifiInfoLoadIcon - name: "sync" - size: 16 - color: Theme.surfaceVariantText - - SequentialAnimation { - running: NetworkService.networkInfoLoading - loops: Animation.Infinite - OpacityAnimator { - target: wifiInfoLoadIcon - to: 0.3 - duration: 400 - easing.type: Easing.InOutQuad - } - OpacityAnimator { - target: wifiInfoLoadIcon - to: 1.0 - duration: 400 - easing.type: Easing.InOutQuad - } - onRunningChanged: if (!running) - wifiInfoLoadIcon.opacity = 1.0 - } - } - - StyledText { - text: I18n.tr("Loading...") - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - } + size: 20 } } @@ -1849,41 +1785,9 @@ Item { height: VPNService.configLoading ? 40 : 0 visible: VPNService.configLoading - Row { + DankSpinner { anchors.centerIn: parent - spacing: Theme.spacingS - - DankIcon { - id: vpnLoadIcon - name: "sync" - size: 16 - color: Theme.surfaceVariantText - - SequentialAnimation { - running: VPNService.configLoading - loops: Animation.Infinite - OpacityAnimator { - target: vpnLoadIcon - to: 0.3 - duration: 400 - easing.type: Easing.InOutQuad - } - OpacityAnimator { - target: vpnLoadIcon - to: 1.0 - duration: 400 - easing.type: Easing.InOutQuad - } - onRunningChanged: if (!running) - vpnLoadIcon.opacity = 1.0 - } - } - - StyledText { - text: I18n.tr("Loading...") - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - } + size: 20 } } diff --git a/quickshell/Modules/Settings/PluginBrowser.qml b/quickshell/Modules/Settings/PluginBrowser.qml index ec83a6af..c4faaf8c 100644 --- a/quickshell/Modules/Settings/PluginBrowser.qml +++ b/quickshell/Modules/Settings/PluginBrowser.qml @@ -33,11 +33,31 @@ FloatingWindow { } readonly property var sortChipOptions: [ - { id: "installed", label: I18n.tr("Installed", "plugin browser filter chip"), toggle: true }, - { id: "default", label: I18n.tr("Default", "plugin browser sort option"), toggle: false }, - { id: "name", label: I18n.tr("Name", "plugin browser sort option"), toggle: false }, - { id: "author", label: I18n.tr("Contributor", "plugin browser sort option"), toggle: false }, - { id: "category", label: I18n.tr("Category", "plugin browser sort option"), toggle: false } + { + id: "installed", + label: I18n.tr("Installed", "plugin browser filter chip"), + toggle: true + }, + { + id: "default", + label: I18n.tr("Default", "plugin browser sort option"), + toggle: false + }, + { + id: "name", + label: I18n.tr("Name", "plugin browser sort option"), + toggle: false + }, + { + id: "author", + label: I18n.tr("Contributor", "plugin browser sort option"), + toggle: false + }, + { + id: "category", + label: I18n.tr("Category", "plugin browser sort option"), + toggle: false + } ] function normalizedSortMode(mode) { @@ -107,11 +127,13 @@ FloatingWindow { counts[cat] = (counts[cat] || 0) + 1; } var keys = Object.keys(counts).sort(); - var options = [{ - key: "all", - label: I18n.tr("All", "plugin browser category filter"), - count: plugins.length - }]; + var options = [ + { + key: "all", + label: I18n.tr("All", "plugin browser category filter"), + count: plugins.length + } + ]; for (var j = 0; j < keys.length; j++) { var key = keys[j]; options.push({ @@ -726,32 +748,9 @@ FloatingWindow { anchors.fill: parent visible: root.isLoading - Column { + DankSpinner { anchors.centerIn: parent - spacing: Theme.spacingM - - DankIcon { - name: "sync" - size: 48 - color: Theme.primary - anchors.horizontalCenter: parent.horizontalCenter - smoothTransform: root.isLoading - - RotationAnimator on rotation { - from: 0 - to: -360 - duration: 1000 - loops: Animation.Infinite - running: root.isLoading - } - } - - StyledText { - text: I18n.tr("Loading...", "loading indicator") - font.pixelSize: Theme.fontSizeMedium - color: Theme.surfaceVariantText - anchors.horizontalCenter: parent.horizontalCenter - } + running: root.isLoading } } diff --git a/quickshell/Modules/Settings/ThemeBrowser.qml b/quickshell/Modules/Settings/ThemeBrowser.qml index 60933beb..67bc9bd0 100644 --- a/quickshell/Modules/Settings/ThemeBrowser.qml +++ b/quickshell/Modules/Settings/ThemeBrowser.qml @@ -335,32 +335,9 @@ FloatingWindow { anchors.fill: parent visible: root.isLoading - Column { + DankSpinner { anchors.centerIn: parent - spacing: Theme.spacingM - - DankIcon { - name: "sync" - size: 48 - color: Theme.primary - anchors.horizontalCenter: parent.horizontalCenter - smoothTransform: root.isLoading - - RotationAnimator on rotation { - from: 0 - to: 360 - duration: 1000 - loops: Animation.Infinite - running: root.isLoading - } - } - - StyledText { - text: I18n.tr("Loading...", "loading indicator") - font.pixelSize: Theme.fontSizeMedium - color: Theme.surfaceVariantText - anchors.horizontalCenter: parent.horizontalCenter - } + running: root.isLoading } } diff --git a/quickshell/Modules/Settings/UsersTab.qml b/quickshell/Modules/Settings/UsersTab.qml index 22a9b7a3..af1d38c9 100644 --- a/quickshell/Modules/Settings/UsersTab.qml +++ b/quickshell/Modules/Settings/UsersTab.qml @@ -139,7 +139,7 @@ Item { } StyledText { - text: UsersService.refreshing ? I18n.tr("Refreshing…") : "" + text: UsersService.refreshing ? I18n.tr("Refreshing...") : "" font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText anchors.verticalCenter: parent.verticalCenter @@ -474,7 +474,7 @@ Item { spacing: Theme.spacingM DankButton { - text: root.operationPending ? I18n.tr("Working…") : I18n.tr("Create User") + text: root.operationPending ? I18n.tr("Working...") : I18n.tr("Create User") iconName: "person_add" backgroundColor: Theme.primary textColor: Theme.primaryText diff --git a/quickshell/Services/SettingsSearchService.qml b/quickshell/Services/SettingsSearchService.qml index e031ada4..8de2c023 100644 --- a/quickshell/Services/SettingsSearchService.qml +++ b/quickshell/Services/SettingsSearchService.qml @@ -36,6 +36,9 @@ Singleton { "isNiri": () => CompositorService.isNiri, "isHyprland": () => CompositorService.isHyprland, "isMango": () => CompositorService.isMango, + "isHyprlandOrNiri": () => CompositorService.isHyprland || CompositorService.isNiri, + "windowRulesCapable": () => CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isMango, + "layoutCapable": () => CompositorService.isNiri || CompositorService.isHyprland || CompositorService.isMango, "keybindsAvailable": () => KeybindsService.available, "soundsAvailable": () => AudioService.soundsAvailable, "cupsAvailable": () => CupsService.cupsAvailable, diff --git a/quickshell/Widgets/DankSpinner.qml b/quickshell/Widgets/DankSpinner.qml new file mode 100644 index 00000000..94690702 --- /dev/null +++ b/quickshell/Widgets/DankSpinner.qml @@ -0,0 +1,108 @@ +import QtQuick +import QtQuick.Shapes +import qs.Common + +Item { + id: root + + property real size: 48 + property real strokeWidth: Math.max(2, size / 12) + property color color: Theme.primary + property bool running: visible + + implicitWidth: size + implicitHeight: size + + onRunningChanged: { + if (running) + return; + arc.rotation = 0; + arc.startAngle = 0; + arc.sweepAngle = 16; + } + + Item { + id: rotator + + anchors.fill: parent + + RotationAnimator on rotation { + from: 0 + to: 360 + duration: 1568 + loops: Animation.Infinite + running: root.running + } + + Shape { + id: arc + + property real startAngle: 0 + property real sweepAngle: 16 + + anchors.fill: parent + antialiasing: true + preferredRendererType: Shape.CurveRenderer + + ShapePath { + strokeColor: root.color + strokeWidth: root.strokeWidth + fillColor: "transparent" + capStyle: ShapePath.RoundCap + + PathAngleArc { + centerX: arc.width / 2 + centerY: arc.height / 2 + radiusX: Math.max(1, (Math.min(arc.width, arc.height) - root.strokeWidth) / 2) + radiusY: radiusX + startAngle: arc.startAngle + sweepAngle: arc.sweepAngle + } + } + } + + SequentialAnimation { + running: root.running + loops: Animation.Infinite + + NumberAnimation { + target: arc + property: "sweepAngle" + from: 16 + to: 270 + duration: 666 + easing.type: Easing.BezierSpline + easing.bezierCurve: Anims.standard + } + + ParallelAnimation { + NumberAnimation { + target: arc + property: "startAngle" + from: 0 + to: 254 + duration: 666 + easing.type: Easing.BezierSpline + easing.bezierCurve: Anims.standard + } + + NumberAnimation { + target: arc + property: "sweepAngle" + from: 270 + to: 16 + duration: 666 + easing.type: Easing.BezierSpline + easing.bezierCurve: Anims.standard + } + } + + ScriptAction { + script: { + arc.rotation = (arc.rotation + 254) % 360; + arc.startAngle = 0; + } + } + } + } +} diff --git a/quickshell/Widgets/VpnProfileDelegate.qml b/quickshell/Widgets/VpnProfileDelegate.qml index 9a74d97c..9b6bb170 100644 --- a/quickshell/Widgets/VpnProfileDelegate.qml +++ b/quickshell/Widgets/VpnProfileDelegate.qml @@ -211,21 +211,9 @@ Rectangle { height: VPNService.configLoading ? 40 : 0 visible: VPNService.configLoading - Row { + DankSpinner { anchors.centerIn: parent - spacing: Theme.spacingS - - DankIcon { - name: "sync" - size: 16 - color: Theme.surfaceVariantText - } - - StyledText { - text: I18n.tr("Loading...") - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - } + size: 20 } } diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index 582811b6..1a67c71c 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -2,7 +2,7 @@ { "term": "%1 (+%2 more)", "context": "%1 (+%2 more)", - "reference": "Modules/Settings/WindowRulesTab.qml:79, Modules/Settings/WindowRulesTab.qml:955", + "reference": "Modules/Settings/WindowRulesTab.qml:89, Modules/Settings/WindowRulesTab.qml:947", "comment": "" }, { @@ -86,13 +86,13 @@ { "term": "%1 display", "context": "%1 display", - "reference": "Modules/Settings/DankBarTab.qml:317", + "reference": "Modules/Settings/DankBarTab.qml:363", "comment": "" }, { "term": "%1 displays", "context": "%1 displays", - "reference": "Modules/Settings/DankBarTab.qml:317", + "reference": "Modules/Settings/DankBarTab.qml:363", "comment": "" }, { @@ -104,7 +104,7 @@ { "term": "%1 exists but is not included. Window rules won't apply.", "context": "%1 exists but is not included. Window rules won't apply.", - "reference": "Modules/Settings/WindowRulesTab.qml:520", + "reference": "Modules/Settings/WindowRulesTab.qml:512", "comment": "" }, { @@ -128,7 +128,7 @@ { "term": "%1 is now included in config", "context": "%1 is now included in config", - "reference": "Services/KeybindsService.qml:256", + "reference": "Services/KeybindsService.qml:260", "comment": "" }, { @@ -161,6 +161,12 @@ "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:24", "comment": "Number of online Tailscale peers" }, + { + "term": "%1 tasks", + "context": "%1 tasks", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:186", + "comment": "task count next to a date, %1 is the number of tasks" + }, { "term": "%1 update", "context": "%1 update", @@ -176,7 +182,7 @@ { "term": "%1 variants", "context": "%1 variants", - "reference": "Modules/Settings/ThemeBrowser.qml:518, Modules/Settings/ThemeBrowser.qml:519", + "reference": "Modules/Settings/ThemeBrowser.qml:495, Modules/Settings/ThemeBrowser.qml:496", "comment": "" }, { @@ -194,7 +200,7 @@ { "term": "%1 widgets", "context": "%1 widgets", - "reference": "Modules/Settings/DankBarTab.qml:338", + "reference": "Modules/Settings/DankBarTab.qml:384", "comment": "" }, { @@ -269,12 +275,6 @@ "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:37", "comment": "KDE Connect status single device" }, - { - "term": "1 event", - "context": "1 event", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:179", - "comment": "" - }, { "term": "1 hour", "context": "1 hour", @@ -305,6 +305,12 @@ "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:37, Modules/Notifications/Center/NotificationSettings.qml:42", "comment": "" }, + { + "term": "1 task", + "context": "1 task", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:186", + "comment": "task count next to a date" + }, { "term": "10 minutes", "context": "10 minutes", @@ -356,7 +362,7 @@ { "term": "180°", "context": "180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2581, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2602", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2593, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2614", "comment": "" }, { @@ -416,7 +422,7 @@ { "term": "270°", "context": "270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2583, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2604", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2595, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2616", "comment": "" }, { @@ -476,7 +482,7 @@ { "term": "3rd party", "context": "3rd party", - "reference": "Modules/Settings/PluginBrowser.qml:893", + "reference": "Modules/Settings/PluginBrowser.qml:892", "comment": "" }, { @@ -572,7 +578,7 @@ { "term": "90°", "context": "90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2579, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2600", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2591, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2612", "comment": "" }, { @@ -632,7 +638,7 @@ { "term": "About", "context": "About", - "reference": "Modals/Settings/SettingsSidebar.qml:356, Modules/Settings/AboutTab.qml:576", + "reference": "Modals/Settings/SettingsSidebar.qml:370, Modules/Settings/AboutTab.qml:576", "comment": "" }, { @@ -662,19 +668,19 @@ { "term": "Access clipboard history", "context": "Access clipboard history", - "reference": "Modules/Settings/WidgetsTab.qml:102", + "reference": "Modules/Settings/WidgetsTab.qml:104", "comment": "" }, { "term": "Access to notifications and do not disturb", "context": "Access to notifications and do not disturb", - "reference": "Modules/Settings/WidgetsTab.qml:170", + "reference": "Modules/Settings/WidgetsTab.qml:172", "comment": "" }, { "term": "Access to system controls and settings", "context": "Access to system controls and settings", - "reference": "Modules/Settings/WidgetsTab.qml:163", + "reference": "Modules/Settings/WidgetsTab.qml:165", "comment": "" }, { @@ -692,19 +698,19 @@ { "term": "Action performed when scrolling horizontally on the bar", "context": "Action performed when scrolling horizontally on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1728", + "reference": "Modules/Settings/DankBarTab.qml:1792", "comment": "" }, { "term": "Action performed when scrolling vertically on the bar", "context": "Action performed when scrolling vertically on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1691", + "reference": "Modules/Settings/DankBarTab.qml:1755", "comment": "" }, { "term": "Actions", "context": "Actions", - "reference": "Widgets/DankIconPicker.qml:51, Modules/Settings/WindowRulesTab.qml:1060", + "reference": "Widgets/DankIconPicker.qml:51, Modules/Settings/WindowRulesTab.qml:1052", "comment": "" }, { @@ -734,7 +740,7 @@ { "term": "Active", "context": "Active", - "reference": "Modals/WindowRuleModal.qml:814, Modules/DankDash/MediaDropdownOverlay.qml:368, Modules/Settings/ThemeColorsTab.qml:1447, Modules/Settings/NetworkTab.qml:750, Modules/Settings/WindowRulesTab.qml:38, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:196", + "reference": "Modals/WindowRuleModal.qml:877, Modules/DankDash/MediaDropdownOverlay.qml:368, Modules/Settings/ThemeColorsTab.qml:1447, Modules/Settings/NetworkTab.qml:718, Modules/Settings/WindowRulesTab.qml:48, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:196", "comment": "" }, { @@ -758,7 +764,7 @@ { "term": "Active in Column", "context": "Active in Column", - "reference": "Modals/WindowRuleModal.qml:824, Modules/Settings/WindowRulesTab.qml:40", + "reference": "Modals/WindowRuleModal.qml:887, Modules/Settings/WindowRulesTab.qml:50", "comment": "" }, { @@ -818,7 +824,7 @@ { "term": "Add Bar", "context": "Add Bar", - "reference": "Modules/Settings/DankBarTab.qml:231", + "reference": "Modules/Settings/DankBarTab.qml:277", "comment": "" }, { @@ -842,7 +848,7 @@ { "term": "Add Title", "context": "Add Title", - "reference": "Modals/WindowRuleModal.qml:684", + "reference": "Modals/WindowRuleModal.qml:744", "comment": "" }, { @@ -860,7 +866,7 @@ { "term": "Add Window Rule", "context": "Add Window Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:432", + "reference": "Modules/Settings/WindowRulesTab.qml:424", "comment": "" }, { @@ -875,6 +881,12 @@ "reference": "Modules/Settings/LauncherTab.qml:559", "comment": "" }, + { + "term": "Add a task...", + "context": "Add a task...", + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:954", + "comment": "placeholder in the new-task input field" + }, { "term": "Add and configure widgets that appear on your desktop", "context": "Add and configure widgets that appear on your desktop", @@ -890,7 +902,7 @@ { "term": "Add match", "context": "Add match", - "reference": "Modals/WindowRuleModal.qml:775", + "reference": "Modals/WindowRuleModal.qml:835", "comment": "" }, { @@ -914,7 +926,7 @@ { "term": "Adjust the bar height via inner padding", "context": "Adjust the bar height via inner padding", - "reference": "Modules/Settings/DankBarTab.qml:813", + "reference": "Modules/Settings/DankBarTab.qml:859", "comment": "" }, { @@ -956,7 +968,7 @@ { "term": "All", "context": "All", - "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:2836, Modules/Settings/WidgetsTabSection.qml:2890, Modules/Settings/PluginBrowser.qml:112, Modules/Settings/KeybindsTab.qml:468, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:131, Modules/Notifications/Center/HistoryNotificationList.qml:87", + "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:2836, Modules/Settings/WidgetsTabSection.qml:2890, Modules/Settings/PluginBrowser.qml:133, Modules/Settings/KeybindsTab.qml:468, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:131, Modules/Notifications/Center/HistoryNotificationList.qml:87", "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter" }, { @@ -974,13 +986,13 @@ { "term": "All day", "context": "All day", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:497", - "comment": "" + "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:778", + "comment": "calendar task with no specific time" }, { "term": "All displays", "context": "All displays", - "reference": "Modules/Plugins/PluginSettings.qml:257, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:316, Modules/Settings/DankBarTab.qml:511, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", + "reference": "Modules/Plugins/PluginSettings.qml:257, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:362, Modules/Settings/DankBarTab.qml:557, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", "comment": "" }, { @@ -1013,6 +1025,12 @@ "reference": "Services/SessionsService.qml:112, Services/SessionsService.qml:133", "comment": "" }, + { + "term": "Also group repeated application icons on the active workspace", + "context": "Also group repeated application icons on the active workspace", + "reference": "Modules/Settings/WorkspacesTab.qml:134", + "comment": "" + }, { "term": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", "context": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", @@ -1052,7 +1070,7 @@ { "term": "Always show a minimum of 3 workspaces, even if fewer are available", "context": "Always show a minimum of 3 workspaces, even if fewer are available", - "reference": "Modules/Settings/WorkspacesTab.qml:51", + "reference": "Modules/Settings/WorkspacesTab.qml:53", "comment": "" }, { @@ -1088,7 +1106,7 @@ { "term": "Analog, digital, or stacked clock display", "context": "Analog, digital, or stacked clock display", - "reference": "Services/DesktopWidgetRegistry.qml:41", + "reference": "Services/DesktopWidgetRegistry.qml:40", "comment": "Desktop clock widget description" }, { @@ -1097,6 +1115,12 @@ "reference": "Modals/Greeter/GreeterDoctorPage.qml:159", "comment": "greeter doctor page loading text" }, + { + "term": "Anchor", + "context": "Anchor", + "reference": "Modals/WindowRuleModal.qml:1387", + "comment": "" + }, { "term": "Animation Duration", "context": "Animation Duration", @@ -1127,16 +1151,10 @@ "reference": "Modals/WifiPasswordModal.qml:590", "comment": "" }, - { - "term": "Any", - "context": "Any", - "reference": "Modals/WindowRuleModal.qml:499", - "comment": "" - }, { "term": "Any window", "context": "Any window", - "reference": "Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/WindowRulesTab.qml:1051", + "reference": "Modules/Settings/WindowRulesTab.qml:87, Modules/Settings/WindowRulesTab.qml:1043", "comment": "" }, { @@ -1148,7 +1166,13 @@ { "term": "App ID", "context": "App ID", - "reference": "Modules/Settings/WindowRulesTab.qml:35", + "reference": "Modules/Settings/WindowRulesTab.qml:45", + "comment": "" + }, + { + "term": "App ID (e.g. firefox)", + "context": "App ID (e.g. firefox)", + "reference": "Modals/WindowRuleModal.qml:711", "comment": "" }, { @@ -1160,19 +1184,19 @@ { "term": "App ID regex", "context": "App ID regex", - "reference": "Modals/WindowRuleModal.qml:718", + "reference": "Modals/WindowRuleModal.qml:778", "comment": "" }, { "term": "App ID regex (e.g. ^firefox$)", "context": "App ID regex (e.g. ^firefox$)", - "reference": "Modals/WindowRuleModal.qml:651", + "reference": "Modals/WindowRuleModal.qml:711", "comment": "" }, { "term": "App Launcher", "context": "App Launcher", - "reference": "Modules/Settings/WidgetsTab.qml:45", + "reference": "Modules/Settings/WidgetsTab.qml:47", "comment": "" }, { @@ -1190,7 +1214,7 @@ { "term": "Appearance", "context": "Appearance", - "reference": "Modules/Settings/LauncherTab.qml:606", + "reference": "Modals/Settings/SettingsSidebar.qml:128, Modules/Settings/LauncherTab.qml:606", "comment": "launcher appearance settings" }, { @@ -1208,7 +1232,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modals/DankLauncherV2/Controller.qml:207, Modals/Settings/SettingsSidebar.qml:232, Modules/Settings/ThemeColorsTab.qml:2296, Modules/Dock/DockLauncherButton.qml:25", + "reference": "Modals/DankLauncherV2/Controller.qml:207, Modals/Settings/SettingsSidebar.qml:246, Modules/Settings/ThemeColorsTab.qml:1987, Modules/Dock/DockLauncherButton.qml:25", "comment": "" }, { @@ -1232,13 +1256,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2989", + "reference": "Modules/Settings/ThemeColorsTab.qml:2691", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:3023", + "reference": "Modules/Settings/ThemeColorsTab.qml:2725", "comment": "" }, { @@ -1250,7 +1274,7 @@ { "term": "Apply inverse concave corner cutouts to the bar", "context": "Apply inverse concave corner cutouts to the bar", - "reference": "Modules/Settings/DankBarTab.qml:1095", + "reference": "Modules/Settings/DankBarTab.qml:1151", "comment": "" }, { @@ -1260,14 +1284,14 @@ "comment": "" }, { - "term": "Applying authentication changes…", - "context": "Applying authentication changes…", + "term": "Applying authentication changes...", + "context": "Applying authentication changes...", "reference": "Common/settings/Processes.qml:648", "comment": "" }, { - "term": "Applying auto-login on startup…", - "context": "Applying auto-login on startup…", + "term": "Applying auto-login on startup...", + "context": "Applying auto-login on startup...", "reference": "Common/settings/Processes.qml:573", "comment": "" }, @@ -1280,7 +1304,7 @@ { "term": "Apps Dock", "context": "Apps Dock", - "reference": "Modules/Settings/WidgetsTab.qml:73", + "reference": "Modules/Settings/WidgetsTab.qml:75", "comment": "" }, { @@ -1340,7 +1364,7 @@ { "term": "At Startup", "context": "At Startup", - "reference": "Modals/WindowRuleModal.qml:839, Modules/Settings/WindowRulesTab.qml:43", + "reference": "Modals/WindowRuleModal.qml:902, Modules/Settings/WindowRulesTab.qml:53", "comment": "" }, { @@ -1358,7 +1382,7 @@ { "term": "Audio", "context": "Audio", - "reference": "Modals/Settings/SettingsSidebar.qml:266, Modules/Settings/WidgetsTabSection.qml:1575, Modules/Settings/WidgetsTabSection.qml:1804", + "reference": "Modals/Settings/SettingsSidebar.qml:287, Modules/Settings/WidgetsTabSection.qml:1575, Modules/Settings/WidgetsTabSection.qml:1804", "comment": "" }, { @@ -1424,13 +1448,13 @@ { "term": "Auth", "context": "Auth", - "reference": "Widgets/VpnProfileDelegate.qml:60, Modules/Settings/NetworkTab.qml:1919", + "reference": "Widgets/VpnProfileDelegate.qml:60, Modules/Settings/NetworkTab.qml:1823", "comment": "" }, { "term": "Auth Type", "context": "Auth Type", - "reference": "Widgets/VpnProfileDelegate.qml:78, Modules/Settings/NetworkTab.qml:1934", + "reference": "Widgets/VpnProfileDelegate.qml:78, Modules/Settings/NetworkTab.qml:1838", "comment": "" }, { @@ -1514,13 +1538,13 @@ { "term": "Auto", "context": "Auto", - "reference": "Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:879, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:884, Modules/Settings/NetworkTab.qml:887, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106", + "reference": "Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:847, Modules/Settings/NetworkTab.qml:851, Modules/Settings/NetworkTab.qml:852, Modules/Settings/NetworkTab.qml:855, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106", "comment": "theme category option" }, { "term": "Auto (Bar-aware)", "context": "Auto (Bar-aware)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1763, Modules/Settings/ThemeColorsTab.qml:1776, Modules/Settings/DankBarTab.qml:1519, Modules/Settings/DankBarTab.qml:1523, Modules/Settings/DankBarTab.qml:1531", + "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1763, Modules/Settings/ThemeColorsTab.qml:1776, Modules/Settings/DankBarTab.qml:1582, Modules/Settings/DankBarTab.qml:1586, Modules/Settings/DankBarTab.qml:1594", "comment": "bar shadow direction source option | shadow direction option" }, { @@ -1538,7 +1562,7 @@ { "term": "Auto Popup Gaps", "context": "Auto Popup Gaps", - "reference": "Modules/Settings/DankBarTab.qml:865", + "reference": "Modules/Settings/DankBarTab.qml:911", "comment": "" }, { @@ -1556,7 +1580,7 @@ { "term": "Auto-Hide Timeout", "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:2474", + "reference": "Modules/Settings/ThemeColorsTab.qml:2176", "comment": "" }, { @@ -1574,7 +1598,7 @@ { "term": "Auto-hide", "context": "Auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:599", + "reference": "Modules/Settings/DankBarTab.qml:645", "comment": "" }, { @@ -1616,7 +1640,7 @@ { "term": "Autoconnect", "context": "Autoconnect", - "reference": "Widgets/VpnProfileDelegate.qml:276, Modules/Settings/NetworkTab.qml:1491, Modules/Settings/NetworkTab.qml:1977", + "reference": "Widgets/VpnProfileDelegate.qml:264, Modules/Settings/NetworkTab.qml:1427, Modules/Settings/NetworkTab.qml:1881", "comment": "" }, { @@ -1658,7 +1682,7 @@ { "term": "Automatically calculate popup gap based on bar spacing", "context": "Automatically calculate popup gap based on bar spacing", - "reference": "Modules/Settings/DankBarTab.qml:866", + "reference": "Modules/Settings/DankBarTab.qml:912", "comment": "" }, { @@ -1688,7 +1712,7 @@ { "term": "Automatically hide the bar when the pointer moves away", "context": "Automatically hide the bar when the pointer moves away", - "reference": "Modules/Settings/DankBarTab.qml:600", + "reference": "Modules/Settings/DankBarTab.qml:646", "comment": "" }, { @@ -1718,7 +1742,7 @@ { "term": "Autostart Apps", "context": "Autostart Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:251", + "reference": "Modals/Settings/SettingsSidebar.qml:265", "comment": "" }, { @@ -1736,13 +1760,13 @@ { "term": "Available Layouts", "context": "Available Layouts", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:207", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:209", "comment": "" }, { "term": "Available Networks", "context": "Available Networks", - "reference": "Modules/Settings/NetworkTab.qml:1005", + "reference": "Modules/Settings/NetworkTab.qml:973", "comment": "" }, { @@ -1772,7 +1796,7 @@ { "term": "BSSID", "context": "BSSID", - "reference": "Modules/Settings/NetworkTab.qml:1439", + "reference": "Modules/Settings/NetworkTab.qml:1375", "comment": "" }, { @@ -1814,7 +1838,7 @@ { "term": "Background Effect", "context": "Background Effect", - "reference": "Modals/WindowRuleModal.qml:1161", + "reference": "Modals/WindowRuleModal.qml:1228", "comment": "" }, { @@ -1859,10 +1883,22 @@ "reference": "Common/Theme.qml:478", "comment": "" }, + { + "term": "Bar", + "context": "Bar", + "reference": "Modules/Settings/DankBarTab.qml:44", + "comment": "fallback name for an unnamed bar" + }, + { + "term": "Bar %1", + "context": "Bar %1", + "reference": "Modules/Settings/DankBarTab.qml:45, Modules/Settings/DankBarTab.qml:245", + "comment": "numbered name for an unnamed bar, %1 is its position" + }, { "term": "Bar Configurations", "context": "Bar Configurations", - "reference": "Modules/Settings/DankBarTab.qml:215", + "reference": "Modules/Settings/DankBarTab.qml:260", "comment": "" }, { @@ -1874,25 +1910,25 @@ { "term": "Bar Transparency", "context": "Bar Transparency", - "reference": "Modules/Settings/DankBarTab.qml:922, Modules/Settings/DankBarTab.qml:969", + "reference": "Modules/Settings/DankBarTab.qml:969, Modules/Settings/DankBarTab.qml:1016", "comment": "" }, { "term": "Bar corners and background", "context": "Bar corners and background", - "reference": "Modules/Settings/DankBarTab.qml:1035", + "reference": "Modules/Settings/DankBarTab.qml:1091", "comment": "" }, { "term": "Bar shadow, border, and corners", "context": "Bar shadow, border, and corners", - "reference": "Modules/Settings/DankBarTab.qml:1442", + "reference": "Modules/Settings/DankBarTab.qml:1503", "comment": "" }, { "term": "Bar spacing and size", "context": "Bar spacing and size", - "reference": "Modules/Settings/DankBarTab.qml:756", + "reference": "Modules/Settings/DankBarTab.qml:802", "comment": "" }, { @@ -1910,7 +1946,7 @@ { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:1620, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "reference": "Modules/Settings/WidgetsTabSection.qml:1620, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:178, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "" }, { @@ -1934,7 +1970,7 @@ { "term": "Battery level and power management", "context": "Battery level and power management", - "reference": "Modules/Settings/WidgetsTab.qml:177", + "reference": "Modules/Settings/WidgetsTab.qml:179", "comment": "" }, { @@ -1970,13 +2006,13 @@ { "term": "Binds include added", "context": "Binds include added", - "reference": "Services/KeybindsService.qml:256", + "reference": "Services/KeybindsService.qml:260", "comment": "" }, { "term": "Bit Depth", "context": "Bit Depth", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1931", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2045", "comment": "" }, { @@ -1988,13 +2024,13 @@ { "term": "Block Out", "context": "Block Out", - "reference": "Modules/Settings/WindowRulesTab.qml:95", + "reference": "Modules/Settings/WindowRulesTab.qml:105", "comment": "" }, { "term": "Block Out From", "context": "Block Out From", - "reference": "Modals/WindowRuleModal.qml:1075", + "reference": "Modals/WindowRuleModal.qml:1141", "comment": "" }, { @@ -2018,7 +2054,7 @@ { "term": "Bluetooth", "context": "Bluetooth", - "reference": "Modules/Settings/WidgetsTabSection.qml:1565, Modules/Settings/WidgetsTabSection.qml:1804, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:422", + "reference": "Modules/Settings/WidgetsTabSection.qml:1565, Modules/Settings/WidgetsTabSection.qml:1804, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:475", "comment": "bluetooth status" }, { @@ -2036,7 +2072,7 @@ { "term": "Blur", "context": "Blur", - "reference": "Modals/WindowRuleModal.qml:1181, Modules/Settings/WindowRulesTab.qml:120", + "reference": "Modals/WindowRuleModal.qml:1248, Modules/Settings/WindowRulesTab.qml:130", "comment": "" }, { @@ -2090,19 +2126,19 @@ { "term": "Border", "context": "Border", - "reference": "Modules/Settings/DockTab.qml:671, Modules/Settings/DockTab.qml:678, Modules/Settings/LauncherTab.qml:677, Modules/Settings/DankBarTab.qml:1255, Modules/Settings/FrameTab.qml:76", + "reference": "Modules/Settings/DockTab.qml:671, Modules/Settings/DockTab.qml:678, Modules/Settings/LauncherTab.qml:677, Modules/Settings/DankBarTab.qml:1314, Modules/Settings/FrameTab.qml:76", "comment": "launcher border option" }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/FrameTab.qml:206, Modules/Settings/WindowRulesTab.qml:124", + "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspaceAppearanceCard.qml:186, Modules/Settings/FrameTab.qml:206, Modules/Settings/WindowRulesTab.qml:137", "comment": "" }, { "term": "Border Off", "context": "Border Off", - "reference": "Modules/Settings/WindowRulesTab.qml:127", + "reference": "Modules/Settings/WindowRulesTab.qml:140", "comment": "" }, { @@ -2120,7 +2156,7 @@ { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2049, Modules/Settings/ThemeColorsTab.qml:2152, Modules/Settings/ThemeColorsTab.qml:2255", + "reference": "Modules/Settings/CompositorLayoutTab.qml:108, Modules/Settings/CompositorLayoutTab.qml:205, Modules/Settings/CompositorLayoutTab.qml:311", "comment": "" }, { @@ -2144,19 +2180,19 @@ { "term": "Border w/ Bg", "context": "Border w/ Bg", - "reference": "Modules/Settings/WindowRulesTab.qml:119", + "reference": "Modules/Settings/WindowRulesTab.qml:129", "comment": "" }, { "term": "Border with Background", "context": "Border with Background", - "reference": "Modals/WindowRuleModal.qml:1061", + "reference": "Modals/WindowRuleModal.qml:1127", "comment": "" }, { "term": "Bottom", "context": "Bottom", - "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1769, Modules/Settings/ThemeColorsTab.qml:1782, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:289, Modules/Settings/DankBarTab.qml:438, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1560, Modules/Settings/DankBarTab.qml:1574, Modules/Settings/FrameTab.qml:316", + "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1769, Modules/Settings/ThemeColorsTab.qml:1782, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:335, Modules/Settings/DankBarTab.qml:484, Modules/Settings/DankBarTab.qml:1616, Modules/Settings/DankBarTab.qml:1624, Modules/Settings/DankBarTab.qml:1638, Modules/Settings/FrameTab.qml:316", "comment": "shadow direction option" }, { @@ -2180,7 +2216,7 @@ { "term": "Bottom Section", "context": "Bottom Section", - "reference": "Modules/Settings/WidgetsTab.qml:1170", + "reference": "Modules/Settings/WidgetsTab.qml:1196", "comment": "" }, { @@ -2228,7 +2264,7 @@ { "term": "Browse Plugins", "context": "Browse Plugins", - "reference": "Modules/Settings/PluginBrowser.qml:357, Modules/Settings/PluginBrowser.qml:467, Modules/Settings/DesktopWidgetsTab.qml:101", + "reference": "Modules/Settings/PluginBrowser.qml:379, Modules/Settings/PluginBrowser.qml:489, Modules/Settings/DesktopWidgetsTab.qml:101", "comment": "plugin browser header | plugin browser window title" }, { @@ -2264,31 +2300,31 @@ { "term": "CPU Temperature", "context": "CPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:132, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", + "reference": "Modules/Settings/WidgetsTab.qml:134, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", "comment": "" }, { "term": "CPU Usage", "context": "CPU Usage", - "reference": "Modules/Settings/WidgetsTab.qml:108", + "reference": "Modules/Settings/WidgetsTab.qml:110", "comment": "" }, { "term": "CPU temperature display", "context": "CPU temperature display", - "reference": "Modules/Settings/WidgetsTab.qml:133", + "reference": "Modules/Settings/WidgetsTab.qml:135", "comment": "" }, { "term": "CPU usage indicator", "context": "CPU usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:109", + "reference": "Modules/Settings/WidgetsTab.qml:111", "comment": "" }, { "term": "CPU, memory, network, and disk monitoring", "context": "CPU, memory, network, and disk monitoring", - "reference": "Services/DesktopWidgetRegistry.qml:56", + "reference": "Services/DesktopWidgetRegistry.qml:55", "comment": "System monitor widget description" }, { @@ -2330,7 +2366,7 @@ { "term": "Cancel", "context": "Cancel", - "reference": "DMSShell.qml:513, Modals/WindowRuleModal.qml:1562, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:273, Modals/WifiPasswordModal.qml:691, Widgets/KeybindItem.qml:1852, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:316, Modules/Settings/PluginBrowser.qml:332, Modules/Settings/PluginBrowser.qml:1237, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankBar/Popouts/SystemUpdatePopout.qml:211", + "reference": "DMSShell.qml:529, Modals/WindowRuleModal.qml:1851, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:273, Modals/WifiPasswordModal.qml:691, Widgets/KeybindItem.qml:1852, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:316, Modules/Settings/PluginBrowser.qml:354, Modules/Settings/PluginBrowser.qml:1236, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankBar/Popouts/SystemUpdatePopout.qml:211", "comment": "" }, { @@ -2402,31 +2438,31 @@ { "term": "Caps Lock Indicator", "context": "Caps Lock Indicator", - "reference": "Modules/Settings/WidgetsTab.qml:197", + "reference": "Modules/Settings/WidgetsTab.qml:199", "comment": "" }, { "term": "Caps Lock is on", "context": "Caps Lock is on", - "reference": "Modules/Lock/LockScreenContent.qml:1134", + "reference": "Modules/Lock/LockScreenContent.qml:1200", "comment": "" }, { "term": "Cast Target", "context": "Cast Target", - "reference": "Modals/WindowRuleModal.qml:829, Modules/Settings/WindowRulesTab.qml:41", + "reference": "Modals/WindowRuleModal.qml:892, Modules/Settings/WindowRulesTab.qml:51", "comment": "" }, { "term": "Category", "context": "Category", - "reference": "Modules/Settings/PluginBrowser.qml:40", + "reference": "Modules/Settings/PluginBrowser.qml:58", "comment": "plugin browser sort option" }, { "term": "Center Section", "context": "Center Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:28, Modules/Settings/WidgetsTab.qml:1094", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:28, Modules/Settings/WidgetsTab.qml:1120", "comment": "" }, { @@ -2438,7 +2474,7 @@ { "term": "Center Tiling", "context": "Center Tiling", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:47", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:49", "comment": "" }, { @@ -2480,7 +2516,7 @@ { "term": "Channel", "context": "Channel", - "reference": "Modules/Settings/NetworkTab.qml:1424", + "reference": "Modules/Settings/NetworkTab.qml:1360", "comment": "" }, { @@ -2492,7 +2528,7 @@ { "term": "Check for system updates", "context": "Check for system updates", - "reference": "Modules/Settings/WidgetsTab.qml:247", + "reference": "Modules/Settings/WidgetsTab.qml:249", "comment": "" }, { @@ -2526,21 +2562,15 @@ "comment": "" }, { - "term": "Checking whether sudo authentication is needed…", - "context": "Checking whether sudo authentication is needed…", + "term": "Checking whether sudo authentication is needed...", + "context": "Checking whether sudo authentication is needed...", "reference": "Modules/Settings/GreeterTab.qml:191", "comment": "" }, { "term": "Checking...", "context": "Checking...", - "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:131", - "comment": "" - }, - { - "term": "Checking…", - "context": "Checking…", - "reference": "Modules/Settings/GreeterTab.qml:471", + "reference": "Modules/Settings/GreeterTab.qml:471, Modules/DankBar/Popouts/SystemUpdatePopout.qml:131", "comment": "greeter status loading" }, { @@ -2606,7 +2636,7 @@ { "term": "Choose how this bar resolves shadow direction", "context": "Choose how this bar resolves shadow direction", - "reference": "Modules/Settings/DankBarTab.qml:1517", + "reference": "Modules/Settings/DankBarTab.qml:1580", "comment": "" }, { @@ -2618,7 +2648,7 @@ { "term": "Choose monochrome or a theme color tint for system tray icons", "context": "Choose monochrome or a theme color tint for system tray icons", - "reference": "Modules/Settings/DankBarTab.qml:1161", + "reference": "Modules/Settings/DankBarTab.qml:1218", "comment": "" }, { @@ -2678,7 +2708,7 @@ { "term": "Cipher", "context": "Cipher", - "reference": "Widgets/VpnProfileDelegate.qml:54, Modules/Settings/NetworkTab.qml:1914", + "reference": "Widgets/VpnProfileDelegate.qml:54, Modules/Settings/NetworkTab.qml:1818", "comment": "" }, { @@ -2690,13 +2720,13 @@ { "term": "Class regex", "context": "Class regex", - "reference": "Modals/WindowRuleModal.qml:718", + "reference": "Modals/WindowRuleModal.qml:778", "comment": "" }, { "term": "Class regex (e.g. ^firefox$)", "context": "Class regex (e.g. ^firefox$)", - "reference": "Modals/WindowRuleModal.qml:651", + "reference": "Modals/WindowRuleModal.qml:711", "comment": "" }, { @@ -2750,13 +2780,13 @@ { "term": "Click 'Setup' to create %1 and add include to your compositor config.", "context": "Click 'Setup' to create %1 and add include to your compositor config.", - "reference": "Modules/Settings/WindowRulesTab.qml:520", + "reference": "Modules/Settings/WindowRulesTab.qml:512", "comment": "" }, { "term": "Click 'Setup' to create cursor config and add include to your compositor config.", "context": "Click 'Setup' to create cursor config and add include to your compositor config.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2373", + "reference": "Modules/Settings/ThemeColorsTab.qml:2064", "comment": "" }, { @@ -2768,7 +2798,7 @@ { "term": "Click Import to add a .ovpn or .conf", "context": "Click Import to add a .ovpn or .conf", - "reference": "Widgets/VpnDetailContent.qml:186, Modules/Settings/NetworkTab.qml:1674", + "reference": "Widgets/VpnDetailContent.qml:186, Modules/Settings/NetworkTab.qml:1610", "comment": "" }, { @@ -2780,7 +2810,7 @@ { "term": "Click Through", "context": "Click Through", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:701", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:747", "comment": "" }, { @@ -2804,19 +2834,19 @@ { "term": "Clip", "context": "Clip", - "reference": "Modules/Settings/WindowRulesTab.qml:99", + "reference": "Modules/Settings/WindowRulesTab.qml:109", "comment": "" }, { "term": "Clip to Geometry", "context": "Clip to Geometry", - "reference": "Modals/WindowRuleModal.qml:1053", + "reference": "Modals/WindowRuleModal.qml:1119", "comment": "" }, { "term": "Clipboard", "context": "Clipboard", - "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:68, Modals/DankLauncherV2/Controller.qml:221, Modals/DankLauncherV2/Controller.qml:1224, Modals/Settings/SettingsSidebar.qml:278", + "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:68, Modals/DankLauncherV2/Controller.qml:221, Modals/DankLauncherV2/Controller.qml:1224, Modals/Settings/SettingsSidebar.qml:299", "comment": "" }, { @@ -2828,7 +2858,7 @@ { "term": "Clipboard Manager", "context": "Clipboard Manager", - "reference": "Modules/Settings/WidgetsTab.qml:101", + "reference": "Modules/Settings/WidgetsTab.qml:103", "comment": "" }, { @@ -2852,7 +2882,7 @@ { "term": "Clock", "context": "Clock", - "reference": "Modules/Settings/WidgetsTab.qml:80", + "reference": "Modules/Settings/WidgetsTab.qml:82", "comment": "" }, { @@ -2888,7 +2918,7 @@ { "term": "Color", "context": "Color", - "reference": "Modules/Settings/LauncherTab.qml:704, Modules/Settings/DankBarTab.qml:1263, Modules/Settings/DankBarTab.qml:1356, Modules/Settings/DankBarTab.qml:1592, Modules/Settings/DankBarTab.qml:1666, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "reference": "Modules/Settings/LauncherTab.qml:704, Modules/Settings/DankBarTab.qml:1322, Modules/Settings/DankBarTab.qml:1417, Modules/Settings/DankBarTab.qml:1656, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/Widgets/SettingsColorPicker.qml:29", "comment": "border color" }, { @@ -2906,7 +2936,7 @@ { "term": "Color Management", "context": "Color Management", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1933", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2047", "comment": "" }, { @@ -2924,7 +2954,7 @@ { "term": "Color Picker", "context": "Color Picker", - "reference": "Services/AppSearchService.qml:204, Modules/Settings/WidgetsTab.qml:239, Modules/ControlCenter/Models/WidgetModel.qml:239, Modules/ControlCenter/Widgets/ColorPickerPill.qml:15", + "reference": "Services/AppSearchService.qml:204, Modules/Settings/WidgetsTab.qml:241, Modules/ControlCenter/Models/WidgetModel.qml:239, Modules/ControlCenter/Widgets/ColorPickerPill.qml:15", "comment": "" }, { @@ -3002,19 +3032,19 @@ { "term": "Column", "context": "Column", - "reference": "Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730", + "reference": "Modules/Settings/DankBarTab.qml:1756, Modules/Settings/DankBarTab.qml:1794", "comment": "" }, { "term": "Column Display", "context": "Column Display", - "reference": "Modals/WindowRuleModal.qml:1097", + "reference": "Modals/WindowRuleModal.qml:1163", "comment": "" }, { "term": "Column Width", "context": "Column Width", - "reference": "Modals/WindowRuleModal.qml:966", + "reference": "Modals/WindowRuleModal.qml:1030", "comment": "" }, { @@ -3086,7 +3116,7 @@ { "term": "Config Format", "context": "Config Format", - "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1895", + "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2009", "comment": "" }, { @@ -3098,13 +3128,13 @@ { "term": "Config validation failed", "context": "Config validation failed", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1978, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1986", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2092, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2100", "comment": "" }, { "term": "Configuration", "context": "Configuration", - "reference": "Modals/Settings/SettingsSidebar.qml:205", + "reference": "Modals/Settings/SettingsSidebar.qml:219", "comment": "" }, { @@ -3140,13 +3170,13 @@ { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "context": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", - "reference": "Modules/Settings/WorkspacesTab.qml:423", + "reference": "Modules/Settings/WorkspacesTab.qml:210", "comment": "" }, { "term": "Configure match criteria and actions", "context": "Configure match criteria and actions", - "reference": "Modals/WindowRuleModal.qml:591", + "reference": "Modals/WindowRuleModal.qml:651", "comment": "" }, { @@ -3158,7 +3188,7 @@ { "term": "Configure which displays show \"%1\"", "context": "Configure which displays show \"%1\"", - "reference": "Modules/Settings/DankBarTab.qml:493", + "reference": "Modules/Settings/DankBarTab.qml:539", "comment": "" }, { @@ -3182,7 +3212,7 @@ { "term": "Confirm Display Changes", "context": "Confirm Display Changes", - "reference": "Modals/DisplayConfirmationModal.qml:80", + "reference": "Modals/DisplayConfirmationModal.qml:81", "comment": "" }, { @@ -3230,13 +3260,13 @@ { "term": "Connected", "context": "Connected", - "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkTab.qml:446, Modules/Settings/NetworkTab.qml:1195, Modules/Settings/NetworkTab.qml:1554, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:56, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:448, Modules/ControlCenter/Components/DragDropGrid.qml:451, Modules/ControlCenter/Components/DragDropGrid.qml:453, Modules/ControlCenter/Components/DragDropGrid.qml:456", + "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkTab.qml:446, Modules/Settings/NetworkTab.qml:1163, Modules/Settings/NetworkTab.qml:1490, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:56, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:501, Modules/ControlCenter/Components/DragDropGrid.qml:504, Modules/ControlCenter/Components/DragDropGrid.qml:506, Modules/ControlCenter/Components/DragDropGrid.qml:509", "comment": "network status" }, { "term": "Connected Device", "context": "Connected Device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:480", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:533", "comment": "bluetooth status" }, { @@ -3270,15 +3300,15 @@ "comment": "" }, { - "term": "Connecting to clipboard service…", - "context": "Connecting to clipboard service…", + "term": "Connecting to clipboard service...", + "context": "Connecting to clipboard service...", "reference": "Modals/Clipboard/ClipboardContent.qml:131, Modals/Clipboard/ClipboardContent.qml:205", "comment": "" }, { "term": "Connecting...", "context": "Connecting...", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:402, Modules/ControlCenter/Components/DragDropGrid.qml:444, Modules/ControlCenter/Components/DragDropGrid.qml:468", + "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:455, Modules/ControlCenter/Components/DragDropGrid.qml:497, Modules/ControlCenter/Components/DragDropGrid.qml:521", "comment": "bluetooth status | network status" }, { @@ -3314,13 +3344,13 @@ { "term": "Contributor", "context": "Contributor", - "reference": "Modules/Settings/PluginBrowser.qml:39", + "reference": "Modules/Settings/PluginBrowser.qml:53", "comment": "plugin browser sort option" }, { "term": "Control Center", "context": "Control Center", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:149, Modules/Settings/WidgetsTab.qml:162", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:149, Modules/Settings/WidgetsTab.qml:164", "comment": "greeter feature card title" }, { @@ -3338,7 +3368,7 @@ { "term": "Control currently playing media", "context": "Control currently playing media", - "reference": "Modules/Settings/WidgetsTab.qml:95", + "reference": "Modules/Settings/WidgetsTab.qml:97", "comment": "" }, { @@ -3356,19 +3386,19 @@ { "term": "Control workspaces and columns by scrolling on the bar", "context": "Control workspaces and columns by scrolling on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1682", + "reference": "Modules/Settings/DankBarTab.qml:1746", "comment": "" }, { "term": "Controls how much original icon color is removed before applying tint", "context": "Controls how much original icon color is removed before applying tint", - "reference": "Modules/Settings/DankBarTab.qml:1209", + "reference": "Modules/Settings/DankBarTab.qml:1266", "comment": "" }, { "term": "Controls how strongly the selected tint color is applied", "context": "Controls how strongly the selected tint color is applied", - "reference": "Modules/Settings/DankBarTab.qml:1232", + "reference": "Modules/Settings/DankBarTab.qml:1289", "comment": "" }, { @@ -3416,7 +3446,7 @@ { "term": "Convert to DMS", "context": "Convert to DMS", - "reference": "Modules/Settings/WindowRulesTab.qml:1019", + "reference": "Modules/Settings/WindowRulesTab.qml:1011", "comment": "" }, { @@ -3506,19 +3536,19 @@ { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modals/WindowRuleModal.qml:1144, Modules/Settings/ThemeColorsTab.qml:1665", + "reference": "Modals/WindowRuleModal.qml:1211, Modules/Settings/ThemeColorsTab.qml:1665", "comment": "" }, { "term": "Corner Radius Override", "context": "Corner Radius Override", - "reference": "Modules/Settings/DankBarTab.qml:1104", + "reference": "Modules/Settings/DankBarTab.qml:1160", "comment": "" }, { "term": "Corners & Background", "context": "Corners & Background", - "reference": "Modules/Settings/DankBarTab.qml:1026", + "reference": "Modules/Settings/DankBarTab.qml:1082", "comment": "" }, { @@ -3542,7 +3572,7 @@ { "term": "Create", "context": "Create", - "reference": "Modals/WindowRuleModal.qml:1586, Modules/Settings/DisplayConfigTab.qml:277", + "reference": "Modals/WindowRuleModal.qml:1875, Modules/Settings/DisplayConfigTab.qml:277", "comment": "" }, { @@ -3566,7 +3596,7 @@ { "term": "Create Window Rule", "context": "Create Window Rule", - "reference": "Modals/WindowRuleModal.qml:28", + "reference": "Modals/WindowRuleModal.qml:29", "comment": "" }, { @@ -3578,7 +3608,7 @@ { "term": "Create rule for:", "context": "Create rule for:", - "reference": "Modules/Settings/WindowRulesTab.qml:444", + "reference": "Modules/Settings/WindowRulesTab.qml:436", "comment": "" }, { @@ -3686,13 +3716,13 @@ { "term": "Current time and date display", "context": "Current time and date display", - "reference": "Modules/Settings/WidgetsTab.qml:81", + "reference": "Modules/Settings/WidgetsTab.qml:83", "comment": "" }, { "term": "Current weather conditions and temperature", "context": "Current weather conditions and temperature", - "reference": "Modules/Settings/WidgetsTab.qml:88", + "reference": "Modules/Settings/WidgetsTab.qml:90", "comment": "" }, { @@ -3704,25 +3734,25 @@ { "term": "Cursor Config Not Configured", "context": "Cursor Config Not Configured", - "reference": "Modules/Settings/ThemeColorsTab.qml:2366", + "reference": "Modules/Settings/ThemeColorsTab.qml:2057", "comment": "" }, { "term": "Cursor Include Missing", "context": "Cursor Include Missing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2366", + "reference": "Modules/Settings/ThemeColorsTab.qml:2057", "comment": "" }, { "term": "Cursor Size", "context": "Cursor Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2414", + "reference": "Modules/Settings/ThemeColorsTab.qml:2105", "comment": "" }, { "term": "Cursor Theme", "context": "Cursor Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2324, Modules/Settings/ThemeColorsTab.qml:2398", + "reference": "Modules/Settings/ThemeColorsTab.qml:2015, Modules/Settings/ThemeColorsTab.qml:2089", "comment": "" }, { @@ -3740,7 +3770,7 @@ { "term": "Custom", "context": "Custom", - "reference": "Widgets/KeybindItem.qml:1430, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1731, Modules/Settings/ThemeColorsTab.qml:1742, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1921, Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", + "reference": "Widgets/KeybindItem.qml:1430, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1731, Modules/Settings/ThemeColorsTab.qml:1742, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1921, Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1674, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", "comment": "blur border color | shadow color option | theme category option" }, { @@ -3812,7 +3842,7 @@ { "term": "Custom Shadow Override", "context": "Custom Shadow Override", - "reference": "Modules/Settings/DankBarTab.qml:1469", + "reference": "Modules/Settings/DankBarTab.qml:1531", "comment": "" }, { @@ -3872,7 +3902,7 @@ { "term": "Customizable empty space", "context": "Customizable empty space", - "reference": "Modules/Settings/WidgetsTab.qml:205", + "reference": "Modules/Settings/WidgetsTab.qml:207", "comment": "" }, { @@ -3890,7 +3920,7 @@ { "term": "DEMO MODE - Click anywhere to exit", "context": "DEMO MODE - Click anywhere to exit", - "reference": "Modules/Lock/LockScreenContent.qml:1152", + "reference": "Modules/Lock/LockScreenContent.qml:1218", "comment": "" }, { @@ -3914,7 +3944,7 @@ { "term": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.", "context": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.", - "reference": "Services/KeybindsService.qml:535", + "reference": "Services/KeybindsService.qml:544", "comment": "" }, { @@ -3938,13 +3968,13 @@ { "term": "DMS out of date", "context": "DMS out of date", - "reference": "Services/DMSService.qml:321", + "reference": "Services/DMSService.qml:320", "comment": "" }, { "term": "DMS server is outdated (API v%1, expected v%2)", "context": "DMS server is outdated (API v%1, expected v%2)", - "reference": "Services/DMSService.qml:343", + "reference": "Services/DMSService.qml:342", "comment": "" }, { @@ -3962,13 +3992,7 @@ { "term": "DMS_SOCKET not available", "context": "DMS_SOCKET not available", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:316", - "comment": "" - }, - { - "term": "DWL service not available", - "context": "DWL service not available", - "reference": "Modules/Settings/WidgetsTab.qml:41", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:430", "comment": "" }, { @@ -3992,7 +4016,7 @@ { "term": "Dank Bar", "context": "Dank Bar", - "reference": "Modals/Settings/SettingsSidebar.qml:109", + "reference": "Modals/Settings/SettingsSidebar.qml:117, Modules/Settings/DankBarTab.qml:239", "comment": "" }, { @@ -4010,31 +4034,31 @@ { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2522", + "reference": "Modules/Settings/ThemeColorsTab.qml:2224", "comment": "" }, { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1438, Modules/Settings/WallpaperTab.qml:582, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:750", + "reference": "Modules/Settings/ThemeColorsTab.qml:1438, Modules/Settings/WallpaperTab.qml:582, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:721", "comment": "" }, { "term": "Dark mode base", "context": "Dark mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2765", + "reference": "Modules/Settings/ThemeColorsTab.qml:2467", "comment": "" }, { "term": "Dark mode harmony", "context": "Dark mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2799", + "reference": "Modules/Settings/ThemeColorsTab.qml:2501", "comment": "" }, { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2277, Modules/Settings/ThemeColorsTab.qml:2285", + "reference": "Modules/Settings/ThemeColorsTab.qml:1968, Modules/Settings/ThemeColorsTab.qml:1976", "comment": "" }, { @@ -4094,19 +4118,19 @@ { "term": "Deck", "context": "Deck", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:49", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:51", "comment": "" }, { "term": "Default", "context": "Default", - "reference": "Modules/Settings/ThemeColorsTab.qml:1531, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/PluginBrowser.qml:37, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", + "reference": "Modals/WindowRuleModal.qml:559, Modules/Settings/ThemeColorsTab.qml:1531, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/PluginBrowser.qml:43, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", "comment": "notification rule action option | notification rule urgency option | plugin browser sort option | widget style option" }, { "term": "Default (Black)", "context": "Default (Black)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1733, Modules/Settings/DankBarTab.qml:1610", + "reference": "Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1733, Modules/Settings/DankBarTab.qml:1674", "comment": "shadow color option" }, { @@ -4118,7 +4142,7 @@ { "term": "Default Apps", "context": "Default Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:238", + "reference": "Modals/Settings/SettingsSidebar.qml:252", "comment": "" }, { @@ -4172,7 +4196,7 @@ { "term": "Define rules for window behavior. Saves to %1", "context": "Define rules for window behavior. Saves to %1", - "reference": "Modules/Settings/WindowRulesTab.qml:415", + "reference": "Modules/Settings/WindowRulesTab.qml:407", "comment": "" }, { @@ -4184,7 +4208,7 @@ { "term": "Delete", "context": "Delete", - "reference": "Widgets/VpnDetailContent.qml:223, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/PrinterTab.qml:1094, Modules/Settings/PrinterTab.qml:1680, Modules/Settings/UsersTab.qml:322, Modules/Settings/NetworkTab.qml:1826, Modules/Settings/DisplayConfigTab.qml:322", + "reference": "Widgets/VpnDetailContent.qml:223, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/PrinterTab.qml:1094, Modules/Settings/PrinterTab.qml:1680, Modules/Settings/UsersTab.qml:322, Modules/Settings/NetworkTab.qml:1762, Modules/Settings/DisplayConfigTab.qml:322", "comment": "" }, { @@ -4196,7 +4220,7 @@ { "term": "Delete \"%1\"?", "context": "Delete \"%1\"?", - "reference": "Widgets/VpnDetailContent.qml:222, Modules/Settings/PrinterTab.qml:1093, Modules/Settings/NetworkTab.qml:1825", + "reference": "Widgets/VpnDetailContent.qml:222, Modules/Settings/PrinterTab.qml:1093, Modules/Settings/NetworkTab.qml:1761", "comment": "" }, { @@ -4214,7 +4238,7 @@ { "term": "Delete Rule", "context": "Delete Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:753", + "reference": "Modules/Settings/WindowRulesTab.qml:745", "comment": "" }, { @@ -4226,7 +4250,7 @@ { "term": "Delete VPN", "context": "Delete VPN", - "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/NetworkTab.qml:1824", + "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/NetworkTab.qml:1760", "comment": "" }, { @@ -4304,7 +4328,7 @@ { "term": "Desktop Clock", "context": "Desktop Clock", - "reference": "Services/DesktopWidgetRegistry.qml:39", + "reference": "Services/DesktopWidgetRegistry.qml:38", "comment": "Desktop clock widget name" }, { @@ -4322,7 +4346,7 @@ { "term": "Desktop Widgets", "context": "Desktop Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:164, Modules/Settings/DesktopWidgetsTab.qml:75", + "reference": "Modals/Settings/SettingsSidebar.qml:178, Modules/Settings/DesktopWidgetsTab.qml:75", "comment": "" }, { @@ -4394,7 +4418,7 @@ { "term": "Direction Source", "context": "Direction Source", - "reference": "Modules/Settings/DankBarTab.qml:1516", + "reference": "Modules/Settings/DankBarTab.qml:1579", "comment": "bar shadow direction source" }, { @@ -4436,24 +4460,24 @@ { "term": "Disabled", "context": "Disabled", - "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/AutoStartTab.qml:684, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NetworkTab.qml:819, Modules/Settings/DankBarTab.qml:358, Modules/Settings/NotificationsTab.qml:740, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1909, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1917, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1929, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1943, Modules/ControlCenter/Components/DragDropGrid.qml:426", + "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/AutoStartTab.qml:684, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NetworkTab.qml:787, Modules/Settings/DankBarTab.qml:404, Modules/Settings/NotificationsTab.qml:740, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057, Modules/ControlCenter/Components/DragDropGrid.qml:479", "comment": "bluetooth status | lock screen notification mode option" }, { "term": "Disabled by Frame Mode", "context": "Disabled by Frame Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:2278", + "reference": "Modules/Settings/ThemeColorsTab.qml:1969", "comment": "" }, { "term": "Disabling WiFi...", "context": "Disabling WiFi...", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:400", + "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:453", "comment": "network status" }, { - "term": "Disabling auto-login on startup…", - "context": "Disabling auto-login on startup…", + "term": "Disabling auto-login on startup...", + "context": "Disabling auto-login on startup...", "reference": "Common/settings/Processes.qml:573", "comment": "" }, @@ -4478,13 +4502,13 @@ { "term": "Disconnect", "context": "Disconnect", - "reference": "Widgets/VpnDetailContent.qml:126, Modules/Settings/NetworkTab.qml:1625, Modules/ControlCenter/Details/BluetoothDetail.qml:617, Modules/ControlCenter/Details/NetworkDetail.qml:428, Modules/ControlCenter/Details/NetworkDetail.qml:790", + "reference": "Widgets/VpnDetailContent.qml:126, Modules/Settings/NetworkTab.qml:1561, Modules/ControlCenter/Details/BluetoothDetail.qml:617, Modules/ControlCenter/Details/NetworkDetail.qml:428, Modules/ControlCenter/Details/NetworkDetail.qml:790", "comment": "" }, { "term": "Disconnected", "context": "Disconnected", - "reference": "Modules/Settings/NetworkTab.qml:215, Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1551, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/DisplayConfig/OutputCard.qml:85, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:22", + "reference": "Modules/Settings/NetworkTab.qml:215, Modules/Settings/NetworkTab.qml:448, Modules/Settings/NetworkTab.qml:1487, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/DisplayConfig/OutputCard.qml:85, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:22", "comment": "Tailscale disconnected status" }, { @@ -4514,7 +4538,7 @@ { "term": "Disk Usage", "context": "Disk Usage", - "reference": "Modules/Settings/WidgetsTab.qml:124, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:36, Modules/ControlCenter/Widgets/DiskUsagePill.qml:42", + "reference": "Modules/Settings/WidgetsTab.qml:126, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:36, Modules/ControlCenter/Widgets/DiskUsagePill.qml:42", "comment": "" }, { @@ -4538,13 +4562,13 @@ { "term": "Display", "context": "Display", - "reference": "Modules/Settings/WindowRulesTab.qml:96, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:38", + "reference": "Modules/Settings/WindowRulesTab.qml:106, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:38", "comment": "" }, { "term": "Display Assignment", "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:485, Modules/Settings/FrameTab.qml:357", + "reference": "Modules/Settings/DankBarTab.qml:531, Modules/Settings/FrameTab.qml:357", "comment": "" }, { @@ -4584,15 +4608,15 @@ "comment": "" }, { - "term": "Display and switch DWL layouts", - "context": "Display and switch DWL layouts", - "reference": "Modules/Settings/WidgetsTab.qml:38", + "term": "Display and switch MangoWC layouts", + "context": "Display and switch MangoWC layouts", + "reference": "Modules/Settings/WidgetsTab.qml:40", "comment": "" }, { "term": "Display application icons in workspace indicators", "context": "Display application icons in workspace indicators", - "reference": "Modules/Settings/WorkspacesTab.qml:60", + "reference": "Modules/Settings/WorkspacesTab.qml:62", "comment": "" }, { @@ -4610,7 +4634,7 @@ { "term": "Display currently focused application title", "context": "Display currently focused application title", - "reference": "Modules/Settings/WidgetsTab.qml:60", + "reference": "Modules/Settings/WidgetsTab.qml:62", "comment": "" }, { @@ -4634,7 +4658,7 @@ { "term": "Display only workspaces that contain windows", "context": "Display only workspaces that contain windows", - "reference": "Modules/Settings/WorkspacesTab.qml:152", + "reference": "Modules/Settings/WorkspacesTab.qml:164", "comment": "" }, { @@ -4652,13 +4676,13 @@ { "term": "Display setup failed", "context": "Display setup failed", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1461", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1453", "comment": "" }, { "term": "Display the power system menu", "context": "Display the power system menu", - "reference": "Modules/Settings/WidgetsTab.qml:255", + "reference": "Modules/Settings/WidgetsTab.qml:257", "comment": "" }, { @@ -4670,7 +4694,7 @@ { "term": "Displays", "context": "Displays", - "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:199, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", + "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:213, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", "comment": "greeter settings link" }, { @@ -4682,7 +4706,7 @@ { "term": "Displays the active keyboard layout and allows switching", "context": "Displays the active keyboard layout and allows switching", - "reference": "Modules/Settings/WidgetsTab.qml:227", + "reference": "Modules/Settings/WidgetsTab.qml:229", "comment": "" }, { @@ -4706,13 +4730,13 @@ { "term": "Dock", "context": "Dock", - "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:178", + "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:192", "comment": "greeter settings link" }, { "term": "Dock & Launcher", "context": "Dock & Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:172, Modals/Settings/SettingsSidebar.qml:613", + "reference": "Modals/Settings/SettingsSidebar.qml:186, Modals/Settings/SettingsSidebar.qml:633", "comment": "" }, { @@ -4778,19 +4802,19 @@ { "term": "Drag to Reorder", "context": "Drag to Reorder", - "reference": "Modules/Settings/WorkspacesTab.qml:171", + "reference": "Modules/Settings/WorkspacesTab.qml:183", "comment": "" }, { "term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "context": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", - "reference": "Modules/Settings/WidgetsTab.qml:995", + "reference": "Modules/Settings/WidgetsTab.qml:1021", "comment": "" }, { "term": "Drag workspace indicators to reorder them", "context": "Drag workspace indicators to reorder them", - "reference": "Modules/Settings/WorkspacesTab.qml:172", + "reference": "Modules/Settings/WorkspacesTab.qml:184", "comment": "" }, { @@ -4862,7 +4886,7 @@ { "term": "Dynamic Properties", "context": "Dynamic Properties", - "reference": "Modals/WindowRuleModal.qml:1017", + "reference": "Modals/WindowRuleModal.qml:1081", "comment": "" }, { @@ -4898,7 +4922,7 @@ { "term": "Edge Spacing", "context": "Edge Spacing", - "reference": "Modules/Settings/DankBarTab.qml:768", + "reference": "Modules/Settings/DankBarTab.qml:814", "comment": "" }, { @@ -4922,13 +4946,13 @@ { "term": "Edit Rule", "context": "Edit Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:738", + "reference": "Modules/Settings/WindowRulesTab.qml:730", "comment": "" }, { "term": "Edit Window Rule", "context": "Edit Window Rule", - "reference": "Modals/WindowRuleModal.qml:28, Modals/WindowRuleModal.qml:582", + "reference": "Modals/WindowRuleModal.qml:29, Modals/WindowRuleModal.qml:642", "comment": "" }, { @@ -4937,6 +4961,12 @@ "reference": "Modals/Clipboard/ClipboardEditor.qml:291", "comment": "" }, + { + "term": "Editing changes on %1", + "context": "Editing changes on %1", + "reference": "Modules/Settings/DankBarTab.qml:244", + "comment": "" + }, { "term": "Education", "context": "Education", @@ -4946,7 +4976,7 @@ { "term": "Empty", "context": "Empty", - "reference": "DMSShell.qml:512, Services/BatteryService.qml:206, Modules/Notepad/NotepadTextEditor.qml:841", + "reference": "DMSShell.qml:528, Services/BatteryService.qml:206, Modules/Notepad/NotepadTextEditor.qml:841", "comment": "battery status" }, { @@ -4964,7 +4994,7 @@ { "term": "Empty Trash?", "context": "Empty Trash?", - "reference": "DMSShell.qml:510", + "reference": "DMSShell.qml:526", "comment": "" }, { @@ -4982,7 +5012,7 @@ { "term": "Enable Bar", "context": "Enable Bar", - "reference": "Modules/Settings/DankBarTab.qml:412", + "reference": "Modules/Settings/DankBarTab.qml:458", "comment": "" }, { @@ -5042,7 +5072,7 @@ { "term": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", "context": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", - "reference": "Modules/Settings/DankBarTab.qml:1461", + "reference": "Modules/Settings/DankBarTab.qml:1523", "comment": "" }, { @@ -5090,7 +5120,7 @@ { "term": "Enabled", "context": "Enabled", - "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1909, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1917, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1943, Modules/ControlCenter/Components/DragDropGrid.qml:427", + "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057, Modules/ControlCenter/Components/DragDropGrid.qml:480", "comment": "bluetooth status" }, { @@ -5156,7 +5186,7 @@ { "term": "Enabling WiFi...", "context": "Enabling WiFi...", - "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:400", + "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:453", "comment": "network status" }, { @@ -5288,7 +5318,7 @@ { "term": "Enterprise", "context": "Enterprise", - "reference": "Modules/Settings/NetworkTab.qml:1444", + "reference": "Modules/Settings/NetworkTab.qml:1380", "comment": "" }, { @@ -5330,7 +5360,7 @@ { "term": "Ethernet", "context": "Ethernet", - "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:406, Modules/ControlCenter/Components/DragDropGrid.qml:409", + "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:459, Modules/ControlCenter/Components/DragDropGrid.qml:462", "comment": "network status" }, { @@ -5366,7 +5396,7 @@ { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:621, Modules/Settings/DankBarTab.qml:790", + "reference": "Modules/Settings/DockTab.qml:621, Modules/Settings/DankBarTab.qml:836", "comment": "" }, { @@ -5480,7 +5510,7 @@ { "term": "Failed to add binds include", "context": "Failed to add binds include", - "reference": "Services/KeybindsService.qml:242", + "reference": "Services/KeybindsService.qml:246", "comment": "" }, { @@ -5504,7 +5534,7 @@ { "term": "Failed to apply profile", "context": "Failed to apply profile", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:506", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:530", "comment": "" }, { @@ -5702,7 +5732,7 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1507", + "reference": "Common/SettingsData.qml:1510", "comment": "" }, { @@ -5714,7 +5744,7 @@ { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1409, Common/SettingsData.qml:3174", + "reference": "Common/SettingsData.qml:1412, Common/SettingsData.qml:3180", "comment": "" }, { @@ -5768,7 +5798,7 @@ { "term": "Failed to remove keybind", "context": "Failed to remove keybind", - "reference": "Services/KeybindsService.qml:219", + "reference": "Services/KeybindsService.qml:221", "comment": "" }, { @@ -5828,7 +5858,7 @@ { "term": "Failed to save profile", "context": "Failed to save profile", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:619", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:612", "comment": "" }, { @@ -5945,22 +5975,22 @@ "reference": "Services/CupsService.qml:592", "comment": "" }, - { - "term": "Failed to write Hyprland outputs config.", - "context": "Failed to write Hyprland outputs config.", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1461", - "comment": "" - }, { "term": "Failed to write autostart entry", "context": "Failed to write autostart entry", "reference": "Modules/Settings/AutoStartTab.qml:165", "comment": "" }, + { + "term": "Failed to write outputs config.", + "context": "Failed to write outputs config.", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1453", + "comment": "" + }, { "term": "Failed to write temp file for validation", "context": "Failed to write temp file for validation", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1977", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2091", "comment": "" }, { @@ -6074,7 +6104,7 @@ { "term": "Filter", "context": "Filter", - "reference": "Modules/Settings/PluginBrowser.qml:691", + "reference": "Modules/Settings/PluginBrowser.qml:713", "comment": "plugin browser category filter label" }, { @@ -6092,7 +6122,7 @@ { "term": "Fine-tune the space reserved for the bar from the screen edge", "context": "Fine-tune the space reserved for the bar from the screen edge", - "reference": "Modules/Settings/DankBarTab.qml:791", + "reference": "Modules/Settings/DankBarTab.qml:837", "comment": "" }, { @@ -6152,13 +6182,13 @@ { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/ThemeColorsTab.qml:2384, Modules/Settings/WindowRulesTab.qml:532, Modules/Settings/KeybindsTab.qml:429, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:89", + "reference": "Modules/Settings/ThemeColorsTab.qml:2075, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:429, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:89", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/ThemeColorsTab.qml:2384, Modules/Settings/WindowRulesTab.qml:532, Modules/Settings/KeybindsTab.qml:426, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:86", + "reference": "Modules/Settings/ThemeColorsTab.qml:2075, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:426, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:86", "comment": "" }, { @@ -6170,37 +6200,61 @@ { "term": "Flipped", "context": "Flipped", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2585, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2606", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2597, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2618", "comment": "" }, { "term": "Flipped 180°", "context": "Flipped 180°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2589, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2610", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2601, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2622", "comment": "" }, { "term": "Flipped 270°", "context": "Flipped 270°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2591, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2612", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2603, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2624", "comment": "" }, { "term": "Flipped 90°", "context": "Flipped 90°", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2587, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2608", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2599, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2620", "comment": "" }, { "term": "Float", "context": "Float", - "reference": "Modals/WindowRuleModal.qml:874, Modules/Settings/WindowRulesTab.qml:85", + "reference": "Modals/WindowRuleModal.qml:937, Modules/Settings/WindowRulesTab.qml:95", + "comment": "" + }, + { + "term": "Float Anchor", + "context": "Float Anchor", + "reference": "Modules/Settings/WindowRulesTab.qml:136", + "comment": "" + }, + { + "term": "Float X", + "context": "Float X", + "reference": "Modules/Settings/WindowRulesTab.qml:134", + "comment": "" + }, + { + "term": "Float Y", + "context": "Float Y", + "reference": "Modules/Settings/WindowRulesTab.qml:135", "comment": "" }, { "term": "Floating", "context": "Floating", - "reference": "Modals/WindowRuleModal.qml:810, Modules/Settings/WindowRulesTab.qml:37", + "reference": "Modals/WindowRuleModal.qml:873, Modules/Settings/WindowRulesTab.qml:47", + "comment": "" + }, + { + "term": "Floating Position", + "context": "Floating Position", + "reference": "Modals/WindowRuleModal.qml:1310", "comment": "" }, { @@ -6218,43 +6272,43 @@ { "term": "Focus", "context": "Focus", - "reference": "Modals/WindowRuleModal.qml:891, Modules/Settings/WindowRulesTab.qml:89", + "reference": "Modals/WindowRuleModal.qml:955, Modules/Settings/WindowRulesTab.qml:99", "comment": "" }, { "term": "Focus Ring Color", "context": "Focus Ring Color", - "reference": "Modules/Settings/WindowRulesTab.qml:125", + "reference": "Modules/Settings/WindowRulesTab.qml:138", "comment": "" }, { "term": "Focus Ring Off", "context": "Focus Ring Off", - "reference": "Modules/Settings/WindowRulesTab.qml:126", + "reference": "Modules/Settings/WindowRulesTab.qml:139", "comment": "" }, { "term": "Focus at Startup", "context": "Focus at Startup", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1919", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2033", "comment": "" }, { "term": "Focused", "context": "Focused", - "reference": "Modals/WindowRuleModal.qml:819, Modules/Settings/WindowRulesTab.qml:39", + "reference": "Modals/WindowRuleModal.qml:882, Modules/Settings/WindowRulesTab.qml:49", "comment": "" }, { "term": "Focused Border", "context": "Focused Border", - "reference": "Modules/Settings/WorkspacesTab.qml:354", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:172", "comment": "" }, { "term": "Focused Color", "context": "Focused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:196", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:14", "comment": "" }, { @@ -6266,7 +6320,7 @@ { "term": "Focused Window", "context": "Focused Window", - "reference": "Modules/Settings/WidgetsTab.qml:59", + "reference": "Modules/Settings/WidgetsTab.qml:61", "comment": "" }, { @@ -6290,13 +6344,13 @@ { "term": "Follow DMS background color", "context": "Follow DMS background color", - "reference": "Modules/Settings/ThemeColorsTab.qml:2833", + "reference": "Modules/Settings/ThemeColorsTab.qml:2535", "comment": "" }, { "term": "Follow Monitor Focus", "context": "Follow Monitor Focus", - "reference": "Modules/Settings/WorkspacesTab.qml:141", + "reference": "Modules/Settings/WorkspacesTab.qml:153", "comment": "" }, { @@ -6326,7 +6380,7 @@ { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:321, Modules/Settings/DankBarTab.qml:977", + "reference": "Modules/Settings/TypographyMotionTab.qml:321, Modules/Settings/DankBarTab.qml:1026", "comment": "" }, { @@ -6392,7 +6446,7 @@ { "term": "Force HDR", "context": "Force HDR", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1939", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053", "comment": "" }, { @@ -6404,19 +6458,19 @@ { "term": "Force RGBX", "context": "Force RGBX", - "reference": "Modules/Settings/WindowRulesTab.qml:128", + "reference": "Modules/Settings/WindowRulesTab.qml:141", "comment": "" }, { "term": "Force Wide Color", "context": "Force Wide Color", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1941", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", "comment": "" }, { "term": "Force terminal applications to always use dark color schemes", "context": "Force terminal applications to always use dark color schemes", - "reference": "Modules/Settings/ThemeColorsTab.qml:2315", + "reference": "Modules/Settings/ThemeColorsTab.qml:2006", "comment": "" }, { @@ -6452,13 +6506,13 @@ { "term": "Forget", "context": "Forget", - "reference": "Modules/Settings/NetworkTab.qml:1307", + "reference": "Modules/Settings/NetworkTab.qml:1275", "comment": "" }, { "term": "Forget \"%1\"?", "context": "Forget \"%1\"?", - "reference": "Modules/Settings/NetworkTab.qml:1306", + "reference": "Modules/Settings/NetworkTab.qml:1274", "comment": "" }, { @@ -6470,7 +6524,7 @@ { "term": "Forget Network", "context": "Forget Network", - "reference": "Modules/Settings/NetworkTab.qml:1305, Modules/ControlCenter/Details/NetworkDetail.qml:867", + "reference": "Modules/Settings/NetworkTab.qml:1273, Modules/ControlCenter/Details/NetworkDetail.qml:867", "comment": "" }, { @@ -6488,7 +6542,7 @@ { "term": "Frame", "context": "Frame", - "reference": "Modals/Settings/SettingsSidebar.qml:126, Modules/Settings/FrameTab.qml:31", + "reference": "Modals/Settings/SettingsSidebar.qml:146, Modules/Settings/FrameTab.qml:31", "comment": "" }, { @@ -6524,7 +6578,7 @@ { "term": "Frequency", "context": "Frequency", - "reference": "Modules/Settings/NetworkTab.qml:1419", + "reference": "Modules/Settings/NetworkTab.qml:1355", "comment": "" }, { @@ -6572,7 +6626,7 @@ { "term": "Fullscreen", "context": "Fullscreen", - "reference": "Modals/WindowRuleModal.qml:849, Modals/WindowRuleModal.qml:882, Modules/Settings/WindowRulesTab.qml:45, Modules/Settings/WindowRulesTab.qml:88", + "reference": "Modals/WindowRuleModal.qml:912, Modals/WindowRuleModal.qml:946, Modules/Settings/WindowRulesTab.qml:55, Modules/Settings/WindowRulesTab.qml:98", "comment": "" }, { @@ -6614,13 +6668,13 @@ { "term": "GPU Temperature", "context": "GPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:140, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", + "reference": "Modules/Settings/WidgetsTab.qml:142, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", "comment": "" }, { "term": "GPU temperature display", "context": "GPU temperature display", - "reference": "Modules/Settings/WidgetsTab.qml:141", + "reference": "Modules/Settings/WidgetsTab.qml:143", "comment": "" }, { @@ -6644,7 +6698,7 @@ { "term": "Gamma Control", "context": "Gamma Control", - "reference": "Modals/Settings/SettingsSidebar.qml:211, Modules/Settings/GammaControlTab.qml:64", + "reference": "Modals/Settings/SettingsSidebar.qml:225, Modules/Settings/GammaControlTab.qml:64", "comment": "" }, { @@ -6662,7 +6716,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:3041", + "reference": "Modules/Settings/ThemeColorsTab.qml:2743", "comment": "" }, { @@ -6710,13 +6764,13 @@ { "term": "Goth Corner Radius", "context": "Goth Corner Radius", - "reference": "Modules/Settings/DankBarTab.qml:1122", + "reference": "Modules/Settings/DankBarTab.qml:1178", "comment": "" }, { "term": "Goth Corners", "context": "Goth Corners", - "reference": "Modules/Settings/DankBarTab.qml:1094", + "reference": "Modules/Settings/DankBarTab.qml:1150", "comment": "" }, { @@ -6776,7 +6830,7 @@ { "term": "Greeter", "context": "Greeter", - "reference": "Modals/Settings/SettingsSidebar.qml:332, Modules/Settings/UsersTab.qml:228", + "reference": "Modals/Settings/SettingsSidebar.qml:346, Modules/Settings/UsersTab.qml:228", "comment": "" }, { @@ -6836,7 +6890,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/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:355, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:364, Modules/DankBar/Popouts/DWLLayoutPopout.qml:50", "comment": "" }, { @@ -6863,10 +6917,16 @@ "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:240", "comment": "" }, + { + "term": "Group Active Workspace", + "context": "Group Active Workspace", + "reference": "Modules/Settings/WorkspacesTab.qml:133", + "comment": "" + }, { "term": "Group Workspace Apps", "context": "Group Workspace Apps", - "reference": "Modules/Settings/WorkspacesTab.qml:121", + "reference": "Modules/Settings/WorkspacesTab.qml:123", "comment": "" }, { @@ -6890,7 +6950,7 @@ { "term": "Group repeated application icons in unfocused workspaces", "context": "Group repeated application icons in unfocused workspaces", - "reference": "Modules/Settings/WorkspacesTab.qml:122", + "reference": "Modules/Settings/WorkspacesTab.qml:124", "comment": "" }, { @@ -6974,7 +7034,7 @@ { "term": "Height", "context": "Height", - "reference": "Modules/Settings/WindowRulesTab.qml:93", + "reference": "Modules/Settings/WindowRulesTab.qml:103", "comment": "" }, { @@ -7004,13 +7064,13 @@ { "term": "Hibernate failed", "context": "Hibernate failed", - "reference": "Services/SessionService.qml:119", + "reference": "Services/SessionService.qml:118", "comment": "" }, { "term": "Hidden", "context": "Hidden", - "reference": "Modules/Settings/NetworkTab.qml:1222", + "reference": "Modules/Settings/NetworkTab.qml:1190", "comment": "" }, { @@ -7046,7 +7106,7 @@ { "term": "Hide 3rd Party", "context": "Hide 3rd Party", - "reference": "Modules/Settings/PluginBrowser.qml:483", + "reference": "Modules/Settings/PluginBrowser.qml:505", "comment": "" }, { @@ -7058,7 +7118,7 @@ { "term": "Hide Delay", "context": "Hide Delay", - "reference": "Modules/Settings/DankBarTab.qml:626", + "reference": "Modules/Settings/DankBarTab.qml:672", "comment": "" }, { @@ -7070,31 +7130,31 @@ { "term": "Hide When Typing", "context": "Hide When Typing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2428", + "reference": "Modules/Settings/ThemeColorsTab.qml:2130", "comment": "" }, { "term": "Hide When Windows Open", "context": "Hide When Windows Open", - "reference": "Modules/Settings/DankBarTab.qml:663", + "reference": "Modules/Settings/DankBarTab.qml:709", "comment": "" }, { "term": "Hide cursor after inactivity (0 = disabled)", "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2475", + "reference": "Modules/Settings/ThemeColorsTab.qml:2177", "comment": "" }, { "term": "Hide cursor when pressing keyboard keys", "context": "Hide cursor when pressing keyboard keys", - "reference": "Modules/Settings/ThemeColorsTab.qml:2429", + "reference": "Modules/Settings/ThemeColorsTab.qml:2131", "comment": "" }, { "term": "Hide cursor when using touch input", "context": "Hide cursor when using touch input", - "reference": "Modules/Settings/ThemeColorsTab.qml:2458", + "reference": "Modules/Settings/ThemeColorsTab.qml:2160", "comment": "" }, { @@ -7118,13 +7178,13 @@ { "term": "Hide on Touch", "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:2457", + "reference": "Modules/Settings/ThemeColorsTab.qml:2159", "comment": "" }, { "term": "Hide the bar when the pointer leaves even if a popout is still open", "context": "Hide the bar when the pointer leaves even if a popout is still open", - "reference": "Modules/Settings/DankBarTab.qml:650", + "reference": "Modules/Settings/DankBarTab.qml:696", "comment": "" }, { @@ -7142,13 +7202,13 @@ { "term": "Highlight Active Workspace App", "context": "Highlight Active Workspace App", - "reference": "Modules/Settings/WorkspacesTab.qml:131", + "reference": "Modules/Settings/WorkspacesTab.qml:143", "comment": "" }, { "term": "Highlight the currently focused app inside workspace indicators", "context": "Highlight the currently focused app inside workspace indicators", - "reference": "Modules/Settings/WorkspacesTab.qml:132", + "reference": "Modules/Settings/WorkspacesTab.qml:144", "comment": "" }, { @@ -7184,7 +7244,7 @@ { "term": "Hold longer to confirm", "context": "Hold longer to confirm", - "reference": "Modals/PowerMenuModal.qml:809, Modules/Lock/LockPowerMenu.qml:813", + "reference": "Modals/PowerMenuModal.qml:837, Modules/Lock/LockPowerMenu.qml:833", "comment": "" }, { @@ -7196,13 +7256,13 @@ { "term": "Hold to confirm (%1 ms)", "context": "Hold to confirm (%1 ms)", - "reference": "Modals/PowerMenuModal.qml:812, Modals/PowerMenuModal.qml:816, Modules/Lock/LockPowerMenu.qml:816, Modules/Lock/LockPowerMenu.qml:820", + "reference": "Modals/PowerMenuModal.qml:840, Modals/PowerMenuModal.qml:844, Modules/Lock/LockPowerMenu.qml:836, Modules/Lock/LockPowerMenu.qml:840", "comment": "" }, { "term": "Hold to confirm (%1s)", "context": "Hold to confirm (%1s)", - "reference": "Modals/PowerMenuModal.qml:813, Modals/PowerMenuModal.qml:817, Modules/Lock/LockPowerMenu.qml:817, Modules/Lock/LockPowerMenu.qml:821", + "reference": "Modals/PowerMenuModal.qml:841, Modals/PowerMenuModal.qml:845, Modules/Lock/LockPowerMenu.qml:837, Modules/Lock/LockPowerMenu.qml:841", "comment": "" }, { @@ -7232,7 +7292,7 @@ { "term": "Hot Corners", "context": "Hot Corners", - "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1921", + "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2035", "comment": "" }, { @@ -7292,13 +7352,13 @@ { "term": "Hyprland Layout Overrides", "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:2064", + "reference": "Modules/Settings/CompositorLayoutTab.qml:123", "comment": "" }, { "term": "Hyprland Options", "context": "Hyprland Options", - "reference": "Modals/WindowRuleModal.qml:1360", + "reference": "Modals/WindowRuleModal.qml:1524", "comment": "" }, { @@ -7310,25 +7370,25 @@ { "term": "Hyprland conf mode", "context": "Hyprland conf mode", - "reference": "Services/KeybindsService.qml:539, Modules/Settings/ThemeColorsTab.qml:105, Modules/Settings/WindowRulesTab.qml:354, Modules/Settings/WindowRulesTab.qml:510, Modules/Settings/KeybindsTab.qml:384, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:49, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1475", + "reference": "Services/KeybindsService.qml:548, Modules/Settings/ThemeColorsTab.qml:105, Modules/Settings/WindowRulesTab.qml:344, Modules/Settings/WindowRulesTab.qml:502, Modules/Settings/KeybindsTab.qml:384, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:49, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1467", "comment": "" }, { "term": "Hyprland conf mode is read-only in Settings", "context": "Hyprland conf mode is read-only in Settings", - "reference": "Modules/Settings/KeybindsTab.qml:299, Modules/Settings/DisplayConfig/DisplayConfigState.qml:491", + "reference": "Modules/Settings/KeybindsTab.qml:299, Modules/Settings/DisplayConfig/DisplayConfigState.qml:515", "comment": "" }, { "term": "Hyprland config include missing", "context": "Hyprland config include missing", - "reference": "Services/KeybindsService.qml:535", + "reference": "Services/KeybindsService.qml:544", "comment": "" }, { "term": "I Understand", "context": "I Understand", - "reference": "Modules/Settings/PluginBrowser.qml:1243", + "reference": "Modules/Settings/PluginBrowser.qml:1242", "comment": "" }, { @@ -7340,7 +7400,7 @@ { "term": "IP Address:", "context": "IP Address:", - "reference": "Modules/Settings/NetworkTab.qml:941", + "reference": "Modules/Settings/NetworkTab.qml:909", "comment": "" }, { @@ -7364,13 +7424,13 @@ { "term": "Icon Scale", "context": "Icon Scale", - "reference": "Modules/Settings/DankBarTab.qml:1002", + "reference": "Modules/Settings/DankBarTab.qml:1053", "comment": "" }, { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/DockTab.qml:592, Modules/Settings/WorkspacesTab.qml:109", + "reference": "Modules/Settings/DockTab.qml:592, Modules/Settings/WorkspacesTab.qml:111", "comment": "" }, { @@ -7382,7 +7442,7 @@ { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2513, Modules/Settings/ThemeColorsTab.qml:2521", + "reference": "Modules/Settings/ThemeColorsTab.qml:2215, Modules/Settings/ThemeColorsTab.qml:2223", "comment": "" }, { @@ -7406,13 +7466,13 @@ { "term": "Idle Inhibit", "context": "Idle Inhibit", - "reference": "Modules/Settings/WindowRulesTab.qml:129", + "reference": "Modules/Settings/WindowRulesTab.qml:142", "comment": "" }, { "term": "Idle Inhibitor", "context": "Idle Inhibitor", - "reference": "Modules/Settings/WidgetsTabSection.qml:1650, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTab.qml:190, Modules/Settings/OSDTab.qml:125", + "reference": "Modules/Settings/WidgetsTabSection.qml:1650, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTab.qml:192, Modules/Settings/OSDTab.qml:125", "comment": "" }, { @@ -7460,7 +7520,7 @@ { "term": "Import", "context": "Import", - "reference": "Widgets/VpnDetailContent.qml:89, Modules/Settings/NetworkTab.qml:1588", + "reference": "Widgets/VpnDetailContent.qml:89, Modules/Settings/NetworkTab.qml:1524", "comment": "" }, { @@ -7568,13 +7628,13 @@ { "term": "Inherit", "context": "Inherit", - "reference": "Modals/WindowRuleModal.qml:1182, Modals/WindowRuleModal.qml:1191, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:96, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:101, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:110, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:273, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:324", + "reference": "Modals/WindowRuleModal.qml:1249, Modals/WindowRuleModal.qml:1258, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:96, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:101, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:110, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:273, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:324", "comment": "" }, { "term": "Inherit Global (Default)", "context": "Inherit Global (Default)", - "reference": "Modules/Settings/DankBarTab.qml:1519, Modules/Settings/DankBarTab.qml:1527", + "reference": "Modules/Settings/DankBarTab.qml:1582, Modules/Settings/DankBarTab.qml:1590", "comment": "bar shadow direction source option" }, { @@ -7583,16 +7643,22 @@ "reference": "Widgets/KeybindItem.qml:1802", "comment": "" }, + { + "term": "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.", + "context": "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.", + "reference": "Modals/WindowRuleModal.qml:1317", + "comment": "" + }, { "term": "Initialised", "context": "Initialised", - "reference": "Modals/WindowRuleModal.qml:859, Modules/Settings/WindowRulesTab.qml:47", + "reference": "Modals/WindowRuleModal.qml:922, Modules/Settings/WindowRulesTab.qml:57", "comment": "" }, { "term": "Inner padding applied to each widget", "context": "Inner padding applied to each widget", - "reference": "Modules/Settings/DankBarTab.qml:835", + "reference": "Modules/Settings/DankBarTab.qml:881", "comment": "" }, { @@ -7616,7 +7682,7 @@ { "term": "Install", "context": "Install", - "reference": "Modules/Settings/PluginBrowser.qml:331, Modules/Settings/PluginBrowser.qml:999, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:650", + "reference": "Modules/Settings/PluginBrowser.qml:353, Modules/Settings/PluginBrowser.qml:998, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:627", "comment": "install action button" }, { @@ -7628,7 +7694,7 @@ { "term": "Install Plugin", "context": "Install Plugin", - "reference": "Modules/Settings/PluginBrowser.qml:329", + "reference": "Modules/Settings/PluginBrowser.qml:351", "comment": "plugin installation dialog title" }, { @@ -7658,7 +7724,7 @@ { "term": "Install failed: %1", "context": "Install failed: %1", - "reference": "Modules/Settings/PluginBrowser.qml:295, Modules/Settings/ThemeBrowser.qml:69", + "reference": "Modules/Settings/PluginBrowser.qml:317, Modules/Settings/ThemeBrowser.qml:69", "comment": "installation error" }, { @@ -7670,13 +7736,13 @@ { "term": "Install plugin '%1' from the DMS registry?", "context": "Install plugin '%1' from the DMS registry?", - "reference": "Modules/Settings/PluginBrowser.qml:330", + "reference": "Modules/Settings/PluginBrowser.qml:352", "comment": "plugin installation confirmation" }, { "term": "Install plugins from the DMS plugin registry", "context": "Install plugins from the DMS plugin registry", - "reference": "Modules/Settings/PluginBrowser.qml:531", + "reference": "Modules/Settings/PluginBrowser.qml:553", "comment": "plugin browser description" }, { @@ -7700,19 +7766,19 @@ { "term": "Installed", "context": "Installed", - "reference": "Modules/Settings/PluginBrowser.qml:36, Modules/Settings/PluginBrowser.qml:995, Modules/Settings/ThemeBrowser.qml:653", + "reference": "Modules/Settings/PluginBrowser.qml:38, Modules/Settings/PluginBrowser.qml:994, Modules/Settings/ThemeBrowser.qml:630", "comment": "installed status | plugin browser filter chip" }, { "term": "Installed: %1", "context": "Installed: %1", - "reference": "Modules/Settings/PluginBrowser.qml:298, Modules/Settings/ThemeBrowser.qml:72", + "reference": "Modules/Settings/PluginBrowser.qml:320, Modules/Settings/ThemeBrowser.qml:72", "comment": "installation success" }, { "term": "Installing: %1", "context": "Installing: %1", - "reference": "Modules/Settings/PluginBrowser.qml:292, Modules/Settings/ThemeBrowser.qml:66", + "reference": "Modules/Settings/PluginBrowser.qml:314, Modules/Settings/ThemeBrowser.qml:66", "comment": "installation progress" }, { @@ -7730,13 +7796,13 @@ { "term": "Intensity", "context": "Intensity", - "reference": "Modules/Settings/DankBarTab.qml:1488", + "reference": "Modules/Settings/DankBarTab.qml:1550", "comment": "shadow intensity slider" }, { "term": "Interface:", "context": "Interface:", - "reference": "Modules/Settings/NetworkTab.qml:921", + "reference": "Modules/Settings/NetworkTab.qml:889", "comment": "" }, { @@ -7766,7 +7832,7 @@ { "term": "Invalid configuration", "context": "Invalid configuration", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1985", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2099", "comment": "" }, { @@ -7787,6 +7853,12 @@ "reference": "Modules/Settings/LauncherTab.qml:543", "comment": "" }, + { + "term": "Invert touchpad scroll direction", + "context": "Invert touchpad scroll direction", + "reference": "Modules/Settings/ThemeColorsTab.qml:2120", + "comment": "" + }, { "term": "Iris Bloom", "context": "Iris Bloom", @@ -7814,13 +7886,13 @@ { "term": "Keep Awake", "context": "Keep Awake", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:752", + "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:723", "comment": "" }, { "term": "Keep Changes", "context": "Keep Changes", - "reference": "Modals/DisplayConfirmationModal.qml:168", + "reference": "Modals/DisplayConfirmationModal.qml:169", "comment": "" }, { @@ -7832,7 +7904,7 @@ { "term": "Keeping Awake", "context": "Keeping Awake", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:752", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:723", "comment": "" }, { @@ -7856,7 +7928,7 @@ { "term": "Keybinds", "context": "Keybinds", - "reference": "Modals/Greeter/GreeterCompletePage.qml:413", + "reference": "Modals/KeybindsModal.qml:84, Modals/Greeter/GreeterCompletePage.qml:413", "comment": "greeter settings link" }, { @@ -7874,13 +7946,13 @@ { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", - "reference": "Modules/Settings/WidgetsTab.qml:226", + "reference": "Modules/Settings/WidgetsTab.qml:228", "comment": "" }, { "term": "Keyboard Shortcuts", "context": "Keyboard Shortcuts", - "reference": "Modals/Settings/SettingsSidebar.qml:192, Modals/Settings/SettingsSidebar.qml:601, Modals/Clipboard/ClipboardHeader.qml:62, Modules/Settings/KeybindsTab.qml:289", + "reference": "Modals/Settings/SettingsSidebar.qml:206, Modals/Settings/SettingsSidebar.qml:621, Modals/Clipboard/ClipboardHeader.qml:62, Modules/Settings/KeybindsTab.qml:289", "comment": "" }, { @@ -8024,7 +8096,7 @@ { "term": "Launcher", "context": "Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:184", + "reference": "Modals/Settings/SettingsSidebar.qml:198", "comment": "" }, { @@ -8054,7 +8126,7 @@ { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1923, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167", + "reference": "Modules/Settings/WidgetsTab.qml:39, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:169", "comment": "" }, { @@ -8072,7 +8144,7 @@ { "term": "Left", "context": "Left", - "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:291, Modules/Settings/DankBarTab.qml:438, Modules/DankBar/Popouts/BatteryPopout.qml:519", + "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:337, Modules/Settings/DankBarTab.qml:484, Modules/DankBar/Popouts/BatteryPopout.qml:519", "comment": "" }, { @@ -8084,7 +8156,7 @@ { "term": "Left Section", "context": "Left Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:27, Modules/Settings/WidgetsTab.qml:1018", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:27, Modules/Settings/WidgetsTab.qml:1044", "comment": "" }, { @@ -8126,13 +8198,13 @@ { "term": "Light mode base", "context": "Light mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2782", + "reference": "Modules/Settings/ThemeColorsTab.qml:2484", "comment": "" }, { "term": "Light mode harmony", "context": "Light mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2816", + "reference": "Modules/Settings/ThemeColorsTab.qml:2518", "comment": "" }, { @@ -8198,8 +8270,8 @@ { "term": "Loading...", "context": "Loading...", - "reference": "Widgets/VpnProfileDelegate.qml:225, Modules/Settings/PluginBrowser.qml:750, Modules/Settings/PrinterTab.qml:707, Modules/Settings/ThemeBrowser.qml:359, Modules/Settings/NetworkTab.qml:677, Modules/Settings/NetworkTab.qml:1394, Modules/Settings/NetworkTab.qml:1883, Modules/DankDash/Overview/WeatherOverviewCard.qml:31", - "comment": "loading indicator" + "reference": "Modules/Settings/PrinterTab.qml:707", + "comment": "" }, { "term": "Local", @@ -8210,7 +8282,7 @@ { "term": "Locale", "context": "Locale", - "reference": "Modals/Settings/SettingsSidebar.qml:272", + "reference": "Modals/Settings/SettingsSidebar.qml:293", "comment": "" }, { @@ -8240,7 +8312,7 @@ { "term": "Lock Screen", "context": "Lock Screen", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:326, Modules/Settings/NotificationsTab.qml:732", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:340, Modules/Settings/NotificationsTab.qml:732", "comment": "greeter feature card title | lock screen notifications settings card" }, { @@ -8366,7 +8438,7 @@ { "term": "MTU", "context": "MTU", - "reference": "Widgets/VpnProfileDelegate.qml:72, Modules/Settings/NetworkTab.qml:1929", + "reference": "Widgets/VpnProfileDelegate.qml:72, Modules/Settings/NetworkTab.qml:1833", "comment": "" }, { @@ -8390,7 +8462,7 @@ { "term": "Make the bar background fully transparent", "context": "Make the bar background fully transparent", - "reference": "Modules/Settings/DankBarTab.qml:1051", + "reference": "Modules/Settings/DankBarTab.qml:1107", "comment": "" }, { @@ -8402,19 +8474,19 @@ { "term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", "context": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", - "reference": "Modules/Settings/DankBarTab.qml:223", + "reference": "Modules/Settings/DankBarTab.qml:269", "comment": "" }, { "term": "Managed by Frame", "context": "Managed by Frame", - "reference": "Modules/Settings/DankBarTab.qml:757, Modules/Settings/DankBarTab.qml:970, Modules/Settings/DankBarTab.qml:1036", + "reference": "Modules/Settings/DankBarTab.qml:803, Modules/Settings/DankBarTab.qml:1017, Modules/Settings/DankBarTab.qml:1092", "comment": "" }, { "term": "Managed by Frame in Connected Mode", "context": "Managed by Frame in Connected Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1643, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1443", + "reference": "Modules/Settings/ThemeColorsTab.qml:1643, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1504", "comment": "" }, { @@ -8435,16 +8507,28 @@ "reference": "Modules/Settings/DefaultAppsTab.qml:293", "comment": "Manages files and directories" }, + { + "term": "Mango Options", + "context": "Mango Options", + "reference": "Modals/WindowRuleModal.qml:1696", + "comment": "" + }, + { + "term": "Mango service not available", + "context": "Mango service not available", + "reference": "Modules/Settings/WidgetsTab.qml:43", + "comment": "" + }, { "term": "MangoWC Layout Overrides", "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:2167", + "reference": "Modules/Settings/CompositorLayoutTab.qml:229", "comment": "" }, { "term": "Manual", "context": "Manual", - "reference": "Modules/Settings/DankBarTab.qml:1519, Modules/Settings/DankBarTab.qml:1525, Modules/Settings/DankBarTab.qml:1535", + "reference": "Modules/Settings/DankBarTab.qml:1582, Modules/Settings/DankBarTab.qml:1588, Modules/Settings/DankBarTab.qml:1598", "comment": "bar shadow direction source option" }, { @@ -8456,19 +8540,19 @@ { "term": "Manual Direction", "context": "Manual Direction", - "reference": "Modules/Settings/DankBarTab.qml:1549", + "reference": "Modules/Settings/DankBarTab.qml:1613", "comment": "bar manual shadow direction" }, { "term": "Manual Gap Size", "context": "Manual Gap Size", - "reference": "Modules/Settings/DankBarTab.qml:891", + "reference": "Modules/Settings/DankBarTab.qml:937", "comment": "" }, { "term": "Manual Show/Hide", "context": "Manual Show/Hide", - "reference": "Modules/Settings/DankBarTab.qml:682", + "reference": "Modules/Settings/DankBarTab.qml:728", "comment": "" }, { @@ -8516,19 +8600,19 @@ { "term": "Match (%1)", "context": "Match (%1)", - "reference": "Modules/Settings/WindowRulesTab.qml:1037", + "reference": "Modules/Settings/WindowRulesTab.qml:1029", "comment": "" }, { "term": "Match Conditions", "context": "Match Conditions", - "reference": "Modals/WindowRuleModal.qml:793", + "reference": "Modals/WindowRuleModal.qml:853", "comment": "" }, { "term": "Match Criteria", "context": "Match Criteria", - "reference": "Modals/WindowRuleModal.qml:641", + "reference": "Modals/WindowRuleModal.qml:701", "comment": "" }, { @@ -8594,19 +8678,19 @@ { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2540", + "reference": "Modules/Settings/ThemeColorsTab.qml:2242", "comment": "" }, { "term": "Max Edges", "context": "Max Edges", - "reference": "Modules/Settings/WindowRulesTab.qml:87", + "reference": "Modules/Settings/WindowRulesTab.qml:97", "comment": "" }, { "term": "Max H", "context": "Max H", - "reference": "Modals/WindowRuleModal.qml:1336, Modules/Settings/WindowRulesTab.qml:104", + "reference": "Modals/WindowRuleModal.qml:1500, Modules/Settings/WindowRulesTab.qml:114", "comment": "" }, { @@ -8642,43 +8726,43 @@ { "term": "Max W", "context": "Max W", - "reference": "Modals/WindowRuleModal.qml:1282, Modules/Settings/WindowRulesTab.qml:102", + "reference": "Modals/WindowRuleModal.qml:1446, Modules/Settings/WindowRulesTab.qml:112", "comment": "" }, { "term": "Max apps to show", "context": "Max apps to show", - "reference": "Modules/Settings/WorkspacesTab.qml:79", + "reference": "Modules/Settings/WorkspacesTab.qml:81", "comment": "" }, { "term": "Max to Edges", "context": "Max to Edges", - "reference": "Modals/WindowRuleModal.qml:886", + "reference": "Modals/WindowRuleModal.qml:950", "comment": "" }, { "term": "Maximize", "context": "Maximize", - "reference": "Modals/WindowRuleModal.qml:878, Modules/Settings/WindowRulesTab.qml:86", + "reference": "Modals/WindowRuleModal.qml:941, Modules/Settings/WindowRulesTab.qml:96", "comment": "" }, { "term": "Maximize Detection", "context": "Maximize Detection", - "reference": "Modules/Settings/DankBarTab.qml:1145", + "reference": "Modules/Settings/DankBarTab.qml:1201", "comment": "" }, { "term": "Maximize Widget Icons", "context": "Maximize Widget Icons", - "reference": "Modules/Settings/DankBarTab.qml:1060", + "reference": "Modules/Settings/DankBarTab.qml:1116", "comment": "" }, { "term": "Maximize Widget Text", "context": "Maximize Widget Text", - "reference": "Modules/Settings/DankBarTab.qml:1069", + "reference": "Modules/Settings/DankBarTab.qml:1125", "comment": "" }, { @@ -8744,7 +8828,7 @@ { "term": "Media Controls", "context": "Media Controls", - "reference": "Modules/Settings/WidgetsTab.qml:94", + "reference": "Modules/Settings/WidgetsTab.qml:96", "comment": "" }, { @@ -8780,7 +8864,7 @@ { "term": "Media Player", "context": "Media Player", - "reference": "Modals/Settings/SettingsSidebar.qml:146", + "reference": "Modals/Settings/SettingsSidebar.qml:160", "comment": "" }, { @@ -8822,13 +8906,13 @@ { "term": "Memory Usage", "context": "Memory Usage", - "reference": "Modules/Settings/WidgetsTab.qml:116", + "reference": "Modules/Settings/WidgetsTab.qml:118", "comment": "" }, { "term": "Memory usage indicator", "context": "Memory usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:117", + "reference": "Modules/Settings/WidgetsTab.qml:119", "comment": "" }, { @@ -8888,19 +8972,19 @@ { "term": "Middle Section", "context": "Middle Section", - "reference": "Modules/Settings/WidgetsTab.qml:1094", + "reference": "Modules/Settings/WidgetsTab.qml:1120", "comment": "" }, { "term": "Min H", "context": "Min H", - "reference": "Modals/WindowRuleModal.qml:1309, Modules/Settings/WindowRulesTab.qml:103", + "reference": "Modals/WindowRuleModal.qml:1473, Modules/Settings/WindowRulesTab.qml:113", "comment": "" }, { "term": "Min W", "context": "Min W", - "reference": "Modals/WindowRuleModal.qml:1255, Modules/Settings/WindowRulesTab.qml:101", + "reference": "Modals/WindowRuleModal.qml:1419, Modules/Settings/WindowRulesTab.qml:111", "comment": "" }, { @@ -8924,13 +9008,13 @@ { "term": "Missing Environment Variables", "context": "Missing Environment Variables", - "reference": "Modules/Settings/ThemeColorsTab.qml:2531", + "reference": "Modules/Settings/ThemeColorsTab.qml:2233", "comment": "qt theme env error title" }, { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2270", + "reference": "Modules/Settings/ThemeColorsTab.qml:1961", "comment": "" }, { @@ -8948,7 +9032,7 @@ { "term": "Mode", "context": "Mode", - "reference": "Modules/Settings/NetworkTab.qml:1434, Modules/Settings/DankBarTab.qml:1170, Modules/Settings/FrameTab.qml:47, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1903", + "reference": "Modules/Settings/NetworkTab.qml:1370, Modules/Settings/DankBarTab.qml:1227, Modules/Settings/FrameTab.qml:47, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2017", "comment": "" }, { @@ -8960,13 +9044,13 @@ { "term": "Model", "context": "Model", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1894", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2008", "comment": "" }, { "term": "Modified", "context": "Modified", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:695, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1921, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1923", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:695, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2035, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2037", "comment": "" }, { @@ -8978,7 +9062,7 @@ { "term": "Monitor", "context": "Monitor", - "reference": "Modals/WindowRuleModal.qml:1481, Modules/Settings/WindowRulesTab.qml:117", + "reference": "Modals/WindowRuleModal.qml:1645, Modals/WindowRuleModal.qml:1764, Modules/Settings/WindowRulesTab.qml:127", "comment": "" }, { @@ -9008,13 +9092,13 @@ { "term": "Monochrome", "context": "Monochrome", - "reference": "Common/Theme.qml:501, Modules/Settings/DankBarTab.qml:1171", + "reference": "Common/Theme.qml:501, Modules/Settings/DankBarTab.qml:1228", "comment": "matugen color scheme option" }, { "term": "Monocle", "context": "Monocle", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:50", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:52", "comment": "" }, { @@ -9050,25 +9134,25 @@ { "term": "Mouse clicks pass through the bar to windows behind it", "context": "Mouse clicks pass through the bar to windows behind it", - "reference": "Modules/Settings/DankBarTab.qml:702", + "reference": "Modules/Settings/DankBarTab.qml:748", "comment": "" }, { "term": "Mouse pointer appearance", "context": "Mouse pointer appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:2399", + "reference": "Modules/Settings/ThemeColorsTab.qml:2090", "comment": "" }, { "term": "Mouse pointer size in pixels", "context": "Mouse pointer size in pixels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2415", + "reference": "Modules/Settings/ThemeColorsTab.qml:2106", "comment": "" }, { "term": "Move", "context": "Move", - "reference": "Modals/WindowRuleModal.qml:1448, Modules/Settings/WindowRulesTab.qml:116", + "reference": "Modals/WindowRuleModal.qml:1612, Modules/Settings/WindowRulesTab.qml:126", "comment": "" }, { @@ -9116,7 +9200,7 @@ { "term": "Multiplexers", "context": "Multiplexers", - "reference": "Modals/Settings/SettingsSidebar.qml:292", + "reference": "Modals/Settings/SettingsSidebar.qml:313", "comment": "" }, { @@ -9146,7 +9230,7 @@ { "term": "Muted", "context": "Muted", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:370, Modules/ControlCenter/Components/DragDropGrid.qml:488, Modules/ControlCenter/Components/DragDropGrid.qml:499", + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:370, Modules/ControlCenter/Components/DragDropGrid.qml:541, Modules/ControlCenter/Components/DragDropGrid.qml:552", "comment": "audio status" }, { @@ -9170,19 +9254,19 @@ { "term": "NM not supported", "context": "NM not supported", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:318", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:432", "comment": "" }, { "term": "Name", "context": "Name", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:38, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:507, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1894, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:48, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:507, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2008, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", "comment": "plugin browser sort option" }, { "term": "Named Workspace Icons", "context": "Named Workspace Icons", - "reference": "Modules/Settings/WorkspacesTab.qml:417", + "reference": "Modules/Settings/WorkspacesTab.qml:204", "comment": "" }, { @@ -9197,6 +9281,12 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:423", "comment": "" }, + { + "term": "Natural Touchpad Scrolling", + "context": "Natural Touchpad Scrolling", + "reference": "Modules/Settings/ThemeColorsTab.qml:2119", + "comment": "" + }, { "term": "Navigate", "context": "Navigate", @@ -9212,7 +9302,7 @@ { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:225, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1545, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:161", + "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:239, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1545, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:161", "comment": "" }, { @@ -9242,7 +9332,7 @@ { "term": "Network Speed Monitor", "context": "Network Speed Monitor", - "reference": "Modules/Settings/WidgetsTab.qml:218", + "reference": "Modules/Settings/WidgetsTab.qml:220", "comment": "" }, { @@ -9254,7 +9344,7 @@ { "term": "Network download and upload speed display", "context": "Network download and upload speed display", - "reference": "Modules/Settings/WidgetsTab.qml:219", + "reference": "Modules/Settings/WidgetsTab.qml:221", "comment": "" }, { @@ -9314,7 +9404,7 @@ { "term": "New Window Rule", "context": "New Window Rule", - "reference": "Modals/WindowRuleModal.qml:582", + "reference": "Modals/WindowRuleModal.qml:642", "comment": "" }, { @@ -9350,7 +9440,7 @@ { "term": "Night Mode", "context": "Night Mode", - "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:748", + "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:719", "comment": "" }, { @@ -9380,7 +9470,7 @@ { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1961", + "reference": "Modules/Settings/CompositorLayoutTab.qml:26", "comment": "" }, { @@ -9392,7 +9482,7 @@ { "term": "No", "context": "No", - "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:67, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1919, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1929, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1939, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1941", + "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2033, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", "comment": "" }, { @@ -9404,13 +9494,13 @@ { "term": "No Anim", "context": "No Anim", - "reference": "Modals/WindowRuleModal.qml:1395, Modules/Settings/WindowRulesTab.qml:111", + "reference": "Modals/WindowRuleModal.qml:1559, Modals/WindowRuleModal.qml:1723, Modules/Settings/WindowRulesTab.qml:121", "comment": "" }, { "term": "No Background", "context": "No Background", - "reference": "Modules/Settings/DankBarTab.qml:1050", + "reference": "Modules/Settings/DankBarTab.qml:1106", "comment": "" }, { @@ -9422,13 +9512,13 @@ { "term": "No Blur", "context": "No Blur", - "reference": "Modals/WindowRuleModal.qml:1391, Modules/Settings/WindowRulesTab.qml:110", + "reference": "Modals/WindowRuleModal.qml:1555, Modals/WindowRuleModal.qml:1707, Modules/Settings/WindowRulesTab.qml:120", "comment": "" }, { "term": "No Border", "context": "No Border", - "reference": "Modals/WindowRuleModal.qml:1379, Modules/Settings/WindowRulesTab.qml:107", + "reference": "Modals/WindowRuleModal.qml:1543, Modals/WindowRuleModal.qml:1711, Modules/Settings/WindowRulesTab.qml:117", "comment": "" }, { @@ -9440,13 +9530,13 @@ { "term": "No Dim", "context": "No Dim", - "reference": "Modals/WindowRuleModal.qml:1387, Modules/Settings/WindowRulesTab.qml:109", + "reference": "Modals/WindowRuleModal.qml:1551, Modules/Settings/WindowRulesTab.qml:119", "comment": "" }, { "term": "No Focus", "context": "No Focus", - "reference": "Modals/WindowRuleModal.qml:1375, Modules/Settings/WindowRulesTab.qml:106", + "reference": "Modals/WindowRuleModal.qml:1539, Modules/Settings/WindowRulesTab.qml:116", "comment": "" }, { @@ -9476,31 +9566,31 @@ { "term": "No Round", "context": "No Round", - "reference": "Modules/Settings/WindowRulesTab.qml:112", + "reference": "Modules/Settings/WindowRulesTab.qml:122", "comment": "" }, { "term": "No Rounding", "context": "No Rounding", - "reference": "Modals/WindowRuleModal.qml:1399", + "reference": "Modals/WindowRuleModal.qml:1563, Modals/WindowRuleModal.qml:1719", "comment": "" }, { "term": "No Shadow", "context": "No Shadow", - "reference": "Modals/WindowRuleModal.qml:1383, Modules/Settings/WindowRulesTab.qml:108", + "reference": "Modals/WindowRuleModal.qml:1547, Modals/WindowRuleModal.qml:1715, Modules/Settings/WindowRulesTab.qml:118", "comment": "" }, { "term": "No VPN profiles", "context": "No VPN profiles", - "reference": "Widgets/VpnDetailContent.qml:179, Modules/Settings/NetworkTab.qml:1667", + "reference": "Widgets/VpnDetailContent.qml:179, Modules/Settings/NetworkTab.qml:1603", "comment": "" }, { "term": "No Weather", "context": "No Weather", - "reference": "Modules/DankDash/Overview/WeatherOverviewCard.qml:31", + "reference": "Modules/DankDash/Overview/WeatherOverviewCard.qml:38", "comment": "" }, { @@ -9536,13 +9626,13 @@ { "term": "No adapter", "context": "No adapter", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:424", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:477", "comment": "bluetooth status" }, { "term": "No adapters", "context": "No adapters", - "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:464", + "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:517", "comment": "bluetooth status" }, { @@ -9614,7 +9704,7 @@ { "term": "No devices", "context": "No devices", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:481", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:534", "comment": "Phone Connect no devices status | bluetooth status" }, { @@ -9710,7 +9800,7 @@ { "term": "No input device", "context": "No input device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:432", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:485", "comment": "audio status" }, { @@ -9740,13 +9830,13 @@ { "term": "No match criteria", "context": "No match criteria", - "reference": "Modules/Settings/WindowRulesTab.qml:678, Modules/Settings/WindowRulesTab.qml:953", + "reference": "Modules/Settings/WindowRulesTab.qml:670, Modules/Settings/WindowRulesTab.qml:945", "comment": "" }, { "term": "No matches", "context": "No matches", - "reference": "Modals/Settings/SettingsSidebar.qml:847, Modules/Notepad/NotepadTextEditor.qml:373", + "reference": "Modals/Settings/SettingsSidebar.qml:869, Modules/Notepad/NotepadTextEditor.qml:373", "comment": "" }, { @@ -9782,7 +9872,7 @@ { "term": "No output device", "context": "No output device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:430", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:483", "comment": "audio status" }, { @@ -9806,7 +9896,7 @@ { "term": "No plugins found", "context": "No plugins found", - "reference": "Modules/Settings/PluginBrowser.qml:1112", + "reference": "Modules/Settings/PluginBrowser.qml:1111", "comment": "empty plugin list" }, { @@ -9896,7 +9986,7 @@ { "term": "No themes found", "context": "No themes found", - "reference": "Modules/Settings/ThemeBrowser.qml:686", + "reference": "Modules/Settings/ThemeBrowser.qml:663", "comment": "empty theme list" }, { @@ -9968,19 +10058,19 @@ { "term": "No window rules configured", "context": "No window rules configured", - "reference": "Modules/Settings/WindowRulesTab.qml:594", + "reference": "Modules/Settings/WindowRulesTab.qml:586", "comment": "" }, { "term": "Noise", "context": "Noise", - "reference": "Modals/WindowRuleModal.qml:1203, Modules/Settings/WindowRulesTab.qml:122", + "reference": "Modals/WindowRuleModal.qml:1270, Modules/Settings/WindowRulesTab.qml:132", "comment": "" }, { "term": "None", "context": "None", - "reference": "Modals/WindowRuleModal.qml:1088, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/WindowRulesTab.qml:1071, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111", + "reference": "Modals/WindowRuleModal.qml:1154, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1228, Modules/Settings/DankBarTab.qml:1756, Modules/Settings/DankBarTab.qml:1756, Modules/Settings/DankBarTab.qml:1794, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/WindowRulesTab.qml:1063, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111", "comment": "wallpaper transition option" }, { @@ -9992,7 +10082,7 @@ { "term": "Normal", "context": "Normal", - "reference": "Modals/WindowRuleModal.qml:1110, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2577, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2593, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2598", + "reference": "Modals/WindowRuleModal.qml:1176, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2589, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2605, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2610", "comment": "" }, { @@ -10046,7 +10136,7 @@ { "term": "Not connected", "context": "Not connected", - "reference": "Modules/Settings/NetworkTab.qml:822, Modules/ControlCenter/Components/DragDropGrid.qml:416", + "reference": "Modules/Settings/NetworkTab.qml:790, Modules/ControlCenter/Components/DragDropGrid.qml:469", "comment": "network status" }, { @@ -10082,7 +10172,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:1093, Services/AppSearchService.qml:182, Modules/Settings/WidgetsTab.qml:232", + "reference": "DMSShell.qml:1109, Services/AppSearchService.qml:182, Modules/Settings/WidgetsTab.qml:234", "comment": "Notepad" }, { @@ -10112,7 +10202,7 @@ { "term": "Notification Center", "context": "Notification Center", - "reference": "Modules/Settings/WidgetsTab.qml:169", + "reference": "Modules/Settings/WidgetsTab.qml:171", "comment": "" }, { @@ -10160,7 +10250,7 @@ { "term": "Notifications", "context": "Notifications", - "reference": "Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:152, Modules/Notifications/Center/NotificationHeader.qml:55", + "reference": "Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:166, Modules/Notifications/Center/NotificationHeader.qml:55", "comment": "greeter settings link" }, { @@ -10202,13 +10292,13 @@ { "term": "Occupied Color", "context": "Occupied Color", - "reference": "Modules/Settings/WorkspacesTab.qml:234", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:52", "comment": "" }, { "term": "Off", "context": "Off", - "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:702, Modules/Settings/WindowRulesTab.qml:979, Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:343, Modules/Settings/DisplayConfig/OutputCard.qml:346, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:365, Modules/Settings/DisplayConfig/OutputCard.qml:369, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:98, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:466, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31", + "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:694, Modules/Settings/WindowRulesTab.qml:971, Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:343, Modules/Settings/DisplayConfig/OutputCard.qml:346, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:365, Modules/Settings/DisplayConfig/OutputCard.qml:369, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:98, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:519, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31", "comment": "bluetooth status" }, { @@ -10256,7 +10346,7 @@ { "term": "On-screen Displays", "context": "On-screen Displays", - "reference": "Modals/Settings/SettingsSidebar.qml:158, Modules/Settings/DisplayWidgetsTab.qml:49, Modules/Settings/OSDTab.qml:25", + "reference": "Modals/Settings/SettingsSidebar.qml:172, Modules/Settings/DisplayWidgetsTab.qml:49, Modules/Settings/OSDTab.qml:25", "comment": "" }, { @@ -10298,31 +10388,31 @@ { "term": "Opacity", "context": "Opacity", - "reference": "Modals/WindowRuleModal.qml:1026, Modals/DankColorPickerModal.qml:522, Modules/Settings/DankBarTab.qml:1301, Modules/Settings/DankBarTab.qml:1394, Modules/Settings/DankBarTab.qml:1502, Modules/Settings/WindowRulesTab.qml:84", + "reference": "Modals/WindowRuleModal.qml:1092, Modals/DankColorPickerModal.qml:522, Modules/Settings/DankBarTab.qml:1360, Modules/Settings/DankBarTab.qml:1455, Modules/Settings/DankBarTab.qml:1564, Modules/Settings/WindowRulesTab.qml:94", "comment": "" }, { "term": "Opacity of the bar background", "context": "Opacity of the bar background", - "reference": "Modules/Settings/DankBarTab.qml:923", + "reference": "Modules/Settings/DankBarTab.qml:970", "comment": "" }, { "term": "Opacity of widget backgrounds", "context": "Opacity of widget backgrounds", - "reference": "Modules/Settings/DankBarTab.qml:946", + "reference": "Modules/Settings/DankBarTab.qml:993", "comment": "" }, { "term": "Opaque", "context": "Opaque", - "reference": "Modals/WindowRuleModal.qml:1407, Modules/Settings/WindowRulesTab.qml:114", + "reference": "Modals/WindowRuleModal.qml:1571, Modules/Settings/WindowRulesTab.qml:124", "comment": "" }, { "term": "Open", "context": "Open", - "reference": "Modals/DankLauncherV2/Controller.qml:1202, Modals/DankLauncherV2/Controller.qml:1206, Modals/DankLauncherV2/Controller.qml:1216, Modules/Notepad/NotepadTextEditor.qml:782, Modules/Settings/NetworkTab.qml:1195, Modules/Settings/NetworkTab.qml:1444, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/Notifications/Center/NotificationCard.qml:787, Modules/Notifications/Center/NotificationCard.qml:926", + "reference": "Modals/DankLauncherV2/Controller.qml:1202, Modals/DankLauncherV2/Controller.qml:1206, Modals/DankLauncherV2/Controller.qml:1216, Modules/Notepad/NotepadTextEditor.qml:782, Modules/Settings/NetworkTab.qml:1163, Modules/Settings/NetworkTab.qml:1380, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/Notifications/Center/NotificationCard.qml:787, Modules/Notifications/Center/NotificationCard.qml:926", "comment": "" }, { @@ -10406,7 +10496,7 @@ { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:893, Modals/BrowserPickerModal.qml:13", + "reference": "DMSShell.qml:909, Modals/BrowserPickerModal.qml:13", "comment": "" }, { @@ -10478,7 +10568,7 @@ { "term": "Optional state-based conditions applied to the first match.", "context": "Optional state-based conditions applied to the first match.", - "reference": "Modals/WindowRuleModal.qml:798", + "reference": "Modals/WindowRuleModal.qml:860", "comment": "" }, { @@ -10514,7 +10604,7 @@ { "term": "Output", "context": "Output", - "reference": "Modals/WindowRuleModal.qml:906, Modules/Settings/WindowRulesTab.qml:90", + "reference": "Modals/WindowRuleModal.qml:970, Modules/Settings/WindowRulesTab.qml:100", "comment": "" }, { @@ -10574,19 +10664,19 @@ { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2033, Modules/Settings/ThemeColorsTab.qml:2136, Modules/Settings/ThemeColorsTab.qml:2239", + "reference": "Modules/Settings/CompositorLayoutTab.qml:93, Modules/Settings/CompositorLayoutTab.qml:190, Modules/Settings/CompositorLayoutTab.qml:296", "comment": "" }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:2002, Modules/Settings/ThemeColorsTab.qml:2105, Modules/Settings/ThemeColorsTab.qml:2208", + "reference": "Modules/Settings/CompositorLayoutTab.qml:64, Modules/Settings/CompositorLayoutTab.qml:161, Modules/Settings/CompositorLayoutTab.qml:267", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1970, Modules/Settings/ThemeColorsTab.qml:2073, Modules/Settings/ThemeColorsTab.qml:2176", + "reference": "Modules/Settings/CompositorLayoutTab.qml:34, Modules/Settings/CompositorLayoutTab.qml:131, Modules/Settings/CompositorLayoutTab.qml:237", "comment": "" }, { @@ -10610,13 +10700,13 @@ { "term": "Override the global shadow with per-bar settings", "context": "Override the global shadow with per-bar settings", - "reference": "Modules/Settings/DankBarTab.qml:1470", + "reference": "Modules/Settings/DankBarTab.qml:1532", "comment": "" }, { "term": "Override the popup gap size when auto is disabled", "context": "Override the popup gap size when auto is disabled", - "reference": "Modules/Settings/DankBarTab.qml:892", + "reference": "Modules/Settings/DankBarTab.qml:938", "comment": "" }, { @@ -10628,7 +10718,7 @@ { "term": "Overview", "context": "Overview", - "reference": "Widgets/KeybindItem.qml:1122, Widgets/KeybindItem.qml:1125, Modules/DankDash/DankDashPopout.qml:280", + "reference": "Widgets/KeybindItem.qml:1122, Widgets/KeybindItem.qml:1125, Modules/DankDash/DankDashPopout.qml:280, Modules/DankBar/Widgets/WorkspaceSwitcher.qml:975", "comment": "" }, { @@ -10712,7 +10802,7 @@ { "term": "Padding", "context": "Padding", - "reference": "Modules/Settings/DockTab.qml:611, Modules/Settings/DankBarTab.qml:834", + "reference": "Modules/Settings/DockTab.qml:611, Modules/Settings/DankBarTab.qml:880", "comment": "" }, { @@ -10892,7 +10982,7 @@ { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTabSection.qml:1434, Modules/Settings/WidgetsTab.qml:125", + "reference": "Modules/Settings/WidgetsTabSection.qml:1434, Modules/Settings/WidgetsTab.qml:127", "comment": "" }, { @@ -10904,7 +10994,7 @@ { "term": "Permanently delete %1 item(s)? This cannot be undone.", "context": "Permanently delete %1 item(s)? This cannot be undone.", - "reference": "DMSShell.qml:511", + "reference": "DMSShell.qml:527", "comment": "" }, { @@ -10916,7 +11006,7 @@ { "term": "Personalization", "context": "Personalization", - "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:619", + "reference": "Modals/Settings/SettingsSidebar.qml:72, Modals/Settings/SettingsSidebar.qml:639", "comment": "" }, { @@ -10970,7 +11060,7 @@ { "term": "Pin", "context": "Pin", - "reference": "Modals/WindowRuleModal.qml:1403, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/Settings/WindowRulesTab.qml:113, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683", + "reference": "Modals/WindowRuleModal.qml:1567, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/Settings/WindowRulesTab.qml:123, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683", "comment": "" }, { @@ -11000,13 +11090,13 @@ { "term": "Pinned", "context": "Pinned", - "reference": "Modals/WindowRuleModal.qml:854, Modals/DankLauncherV2/Controller.qml:200, Modals/DankLauncherV2/Controller.qml:1224, Modules/Settings/WindowRulesTab.qml:46, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683", + "reference": "Modals/WindowRuleModal.qml:917, Modals/DankLauncherV2/Controller.qml:200, Modals/DankLauncherV2/Controller.qml:1224, Modules/Settings/WindowRulesTab.qml:56, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683", "comment": "" }, { "term": "Pinned and running apps with drag-and-drop", "context": "Pinned and running apps with drag-and-drop", - "reference": "Modules/Settings/WidgetsTab.qml:74", + "reference": "Modules/Settings/WidgetsTab.qml:76", "comment": "" }, { @@ -11036,7 +11126,7 @@ { "term": "Place the bar on the Wayland overlay layer", "context": "Place the bar on the Wayland overlay layer", - "reference": "Modules/Settings/DankBarTab.qml:742", + "reference": "Modules/Settings/DankBarTab.qml:788", "comment": "" }, { @@ -11108,7 +11198,7 @@ { "term": "Please wait...", "context": "Please wait...", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:442", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:495", "comment": "network status" }, { @@ -11162,7 +11252,7 @@ { "term": "Plugin is disabled - enable in Plugins settings to use", "context": "Plugin is disabled - enable in Plugins settings to use", - "reference": "Modules/Settings/WidgetsTab.qml:270", + "reference": "Modules/Settings/WidgetsTab.qml:272", "comment": "" }, { @@ -11186,7 +11276,7 @@ { "term": "Plugins", "context": "Plugins", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:451, Modals/DankLauncherV2/LauncherContent.qml:354, Modals/Settings/SettingsSidebar.qml:346, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:451, Modals/DankLauncherV2/LauncherContent.qml:354, Modals/Settings/SettingsSidebar.qml:360, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", "comment": "greeter feature card title | greeter plugins link" }, { @@ -11258,7 +11348,7 @@ { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:427, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1901", + "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:473, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2015", "comment": "" }, { @@ -11276,19 +11366,19 @@ { "term": "Power", "context": "Power", - "reference": "Modules/Settings/WidgetsTab.qml:254, Modules/ControlCenter/Details/BatteryDetail.qml:71, Modules/DankBar/Popouts/BatteryPopout.qml:190", + "reference": "Modules/Settings/WidgetsTab.qml:256, Modules/ControlCenter/Details/BatteryDetail.qml:71, Modules/DankBar/Popouts/BatteryPopout.qml:190", "comment": "" }, { "term": "Power & Security", "context": "Power & Security", - "reference": "Modals/Settings/SettingsSidebar.qml:320, Modals/Settings/SettingsSidebar.qml:607", + "reference": "Modals/Settings/SettingsSidebar.qml:334, Modals/Settings/SettingsSidebar.qml:627", "comment": "" }, { "term": "Power & Sleep", "context": "Power & Sleep", - "reference": "Modals/Settings/SettingsSidebar.qml:338", + "reference": "Modals/Settings/SettingsSidebar.qml:352", "comment": "" }, { @@ -11318,7 +11408,7 @@ { "term": "Power Options", "context": "Power Options", - "reference": "Modules/Lock/LockPowerMenu.qml:493", + "reference": "Modules/Lock/LockPowerMenu.qml:513", "comment": "" }, { @@ -11432,7 +11522,7 @@ { "term": "Prevent screen timeout", "context": "Prevent screen timeout", - "reference": "Modules/Settings/WidgetsTab.qml:191, Modules/ControlCenter/Models/WidgetModel.qml:154", + "reference": "Modules/Settings/WidgetsTab.qml:193, Modules/ControlCenter/Models/WidgetModel.qml:154", "comment": "" }, { @@ -11444,7 +11534,7 @@ { "term": "Primary", "context": "Primary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1591, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1623, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1727, Modules/Settings/ThemeColorsTab.qml:1738, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1915, Modules/Settings/ThemeColorsTab.qml:1927, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:722, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/NetworkTab.qml:227, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1591, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1623, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1727, Modules/Settings/ThemeColorsTab.qml:1738, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1915, Modules/Settings/ThemeColorsTab.qml:1927, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:722, Modules/Settings/NetworkTab.qml:227, Modules/Settings/DankBarTab.qml:1228, Modules/Settings/DankBarTab.qml:1674, Modules/Settings/WorkspaceAppearanceCard.qml:187, Modules/Settings/FrameTab.qml:207, Modules/Settings/Widgets/SettingsColorPicker.qml:42", "comment": "blur border color | button color option | color option | primary color | shadow color option | tile color option" }, { @@ -11504,7 +11594,7 @@ { "term": "Printers", "context": "Printers", - "reference": "Modals/Settings/SettingsSidebar.qml:285, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", + "reference": "Modals/Settings/SettingsSidebar.qml:306, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", "comment": "" }, { @@ -11528,7 +11618,7 @@ { "term": "Privacy Indicator", "context": "Privacy Indicator", - "reference": "Modules/Settings/WidgetsTab.qml:155", + "reference": "Modules/Settings/WidgetsTab.qml:157", "comment": "" }, { @@ -11606,13 +11696,13 @@ { "term": "Profile not found", "context": "Profile not found", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:331, Modules/Settings/DisplayConfig/DisplayConfigState.qml:641", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:333, Modules/Settings/DisplayConfig/DisplayConfigState.qml:634", "comment": "" }, { "term": "Profile not found in monitors.json", "context": "Profile not found in monitors.json", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:690", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:683", "comment": "" }, { @@ -11624,7 +11714,7 @@ { "term": "Protocol", "context": "Protocol", - "reference": "Widgets/VpnProfileDelegate.qml:66, Modules/Settings/PrinterTab.qml:549, Modules/Settings/NetworkTab.qml:1924", + "reference": "Widgets/VpnProfileDelegate.qml:66, Modules/Settings/PrinterTab.qml:549, Modules/Settings/NetworkTab.qml:1828", "comment": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket" }, { @@ -11672,19 +11762,19 @@ { "term": "Quick access to application launcher", "context": "Quick access to application launcher", - "reference": "Modules/Settings/WidgetsTab.qml:46", + "reference": "Modules/Settings/WidgetsTab.qml:48", "comment": "" }, { "term": "Quick access to color picker", "context": "Quick access to color picker", - "reference": "Modules/Settings/WidgetsTab.qml:240", + "reference": "Modules/Settings/WidgetsTab.qml:242", "comment": "" }, { "term": "Quick access to notepad", "context": "Quick access to notepad", - "reference": "Modules/Settings/WidgetsTab.qml:233", + "reference": "Modules/Settings/WidgetsTab.qml:235", "comment": "" }, { @@ -11708,7 +11798,7 @@ { "term": "Radius", "context": "Radius", - "reference": "Modules/Settings/WindowRulesTab.qml:98", + "reference": "Modules/Settings/WindowRulesTab.qml:108", "comment": "" }, { @@ -11738,7 +11828,7 @@ { "term": "Rate", "context": "Rate", - "reference": "Modules/Settings/NetworkTab.qml:1429", + "reference": "Modules/Settings/NetworkTab.qml:1365", "comment": "" }, { @@ -11798,7 +11888,7 @@ { "term": "Refresh", "context": "Refresh", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:296, Modules/Settings/GreeterTab.qml:502, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:110, Modules/DankDash/Overview/WeatherOverviewCard.qml:38", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:296, Modules/Settings/GreeterTab.qml:502, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:110, Modules/DankDash/Overview/WeatherOverviewCard.qml:46", "comment": "Phone Connect refresh tooltip | Refresh Tailscale device status" }, { @@ -11808,8 +11898,8 @@ "comment": "" }, { - "term": "Refreshing…", - "context": "Refreshing…", + "term": "Refreshing...", + "context": "Refreshing...", "reference": "Modules/Settings/UsersTab.qml:142", "comment": "" }, @@ -11906,7 +11996,7 @@ { "term": "Remove Widget Padding", "context": "Remove Widget Padding", - "reference": "Modules/Settings/DankBarTab.qml:1078", + "reference": "Modules/Settings/DankBarTab.qml:1134", "comment": "" }, { @@ -11924,13 +12014,13 @@ { "term": "Remove corner rounding from the bar", "context": "Remove corner rounding from the bar", - "reference": "Modules/Settings/DankBarTab.qml:1041", + "reference": "Modules/Settings/DankBarTab.qml:1097", "comment": "" }, { "term": "Remove gaps and border when windows are maximized", "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:1146", + "reference": "Modules/Settings/DankBarTab.qml:1202", "comment": "" }, { @@ -11948,13 +12038,13 @@ { "term": "Remove inner padding from all widgets", "context": "Remove inner padding from all widgets", - "reference": "Modules/Settings/DankBarTab.qml:1079", + "reference": "Modules/Settings/DankBarTab.qml:1135", "comment": "" }, { "term": "Remove match", "context": "Remove match", - "reference": "Modals/WindowRuleModal.qml:750", + "reference": "Modals/WindowRuleModal.qml:810", "comment": "" }, { @@ -12032,19 +12122,19 @@ { "term": "Required plugin: ", "context": "Required plugin: ", - "reference": "Modules/Settings/ThemeColorsTab.qml:2757", + "reference": "Modules/Settings/ThemeColorsTab.qml:2459", "comment": "" }, { "term": "Requires %1", "context": "Requires %1", - "reference": "Modules/Settings/PluginBrowser.qml:997", + "reference": "Modules/Settings/PluginBrowser.qml:996", "comment": "version requirement" }, { "term": "Requires 'dgop' tool", "context": "Requires 'dgop' tool", - "reference": "Modules/Settings/WidgetsTab.qml:112, Modules/Settings/WidgetsTab.qml:120, Modules/Settings/WidgetsTab.qml:128, Modules/Settings/WidgetsTab.qml:136, Modules/Settings/WidgetsTab.qml:143, Modules/Settings/WidgetsTab.qml:221, Modules/ControlCenter/Models/WidgetModel.qml:234", + "reference": "Modules/Settings/WidgetsTab.qml:114, Modules/Settings/WidgetsTab.qml:122, Modules/Settings/WidgetsTab.qml:130, Modules/Settings/WidgetsTab.qml:138, Modules/Settings/WidgetsTab.qml:145, Modules/Settings/WidgetsTab.qml:223, Modules/ControlCenter/Models/WidgetModel.qml:234", "comment": "" }, { @@ -12056,13 +12146,13 @@ { "term": "Requires DMS server with sysupdate capability", "context": "Requires DMS server with sysupdate capability", - "reference": "Modules/Settings/WidgetsTab.qml:250", + "reference": "Modules/Settings/WidgetsTab.qml:252", "comment": "" }, { - "term": "Requires DWL compositor", - "context": "Requires DWL compositor", - "reference": "Modules/Settings/WidgetsTab.qml:41", + "term": "Requires MangoWC compositor", + "context": "Requires MangoWC compositor", + "reference": "Modules/Settings/WidgetsTab.qml:43", "comment": "" }, { @@ -12086,7 +12176,7 @@ { "term": "Reset", "context": "Reset", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:1000, Modules/Settings/WidgetsTab.qml:964, Modules/Settings/KeybindsTab.qml:122, Modules/ControlCenter/Components/EditControls.qml:306", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:1000, Modules/Settings/WidgetsTab.qml:990, Modules/Settings/KeybindsTab.qml:122, Modules/ControlCenter/Components/EditControls.qml:306", "comment": "" }, { @@ -12125,6 +12215,18 @@ "reference": "Modules/Settings/DesktopWidgetsTab.qml:690", "comment": "" }, + { + "term": "Resize on Border", + "context": "Resize on Border", + "reference": "Modules/Settings/CompositorLayoutTab.qml:219", + "comment": "" + }, + { + "term": "Resize windows by dragging their edges with the mouse", + "context": "Resize windows by dragging their edges with the mouse", + "reference": "Modules/Settings/CompositorLayoutTab.qml:220", + "comment": "" + }, { "term": "Resolution & Refresh", "context": "Resolution & Refresh", @@ -12182,25 +12284,25 @@ { "term": "Reverse Scrolling Direction", "context": "Reverse Scrolling Direction", - "reference": "Modules/Settings/WorkspacesTab.qml:161", + "reference": "Modules/Settings/WorkspacesTab.qml:173", "comment": "" }, { "term": "Reverse workspace switch direction when scrolling over the bar", "context": "Reverse workspace switch direction when scrolling over the bar", - "reference": "Modules/Settings/WorkspacesTab.qml:162", + "reference": "Modules/Settings/WorkspacesTab.qml:174", "comment": "" }, { "term": "Revert", "context": "Revert", - "reference": "Modals/DisplayConfirmationModal.qml:139", + "reference": "Modals/DisplayConfirmationModal.qml:140", "comment": "" }, { "term": "Right", "context": "Right", - "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:293, Modules/Settings/DankBarTab.qml:438", + "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:339, Modules/Settings/DankBarTab.qml:484", "comment": "" }, { @@ -12212,13 +12314,13 @@ { "term": "Right Section", "context": "Right Section", - "reference": "Modules/Settings/WidgetSelectionPopup.qml:29, Modules/Settings/WidgetsTab.qml:1170", + "reference": "Modules/Settings/WidgetSelectionPopup.qml:29, Modules/Settings/WidgetsTab.qml:1196", "comment": "" }, { "term": "Right Tiling", "context": "Right Tiling", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:51", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:53", "comment": "" }, { @@ -12236,7 +12338,7 @@ { "term": "Right-click bar widget to cycle", "context": "Right-click bar widget to cycle", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:292", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:294", "comment": "" }, { @@ -12266,43 +12368,31 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:2019", - "comment": "" - }, - { - "term": "Rounded corners for windows (border_radius)", - "context": "Rounded corners for windows (border_radius)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2225", - "comment": "" - }, - { - "term": "Rounded corners for windows (decoration.rounding)", - "context": "Rounded corners for windows (decoration.rounding)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2122", + "reference": "Modules/Settings/CompositorLayoutTab.qml:80, Modules/Settings/CompositorLayoutTab.qml:177, Modules/Settings/CompositorLayoutTab.qml:283", "comment": "" }, { "term": "Rule", "context": "Rule", - "reference": "Modals/WindowRuleModal.qml:374, Modules/Settings/NotificationsTab.qml:479", + "reference": "Modals/WindowRuleModal.qml:430, Modules/Settings/NotificationsTab.qml:479", "comment": "" }, { "term": "Rule Name", "context": "Rule Name", - "reference": "Modals/WindowRuleModal.qml:634", + "reference": "Modals/WindowRuleModal.qml:694", "comment": "" }, { "term": "Rules (%1)", "context": "Rules (%1)", - "reference": "Modules/Settings/WindowRulesTab.qml:567", + "reference": "Modules/Settings/WindowRulesTab.qml:559", "comment": "" }, { "term": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.", "context": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.", - "reference": "Modules/Settings/WindowRulesTab.qml:855", + "reference": "Modules/Settings/WindowRulesTab.qml:847", "comment": "" }, { @@ -12314,13 +12404,13 @@ { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2561", + "reference": "Modules/Settings/ThemeColorsTab.qml:2263", "comment": "" }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2551", + "reference": "Modules/Settings/ThemeColorsTab.qml:2253", "comment": "" }, { @@ -12344,7 +12434,7 @@ { "term": "Running Apps", "context": "Running Apps", - "reference": "Modals/Settings/SettingsSidebar.qml:244, Modules/Settings/WidgetsTab.qml:66", + "reference": "Modals/Settings/SettingsSidebar.qml:258, Modules/Settings/WidgetsTab.qml:68", "comment": "" }, { @@ -12354,8 +12444,8 @@ "comment": "" }, { - "term": "Running greeter sync…", - "context": "Running greeter sync…", + "term": "Running greeter sync...", + "context": "Running greeter sync...", "reference": "Modules/Settings/GreeterTab.qml:330", "comment": "" }, @@ -12368,13 +12458,13 @@ { "term": "SDR Brightness", "context": "SDR Brightness", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1935", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2049", "comment": "" }, { "term": "SDR Saturation", "context": "SDR Saturation", - "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1937", + "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2051", "comment": "" }, { @@ -12386,7 +12476,7 @@ { "term": "Saturation", "context": "Saturation", - "reference": "Modals/WindowRuleModal.qml:1226, Modules/Settings/WindowRulesTab.qml:123", + "reference": "Modals/WindowRuleModal.qml:1293, Modules/Settings/WindowRulesTab.qml:133", "comment": "" }, { @@ -12458,13 +12548,13 @@ { "term": "Saved", "context": "Saved", - "reference": "Modals/Clipboard/ClipboardHeader.qml:54, Modules/Notepad/NotepadTextEditor.qml:869, Modules/Settings/NetworkTab.qml:1208, Modules/ControlCenter/Details/NetworkDetail.qml:621", + "reference": "Modals/Clipboard/ClipboardHeader.qml:54, Modules/Notepad/NotepadTextEditor.qml:869, Modules/Settings/NetworkTab.qml:1176, Modules/ControlCenter/Details/NetworkDetail.qml:621", "comment": "" }, { "term": "Saved Configurations", "context": "Saved Configurations", - "reference": "Modules/Settings/NetworkTab.qml:703", + "reference": "Modules/Settings/NetworkTab.qml:671", "comment": "" }, { @@ -12482,25 +12572,25 @@ { "term": "Saving...", "context": "Saving...", - "reference": "Modals/WindowRuleModal.qml:1586", + "reference": "Modals/WindowRuleModal.qml:1875", "comment": "" }, { "term": "Scale", "context": "Scale", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1905", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2019", "comment": "" }, { "term": "Scale DankBar font sizes independently", "context": "Scale DankBar font sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:978", + "reference": "Modules/Settings/DankBarTab.qml:1027", "comment": "" }, { "term": "Scale DankBar icon sizes independently", "context": "Scale DankBar icon sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1003", + "reference": "Modules/Settings/DankBarTab.qml:1054", "comment": "" }, { @@ -12524,7 +12614,7 @@ { "term": "Scanning...", "context": "Scanning...", - "reference": "Modules/Settings/PrinterTab.qml:439, Modules/Settings/NetworkTab.qml:1063", + "reference": "Modules/Settings/PrinterTab.qml:439, Modules/Settings/NetworkTab.qml:1031", "comment": "" }, { @@ -12548,13 +12638,13 @@ { "term": "Scroll", "context": "Scroll", - "reference": "Modules/Settings/WindowRulesTab.qml:97", + "reference": "Modules/Settings/WindowRulesTab.qml:107", "comment": "" }, { "term": "Scroll Factor", "context": "Scroll Factor", - "reference": "Modals/WindowRuleModal.qml:1122", + "reference": "Modals/WindowRuleModal.qml:1188", "comment": "" }, { @@ -12566,7 +12656,7 @@ { "term": "Scroll Wheel", "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:60, Modules/Settings/DankBarTab.qml:1681", + "reference": "Modules/Settings/MediaPlayerTab.qml:60, Modules/Settings/DankBarTab.qml:1745", "comment": "" }, { @@ -12590,7 +12680,7 @@ { "term": "Scrolling", "context": "Scrolling", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:52", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:54", "comment": "" }, { @@ -12650,7 +12740,7 @@ { "term": "Search plugins...", "context": "Search plugins...", - "reference": "Modules/Settings/PluginBrowser.qml:555", + "reference": "Modules/Settings/PluginBrowser.qml:577", "comment": "plugin search placeholder" }, { @@ -12680,7 +12770,7 @@ { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:319, Modals/Settings/SettingsSidebar.qml:679, Modules/ProcessList/ProcessListPopout.qml:185", + "reference": "Widgets/DankDropdown.qml:319, Modals/Settings/SettingsSidebar.qml:699, Modules/ProcessList/ProcessListPopout.qml:185", "comment": "" }, { @@ -12704,19 +12794,19 @@ { "term": "Secondary", "context": "Secondary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1587, Modules/Settings/ThemeColorsTab.qml:1597, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1629, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1917, Modules/Settings/ThemeColorsTab.qml:1929, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:722, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1587, Modules/Settings/ThemeColorsTab.qml:1597, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1629, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1917, Modules/Settings/ThemeColorsTab.qml:1929, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:722, Modules/Settings/DankBarTab.qml:1228, Modules/Settings/DankBarTab.qml:1674, Modules/Settings/WorkspaceAppearanceCard.qml:187, Modules/Settings/Widgets/SettingsColorPicker.qml:47", "comment": "blur border color | button color option | color option | secondary color | tile color option" }, { "term": "Secured", "context": "Secured", - "reference": "Modules/Settings/NetworkTab.qml:1195, Modules/ControlCenter/Details/NetworkDetail.qml:615", + "reference": "Modules/Settings/NetworkTab.qml:1163, Modules/ControlCenter/Details/NetworkDetail.qml:615", "comment": "" }, { "term": "Security", "context": "Security", - "reference": "Modules/Settings/NetworkTab.qml:1443", + "reference": "Modules/Settings/NetworkTab.qml:1379", "comment": "" }, { @@ -12758,13 +12848,13 @@ { "term": "Select Bar", "context": "Select Bar", - "reference": "Modules/Settings/WidgetsTab.qml:879", + "reference": "Modules/Settings/WidgetsTab.qml:905", "comment": "" }, { "term": "Select Custom Theme", "context": "Select Custom Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:3064", + "reference": "Modules/Settings/ThemeColorsTab.qml:2766", "comment": "custom theme file browser title" }, { @@ -12836,7 +12926,7 @@ { "term": "Select a window...", "context": "Select a window...", - "reference": "Modules/Settings/WindowRulesTab.qml:455", + "reference": "Modules/Settings/WindowRulesTab.qml:447", "comment": "" }, { @@ -12860,7 +12950,7 @@ { "term": "Select device", "context": "Select device", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:486, Modules/ControlCenter/Components/DragDropGrid.qml:497", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:539, Modules/ControlCenter/Components/DragDropGrid.qml:550", "comment": "audio status" }, { @@ -12902,7 +12992,7 @@ { "term": "Select network", "context": "Select network", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:458", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:511", "comment": "network status" }, { @@ -12992,13 +13082,13 @@ { "term": "Separator", "context": "Separator", - "reference": "Modules/Settings/WidgetsTab.qml:211", + "reference": "Modules/Settings/WidgetsTab.qml:213", "comment": "" }, { "term": "Server", "context": "Server", - "reference": "Widgets/VpnProfileDelegate.qml:42, Modules/Settings/NetworkTab.qml:1904", + "reference": "Widgets/VpnProfileDelegate.qml:42, Modules/Settings/NetworkTab.qml:1808", "comment": "" }, { @@ -13070,7 +13160,7 @@ { "term": "Settings", "context": "Settings", - "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:324, Services/AppSearchService.qml:680, Services/PopoutService.qml:410, Services/PopoutService.qml:427, Modals/DankLauncherV2/Controller.qml:214, Modals/Settings/SettingsSidebar.qml:114, Modals/Settings/SettingsModal.qml:88, Modals/Settings/SettingsModal.qml:228, Modules/DankDash/DankDashPopout.qml:301, Modules/Dock/DockTrashContextMenu.qml:48", + "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:324, Services/AppSearchService.qml:680, Services/PopoutService.qml:410, Services/PopoutService.qml:427, Modals/DankLauncherV2/Controller.qml:214, Modals/Settings/SettingsSidebar.qml:122, Modals/Settings/SettingsModal.qml:88, Modals/Settings/SettingsModal.qml:228, Modules/DankDash/DankDashPopout.qml:301, Modules/Dock/DockTrashContextMenu.qml:48", "comment": "settings window title" }, { @@ -13088,7 +13178,7 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2384, Modules/Settings/WindowRulesTab.qml:532, Modules/Settings/KeybindsTab.qml:428, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:88", + "reference": "Modules/Settings/ThemeColorsTab.qml:2075, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:428, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:88", "comment": "" }, { @@ -13112,13 +13202,13 @@ { "term": "Shadow Override", "context": "Shadow Override", - "reference": "Modules/Settings/DankBarTab.qml:1449", + "reference": "Modules/Settings/DankBarTab.qml:1511", "comment": "bar shadow settings card" }, { "term": "Shadow blur radius in pixels", "context": "Shadow blur radius in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1489", + "reference": "Modules/Settings/DankBarTab.qml:1551", "comment": "" }, { @@ -13226,13 +13316,13 @@ { "term": "Show 3rd Party", "context": "Show 3rd Party", - "reference": "Modules/Settings/PluginBrowser.qml:483", + "reference": "Modules/Settings/PluginBrowser.qml:505", "comment": "" }, { "term": "Show All Tags", "context": "Show All Tags", - "reference": "Modules/Settings/WorkspacesTab.qml:181", + "reference": "Modules/Settings/WorkspacesTab.qml:193", "comment": "" }, { @@ -13424,7 +13514,7 @@ { "term": "Show Occupied Workspaces Only", "context": "Show Occupied Workspaces Only", - "reference": "Modules/Settings/WorkspacesTab.qml:151", + "reference": "Modules/Settings/WorkspacesTab.qml:163", "comment": "" }, { @@ -13574,19 +13664,19 @@ { "term": "Show Workspace Apps", "context": "Show Workspace Apps", - "reference": "Modules/Settings/WorkspacesTab.qml:59", + "reference": "Modules/Settings/WorkspacesTab.qml:61", "comment": "" }, { - "term": "Show all 9 tags instead of only occupied tags (DWL only)", - "context": "Show all 9 tags instead of only occupied tags (DWL only)", - "reference": "Modules/Settings/WorkspacesTab.qml:182", + "term": "Show all 9 tags instead of only occupied tags", + "context": "Show all 9 tags instead of only occupied tags", + "reference": "Modules/Settings/WorkspacesTab.qml:194", "comment": "" }, { "term": "Show an outline ring around the focused workspace indicator", "context": "Show an outline ring around the focused workspace indicator", - "reference": "Modules/Settings/WorkspacesTab.qml:355", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:173", "comment": "" }, { @@ -13598,7 +13688,7 @@ { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:2286", + "reference": "Modules/Settings/ThemeColorsTab.qml:1977", "comment": "" }, { @@ -13670,7 +13760,7 @@ { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:523", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:569", "comment": "" }, { @@ -13682,7 +13772,7 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DockTab.qml:85, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:721, Modules/Settings/FrameTab.qml:347", + "reference": "Modules/Settings/DockTab.qml:85, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:767, Modules/Settings/FrameTab.qml:347", "comment": "" }, { @@ -13760,13 +13850,13 @@ { "term": "Show the bar only when no windows are open", "context": "Show the bar only when no windows are open", - "reference": "Modules/Settings/DankBarTab.qml:664", + "reference": "Modules/Settings/DankBarTab.qml:710", "comment": "" }, { "term": "Show the bar when niri overview is active", "context": "Show the bar when niri overview is active", - "reference": "Modules/Settings/DankBarTab.qml:722", + "reference": "Modules/Settings/DankBarTab.qml:768", "comment": "" }, { @@ -13784,43 +13874,43 @@ { "term": "Show workspace index numbers in the top bar workspace switcher", "context": "Show workspace index numbers in the top bar workspace switcher", - "reference": "Modules/Settings/WorkspacesTab.qml:33", + "reference": "Modules/Settings/WorkspacesTab.qml:35", "comment": "" }, { "term": "Show workspace name on horizontal bars, and first letter on vertical bars", "context": "Show workspace name on horizontal bars, and first letter on vertical bars", - "reference": "Modules/Settings/WorkspacesTab.qml:42", + "reference": "Modules/Settings/WorkspacesTab.qml:44", "comment": "" }, { "term": "Show workspaces of the currently focused monitor", "context": "Show workspaces of the currently focused monitor", - "reference": "Modules/Settings/WorkspacesTab.qml:142", + "reference": "Modules/Settings/WorkspacesTab.qml:154", "comment": "" }, { "term": "Shows all running applications with focus indication", "context": "Shows all running applications with focus indication", - "reference": "Modules/Settings/WidgetsTab.qml:67", + "reference": "Modules/Settings/WidgetsTab.qml:69", "comment": "" }, { "term": "Shows current workspace and allows switching", "context": "Shows current workspace and allows switching", - "reference": "Modules/Settings/WidgetsTab.qml:53", + "reference": "Modules/Settings/WidgetsTab.qml:55", "comment": "" }, { "term": "Shows when caps lock is active", "context": "Shows when caps lock is active", - "reference": "Modules/Settings/WidgetsTab.qml:198", + "reference": "Modules/Settings/WidgetsTab.qml:200", "comment": "" }, { "term": "Shows when microphone, camera, or screen sharing is active", "context": "Shows when microphone, camera, or screen sharing is active", - "reference": "Modules/Settings/WidgetsTab.qml:156", + "reference": "Modules/Settings/WidgetsTab.qml:158", "comment": "" }, { @@ -13838,13 +13928,13 @@ { "term": "Signal", "context": "Signal", - "reference": "Modules/Settings/NetworkTab.qml:1414", + "reference": "Modules/Settings/NetworkTab.qml:1350", "comment": "" }, { "term": "Signal:", "context": "Signal:", - "reference": "Modules/Settings/NetworkTab.qml:961", + "reference": "Modules/Settings/NetworkTab.qml:929", "comment": "" }, { @@ -13862,13 +13952,13 @@ { "term": "Size", "context": "Size", - "reference": "Modals/WindowRuleModal.qml:1421, Modals/DankLauncherV2/LauncherContent.qml:697, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:709, Modules/Settings/LauncherTab.qml:614, Modules/Settings/DankBarTab.qml:812, Modules/Settings/FrameTab.qml:125, Modules/Settings/WindowRulesTab.qml:115", + "reference": "Modals/WindowRuleModal.qml:1585, Modals/WindowRuleModal.qml:1797, Modals/DankLauncherV2/LauncherContent.qml:697, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:709, Modules/Settings/LauncherTab.qml:614, Modules/Settings/DankBarTab.qml:858, Modules/Settings/FrameTab.qml:125, Modules/Settings/WindowRulesTab.qml:125", "comment": "launcher size option" }, { "term": "Size Constraints", "context": "Size Constraints", - "reference": "Modals/WindowRuleModal.qml:1243", + "reference": "Modals/WindowRuleModal.qml:1405", "comment": "" }, { @@ -13970,49 +14060,37 @@ { "term": "Sounds", "context": "Sounds", - "reference": "Modals/Settings/SettingsSidebar.qml:100", + "reference": "Modals/Settings/SettingsSidebar.qml:101", "comment": "" }, { "term": "Source: %1", "context": "Source: %1", - "reference": "Modules/Settings/WindowRulesTab.qml:1080", + "reference": "Modules/Settings/WindowRulesTab.qml:1072", "comment": "" }, { "term": "Space between the bar and screen edges", "context": "Space between the bar and screen edges", - "reference": "Modules/Settings/DankBarTab.qml:769", + "reference": "Modules/Settings/DankBarTab.qml:815", "comment": "" }, { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1988", - "comment": "" - }, - { - "term": "Space between windows (gappih/gappiv/gappoh/gappov)", - "context": "Space between windows (gappih/gappiv/gappoh/gappov)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2194", - "comment": "" - }, - { - "term": "Space between windows (gaps_in and gaps_out)", - "context": "Space between windows (gaps_in and gaps_out)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2091", + "reference": "Modules/Settings/CompositorLayoutTab.qml:51, Modules/Settings/CompositorLayoutTab.qml:148, Modules/Settings/CompositorLayoutTab.qml:254", "comment": "" }, { "term": "Spacer", "context": "Spacer", - "reference": "Modules/Settings/WidgetsTab.qml:204", + "reference": "Modules/Settings/WidgetsTab.qml:206", "comment": "" }, { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:605, Modules/Settings/DankBarTab.qml:762", + "reference": "Modules/Settings/DockTab.qml:605, Modules/Settings/DankBarTab.qml:808", "comment": "" }, { @@ -14060,7 +14138,7 @@ { "term": "Square Corners", "context": "Square Corners", - "reference": "Modules/Settings/DankBarTab.qml:1040", + "reference": "Modules/Settings/DankBarTab.qml:1096", "comment": "" }, { @@ -14144,19 +14222,19 @@ { "term": "Stretch widget icons to fill the available bar height", "context": "Stretch widget icons to fill the available bar height", - "reference": "Modules/Settings/DankBarTab.qml:1061", + "reference": "Modules/Settings/DankBarTab.qml:1117", "comment": "" }, { "term": "Stretch widget text to fill the available bar height", "context": "Stretch widget text to fill the available bar height", - "reference": "Modules/Settings/DankBarTab.qml:1070", + "reference": "Modules/Settings/DankBarTab.qml:1126", "comment": "" }, { "term": "Strict auto-hide", "context": "Strict auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:649", + "reference": "Modules/Settings/DankBarTab.qml:695", "comment": "Dank bar setting: hide the bar when the pointer leaves even if a menu or bar popover is still open" }, { @@ -14198,7 +14276,7 @@ { "term": "Surface", "context": "Surface", - "reference": "Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207", + "reference": "Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1674, Modules/Settings/WorkspaceAppearanceCard.qml:187, Modules/Settings/FrameTab.qml:207", "comment": "color option | shadow color option" }, { @@ -14210,7 +14288,7 @@ { "term": "Surface Opacity", "context": "Surface Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1642, Modules/Settings/ThemeColorsTab.qml:1650, Modules/Settings/FrameTab.qml:146", + "reference": "Modules/Settings/FrameTab.qml:146", "comment": "" }, { @@ -14288,7 +14366,7 @@ { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:2304", + "reference": "Modules/Settings/ThemeColorsTab.qml:1995", "comment": "" }, { @@ -14312,7 +14390,7 @@ { "term": "Sync dark mode with settings portals for system-wide theme hints", "context": "Sync dark mode with settings portals for system-wide theme hints", - "reference": "Modules/Settings/ThemeColorsTab.qml:2305", + "reference": "Modules/Settings/ThemeColorsTab.qml:1996", "comment": "" }, { @@ -14330,13 +14408,13 @@ { "term": "System", "context": "System", - "reference": "Modals/ProcessListModal.qml:320, Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:681, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:260, Modules/ProcessList/ProcessListPopout.qml:155", + "reference": "Modals/ProcessListModal.qml:320, Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:681, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:281, Modules/ProcessList/ProcessListPopout.qml:155", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:2962", + "reference": "Modules/Settings/ThemeColorsTab.qml:2664", "comment": "" }, { @@ -14360,7 +14438,7 @@ { "term": "System Monitor", "context": "System Monitor", - "reference": "Modals/ProcessListModal.qml:52, Modals/ProcessListModal.qml:86, Modals/ProcessListModal.qml:262, Services/AppSearchService.qml:193, Services/DesktopWidgetRegistry.qml:54", + "reference": "Modals/ProcessListModal.qml:52, Modals/ProcessListModal.qml:86, Modals/ProcessListModal.qml:262, Services/AppSearchService.qml:193, Services/DesktopWidgetRegistry.qml:53", "comment": "System monitor widget name | sysmon window title" }, { @@ -14378,25 +14456,25 @@ { "term": "System Tray", "context": "System Tray", - "reference": "Modules/Settings/WidgetsTab.qml:148", + "reference": "Modules/Settings/WidgetsTab.qml:150", "comment": "" }, { "term": "System Tray Icon Tint", "context": "System Tray Icon Tint", - "reference": "Modules/Settings/DankBarTab.qml:1156", + "reference": "Modules/Settings/DankBarTab.qml:1213", "comment": "" }, { "term": "System Update", "context": "System Update", - "reference": "Modules/Settings/WidgetsTab.qml:246", + "reference": "Modules/Settings/WidgetsTab.qml:248", "comment": "" }, { "term": "System Updater", "context": "System Updater", - "reference": "Modals/Settings/SettingsSidebar.qml:298, Modules/Settings/SystemUpdaterTab.qml:67", + "reference": "Modals/Settings/SettingsSidebar.qml:319, Modules/Settings/SystemUpdaterTab.qml:67", "comment": "" }, { @@ -14408,7 +14486,7 @@ { "term": "System notification area icons", "context": "System notification area icons", - "reference": "Modules/Settings/WidgetsTab.qml:149", + "reference": "Modules/Settings/WidgetsTab.qml:151", "comment": "" }, { @@ -14447,6 +14525,12 @@ "reference": "Modals/FileBrowser/KeyboardHints.qml:26", "comment": "" }, + { + "term": "Tags", + "context": "Tags", + "reference": "Modals/WindowRuleModal.qml:1737", + "comment": "" + }, { "term": "Tags: %1", "context": "Tags: %1", @@ -14528,7 +14612,7 @@ { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2314", + "reference": "Modules/Settings/ThemeColorsTab.qml:2005", "comment": "" }, { @@ -14594,7 +14678,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:2951", + "reference": "Modules/Settings/ThemeColorsTab.qml:2653", "comment": "" }, { @@ -14612,13 +14696,13 @@ { "term": "The rule applies to any window matching one of these.", "context": "The rule applies to any window matching one of these.", - "reference": "Modals/WindowRuleModal.qml:697", + "reference": "Modals/WindowRuleModal.qml:757", "comment": "" }, { "term": "Theme & Colors", "context": "Theme & Colors", - "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:82", + "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:83", "comment": "greeter settings link" }, { @@ -14636,13 +14720,13 @@ { "term": "Theme color used for the border", "context": "Theme color used for the border", - "reference": "Modules/Settings/DankBarTab.qml:1264", + "reference": "Modules/Settings/DankBarTab.qml:1323", "comment": "" }, { "term": "Theme color used for the widget outline", "context": "Theme color used for the widget outline", - "reference": "Modules/Settings/DankBarTab.qml:1357", + "reference": "Modules/Settings/DankBarTab.qml:1418", "comment": "" }, { @@ -14666,7 +14750,7 @@ { "term": "Thickness", "context": "Thickness", - "reference": "Modules/Settings/LauncherTab.qml:690, Modules/Settings/WorkspacesTab.qml:403, Modules/Settings/DankBarTab.qml:1324, Modules/Settings/DankBarTab.qml:1417", + "reference": "Modules/Settings/LauncherTab.qml:690, Modules/Settings/DankBarTab.qml:1383, Modules/Settings/DankBarTab.qml:1478, Modules/Settings/WorkspaceAppearanceCard.qml:221", "comment": "border thickness" }, { @@ -14678,13 +14762,13 @@ { "term": "Third-Party Plugin Warning", "context": "Third-Party Plugin Warning", - "reference": "Modules/Settings/PluginBrowser.qml:1140, Modules/Settings/PluginBrowser.qml:1174", + "reference": "Modules/Settings/PluginBrowser.qml:1139, Modules/Settings/PluginBrowser.qml:1173", "comment": "" }, { "term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", "context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", - "reference": "Modules/Settings/PluginBrowser.qml:1198", + "reference": "Modules/Settings/PluginBrowser.qml:1197", "comment": "" }, { @@ -14708,19 +14792,19 @@ { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.", - "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:66, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1475", + "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:66, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1467", "comment": "" }, { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.", - "reference": "Services/KeybindsService.qml:539, Modules/Settings/KeybindsTab.qml:402", + "reference": "Services/KeybindsService.qml:548, Modules/Settings/KeybindsTab.qml:402", "comment": "" }, { "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.", "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.", - "reference": "Modules/Settings/WindowRulesTab.qml:354, Modules/Settings/WindowRulesTab.qml:520", + "reference": "Modules/Settings/WindowRulesTab.qml:344, Modules/Settings/WindowRulesTab.qml:512", "comment": "" }, { @@ -14744,7 +14828,7 @@ { "term": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.", "context": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.", - "reference": "Modules/Settings/WidgetsTab.qml:143", + "reference": "Modules/Settings/WidgetsTab.qml:145", "comment": "" }, { @@ -14780,7 +14864,7 @@ { "term": "Tile", "context": "Tile", - "reference": "Modals/WindowRuleModal.qml:1371, Modules/Settings/WallpaperTab.qml:312, Modules/Settings/WindowRulesTab.qml:105", + "reference": "Modals/WindowRuleModal.qml:1535, Modules/Settings/WallpaperTab.qml:312, Modules/Settings/WindowRulesTab.qml:115", "comment": "wallpaper fill mode" }, { @@ -14798,19 +14882,19 @@ { "term": "Tiled", "context": "Tiled", - "reference": "Modules/Settings/WindowRulesTab.qml:100", + "reference": "Modules/Settings/WindowRulesTab.qml:110", "comment": "" }, { "term": "Tiled State", "context": "Tiled State", - "reference": "Modals/WindowRuleModal.qml:1057", + "reference": "Modals/WindowRuleModal.qml:1123", "comment": "" }, { "term": "Tiling", "context": "Tiling", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:53", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:55", "comment": "" }, { @@ -14828,7 +14912,7 @@ { "term": "Time & Weather", "context": "Time & Weather", - "reference": "Modals/Settings/SettingsSidebar.qml:94", + "reference": "Modals/Settings/SettingsSidebar.qml:95", "comment": "" }, { @@ -14846,7 +14930,7 @@ { "term": "Time to wait before hiding after the pointer leaves", "context": "Time to wait before hiding after the pointer leaves", - "reference": "Modules/Settings/DankBarTab.qml:627", + "reference": "Modules/Settings/DankBarTab.qml:673", "comment": "" }, { @@ -14882,25 +14966,31 @@ { "term": "Tint Saturation", "context": "Tint Saturation", - "reference": "Modules/Settings/DankBarTab.qml:1208", + "reference": "Modules/Settings/DankBarTab.qml:1265", "comment": "" }, { "term": "Tint Strength", "context": "Tint Strength", - "reference": "Modules/Settings/DankBarTab.qml:1231", + "reference": "Modules/Settings/DankBarTab.qml:1288", "comment": "" }, { "term": "Title", "context": "Title", - "reference": "Widgets/KeybindItem.qml:1556, Modules/Settings/WindowRulesTab.qml:36", + "reference": "Widgets/KeybindItem.qml:1556, Modules/Settings/WindowRulesTab.qml:46", + "comment": "" + }, + { + "term": "Title (optional)", + "context": "Title (optional)", + "reference": "Modals/WindowRuleModal.qml:729", "comment": "" }, { "term": "Title regex (optional)", "context": "Title regex (optional)", - "reference": "Modals/WindowRuleModal.qml:669, Modals/WindowRuleModal.qml:734", + "reference": "Modals/WindowRuleModal.qml:729, Modals/WindowRuleModal.qml:794", "comment": "" }, { @@ -14918,7 +15008,7 @@ { "term": "To update, run the following command:", "context": "To update, run the following command:", - "reference": "Services/DMSService.qml:321", + "reference": "Services/DMSService.qml:320", "comment": "" }, { @@ -14942,7 +15032,7 @@ { "term": "Toggle bar visibility manually via IPC", "context": "Toggle bar visibility manually via IPC", - "reference": "Modules/Settings/DankBarTab.qml:683", + "reference": "Modules/Settings/DankBarTab.qml:729", "comment": "" }, { @@ -14954,13 +15044,13 @@ { "term": "Toggle visibility of this bar configuration", "context": "Toggle visibility of this bar configuration", - "reference": "Modules/Settings/DankBarTab.qml:416", + "reference": "Modules/Settings/DankBarTab.qml:462", "comment": "" }, { "term": "Toggling...", "context": "Toggling...", - "reference": "Modules/Settings/NetworkTab.qml:817", + "reference": "Modules/Settings/NetworkTab.qml:785", "comment": "" }, { @@ -15008,7 +15098,7 @@ { "term": "Top", "context": "Top", - "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:287, Modules/Settings/DankBarTab.qml:295, Modules/Settings/DankBarTab.qml:438, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1562, Modules/Settings/FrameTab.qml:316", + "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:333, Modules/Settings/DankBarTab.qml:341, Modules/Settings/DankBarTab.qml:484, Modules/Settings/DankBarTab.qml:1616, Modules/Settings/DankBarTab.qml:1626, Modules/Settings/FrameTab.qml:316", "comment": "shadow direction option" }, { @@ -15032,7 +15122,7 @@ { "term": "Top Left", "context": "Top Left", - "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1765, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1556, Modules/Settings/DankBarTab.qml:1566, 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:154", + "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1765, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/DankBarTab.qml:1616, Modules/Settings/DankBarTab.qml:1620, Modules/Settings/DankBarTab.qml:1630, 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:154", "comment": "screen position option | shadow direction option" }, { @@ -15044,13 +15134,13 @@ { "term": "Top Right", "context": "Top Right", - "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1558, Modules/Settings/DankBarTab.qml:1570, 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:154", + "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/DankBarTab.qml:1616, Modules/Settings/DankBarTab.qml:1622, Modules/Settings/DankBarTab.qml:1634, 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:154", "comment": "screen position option | shadow direction option" }, { "term": "Top Section", "context": "Top Section", - "reference": "Modules/Settings/WidgetsTab.qml:1018", + "reference": "Modules/Settings/WidgetsTab.qml:1044", "comment": "" }, { @@ -15074,7 +15164,7 @@ { "term": "Transform", "context": "Transform", - "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1907", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2021", "comment": "" }, { @@ -15086,25 +15176,25 @@ { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:653, Modules/Settings/DankBarTab.qml:915, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", + "reference": "Modules/Settings/ThemeColorsTab.qml:1642, Modules/Settings/ThemeColorsTab.qml:1650, Modules/Settings/DockTab.qml:653, Modules/Settings/DankBarTab.qml:962, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", "comment": "" }, { "term": "Transparency of the border", "context": "Transparency of the border", - "reference": "Modules/Settings/DankBarTab.qml:1302", + "reference": "Modules/Settings/DankBarTab.qml:1361", "comment": "" }, { "term": "Transparency of the shadow layer", "context": "Transparency of the shadow layer", - "reference": "Modules/Settings/DankBarTab.qml:1503", + "reference": "Modules/Settings/DankBarTab.qml:1565", "comment": "" }, { "term": "Transparency of the widget outline", "context": "Transparency of the widget outline", - "reference": "Modules/Settings/DankBarTab.qml:1395", + "reference": "Modules/Settings/DankBarTab.qml:1456", "comment": "" }, { @@ -15248,7 +15338,7 @@ { "term": "Typography & Motion", "context": "Typography & Motion", - "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:595", + "reference": "Modals/Settings/SettingsSidebar.qml:89, Modals/Settings/SettingsSidebar.qml:615", "comment": "" }, { @@ -15260,13 +15350,13 @@ { "term": "Uncategorized", "context": "Uncategorized", - "reference": "Modules/Settings/PluginBrowser.qml:89", + "reference": "Modules/Settings/PluginBrowser.qml:109", "comment": "plugin browser category filter" }, { "term": "Unfocused Color", "context": "Unfocused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:276", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:94", "comment": "" }, { @@ -15278,7 +15368,7 @@ { "term": "Uninstall", "context": "Uninstall", - "reference": "Modules/Settings/GreeterTab.qml:121, Modules/Settings/GreeterTab.qml:172, Modules/Settings/ThemeBrowser.qml:652", + "reference": "Modules/Settings/GreeterTab.qml:121, Modules/Settings/GreeterTab.qml:172, Modules/Settings/ThemeBrowser.qml:629", "comment": "uninstall action button" }, { @@ -15326,7 +15416,7 @@ { "term": "Unknown", "context": "Unknown", - "reference": "Common/Theme.qml:1556, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Services/BatteryService.qml:214, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:401, Modules/Lock/LockScreenContent.qml:521, Modules/Lock/LockScreenContent.qml:617, Modules/Settings/PluginBrowser.qml:903, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:529, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:429, Modules/Settings/NetworkTab.qml:452, Modules/Settings/NetworkTab.qml:600, Modules/Settings/NetworkTab.qml:743, Modules/Settings/NetworkTab.qml:1166, Modules/Settings/NotificationsTab.qml:677, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:434, Modules/ControlCenter/Components/DragDropGrid.qml:754, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", + "reference": "Common/Theme.qml:1556, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Services/BatteryService.qml:214, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:401, Modules/Lock/LockScreenContent.qml:521, Modules/Lock/LockScreenContent.qml:617, Modules/Settings/PluginBrowser.qml:902, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:429, Modules/Settings/NetworkTab.qml:452, Modules/Settings/NetworkTab.qml:600, Modules/Settings/NetworkTab.qml:711, Modules/Settings/NetworkTab.qml:1134, Modules/Settings/NotificationsTab.qml:677, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:487, Modules/ControlCenter/Components/DragDropGrid.qml:725, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", "comment": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status" }, { @@ -15404,7 +15494,7 @@ { "term": "Unnamed Rule", "context": "Unnamed Rule", - "reference": "Modules/Settings/WindowRulesTab.qml:636", + "reference": "Modules/Settings/WindowRulesTab.qml:628", "comment": "" }, { @@ -15500,7 +15590,7 @@ { "term": "Update", "context": "Update", - "reference": "Modals/WindowRuleModal.qml:1586", + "reference": "Modals/WindowRuleModal.qml:1875", "comment": "" }, { @@ -15542,13 +15632,13 @@ { "term": "Urgent", "context": "Urgent", - "reference": "Modals/WindowRuleModal.qml:834, Modules/Settings/WindowRulesTab.qml:42", + "reference": "Modals/WindowRuleModal.qml:897, Modules/Settings/WindowRulesTab.qml:52", "comment": "" }, { "term": "Urgent Color", "context": "Urgent Color", - "reference": "Modules/Settings/WorkspacesTab.qml:313", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:131", "comment": "" }, { @@ -15608,7 +15698,7 @@ { "term": "Use Overlay Layer", "context": "Use Overlay Layer", - "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/LauncherTab.qml:175, Modules/Settings/DankBarTab.qml:741", + "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/LauncherTab.qml:175, Modules/Settings/DankBarTab.qml:787", "comment": "bar layer toggle: use Wayland overlay layer | dock layer toggle: use Wayland overlay layer | launcher layer toggle: use Wayland overlay layer" }, { @@ -15626,13 +15716,13 @@ { "term": "Use a custom radius for goth corner cutouts", "context": "Use a custom radius for goth corner cutouts", - "reference": "Modules/Settings/DankBarTab.qml:1105", + "reference": "Modules/Settings/DankBarTab.qml:1161", "comment": "" }, { "term": "Use a fixed shadow direction for this bar", "context": "Use a fixed shadow direction for this bar", - "reference": "Modules/Settings/DankBarTab.qml:1550", + "reference": "Modules/Settings/DankBarTab.qml:1614", "comment": "" }, { @@ -15656,31 +15746,25 @@ { "term": "Use custom border size", "context": "Use custom border size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2137, Modules/Settings/ThemeColorsTab.qml:2240", + "reference": "Modules/Settings/CompositorLayoutTab.qml:191, Modules/Settings/CompositorLayoutTab.qml:297", "comment": "" }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", - "reference": "Modules/Settings/ThemeColorsTab.qml:2034", + "reference": "Modules/Settings/CompositorLayoutTab.qml:94", "comment": "" }, { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1971, Modules/Settings/ThemeColorsTab.qml:2074, Modules/Settings/ThemeColorsTab.qml:2177", + "reference": "Modules/Settings/CompositorLayoutTab.qml:35, Modules/Settings/CompositorLayoutTab.qml:132, Modules/Settings/CompositorLayoutTab.qml:238", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:2003, Modules/Settings/ThemeColorsTab.qml:2209", - "comment": "" - }, - { - "term": "Use custom window rounding instead of theme radius", - "context": "Use custom window rounding instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:2106", + "reference": "Modules/Settings/CompositorLayoutTab.qml:65, Modules/Settings/CompositorLayoutTab.qml:162, Modules/Settings/CompositorLayoutTab.qml:268", "comment": "" }, { @@ -15770,7 +15854,7 @@ { "term": "User Window Rules (%1)", "context": "User Window Rules (%1)", - "reference": "Modules/Settings/WindowRulesTab.qml:847", + "reference": "Modules/Settings/WindowRulesTab.qml:839", "comment": "" }, { @@ -15818,7 +15902,7 @@ { "term": "Username", "context": "Username", - "reference": "Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Widgets/VpnProfileDelegate.qml:48, Modules/Settings/UsersTab.qml:358, Modules/Settings/NetworkTab.qml:1909", + "reference": "Modals/WifiPasswordModal.qml:172, Modals/WifiPasswordModal.qml:520, Widgets/VpnProfileDelegate.qml:48, Modules/Settings/UsersTab.qml:358, Modules/Settings/NetworkTab.qml:1813", "comment": "" }, { @@ -15836,7 +15920,7 @@ { "term": "Users", "context": "Users", - "reference": "Modals/Settings/SettingsSidebar.qml:305", + "reference": "Modals/Settings/SettingsSidebar.qml:326", "comment": "" }, { @@ -15878,7 +15962,7 @@ { "term": "VPN", "context": "VPN", - "reference": "Modules/Settings/WidgetsTabSection.qml:1555, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/NetworkTab.qml:1540, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", + "reference": "Modules/Settings/WidgetsTabSection.qml:1555, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTab.qml:185, Modules/Settings/NetworkTab.qml:1476, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", "comment": "" }, { @@ -15920,25 +16004,25 @@ { "term": "VPN status and quick connect", "context": "VPN status and quick connect", - "reference": "Modules/Settings/WidgetsTab.qml:184", + "reference": "Modules/Settings/WidgetsTab.qml:186", "comment": "" }, { "term": "VRR", "context": "VRR", - "reference": "Modules/Settings/WindowRulesTab.qml:94, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1909", + "reference": "Modules/Settings/WindowRulesTab.qml:104, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2023", "comment": "" }, { "term": "VRR Fullscreen Only", "context": "VRR Fullscreen Only", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1943", + "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2057", "comment": "" }, { "term": "VRR On-Demand", "context": "VRR On-Demand", - "reference": "Modals/WindowRuleModal.qml:1049, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1917", + "reference": "Modals/WindowRuleModal.qml:1115, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2031", "comment": "" }, { @@ -15962,25 +16046,25 @@ { "term": "Vertical Deck", "context": "Vertical Deck", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:55", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:57", "comment": "" }, { "term": "Vertical Grid", "context": "Vertical Grid", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:54", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:56", "comment": "" }, { "term": "Vertical Scrolling", "context": "Vertical Scrolling", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:56", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:58", "comment": "" }, { "term": "Vertical Tiling", "context": "Vertical Tiling", - "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:57", + "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:59", "comment": "" }, { @@ -16034,7 +16118,7 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1129, Modules/Settings/DankBarTab.qml:592", + "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1129, Modules/Settings/DankBarTab.qml:638", "comment": "" }, { @@ -16046,7 +16130,7 @@ { "term": "Visual divider between widgets", "context": "Visual divider between widgets", - "reference": "Modules/Settings/WidgetsTab.qml:212", + "reference": "Modules/Settings/WidgetsTab.qml:214", "comment": "" }, { @@ -16082,13 +16166,13 @@ { "term": "WPA/WPA2", "context": "WPA/WPA2", - "reference": "Modules/Settings/NetworkTab.qml:1444", + "reference": "Modules/Settings/NetworkTab.qml:1380", "comment": "" }, { "term": "Wallpaper", "context": "Wallpaper", - "reference": "Widgets/KeybindItem.qml:1118, Widgets/KeybindItem.qml:1125, Widgets/KeybindItem.qml:1134, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:76, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63", + "reference": "Widgets/KeybindItem.qml:1118, Widgets/KeybindItem.qml:1125, Widgets/KeybindItem.qml:1134, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:77, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63", "comment": "greeter settings link" }, { @@ -16160,7 +16244,7 @@ { "term": "Weather Widget", "context": "Weather Widget", - "reference": "Modules/Settings/WidgetsTab.qml:87", + "reference": "Modules/Settings/WidgetsTab.qml:89", "comment": "" }, { @@ -16226,13 +16310,13 @@ { "term": "WiFi", "context": "WiFi", - "reference": "Modules/Settings/NetworkTab.qml:213, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:806, Modules/ControlCenter/Details/NetworkDetail.qml:136", + "reference": "Modules/Settings/NetworkTab.qml:213, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:774, Modules/ControlCenter/Details/NetworkDetail.qml:136", "comment": "" }, { "term": "WiFi Device", "context": "WiFi Device", - "reference": "Modules/Settings/NetworkTab.qml:864, Modules/Settings/NetworkTab.qml:896", + "reference": "Modules/Settings/NetworkTab.qml:832, Modules/Settings/NetworkTab.qml:864", "comment": "" }, { @@ -16262,7 +16346,7 @@ { "term": "WiFi off", "context": "WiFi off", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:417", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:470", "comment": "network status" }, { @@ -16280,13 +16364,13 @@ { "term": "Widget Management", "context": "Widget Management", - "reference": "Modules/Settings/WidgetsTab.qml:931", + "reference": "Modules/Settings/WidgetsTab.qml:957", "comment": "" }, { "term": "Widget Outline", "context": "Widget Outline", - "reference": "Modules/Settings/DankBarTab.qml:1348", + "reference": "Modules/Settings/DankBarTab.qml:1409", "comment": "" }, { @@ -16304,7 +16388,7 @@ { "term": "Widget Transparency", "context": "Widget Transparency", - "reference": "Modules/Settings/DankBarTab.qml:945", + "reference": "Modules/Settings/DankBarTab.qml:992", "comment": "" }, { @@ -16322,9 +16406,15 @@ { "term": "Widgets", "context": "Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:120, Modals/Settings/SettingsSidebar.qml:217", + "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:231", "comment": "settings_displays" }, + { + "term": "Widgets & Notifications", + "context": "Widgets & Notifications", + "reference": "Modals/Settings/SettingsSidebar.qml:154, Modals/Settings/SettingsSidebar.qml:609", + "comment": "" + }, { "term": "Widgets, layout, style", "context": "Widgets, layout, style", @@ -16334,37 +16424,31 @@ { "term": "Width", "context": "Width", - "reference": "Modules/Settings/WindowRulesTab.qml:92", + "reference": "Modules/Settings/WindowRulesTab.qml:102", "comment": "" }, { "term": "Width of the border in pixels", "context": "Width of the border in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1325", + "reference": "Modules/Settings/DankBarTab.qml:1384", "comment": "" }, { "term": "Width of the widget outline in pixels", "context": "Width of the widget outline in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1418", + "reference": "Modules/Settings/DankBarTab.qml:1479", "comment": "" }, { - "term": "Width of window border (borderpx)", - "context": "Width of window border (borderpx)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2256", - "comment": "" - }, - { - "term": "Width of window border (general.border_size)", - "context": "Width of window border (general.border_size)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2153", + "term": "Width of window border", + "context": "Width of window border", + "reference": "Modules/Settings/CompositorLayoutTab.qml:206, Modules/Settings/CompositorLayoutTab.qml:312", "comment": "" }, { "term": "Width of window border and focus ring", "context": "Width of window border and focus ring", - "reference": "Modules/Settings/ThemeColorsTab.qml:2050", + "reference": "Modules/Settings/CompositorLayoutTab.qml:109", "comment": "" }, { @@ -16388,13 +16472,13 @@ { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:2018, Modules/Settings/ThemeColorsTab.qml:2224", + "reference": "Modules/Settings/CompositorLayoutTab.qml:79, Modules/Settings/CompositorLayoutTab.qml:176, Modules/Settings/CompositorLayoutTab.qml:282", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1987, Modules/Settings/ThemeColorsTab.qml:2090, Modules/Settings/ThemeColorsTab.qml:2193", + "reference": "Modules/Settings/CompositorLayoutTab.qml:50, Modules/Settings/CompositorLayoutTab.qml:147, Modules/Settings/CompositorLayoutTab.qml:253", "comment": "" }, { @@ -16406,37 +16490,31 @@ { "term": "Window Height", "context": "Window Height", - "reference": "Modals/WindowRuleModal.qml:993", + "reference": "Modals/WindowRuleModal.qml:1057", "comment": "" }, { "term": "Window Opening", "context": "Window Opening", - "reference": "Modals/WindowRuleModal.qml:865", - "comment": "" - }, - { - "term": "Window Rounding", - "context": "Window Rounding", - "reference": "Modules/Settings/ThemeColorsTab.qml:2121", + "reference": "Modals/WindowRuleModal.qml:928", "comment": "" }, { "term": "Window Rules", "context": "Window Rules", - "reference": "Modals/Settings/SettingsSidebar.qml:311, Modules/Settings/WindowRulesTab.qml:407", + "reference": "Modals/Settings/SettingsSidebar.qml:272, Modules/Settings/WindowRulesTab.qml:399", "comment": "" }, { "term": "Window Rules Include Missing", "context": "Window Rules Include Missing", - "reference": "Modules/Settings/WindowRulesTab.qml:510", + "reference": "Modules/Settings/WindowRulesTab.qml:502", "comment": "" }, { "term": "Window Rules Not Configured", "context": "Window Rules Not Configured", - "reference": "Modules/Settings/WindowRulesTab.qml:510", + "reference": "Modules/Settings/WindowRulesTab.qml:502", "comment": "" }, { @@ -16446,51 +16524,51 @@ "comment": "wallpaper transition option" }, { - "term": "Working…", - "context": "Working…", + "term": "Working...", + "context": "Working...", "reference": "Modules/Settings/UsersTab.qml:477", "comment": "" }, { "term": "Workspace", "context": "Workspace", - "reference": "Modals/WindowRuleModal.qml:933, Modals/WindowRuleModal.qml:1508, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/WindowRulesTab.qml:91, Modules/Settings/WindowRulesTab.qml:118", + "reference": "Modals/WindowRuleModal.qml:997, Modals/WindowRuleModal.qml:1672, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1756, Modules/Settings/DankBarTab.qml:1756, Modules/Settings/DankBarTab.qml:1794, Modules/Settings/WindowRulesTab.qml:101, Modules/Settings/WindowRulesTab.qml:128", "comment": "" }, { "term": "Workspace Appearance", "context": "Workspace Appearance", - "reference": "Modules/Settings/WorkspacesTab.qml:192", + "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:8", "comment": "" }, { "term": "Workspace Index Numbers", "context": "Workspace Index Numbers", - "reference": "Modules/Settings/WorkspacesTab.qml:32", + "reference": "Modules/Settings/WorkspacesTab.qml:34", "comment": "" }, { "term": "Workspace Names", "context": "Workspace Names", - "reference": "Modules/Settings/WorkspacesTab.qml:41", + "reference": "Modules/Settings/WorkspacesTab.qml:43", "comment": "" }, { "term": "Workspace Padding", "context": "Workspace Padding", - "reference": "Modules/Settings/WorkspacesTab.qml:50", + "reference": "Modules/Settings/WorkspacesTab.qml:52", "comment": "" }, { "term": "Workspace Settings", "context": "Workspace Settings", - "reference": "Modules/Settings/WorkspacesTab.qml:26", + "reference": "Modules/Settings/WorkspacesTab.qml:28", "comment": "" }, { "term": "Workspace Switcher", "context": "Workspace Switcher", - "reference": "Modules/Settings/WidgetsTab.qml:52", + "reference": "Modules/Settings/WidgetsTab.qml:54", "comment": "" }, { @@ -16505,12 +16583,6 @@ "reference": "Modals/Settings/SettingsSidebar.qml:140", "comment": "" }, - { - "term": "Workspaces & Widgets", - "context": "Workspaces & Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:589", - "comment": "" - }, { "term": "Wrap the app command. %command% is replaced with the actual executable", "context": "Wrap the app command. %command% is replaced with the actual executable", @@ -16523,40 +16595,52 @@ "reference": "Modules/ProcessList/DisksView.qml:91", "comment": "disk write label" }, + { + "term": "X", + "context": "X", + "reference": "Modals/WindowRuleModal.qml:1333", + "comment": "" + }, { "term": "X Axis", "context": "X Axis", - "reference": "Modules/Settings/DankBarTab.qml:1727", + "reference": "Modules/Settings/DankBarTab.qml:1791", "comment": "" }, { "term": "X-Ray", "context": "X-Ray", - "reference": "Modals/WindowRuleModal.qml:1190, Modules/Settings/WindowRulesTab.qml:121", + "reference": "Modals/WindowRuleModal.qml:1257, Modules/Settings/WindowRulesTab.qml:131", "comment": "" }, { "term": "XWayland", "context": "XWayland", - "reference": "Modals/WindowRuleModal.qml:844, Modules/Settings/WindowRulesTab.qml:44", + "reference": "Modals/WindowRuleModal.qml:907, Modules/Settings/WindowRulesTab.qml:54", "comment": "" }, { "term": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).", "context": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).", - "reference": "Modals/WindowRuleModal.qml:1168", + "reference": "Modals/WindowRuleModal.qml:1235", + "comment": "" + }, + { + "term": "Y", + "context": "Y", + "reference": "Modals/WindowRuleModal.qml:1360", "comment": "" }, { "term": "Y Axis", "context": "Y Axis", - "reference": "Modules/Settings/DankBarTab.qml:1690", + "reference": "Modules/Settings/DankBarTab.qml:1754", "comment": "" }, { "term": "Yes", "context": "Yes", - "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:67, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1919, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1929, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1939, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1941", + "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2029, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2033, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2043, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2053, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2055", "comment": "" }, { @@ -16592,7 +16676,7 @@ { "term": "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.", "context": "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2531", + "reference": "Modules/Settings/ThemeColorsTab.qml:2233", "comment": "qt theme env error body" }, { @@ -16652,7 +16736,7 @@ { "term": "by %1", "context": "by %1", - "reference": "Modules/Settings/PluginBrowser.qml:903, Modules/Settings/ThemeBrowser.qml:529", + "reference": "Modules/Settings/PluginBrowser.qml:902, Modules/Settings/ThemeBrowser.qml:506", "comment": "author attribution" }, { @@ -16700,7 +16784,7 @@ { "term": "dms/cursor config exists but is not included. Cursor settings won't apply.", "context": "dms/cursor config exists but is not included. Cursor settings won't apply.", - "reference": "Modules/Settings/ThemeColorsTab.qml:2373", + "reference": "Modules/Settings/ThemeColorsTab.qml:2064", "comment": "" }, { @@ -16757,12 +16841,6 @@ "reference": "Modules/Settings/MuxTab.qml:102", "comment": "" }, - { - "term": "events", - "context": "events", - "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:179", - "comment": "" - }, { "term": "ext", "context": "ext", @@ -16772,7 +16850,7 @@ { "term": "featured", "context": "featured", - "reference": "Modules/Settings/PluginBrowser.qml:851, Modules/Settings/DesktopWidgetBrowser.qml:390", + "reference": "Modules/Settings/PluginBrowser.qml:850, Modules/Settings/DesktopWidgetBrowser.qml:390", "comment": "" }, { @@ -16799,6 +16877,18 @@ "reference": "Modules/Settings/LockScreenTab.qml:166", "comment": "" }, + { + "term": "mango: config reloaded", + "context": "mango: config reloaded", + "reference": "Services/MangoService.qml:429", + "comment": "" + }, + { + "term": "mango: failed to reload config", + "context": "mango: failed to reload config", + "reference": "Services/MangoService.qml:425", + "comment": "" + }, { "term": "mangowc Discord Server", "context": "mangowc Discord Server", @@ -16892,7 +16982,7 @@ { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:873, Modules/Settings/ThemeBrowser.qml:496", + "reference": "Modules/Settings/PluginBrowser.qml:872, Modules/Settings/ThemeBrowser.qml:473", "comment": "" }, { @@ -16904,13 +16994,13 @@ { "term": "on MangoWC", "context": "on MangoWC", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:72", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:71", "comment": "" }, { "term": "on Miracle WM", "context": "on Miracle WM", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:78", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:77", "comment": "" }, { @@ -16922,13 +17012,13 @@ { "term": "on Scroll", "context": "on Scroll", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:76", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:75", "comment": "" }, { "term": "on Sway", "context": "on Sway", - "reference": "Modules/DankDash/Overview/UserInfoCard.qml:74", + "reference": "Modules/DankDash/Overview/UserInfoCard.qml:73", "comment": "" }, { @@ -16988,7 +17078,7 @@ { "term": "source", "context": "source", - "reference": "Modules/Settings/PluginBrowser.qml:904", + "reference": "Modules/Settings/PluginBrowser.qml:903", "comment": "source code link" }, { @@ -17006,13 +17096,13 @@ { "term": "up", "context": "up", - "reference": "Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/DankDash/Overview/UserInfoCard.qml:103, Modules/DankDash/Overview/UserInfoCard.qml:104", - "comment": "" + "reference": "Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/DankDash/Overview/UserInfoCard.qml:101, Modules/DankDash/Overview/UserInfoCard.qml:101", + "comment": "uptime prefix, e.g. 'up 4h 2m'" }, { "term": "update dms for NM integration.", "context": "update dms for NM integration.", - "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:320", + "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:434", "comment": "" }, { @@ -17048,7 +17138,7 @@ { "term": "• Install only from trusted sources", "context": "• Install only from trusted sources", - "reference": "Modules/Settings/PluginBrowser.qml:1221", + "reference": "Modules/Settings/PluginBrowser.qml:1220", "comment": "" }, { @@ -17078,13 +17168,13 @@ { "term": "• Plugins may contain bugs or security issues", "context": "• Plugins may contain bugs or security issues", - "reference": "Modules/Settings/PluginBrowser.qml:1209", + "reference": "Modules/Settings/PluginBrowser.qml:1208", "comment": "" }, { "term": "• Review code before installation when possible", "context": "• Review code before installation when possible", - "reference": "Modules/Settings/PluginBrowser.qml:1215", + "reference": "Modules/Settings/PluginBrowser.qml:1214", "comment": "" }, { diff --git a/quickshell/translations/extract_settings_index.py b/quickshell/translations/extract_settings_index.py index 438bec20..882ed49e 100755 --- a/quickshell/translations/extract_settings_index.py +++ b/quickshell/translations/extract_settings_index.py @@ -62,20 +62,7 @@ CATEGORY_KEYWORDS = { "Time & Weather": ["clock", "forecast", "date"], "Keyboard Shortcuts": ["keys", "bindings", "hotkey"], "Dank Bar": ["panel", "topbar", "statusbar"], - "Compositor": [ - "virtual desktops", - "spaces", - "window", - "rules", - "matching", - "floating", - "fullscreen", - "opacity", - "gaps", - "borders", - "corner rounding", - "overrides", - ], + "Applications": ["apps", "programs", "window", "rules", "matching", "floating"], "Dock": ["taskbar", "launcher bar"], "Network": ["connectivity", "online"], "System": ["os", "linux"], @@ -109,10 +96,9 @@ TAB_INDEX_MAP = { "TimeWeatherTab.qml": 1, "KeybindsTab.qml": 2, "DankBarTab.qml": 3, - "CompositorTab.qml": 4, - "CompositorLayoutTab.qml": 4, "WorkspacesTab.qml": 4, - "WindowRulesTab.qml": 4, + "CompositorLayoutTab.qml": 37, + "WindowRulesTab.qml": 38, "DockTab.qml": 5, "DankBarAppearanceTab.qml": 6, "WorkspaceAppearanceCard.qml": 6, @@ -152,7 +138,7 @@ TAB_CATEGORY_MAP = { 1: "Time & Weather", 2: "Keyboard Shortcuts", 3: "Dank Bar", - 4: "Compositor", + 4: "Dank Bar", 5: "Dock", 6: "Dank Bar", 7: "Network", @@ -184,6 +170,8 @@ TAB_CATEGORY_MAP = { 34: "Default Apps", 35: "Users", 36: "Autostart", + 37: "Personalization", + 38: "Applications", } SEARCHABLE_COMPONENTS = [ @@ -370,6 +358,8 @@ def find_settings_components(content, filename): condition_key = "isNiri" elif "CompositorService.isHyprland" in visible_raw: condition_key = "isHyprland" + elif "CompositorService.isMango" in visible_raw: + condition_key = "isMango" elif "KeybindsService.available" in visible_raw: condition_key = "keybindsAvailable" elif "AudioService.soundsAvailable" in visible_raw: @@ -436,6 +426,8 @@ def parse_tabs_from_sidebar(sidebar_file): ("hyprlandNiriOnly", "isHyprlandOrNiri"), ("clipboardOnly", "dmsConnected"), ("niriOnly", "isNiri"), + ("windowRulesCapable", "windowRulesCapable"), + ("layoutCapable", "layoutCapable"), ]: if f'"{qml_cond}": true' in snippet: cond = key @@ -521,16 +513,17 @@ def extract_settings_index(root_dir): { "section": "windowRules", "label": "Window Rules", - "tabIndex": 4, - "category": "Compositor", + "tabIndex": 38, + "category": "Applications", "keywords": enrich_keywords( "Window Rules", "Define compositor rules for window behavior", - "Compositor", + "Applications", ["matching", "floating", "fullscreen", "opacity"], ), "icon": "select_window", "description": "Define compositor rules for window behavior", + "conditionKey": "windowRulesCapable", } ) diff --git a/quickshell/translations/poexports/de.json b/quickshell/translations/poexports/de.json index 98403f19..aa469c68 100644 --- a/quickshell/translations/poexports/de.json +++ b/quickshell/translations/poexports/de.json @@ -1,6 +1,6 @@ { "%1 (+%2 more)": { - "%1 (+%2 more)": "" + "%1 (+%2 more)": "%1 (+%2 weitere)" }, "%1 Animation Speed": { "%1 Animation Speed": "%1 Animationsgeschwindigkeit" @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 online" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 Update" }, @@ -108,7 +111,7 @@ "%1m ago": "vor %1 Min." }, "%command%": { - "%command%": "" + "%command%": "%command%" }, "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": { "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'Alternative' ermöglicht das Entsperren nur mit dem Schlüssel. 'Zweiter Faktor' erfordert zuerst ein Passwort oder einen Fingerabdruck, dann den Schlüssel." @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 Gerät verbunden" }, - "1 event": { - "1 event": "1 Ereignis" - }, "1 hour": { "1 hour": "1 Stunde" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 Sekunde" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 Minuten" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24-Stunden-Format" }, - "24-hour format": { - "24-hour format": "24-h Format" - }, "25 seconds": { "25 seconds": "25 Sekunden" }, @@ -381,7 +381,7 @@ "Active VPN": "Aktives VPN" }, "Active in Column": { - "Active in Column": "" + "Active in Column": "Aktiv in Spalte" }, "Active tile background and icon color": { "Active tile background and icon color": "Hintergrund und Symbolfarbe der aktiven Kachel" @@ -417,7 +417,7 @@ "Add Desktop Widget": "Desktop-Widget hinzufügen" }, "Add Entry": { - "Add Entry": "" + "Add Entry": "Eintrag hinzufügen" }, "Add Printer": { "Add Printer": "Drucker hinzufügen" @@ -429,10 +429,10 @@ "Add Widget": "Widget hinzufügen" }, "Add Widget to %1": { - "Add Widget to %1": "" + "Add Widget to %1": "Widget zu %1 hinzufügen" }, "Add Window Rule": { - "Add Window Rule": "" + "Add Window Rule": "Fensterregel hinzufügen" }, "Add a border around the dock": { "Add a border around the dock": "Einen Rahmen um das Dock hinzufügen" @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Fügen Sie allen Anwendungsstarts ein benutzerdefiniertes Präfix hinzu. Dies kann für Dinge wie 'uwsm-app', 'systemd-run' oder andere Befehls-Wrapper verwendet werden." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Widgets hinzufügen und konfigurieren, die auf Ihrem Desktop erscheinen" }, @@ -447,7 +450,7 @@ "Add by Address": "Über Adresse hinzufügen" }, "Add match": { - "Add match": "" + "Add match": "Übereinstimmung hinzufügen" }, "Add the new user to the %1 group so they can run dms greeter sync --profile.": { "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Den neuen Benutzer zur Gruppe „%1“ hinzufügen, damit er „dms greeter sync --profile“ ausführen kann." @@ -456,7 +459,7 @@ "Add the new user to the %1 group so they can use sudo.": "Den neuen Benutzer zur Gruppe „%1“ hinzufügen, damit er „sudo“ verwenden kann." }, "Add to Autostart": { - "Add to Autostart": "" + "Add to Autostart": "Zum Autostart hinzufügen" }, "Adjust the bar height via inner padding": { "Adjust the bar height via inner padding": "Die Höhe der Leiste über den inneren Abstand anpassen" @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "Bereits in dieser Sitzung" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Zurück: Zurück • F1/I: Datei Info • F10: Hilfe • Esc: Schließen" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Konfiguration wird analysiert..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Animationsdauer" }, @@ -566,23 +575,23 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Anonyme Identität (optional)" }, - "Any": { - "Any": "" - }, "Any window": { - "Any window": "" + "Any window": "Beliebiges Fenster" }, "App Customizations": { "App Customizations": "App-Anpassungen" }, "App ID": { - "App ID": "" + "App ID": "App-ID" + }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" }, "App ID Substitutions": { "App ID Substitutions": "App-ID-Ersetzungen" }, "App ID regex": { - "App ID regex": "" + "App ID regex": "App-ID-Regex" }, "App ID regex (e.g. ^firefox$)": { "App ID regex (e.g. ^firefox$)": "App-ID-Regex (z. B. ^firefox$)" @@ -600,7 +609,7 @@ "Appearance": "Erscheinungsbild" }, "Application": { - "Application": "" + "Application": "Anwendung" }, "Application Dock": { "Application Dock": "Applikations Dock" @@ -609,7 +618,7 @@ "Applications": "Anwendungen" }, "Applications and commands to start automatically when you log in": { - "Applications and commands to start automatically when you log in": "" + "Applications and commands to start automatically when you log in": "Anwendungen und Befehle, die beim Anmelden automatisch gestartet werden" }, "Apply Changes": { "Apply Changes": "Änderungen anwenden" @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Warmes Farbschema für weniger Augenbelastung. Automatisierungseinstellungen unten zur Aktivierung." }, - "Applying authentication changes…": { - "Applying authentication changes…": "Authentifizierungsänderungen werden angewendet…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Apps" @@ -672,7 +681,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "Anzeigen anordnen und Auflösung, Bildwiederholfrequenz und VRR konfigurieren" }, "At Startup": { - "At Startup": "" + "At Startup": "Beim Start" }, "At least one output must remain enabled": { "At least one output must remain enabled": "Mindestens ein Ausgang muss aktiviert bleiben" @@ -795,16 +804,16 @@ "Auto-hide Dock": "Dock automatisch ausblenden" }, "Auto-login": { - "Auto-login": "" + "Auto-login": "Automatische Anmeldung" }, "Auto-login disabled": { - "Auto-login disabled": "" + "Auto-login disabled": "Automatische Anmeldung deaktiviert" }, "Auto-login enabled": { - "Auto-login enabled": "" + "Auto-login enabled": "Automatische Anmeldung aktiviert" }, "Auto-login on startup": { - "Auto-login on startup": "" + "Auto-login on startup": "Automatische Anmeldung beim Start" }, "Auto-saving...": { "Auto-saving...": "Auto-Speichern..." @@ -861,10 +870,10 @@ "Automation": "Automatisierung" }, "Autostart Apps": { - "Autostart Apps": "" + "Autostart Apps": "Autostart-Apps" }, "Autostart Entries": { - "Autostart Entries": "" + "Autostart Entries": "Autostart-Einträge" }, "Available": { "Available": "Verfügbar" @@ -894,7 +903,7 @@ "Back": "Zurück" }, "Back to user list": { - "Back to user list": "" + "Back to user list": "Zurück zur Benutzerliste" }, "Backend": { "Backend": "Backend" @@ -909,7 +918,7 @@ "Background Blur": "Hintergrundunschärfe" }, "Background Effect": { - "Background Effect": "" + "Background Effect": "Hintergrundeffekt" }, "Background Opacity": { "Background Opacity": "Hintergrunddeckkraft" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Ausgewählte Farbpalette mit Akzenten (Standard)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Leistenkonfiguration" }, @@ -1020,7 +1035,7 @@ "Bluetooth not available": "Bluetooth nicht verfügbar" }, "Blur": { - "Blur": "" + "Blur": "Weichzeichnen" }, "Blur Border Color": { "Blur Border Color": "Rahmenfarbe der Unschärfe" @@ -1053,7 +1068,7 @@ "Border Color": "Rahmenfarbe" }, "Border Off": { - "Border Off": "" + "Border Off": "Rahmen aus" }, "Border Opacity": { "Border Opacity": "Transparenz des Rahmens" @@ -1074,10 +1089,10 @@ "Border color around blurred surfaces": "Rahmenfarbe um weichgezeichnete Oberflächen" }, "Border w/ Bg": { - "Border w/ Bg": "" + "Border w/ Bg": "Rahmen m. HG" }, "Border with Background": { - "Border with Background": "" + "Border with Background": "Rahmen mit Hintergrund" }, "Bottom": { "Bottom": "Unten" @@ -1209,10 +1224,10 @@ "Caps Lock is on": "Feststelltaste ist aktiviert" }, "Cast Target": { - "Cast Target": "" + "Cast Target": "Übertragungsziel" }, "Category": { - "Category": "" + "Category": "Kategorie" }, "Center Section": { "Center Section": "Mittlerer Abschnitt" @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Suche nach Updates..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Prüfen, ob eine Sudo-Authentifizierung erforderlich ist…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Prüfung..." }, - "Checking…": { - "Checking…": "Prüfen…" - }, "Choose Color": { "Choose Color": "Farbe" }, @@ -1296,7 +1308,7 @@ "Choose a color": "eine Farbe" }, "Choose a power profile": { - "Choose a power profile": "" + "Choose a power profile": "Energieprofil wählen" }, "Choose colors from palette": { "Choose colors from palette": "Farbe von Palette" @@ -1329,7 +1341,7 @@ "Choose where on-screen displays appear on screen": "Wählen Sie, wo Bildschirmanzeigen auf dem Bildschirm erscheinen" }, "Choose whether to launch a desktop app or a command": { - "Choose whether to launch a desktop app or a command": "" + "Choose whether to launch a desktop app or a command": "Wählen Sie, ob eine Desktop-App oder ein Befehl gestartet werden soll" }, "Choose which displays show this widget": { "Choose which displays show this widget": "Wählen Sie aus, welche Anzeigen dieses Widget anzeigen" @@ -1347,7 +1359,7 @@ "Circle": "Kreis" }, "Class regex": { - "Class regex": "" + "Class regex": "Klassen-Regex" }, "Class regex (e.g. ^firefox$)": { "Class regex (e.g. ^firefox$)": "Klassen-Regex (z. B. ^firefox$)" @@ -1419,7 +1431,7 @@ "Clipboard Manager": "Zwischenablage Manager" }, "Clipboard Saved": { - "Clipboard Saved": "" + "Clipboard Saved": "Zwischenablage gespeichert" }, "Clipboard sent": { "Clipboard sent": "Zwischenablage gesendet" @@ -1518,7 +1530,7 @@ "Command": "Befehl" }, "Command Line": { - "Command Line": "" + "Command Line": "Befehlszeile" }, "Commands": { "Commands": "Befehle" @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Verbinde Gerät" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "Verbindung zum Zwischenablagedienst wird hergestellt…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Verbinden..." @@ -1659,7 +1671,7 @@ "Contrast": "Kontrast" }, "Contributor": { - "Contributor": "" + "Contributor": "Mitwirkender" }, "Control Center": { "Control Center": "Kontrollzentrum" @@ -1710,7 +1722,7 @@ "Convenience options for the login screen. Sync to apply.": "Komfortoptionen für den Anmeldebildschirm. Synchronisieren zum Anwenden." }, "Convert to DMS": { - "Convert to DMS": "" + "Convert to DMS": "In DMS konvertieren" }, "Cooldown": { "Cooldown": "Abkühlzeit" @@ -1764,7 +1776,7 @@ "Corners & Background": "Ecken & Hintergrund" }, "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" + "Couldn't open a terminal for the auto-login update.": "Terminal für das Update der automatischen Anmeldung konnte nicht geöffnet werden." }, "Count Only": { "Count Only": "Nur Anzahl" @@ -1866,7 +1878,7 @@ "Cursor Theme": "Cursor-Design" }, "Curve": { - "Curve": "" + "Curve": "Kurve" }, "Curve: curve rasterizer.": { "Curve: curve rasterizer.": "Curve: Kurven-Rasterisierer." @@ -1959,7 +1971,7 @@ "DMS Settings": "DMS-Einstellungen" }, "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": { - "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "" + "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "DMS-Einstellungen schreiben Lua-Tastenkombinationen. Fügen Sie den DMS-Include hinzu, damit Änderungen wirksam werden." }, "DMS Shortcuts": { "DMS Shortcuts": "DMS-Kurzbefehle" @@ -1968,7 +1980,7 @@ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS-Greeter benötigt: greetd, dms-greeter. Fingerabdruck: fprintd, pam_fprintd. Sicherheitsschlüssel: pam_u2f. Fügen Sie Ihren Benutzer der Gruppe „greeter“ hinzu. Authentifizierungsänderungen werden automatisch angewendet und können ein Terminal öffnen, wenn eine Sudo-Authentifizierung erforderlich ist." }, "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" + "DMS needs administrator access. The terminal closes automatically when done.": "DMS benötigt Administratorzugriff. Das Terminal schließt sich nach Abschluss automatisch." }, "DMS out of date": { "DMS out of date": "DMS ist veraltet" @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET nicht verfügbar" }, - "DWL service not available": { - "DWL service not available": "DWL Service ist nicht verfügbar" - }, "Daily": { "Daily": "Täglich" }, @@ -2109,7 +2118,7 @@ "Delete Printer": "Drucker löschen" }, "Delete Rule": { - "Delete Rule": "" + "Delete Rule": "Regel löschen" }, "Delete Saved Item?": { "Delete Saved Item?": "Gespeichertes Element löschen?" @@ -2151,7 +2160,7 @@ "Desktop": "Desktop" }, "Desktop Application": { - "Desktop Application": "" + "Desktop Application": "Desktop-Anwendung" }, "Desktop Clock": { "Desktop Clock": "Desktop Uhr" @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "deaktiviere WLAN..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Scheibe" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Zeige alle Prioritäten über Fullscreen-Anwendungen" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "DWL-Layouts anzeigen und wechseln" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Anwendungssymbole in Arbeitsbereichs-Indikatoren anzeigen" @@ -2316,7 +2325,7 @@ "Display line numbers in editor": "Zeilennummern im Editor anzeigen" }, "Display name for this entry": { - "Display name for this entry": "" + "Display name for this entry": "Anzeigename für diesen Eintrag" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Nur Arbeitsbereiche anzeigen, die Fenster enthalten" @@ -2328,7 +2337,7 @@ "Display seconds in the clock": "Sekunden in Uhr anzeigen" }, "Display setup failed": { - "Display setup failed": "" + "Display setup failed": "Display-Einrichtung fehlgeschlagen" }, "Display the power system menu": { "Display the power system menu": "System-Energiemenü anzeigen" @@ -2463,7 +2472,7 @@ "Edit Clipboard": "Zwischenablage bearbeiten" }, "Edit Rule": { - "Edit Rule": "" + "Edit Rule": "Regel bearbeiten" }, "Edit Window Rule": { "Edit Window Rule": "Bearbeite Fensterregel" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "Text der Zwischenablage bearbeiten" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Bildung" }, @@ -2649,7 +2661,7 @@ "Enterprise": "Enterprise" }, "Entry Type": { - "Entry Type": "" + "Entry Type": "Eintragstyp" }, "Entry pinned": { "Entry pinned": "Eintrag angeheftet" @@ -2829,7 +2841,7 @@ "Failed to fetch network QR code: %1": "Netzwerk-QR-Code konnte nicht abgerufen werden: %1" }, "Failed to generate systemd override": { - "Failed to generate systemd override": "" + "Failed to generate systemd override": "Systemd-Override konnte nicht generiert werden" }, "Failed to hold job": { "Failed to hold job": "Auftrag konnte nicht angehalten werden" @@ -2975,11 +2987,11 @@ "Failed to update sharing": { "Failed to update sharing": "Freigabe konnte nicht aktualisiert werden" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { - "Failed to write autostart entry": "" + "Failed to write autostart entry": "Autostart-Eintrag konnte nicht geschrieben werden" + }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Temporäre Datei zur Validierung konnte nicht geschrieben werden" @@ -3039,7 +3051,7 @@ "Fill": "Füllen" }, "Filter": { - "Filter": "" + "Filter": "Filter" }, "Find in Text": { "Find in Text": "In Text suchen" @@ -3101,8 +3113,20 @@ "Float": { "Float": "Schwebend" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { - "Floating": "" + "Floating": "Schwebend" + }, + "Floating Position": { + "Floating Position": "" }, "Fluent": { "Fluent": "Fließend" @@ -3114,16 +3138,16 @@ "Focus": "Fokus" }, "Focus Ring Color": { - "Focus Ring Color": "" + "Focus Ring Color": "Fokusringfarbe" }, "Focus Ring Off": { - "Focus Ring Off": "" + "Focus Ring Off": "Fokusring aus" }, "Focus at Startup": { "Focus at Startup": "Fokus beim Start" }, "Focused": { - "Focused": "" + "Focused": "Fokussiert" }, "Focused Border": { "Focused Border": "Fokussierter Rand" @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Fokussiertes Fenster" }, - "Focused monitor only": { - "Focused monitor only": "Nur fokussierter Monitor" - }, "Fog": { "Fog": "Nebel" }, @@ -3207,7 +3228,7 @@ "Force Kill (SIGKILL)": "Beenden erzwingen (SIGKILL)" }, "Force RGBX": { - "Force RGBX": "" + "Force RGBX": "RGBX erzwingen" }, "Force Wide Color": { "Force Wide Color": "Breiten Farbraum erzwingen" @@ -3285,7 +3306,7 @@ "Full Day & Month": "Ganzer Tag & Monat" }, "Full command to execute": { - "Full command to execute": "" + "Full command to execute": "Vollständiger auszuführender Befehl" }, "Full with Year": { "Full with Year": "Vollständig mit Jahr" @@ -3333,7 +3354,7 @@ "Gamma control not available. Requires DMS API v6+.": "Gamma-Steuerung nicht verfügbar. Erfordert DMS API v6+." }, "Generate Override": { - "Generate Override": "" + "Generate Override": "Override generieren" }, "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.": { "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.": "Basis-GTK3/4- oder QT5/QT6-Konfigurationen (erfordert qt6ct-kde) erstellen, um DMS-Farben zu folgen. Nur einmal erforderlich.

Es wird empfohlen, adw-gtk3 vor der Anwendung von GTK-Themes zu konfigurieren." @@ -3437,6 +3458,9 @@ "Group": { "Group": "Gruppe" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Arbeitsbereich-Apps gruppieren" }, @@ -3570,7 +3594,7 @@ "Hide the bar when the pointer leaves even if a popout is still open": "Die Leiste ausblenden, wenn der Mauszeiger sie verlässt, selbst wenn noch ein Popout geöffnet ist" }, "High": { - "High": "" + "High": "Hoch" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "High-Fidelity-Palette, die Quellfarbtöne bewahrt." @@ -3660,13 +3684,13 @@ "Hyprland Website": "Hyprland Webseite" }, "Hyprland conf mode": { - "Hyprland conf mode": "" + "Hyprland conf mode": "Hyprland-Konfigurationsmodus" }, "Hyprland conf mode is read-only in Settings": { - "Hyprland conf mode is read-only in Settings": "" + "Hyprland conf mode is read-only in Settings": "Hyprland-Konfigurationsmodus ist in den Einstellungen schreibgeschützt" }, "Hyprland config include missing": { - "Hyprland config include missing": "" + "Hyprland config include missing": "Hyprland-Konfigurations-Include fehlt" }, "I Understand": { "I Understand": "Ich verstehe" @@ -3708,7 +3732,7 @@ "Idle": "Leerlauf" }, "Idle Inhibit": { - "Idle Inhibit": "" + "Idle Inhibit": "Leerlaufunterdrückung" }, "Idle Inhibitor": { "Idle Inhibitor": "Inaktivitätssperre" @@ -3717,7 +3741,7 @@ "Idle Settings": "Inaktivitätseinstellungen" }, "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": { - "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "" + "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "Wenn Autostart-App-Symbole nicht im System-Tray erscheinen, generieren Sie einen Systemd-Override, um sicherzustellen, dass DMS vor den Autostart-Apps startet" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "Wenn das Feld ausgeblendet ist, erscheint es, sobald eine Taste gedrückt wird." @@ -3797,8 +3821,11 @@ "Inhibitable": { "Inhibitable": "Unterdrückbar" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { - "Initialised": "" + "Initialised": "Initialisiert" }, "Inner padding applied to each widget": { "Inner padding applied to each widget": "Auf jedes Widget angewendeter innerer Abstand" @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Invertieren bei Moduswechsel" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Iris-Blüte" }, @@ -4179,7 +4209,7 @@ "Longitude": "Längengrad" }, "Low": { - "Low": "" + "Low": "Niedrig" }, "Low Priority": { "Low Priority": "Niedrige Priorität" @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "Verwaltet Dateien und Verzeichnisse" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC-Layout-Überschreibungen" }, @@ -4263,10 +4299,10 @@ "Marker Waste Full": "Marker-Abfallbehälter voll" }, "Match (%1)": { - "Match (%1)": "" + "Match (%1)": "Übereinstimmung (%1)" }, "Match Conditions": { - "Match Conditions": "" + "Match Conditions": "Übereinstimmungsbedingungen" }, "Match Criteria": { "Match Criteria": "Übereinstimmungskriterien" @@ -4599,11 +4635,14 @@ "Named Workspace Icons": "Benannte Arbeitsfächen-Symbole" }, "Native": { - "Native": "" + "Native": "Nativ" }, "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "Nativ: Plattform-Renderer (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Navigieren" }, @@ -4782,7 +4821,7 @@ "No app customizations.": "Keine App-Anpassungen." }, "No application selected": { - "No application selected": "" + "No application selected": "Keine Anwendung ausgewählt" }, "No apps found": { "No apps found": "Keine Anwendungs gefunden" @@ -4794,7 +4833,7 @@ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Keine Apps stummgeschaltet. Rechtsklicken Sie auf eine Benachrichtigung und wählen Sie „Popups stummschalten“, um hier eine hinzuzufügen." }, "No autostart entries": { - "No autostart entries": "" + "No autostart entries": "Keine Autostart-Einträge" }, "No battery": { "No battery": "Kein Akku" @@ -4992,7 +5031,7 @@ "No window rules configured": "Keine Fensterregeln eingerichtet" }, "Noise": { - "Noise": "" + "Noise": "Rauschen" }, "None": { "None": "Nichts" @@ -5034,7 +5073,7 @@ "Not detected": "Nicht erkannt" }, "Not listed?": { - "Not listed?": "" + "Not listed?": "Nicht aufgeführt?" }, "Not paired": { "Not paired": "Nicht gekoppelt" @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "Auf Abruf" }, - "On-Screen Displays": { - "On-Screen Displays": "Bildschirm‑anzeigen" - }, "On-screen Displays": { "On-screen Displays": "Bildschirmanzeigen (OSD)" }, @@ -5226,7 +5262,7 @@ "Opening files": "Dateien werden geöffnet" }, "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" + "Opening terminal to update greetd": "Terminal wird geöffnet, um greetd zu aktualisieren" }, "Opening terminal: ": { "Opening terminal: ": "Terminal wird geöffnet: " @@ -5247,7 +5283,7 @@ "Optional location": "Optionaler Standort" }, "Optional state-based conditions applied to the first match.": { - "Optional state-based conditions applied to the first match.": "" + "Optional state-based conditions applied to the first match.": "Optionale zustandsbasierte Bedingungen, die auf die erste Übereinstimmung angewendet werden." }, "Options": { "Options": "Optionen" @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Eingesteckt" }, - "Plugged in": { - "Plugged in": "Eingesteckt" - }, "Plugin": { "Plugin": "Plugin" }, @@ -5664,7 +5697,7 @@ "Power Menu Customization": "Energieoptionen im Power Menü anpassen" }, "Power Mode": { - "Power Mode": "" + "Power Mode": "Energiemodus" }, "Power Off": { "Power Off": "Ausschalten" @@ -5826,7 +5859,7 @@ "Protocol": "Protokoll" }, "Qt": { - "Qt": "" + "Qt": "Qt" }, "Qt colors applied successfully": { "Qt colors applied successfully": "Qt-Farben erfolgreich angewendet" @@ -5886,7 +5919,7 @@ "Re-enter password": "Passwort erneut eingeben" }, "Read-only legacy config": { - "Read-only legacy config": "" + "Read-only legacy config": "Schreibgeschützte Legacy-Konfiguration" }, "Read:": { "Read:": "Lesen:" @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Wetter aktualisieren" }, - "Refreshing…": { - "Refreshing…": "Aktualisierung…" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -5988,7 +6021,7 @@ "Remove inner padding from all widgets": "Inneren Abstand von allen Widgets entfernen" }, "Remove match": { - "Remove match": "" + "Remove match": "Übereinstimmung entfernen" }, "Remove the shortcut %1?": { "Remove the shortcut %1?": "Den Kurzbefehl %1 entfernen?" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "Erfordert DMS-Server mit sysupdate-Funktion" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Erfordert DWL-Compositor" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "Erfordert eine neuere Version von Quickshell" @@ -6051,7 +6084,7 @@ "Requires night mode support": "Erfordert Nachtmodus-Unterstützung" }, "Requires remembering the last user and session. Enable those options first.": { - "Requires remembering the last user and session. Enable those options first.": "" + "Requires remembering the last user and session. Enable those options first.": "Erfordert das Speichern des letzten Benutzers und der letzten Sitzung. Aktivieren Sie zuerst diese Optionen." }, "Reset": { "Reset": "Zurücksetzen" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Widget-Größe ändern" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Auflösung & Bildwiederholrate" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Abgerundete Ecken für Fenster" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Abgerundete Ecken für Fenster (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Abgerundete Ecken für Fenster (decoration.rounding)" - }, "Rule": { "Rule": "Regel" }, @@ -6162,7 +6195,7 @@ "Rules (%1)": "Regeln (%1)" }, "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": { - "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "" + "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "In Ihrer Compositor-Konfiguration gefundene Regeln. Diese sind hier schreibgeschützt. Verwenden Sie „In DMS konvertieren“, um eine bearbeitbare Kopie zu erstellen." }, "Run Again": { "Run Again": "Erneut ausführen" @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Einstellungen für laufende Applikationen" }, - "Running greeter sync…": { - "Running greeter sync…": "Greeter-Sync wird ausgeführt…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "Läuft im Terminal" @@ -6204,7 +6237,7 @@ "SMS": "SMS" }, "Saturation": { - "Saturation": "" + "Saturation": "Sättigung" }, "Save": { "Save": "Speichern" @@ -6315,7 +6348,7 @@ "Search Options": "Suchoptionen" }, "Search applications...": { - "Search applications...": "" + "Search applications...": "Anwendungen suchen..." }, "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Suchen Sie nach Tastenkombination, Beschreibung oder Aktionsname.\n\nDie Standardaktion kopiert die Tastenkombination in die Zwischenablage.\nRechtsklick oder Rechts-Pfeil drücken, um häufig verwendete Tastenkombinationen anzuheften – diese erscheinen oben, wenn nicht gesucht wird." @@ -6420,7 +6453,7 @@ "Select a color from the palette or use custom sliders": "eine Farbe aus der Farbpalette oder nutze die Schieberegler" }, "Select a desktop application": { - "Select a desktop application": "" + "Select a desktop application": "Wählen Sie eine Desktop-Anwendung aus" }, "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": { "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Wählen Sie ein Widget aus, das Sie Ihrem Desktop hinzufügen möchten. Jedes Widget ist eine separate Instanz mit eigenen Einstellungen." @@ -6681,7 +6714,7 @@ "Show Humidity": "Luftfeuchtigkeit anzeigen" }, "Show Icon": { - "Show Icon": "" + "Show Icon": "Symbol anzeigen" }, "Show Launcher Button": { "Show Launcher Button": "Launcher-Schaltfläche anzeigen" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Zeige Applikationen von Arbeitsbereich" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Alle 9 Tags anzeigen, statt nur die belegten (nur mit DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Einen Umrissring um die Anzeige des fokussierten Arbeitsbereichs anzeigen" @@ -6837,7 +6870,7 @@ "Show mode tabs and keyboard hints at the bottom.": "Modus-Tabs und Tastaturhinweise unten anzeigen." }, "Show mount path": { - "Show mount path": "" + "Show mount path": "Einhängepfad anzeigen" }, "Show notification popups only on the currently focused monitor": { "Show notification popups only on the currently focused monitor": "Benachrichtigungs-Popups nur auf dem aktuell fokussierten Monitor anzeigen" @@ -6963,7 +6996,7 @@ "Skip setup": "Einrichtung überspringen" }, "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": { - "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "" + "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "Überspringen Sie das Greeter-Passwort nach dem Booten, bis Sie sich abmelden. Die Entsperrung des Sperrbildschirms bleibt unverändert. Tritt nach der Synchronisierung beim nächsten Neustart in Kraft." }, "Small": { "Small": "Klein" @@ -6999,7 +7032,7 @@ "Sounds": "Töne" }, "Source: %1": { - "Source: %1": "" + "Source: %1": "Quelle: %1" }, "Space between the bar and screen edges": { "Space between the bar and screen edges": "Abstand zwischen der Leiste und den Bildschirmrändern" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Abstand zwischen Fenster" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Abstand zwischen Fenstern (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Abstand zwischen Fenstern (gaps_in und gaps_out)" - }, "Spacer": { "Spacer": "Abstandshalter" }, @@ -7227,7 +7254,7 @@ "System toast notifications": "System-Toast-Benachrichtigungen" }, "Systemd Override generated": { - "Systemd Override generated": "" + "Systemd Override generated": "Systemd-Override generiert" }, "Tab": { "Tab": "Tab" @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Navigation • ←→↑↓: Grid Nav • Enter/Leertaste: Auswählen" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "Tags: %1" }, @@ -7317,7 +7347,7 @@ "The job queue of this printer is empty": "Warteschlange der Druckaufträge ist leer" }, "The rule applies to any window matching one of these.": { - "The rule applies to any window matching one of these.": "" + "The rule applies to any window matching one of these.": "Die Regel gilt für jedes Fenster, das auf eines dieser Kriterien zutrifft." }, "Theme & Colors": { "Theme & Colors": "Theme & Farben" @@ -7341,7 +7371,7 @@ "Themes": "Designs" }, "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": { - "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "" + "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "Diese fügen Einträge zum XDG-Autostart-Verzeichnis hinzu (~/.config/autostart/*.desktop)" }, "Thickness": { "Thickness": "Stärke" @@ -7362,16 +7392,16 @@ "This device": "Dieses Gerät" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "Diese Installation verwendet noch hyprland.conf. Führen Sie „dms setup“ aus, um zu migrieren, bevor Sie die Cursoreinstellungen bearbeiten." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "Diese Installation verwendet noch hyprland.conf. Führen Sie „dms setup“ aus, um zu migrieren, bevor Sie die Anzeigeeinstellungen bearbeiten." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "Diese Installation verwendet noch hyprland.conf. Führen Sie „dms setup“ aus, um zu migrieren, bevor Sie die Kurzbefehle in den Einstellungen bearbeiten." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "Diese Installation verwendet noch hyprland.conf. Führen Sie „dms setup“ aus, um zu migrieren, bevor Sie die Fensterregeln in den Einstellungen bearbeiten." }, "This may take a few seconds": { "This may take a few seconds": "Dies kann einige Sekunden dauern" @@ -7460,6 +7490,9 @@ "Title": { "Title": "Titel" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Titel-Regex (optional)" }, @@ -7572,7 +7605,7 @@ "Trash command failed (exit %1)": "Papierkorbbefehl fehlgeschlagen (Exit %1)" }, "Tray Icon Fix": { - "Tray Icon Fix": "" + "Tray Icon Fix": "Tray-Symbol-Fix" }, "Trending GIFs": { "Trending GIFs": "Beliebte GIF's" @@ -7641,7 +7674,7 @@ "Unavailable": "nicht Verfügbar" }, "Uncategorized": { - "Uncategorized": "" + "Uncategorized": "Nicht kategorisiert" }, "Unfocused Color": { "Unfocused Color": "Nicht fokussierte Farbe" @@ -7782,7 +7815,7 @@ "Uptime:": "Betriebszeit:" }, "Urgent": { - "Urgent": "" + "Urgent": "Dringend" }, "Urgent Color": { "Urgent Color": "Dringende Farbe" @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Benutzerdefinierten Fensterradius anstelle des Theme-Radius verwenden" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Benutzerdefinierte Fensterabrundung statt Design-Radius verwenden" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Desktop-Hintergrundbild verwenden" }, @@ -7860,7 +7890,7 @@ "Use fingerprint authentication for the lock screen.": "Fingerabdruck-Authentifizierung für den Sperrbildschirm verwenden." }, "Use keys 1-3 or arrows, Enter/Space to select": { - "Use keys 1-3 or arrows, Enter/Space to select": "" + "Use keys 1-3 or arrows, Enter/Space to select": "Verwenden Sie die Tasten 1-3 oder die Pfeiltasten, Enter/Leertaste zum Auswählen" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Nutze helle Darstellung anstatt von dunkler" @@ -7896,7 +7926,7 @@ "User": "Benutzer" }, "User Window Rules (%1)": { - "User Window Rules (%1)": "" + "User Window Rules (%1)": "Benutzer-Fensterregeln (%1)" }, "User already exists": { "User already exists": "Benutzer existiert bereits" @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN Konfiguration geupdated" }, - "VPN connections": { - "VPN connections": "VPN-Verbindungen" - }, "VPN deleted": { "VPN deleted": "VPN gelöscht" }, @@ -8007,7 +8034,7 @@ "Vertical Tiling": "Vertikale Kachelung" }, "Very High": { - "Very High": "" + "Very High": "Sehr hoch" }, "Vibrant": { "Vibrant": "Lebhaft" @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgets" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widgets, Layout, Stil" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "Breite des Widget-Umrisses in Pixeln" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Breite des Fensterrahmens (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Breite des Fensterrahmens (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Breite von Fensterrahmen und Fokusring" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Fensteröffnung" }, - "Window Rounding": { - "Window Rounding": "Fensterabrundung" - }, "Window Rules": { "Window Rules": "Fensterregeln" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Wischen" }, - "Working…": { - "Working…": "Wird verarbeitet…" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Arbeitsbereich" @@ -8267,26 +8291,29 @@ "Workspaces": { "Workspaces": "Arbeitsbereiche" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Arbeitsbereiche & Widgets" - }, "Wrap the app command. %command% is replaced with the actual executable": { - "Wrap the app command. %command% is replaced with the actual executable": "" + "Wrap the app command. %command% is replaced with the actual executable": "Umhüllen Sie den App-Befehl. %command% wird durch die tatsächliche ausführbare Datei ersetzt" }, "Write:": { "Write:": "Schreiben:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X-Achse" }, "X-Ray": { - "X-Ray": "" + "X-Ray": "X-Ray" }, "XWayland": { - "XWayland": "" + "XWayland": "XWayland" }, "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { - "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" + "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "X-Ray lässt nur das Hintergrundbild verschwimmen (effizient) und ist die Standardeinstellung, wenn Weichzeichnen aktiviert ist. Deaktivieren Sie X-Ray für ein normales, vollständiges Weichzeichnen von allem unter dem Fenster (ressourcenintensiver)." + }, + "Y": { + "Y": "" }, "Y Axis": { "Y Axis": "Y-Achse" @@ -8313,16 +8340,16 @@ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Sie müssen entweder:\nQT_QPA_PLATFORMTHEME=gtk3 ODER\nQT_QPA_PLATFORMTHEME=qt6ct\nals Umgebungsvariablen setzen und dann die Shell neu starten.\n\nqt6ct erfordert die Installation von qt6ct-kde." }, "You'll enter your password at the greeter after the next reboot.": { - "You'll enter your password at the greeter after the next reboot.": "" + "You'll enter your password at the greeter after the next reboot.": "Nach dem nächsten Neustart geben Sie Ihr Passwort beim Greeter ein." }, "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": { - "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "" + "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "Nach dem nächsten Neustart wird das Passwort beim Greeter übersprungen. Der Sperrbildschirm und das Abmelden erfordern weiterhin Ihr Passwort." }, "You're All Set!": { "You're All Set!": "Alles bereit!" }, "Your compositor does not support background blur (ext-background-effect-v1)": { - "Your compositor does not support background blur (ext-background-effect-v1)": "" + "Your compositor does not support background blur (ext-background-effect-v1)": "Ihr Compositor unterstützt kein Hintergrund-Weichzeichnen (ext-background-effect-v1)" }, "Your system is up to date!": { "Your system is up to date!": "Dein System ist auf dem neuesten Stand!" @@ -8370,10 +8397,10 @@ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "Die Konfiguration 'dms/outputs' existiert, ist aber nicht in Ihrer Compositor-Konfiguration enthalten. Anzeigeänderungen werden nicht dauerhaft gespeichert." }, "e.g. /usr/bin/my-script --flag": { - "e.g. /usr/bin/my-script --flag": "" + "e.g. /usr/bin/my-script --flag": "z. B. /usr/bin/my-script --flag" }, "e.g. My Script": { - "e.g. My Script": "" + "e.g. My Script": "z. B. Mein Skript" }, "e.g. alice": { "e.g. alice": "z. B. alice" @@ -8385,7 +8412,7 @@ "e.g., focus-workspace 3, resize-column -10": "z.B., focus-workspace 3, resize-column -10" }, "e.g., hl.dsp.focus({ workspace = \"3\" })": { - "e.g., hl.dsp.focus({ workspace = \"3\" })": "" + "e.g., hl.dsp.focus({ workspace = \"3\" })": "z. B. hl.dsp.focus({ workspace = \"3\" })" }, "e.g., notify-send 'Hello' && sleep 1": { "e.g., notify-send 'Hello' && sleep 1": "e.g., notify-send 'Hallo' && sleep 1" @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "z. B. scratch, /^tmp_.*/, build" }, - "events": { - "events": "Ereignisse" - }, "ext": { "ext": "ext" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl nicht verfügbar – Sperrintegration erfordert DMS-Socket-Verbindung" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord-Server" }, diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index 504670fa..54fd067a 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 dispositivo conectado" }, - "1 event": { - "1 event": "1 evento" - }, "1 hour": { "1 hour": "" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 segundo" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minutos" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "" }, - "24-hour format": { - "24-hour format": "Formato de 24 horas" - }, "25 seconds": { "25 seconds": "" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Añadir un prefijo personalizado a todas las aplicaciones que se ejecutan. Esto puede ser usado para cosas como 'uwsm-app', 'systemd-run', o otro comando envoltorio." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Añade y configura los widgets que aparecen en tu escritorio" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Atrás • F1/I: Información del archivo • F10: Ayuda • Esc: Cerrar+" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Analizando la configuración..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identidad anónima (opcional)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Aplicar un tono cálido para disminuir la fatiga visual. Configure abajo la automatización para definir cuándo se activa." }, - "Applying authentication changes…": { - "Applying authentication changes…": "" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Colores armonizados con acentos definidos (base)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Configuración de barras" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "" }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "" }, - "Checking…": { - "Checking…": "" - }, "Choose Color": { "Choose Color": "Elegir color" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Conectando al dispositivo" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Conectando..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET no disponible" }, - "DWL service not available": { - "DWL service not available": "Servicio DWL no disponible" - }, "Daily": { "Daily": "" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Desabilitando WiFi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Prioridades visibles sobre apps en pantalla completa" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Mostrar y cambiar diseños DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Mostrar iconos de aplicaciones en los espacios" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Educación" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Error al actualizar la compartición" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Fallo al escribir archivo temporal para la validacion" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Ventana enfocada" }, - "Focused monitor only": { - "Focused monitor only": "" - }, "Fog": { "Fog": "" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Aplicaciones del espacio de trabajo en grupo" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Invertir al cambiar de modo" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "Sobreescribir opciones de MangoWC" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "" }, - "On-Screen Displays": { - "On-Screen Displays": "Indicadores en pantalla" - }, "On-screen Displays": { "On-screen Displays": "Indicadores en pantalla" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Enchufado" }, - "Plugged in": { - "Plugged in": "Enchufado" - }, "Plugin": { "Plugin": "Complemento" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Actualizar El Tiempo" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Requiere un compositor DWL" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Redimensionar Widget" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Resolución y refresco" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Esquinas redondeadas para ventanas" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Esquinas de ventana redondeadas (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Esquinas de ventana redondeadas (decoration.rounding)" - }, "Rule": { "Rule": "" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Ajustes de aplicaciones activas" }, - "Running greeter sync…": { - "Running greeter sync…": "" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Mostrar aplicaciones en el espacio de trabajo" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Mostrar las 9 etiquetas en lugar de solo las ocupadas (solo DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Espacio entre ventanas" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Espacio entre ventanas (hueco_in y hueco_ext)" - }, "Spacer": { "Spacer": "Espaciador" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Seleccionar" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Titulo" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Usar radio de ventana personalizado en lugar del radio del tema" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "Configuración VPN actualizada" }, - "VPN connections": { - "VPN connections": "Conexiones VPN" - }, "VPN deleted": { "VPN deleted": "VPN eliminada" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgets" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "" }, - "Window Rounding": { - "Window Rounding": "" - }, "Window Rules": { "Window Rules": "" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Espacio de trabajo" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Espacios de trabajo" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Espacios de trabajo y Widgets" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "Eje X" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Eje Y" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "" }, - "events": { - "events": "eventos" - }, "ext": { "ext": "" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl no disponible - integración requiere conexión al socket DMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "" }, diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json index 4f63b1ca..4907e0ef 100644 --- a/quickshell/translations/poexports/fa.json +++ b/quickshell/translations/poexports/fa.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 برخط" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 بروزرسانی" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 دستگاه متصل" }, - "1 event": { - "1 event": "۱ رویداد" - }, "1 hour": { "1 hour": "۱ ساعت" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "۱ ثانیه" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "۱۰ دقیقه" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24 ساعته" }, - "24-hour format": { - "24-hour format": "قالب ۲۴ ساعته" - }, "25 seconds": { "25 seconds": "۲۵ ثانیه" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "یک پیشوند سفارشی به تمام برنامه‌های در حال اجرا اضافه کنید. این می‌تواند برای مواردی مانند «uwsm-app»، «systemd-run» یا سایر بسته‌بندی دستور‌ها استفاده شود." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "افزودن و پیکربندی ابزارک‌هایی که در دسکتاپ شما نمایان می‌شوند" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "هم‌اکنون در همان نشست هستید" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: بازگشت • F1/I: اطلاعات فایل • F10: راهنما • Esc: بستن" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "در حال تحلیل پیکربندی..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "مدت زمان انیمیشن" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "هویت ناشناس (اختیاری)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "جایگزینی شناسه برنامه‌ها" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "برای کاهش خستگی چشم دمای رنگ گرم را اعمال کن. از تنظیمات خودکارسازی پایین برای کنترل زمان فعال شدن آن استفاده کنید." }, - "Applying authentication changes…": { - "Applying authentication changes…": "درحال اعمال تغییرات احراز هویت…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "برنامه‌ها" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "پالت رنگی متعادل با رنگ تأکیدی متمرکز (پیش‌فرض)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "پیکربندی نوار" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "بررسی برای بروزرسانی‌ها..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "درحال بررسی نیاز به احراز هویت sudo…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "درحال بررسی..." }, - "Checking…": { - "Checking…": "درحال بررسی..." - }, "Choose Color": { "Choose Color": "انتخاب رنگ" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "درحال اتصال به دستگاه" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "درحال اتصال به سرویس کلیپ‌بورد…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "درحال اتصال..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET در دسترس نیست" }, - "DWL service not available": { - "DWL service not available": "سرویس DWL در دسترس نیست" - }, "Daily": { "Daily": "روزانه" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "غیرفعال‌سازی وای‌فای..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "دیسک" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "نمایش همه اولویت‌ها روی برنامه‌های تمام‌صفحه" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "نمایش و تغییر چیدمان‌های DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "آیکون برنامه‌ها را در نشانگر‌های محیط‌کار نمایش بده" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "ویرایش متن کلیپ‌بورد" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "آموزش" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "بروزرسانی اشتراک‌گذاری ناموفق بود" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "نوشتن فایل موقت برای اعتبارسنجی ناموفق بود" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "شناور" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "فلوئنت" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "پنجره فوکوس‌شده" }, - "Focused monitor only": { - "Focused monitor only": "فقط مانیتور فوکوس شده" - }, "Fog": { "Fog": "مه" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "گروه" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "گروه‌بندی برنامه‌های محیط‌کار" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "قابل جلوگیری" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "معکوس هنگام تغییر حالت" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "باز کردن چشم" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "فایل‌ها و دایرکتوری‌ها را مدیریت می‌کند" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "جایگزینی‌های چیدمان MangoWC" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "محلی: نماپرداز سکو (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "پیمایش" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "هنگام درخواست" }, - "On-Screen Displays": { - "On-Screen Displays": "نمایشگر‌های بر صفحه" - }, "On-screen Displays": { "On-screen Displays": "نمایشگر‌های بر صفحه (OSD)" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "اتصال به برق" }, - "Plugged in": { - "Plugged in": "اتصال به برق" - }, "Plugin": { "Plugin": "افزونه" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "تازه‌سازی آب و هوا" }, - "Refreshing…": { - "Refreshing…": "درحال تازه‌سازی…" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "رجکس" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "به کامپازیتور DWL نیاز دارد" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "به نسخه جدیدتر Quickshell نیاز دارد" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "تغییر اندازه ابزارک" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "وضوح و تازه‌سازی" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "گوشه‌های گرد برای پنجره‌ها" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "گوشه‌های گرد برای پنجره‌ها (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "گوشه‌های گرد برای پنجره‌ها (decoration.rounding)" - }, "Rule": { "Rule": "قاعده" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "تنظیمات برنامه‌های درحال اجرا" }, - "Running greeter sync…": { - "Running greeter sync…": "درحال اجرای همگام‌سازی صفحه خوش‌آمدگویی…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "اجرا کردن در ترمینال" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "نمایش برنامه‌های محیط‌کار" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "نمایش کل ۹ برچسب به جای فقط برچسب‌های اشغال شده (فقط DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "یک خط بیرونی دور نشانگر محیط‌کار فوکوس شده نشان بده" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "فاصله بین پنجره‌ها" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "فاصله بین پنجره‌ها (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "فاصله بین پنجره‌ها (gaps_in و gaps_out)" - }, "Spacer": { "Spacer": "فاصله دهنده" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: پیمایش • ←→↑↓: پیمایش جدولی • Enter/Space: انتخاب" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "برچسب‌ها: %1" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "عنوان" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "رجکس عنوان (اختیاری)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "استفاده از شعاع پنجره سفارشی به جای شعاع تم" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "استفاده از گردی پنجره سفارشی به جای شعاع تم" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "از تصویر پس‌زمینه دسکتاپ استفاده کن" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "گذرواژه VPN بروز شد" }, - "VPN connections": { - "VPN connections": "اتصالات VPN" - }, "VPN deleted": { "VPN deleted": "VPN حذف شد" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "ابزارک‌ها" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "ابزارک‌ها، چیدمان، استایل" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "پهنای خط دور ابزارک به پیکسل" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "پهنای حاشیه پنجره (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "پهنای حاشیه پنجره (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "پهنای حاشیه پنجره و حلقه فوکوس" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "باز کردن پنجره" }, - "Window Rounding": { - "Window Rounding": "گردی پنجره" - }, "Window Rules": { "Window Rules": "قواعد پنجره‌ها" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "پاک کردن" }, - "Working…": { - "Working…": "درحال کار…" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "محیط‌کار" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "محیط‌کارها" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "محیط‌کارها و ابزارک‌ها" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "نوشتن:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "محور X" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "محور Y" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "مانند، scratch، /^tmp_.*/، build" }, - "events": { - "events": "رویداد‌ها" - }, "ext": { "ext": "پسوند" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl در دسترس نیست - یکپارچه‌سازی قفل به اتصال سوکت DMS نیاز دارد" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "سرور دیسکورد mangowc" }, diff --git a/quickshell/translations/poexports/fr.json b/quickshell/translations/poexports/fr.json index d584b78c..5bd35f99 100644 --- a/quickshell/translations/poexports/fr.json +++ b/quickshell/translations/poexports/fr.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 mise à jour" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 appareil connecté" }, - "1 event": { - "1 event": "1 événement" - }, "1 hour": { "1 hour": "1 heure" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 seconde" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minutes" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "Horloge 24 heures" }, - "24-hour format": { - "24-hour format": "Format 24 heures" - }, "25 seconds": { "25 seconds": "25 secondes" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Ajouter un préfixe personnalisé à tous les lancements d’applications (ex. uwsm-app, systemd-run ou autres wrappers de commandes)." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Ajouter et configurer les widgets affichés sur le bureau" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Retour arrière : Retour • F1/I : Infos fichier • F10 : Aide • Échap : Fermer" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Analyse de la configuration…" }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Durée d'animation" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identité anonyme (facultatif)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "Substitutions d’identifiant d’application" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Appliquer une température de couleur chaude pour réduire la fatigue visuelle. Utilisez les paramètres d’automatisation ci-dessous pour définir son activation." }, - "Applying authentication changes…": { - "Applying authentication changes…": "" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Applis" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Palette équilibrée avec des accents ciblés (par défaut)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Configurations de la barre" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Vérification des mises à jour..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Vérification de la nécessité de l'authentification sudo..." + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Vérification..." }, - "Checking…": { - "Checking…": "Vérification..." - }, "Choose Color": { "Choose Color": "Choisir une couleur" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Connexion au périphérique" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Connexion..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET indisponible" }, - "DWL service not available": { - "DWL service not available": "Service DWL indisponible" - }, "Daily": { "Daily": "Par jour" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Désactivation du Wi-Fi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Disc" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Afficher toutes les priorités au-dessus des applications en plein écran" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Afficher et changer les dispositions DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Afficher les icônes des applications dans les indicateurs d’espaces de travail" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Éducation" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Échec de la mise à jour du partage" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Échec de l’écriture du fichier temporaire pour la validation" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "Flottant" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Fenêtre active" }, - "Focused monitor only": { - "Focused monitor only": "Uniquement l'écran sélectionné" - }, "Fog": { "Fog": "Brouillard" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "Groupe" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Regrouper les applications de l'espace de travail" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "Inhibable" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Inverser lors du changement de mode" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Floraison Iris" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "Surcharges de disposition MangoWC" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Naviguer" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "Sur demande" }, - "On-Screen Displays": { - "On-Screen Displays": "Affichages à l’écran" - }, "On-screen Displays": { "On-screen Displays": "Affichages à l’écran" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Branché" }, - "Plugged in": { - "Plugged in": "Branché" - }, "Plugin": { "Plugin": "Plugin" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Actualiser la météo" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Nécessite un compositeur DWL" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Redimensionner le widget" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Résolution et rafraîchissement" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Coins arrondis pour les fenêtres" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Coins arrondis pour les fenêtres (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Coins arrondis pour les fenêtres (decoration.rounding)" - }, "Rule": { "Rule": "Règle" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Paramètres des applications en cours" }, - "Running greeter sync…": { - "Running greeter sync…": "Synchro du greeter en cours…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Afficher les applications de l’espace de travail" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Afficher les 9 étiquettes au lieu de seulement celles occupées (DWL uniquement)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Afficher un contour autour de l’indicateur de l’espace actif" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Espacement entre fenêtres" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Espacement entre fenêtres (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Espacement entre fenêtres (gaps_in et gaps_out)" - }, "Spacer": { "Spacer": "Espacement" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab : Navigation • ←→↑↓ : Navigation grille • Enter/Espace : Sélectionner" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Titre" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Regex du titre (optionnelle)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Utiliser un rayon de fenêtre personnalisé au lieu du rayon du thème" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Utiliser un arrondi de fenêtre personnalisé au lieu du rayon du thème" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Utiliser le fond d'écran du bureau" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "Configuration VPN mise à jour" }, - "VPN connections": { - "VPN connections": "Connexions VPN" - }, "VPN deleted": { "VPN deleted": "VPN supprimée" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgets" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widgets, disposition, style" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Largeur de la bordure de la fenêtre (px)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Largeur de la bordure de la fenêtre (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Largeur de la bordure et de l’anneau de focus" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Ouverture de fenêtre" }, - "Window Rounding": { - "Window Rounding": "Arrondi des fenêtres" - }, "Window Rules": { "Window Rules": "Règles de fenêtre" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Effacer" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Espace de travail" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Espaces de travail" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Espaces de travail et widgets" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "Écrire :" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "Axe X" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Axe Y" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "" }, - "events": { - "events": "événements" - }, "ext": { "ext": "ext" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl non disponible - l'intégration de verrouillage nécessite une connexion au socket DMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "Serveur Discord mangowc" }, diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index 4d859beb..232c542f 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -1,6 +1,6 @@ { "%1 (+%2 more)": { - "%1 (+%2 more)": "" + "%1 (+%2 more)": "%1 (+%2 נוספים)" }, "%1 Animation Speed": { "%1 Animation Speed": "מהירות האנימציה ב%1" @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 מקוונים" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 עדכון" }, @@ -108,7 +111,7 @@ "%1m ago": "לפני %1 דקות" }, "%command%": { - "%command%": "" + "%command%": "%command%" }, "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": { "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'חלופי' מאפשר למפתח לפתוח את הנעילה בעצמו. 'גורם שני' דורש קודם סיסמה או טביעת אצבע, ואז את המפתח." @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "התקן אחד מחובר" }, - "1 event": { - "1 event": "אירוע אחד" - }, "1 hour": { "1 hour": "שעה אחת" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "שנייה אחת" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 דקות" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "שעון 24 שעות" }, - "24-hour format": { - "24-hour format": "תבנית 24 שעות" - }, "25 seconds": { "25 seconds": "25 שניות" }, @@ -381,7 +381,7 @@ "Active VPN": "VPN פעיל" }, "Active in Column": { - "Active in Column": "" + "Active in Column": "פעיל בעמודה" }, "Active tile background and icon color": { "Active tile background and icon color": "צבע רקע וסמל של האריח הפעיל" @@ -417,7 +417,7 @@ "Add Desktop Widget": "הוספת ווידג׳ט לשולחן העבודה" }, "Add Entry": { - "Add Entry": "" + "Add Entry": "הוסף/י רשומה" }, "Add Printer": { "Add Printer": "הוספת מדפסת" @@ -429,10 +429,10 @@ "Add Widget": "הוספת ווידג׳ט" }, "Add Widget to %1": { - "Add Widget to %1": "" + "Add Widget to %1": "הוסף/י ווידג׳ט אל %1" }, "Add Window Rule": { - "Add Window Rule": "" + "Add Window Rule": "הוסף/י חוק חלון" }, "Add a border around the dock": { "Add a border around the dock": "הוסף/י מסגרת מסביב לDock" @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "הוסף/י קידומת מותאמת אישית לכל הפעלות האפליקציות. ניתן להשתמש בזה עבור דברים כמו 'uwsm-app', 'systemd-run', או עוטפי פקודות אחרים." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "הוסף/י והגדר/י ווידג׳טים שמופיעים על שולחן העבודה שלך" }, @@ -447,7 +450,7 @@ "Add by Address": "הוספה לפי כתובת" }, "Add match": { - "Add match": "" + "Add match": "הוסף/י התאמה" }, "Add the new user to the %1 group so they can run dms greeter sync --profile.": { "Add the new user to the %1 group so they can run dms greeter sync --profile.": "הוסף/י את המשתמש/ת החדש/ה לקבוצה %1 כדי שיוכלו להריץ את הפקודה dms greeter sync --profile." @@ -456,7 +459,7 @@ "Add the new user to the %1 group so they can use sudo.": "הוסף/י את המשתמש/ת החדש/ה לקבוצה %1 כדי שיוכלו להשתמש בsudo." }, "Add to Autostart": { - "Add to Autostart": "" + "Add to Autostart": "הוסף/י להפעלה אוטומטית" }, "Adjust the bar height via inner padding": { "Adjust the bar height via inner padding": "כוונן/י את גובה הסרגל באמצעות ריווח פנימי" @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "כבר בהפעלה זו" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: חזרה • F1/I: מידע על הקובץ • F10: עזרה • Esc: סגירה" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "מנתח תצורה..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "משך זמן לאנימציה" }, @@ -566,23 +575,23 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "זהות אנונימית (אופציונלי)" }, - "Any": { - "Any": "" - }, "Any window": { - "Any window": "" + "Any window": "כל חלון שהוא" }, "App Customizations": { "App Customizations": "התאמות אישיות לאפליקציות" }, "App ID": { - "App ID": "" + "App ID": "App ID" + }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" }, "App ID Substitutions": { "App ID Substitutions": "החלפת ID לאפליקציות" }, "App ID regex": { - "App ID regex": "" + "App ID regex": "App ID regex" }, "App ID regex (e.g. ^firefox$)": { "App ID regex (e.g. ^firefox$)": "App ID regex (לדוגמה ^firefox$)" @@ -600,7 +609,7 @@ "Appearance": "מראה" }, "Application": { - "Application": "" + "Application": "אפליקציה" }, "Application Dock": { "Application Dock": "Dock אפליקציות" @@ -609,7 +618,7 @@ "Applications": "אפליקציות" }, "Applications and commands to start automatically when you log in": { - "Applications and commands to start automatically when you log in": "" + "Applications and commands to start automatically when you log in": "אפליקציות ופקודות שיופעלו אוטומטית בעת ההתחברות" }, "Apply Changes": { "Apply Changes": "החל/י שינויים" @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "הגדרת טמפרטורת צבע חמה כדי להפחית מאמץ בעיניים. השתמש/י בהגדרות האוטומציה למטה כדי לשלוט מתי ההגדרה מופעלת." }, - "Applying authentication changes…": { - "Applying authentication changes…": "מחיל שינויי אימות…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "אפליקציות" @@ -672,7 +681,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "סדר/י מסכים והגדר/י רזולוציה, קצב רענון וVRR" }, "At Startup": { - "At Startup": "" + "At Startup": "בהפעלה" }, "At least one output must remain enabled": { "At least one output must remain enabled": "לפחות פלט אחד חייב להישאר מופעל" @@ -795,16 +804,16 @@ "Auto-hide Dock": "הסתרה אוטומטית של הDock" }, "Auto-login": { - "Auto-login": "" + "Auto-login": "התחברות אוטומטית" }, "Auto-login disabled": { - "Auto-login disabled": "" + "Auto-login disabled": "התחברות אוטומטית מושבתת" }, "Auto-login enabled": { - "Auto-login enabled": "" + "Auto-login enabled": "התחברות אוטומטית מופעלת" }, "Auto-login on startup": { - "Auto-login on startup": "" + "Auto-login on startup": "התחברות אוטומטית בהפעלה" }, "Auto-saving...": { "Auto-saving...": "שומר אוטומטית..." @@ -861,10 +870,10 @@ "Automation": "אוטומציה" }, "Autostart Apps": { - "Autostart Apps": "" + "Autostart Apps": "אפליקציות בהפעלה אוטומטית" }, "Autostart Entries": { - "Autostart Entries": "" + "Autostart Entries": "רשומות הפעלה אוטומטית" }, "Available": { "Available": "זמין" @@ -894,7 +903,7 @@ "Back": "חזרה" }, "Back to user list": { - "Back to user list": "" + "Back to user list": "חזרה לרשימת המשתמשים" }, "Backend": { "Backend": "Backend" @@ -909,7 +918,7 @@ "Background Blur": "טשטוש רקע" }, "Background Effect": { - "Background Effect": "" + "Background Effect": "אפקט רקע" }, "Background Opacity": { "Background Opacity": "שקיפות רקע" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "פלטה מאוזנת עם דגשים ממוקדים (ברירת מחדל)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "תצורות סרגלים" }, @@ -1020,7 +1035,7 @@ "Bluetooth not available": "Bluetooth אינו זמין" }, "Blur": { - "Blur": "" + "Blur": "טשטוש" }, "Blur Border Color": { "Blur Border Color": "צבע מסגרת הטשטוש" @@ -1053,7 +1068,7 @@ "Border Color": "צבע מסגרת" }, "Border Off": { - "Border Off": "" + "Border Off": "מסגרת כבויה" }, "Border Opacity": { "Border Opacity": "שקיפות המסגרת" @@ -1074,10 +1089,10 @@ "Border color around blurred surfaces": "צבע המסגרת סביב משטחים מטושטשים" }, "Border w/ Bg": { - "Border w/ Bg": "" + "Border w/ Bg": "מסגרת עם רקע" }, "Border with Background": { - "Border with Background": "" + "Border with Background": "מסגרת עם רקע" }, "Bottom": { "Bottom": "למטה" @@ -1209,10 +1224,10 @@ "Caps Lock is on": "Caps Lock פעיל" }, "Cast Target": { - "Cast Target": "" + "Cast Target": "יעד שידור" }, "Category": { - "Category": "" + "Category": "קטגוריה" }, "Center Section": { "Center Section": "קטע אמצעי" @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "בודק עדכונים..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "בודק האם נדרש אימות sudo…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "בודק..." }, - "Checking…": { - "Checking…": "בודק…" - }, "Choose Color": { "Choose Color": "בחר/י צבע" }, @@ -1296,7 +1308,7 @@ "Choose a color": "בחר/י צבע" }, "Choose a power profile": { - "Choose a power profile": "" + "Choose a power profile": "בחר/י פרופיל חשמל" }, "Choose colors from palette": { "Choose colors from palette": "בחר/י צבעים מפלטה" @@ -1329,7 +1341,7 @@ "Choose where on-screen displays appear on screen": "בחר/י היכן יופיעו תצוגות הOSD על המסך" }, "Choose whether to launch a desktop app or a command": { - "Choose whether to launch a desktop app or a command": "" + "Choose whether to launch a desktop app or a command": "בחר/י האם להפעיל אפליקציית שולחן עבודה או פקודה" }, "Choose which displays show this widget": { "Choose which displays show this widget": "בחר/י באילו מסכים יוצג ווידג׳ט זה" @@ -1347,7 +1359,7 @@ "Circle": "עיגול" }, "Class regex": { - "Class regex": "" + "Class regex": "Class regex" }, "Class regex (e.g. ^firefox$)": { "Class regex (e.g. ^firefox$)": "Class regex (לדוגמה ^firefox$)" @@ -1419,7 +1431,7 @@ "Clipboard Manager": "מנהל לוח ההעתקה" }, "Clipboard Saved": { - "Clipboard Saved": "" + "Clipboard Saved": "לוח ההעתקה נשמר" }, "Clipboard sent": { "Clipboard sent": "לוח ההעתקה נשלח" @@ -1518,7 +1530,7 @@ "Command": "פקודה" }, "Command Line": { - "Command Line": "" + "Command Line": "שורת פקודה" }, "Commands": { "Commands": "פקודות" @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "מתחבר להתקן" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "מתחבר לשירות לוח ההעתקה…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "מתחבר..." @@ -1659,7 +1671,7 @@ "Contrast": "ניגודיות" }, "Contributor": { - "Contributor": "" + "Contributor": "תורם/ת" }, "Control Center": { "Control Center": "מרכז הבקרה" @@ -1710,7 +1722,7 @@ "Convenience options for the login screen. Sync to apply.": "אפשרויות נוחות למסך ההתחברות. הרץ/י סנכרון כדי להחיל." }, "Convert to DMS": { - "Convert to DMS": "" + "Convert to DMS": "המר/י לDMS" }, "Cooldown": { "Cooldown": "זמן המתנה" @@ -1764,7 +1776,7 @@ "Corners & Background": "פינות ורקע" }, "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" + "Couldn't open a terminal for the auto-login update.": "לא ניתן היה לפתוח מסוף עבור עדכון ההתחברות האוטומטית." }, "Count Only": { "Count Only": "ספירה בלבד" @@ -1866,7 +1878,7 @@ "Cursor Theme": "ערכת נושא לסמן העכבר" }, "Curve": { - "Curve": "" + "Curve": "עקומה" }, "Curve: curve rasterizer.": { "Curve: curve rasterizer.": "מעוקם: המרה לפי עקומות." @@ -1959,7 +1971,7 @@ "DMS Settings": "הגדרות DMS" }, "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": { - "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "" + "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "הגדרות DMS כותבות קיצורי מקלדת בLua. הוסף/י את קובץ ה-include של DMS כדי שהעריכות יחולו." }, "DMS Shortcuts": { "DMS Shortcuts": "קיצורי DMS" @@ -1968,7 +1980,7 @@ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "מסך ההתחברות של DMS דורש את החבילות הבאות: greetd ו-dms-greeter (חובה), fprintd ו-pam_fprintd (להזדהות עם טביעת אצבע) ו-pam_u2f (להזדהות עם מפתחות אבטחה). הוסף/הוסיפי את המשתמש שלך לקבוצת greeter. שינויי אימות מוחלים באופן אוטומטי ועשויים לפתוח מסוף כאשר נדרש אימות עם sudo." }, "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" + "DMS needs administrator access. The terminal closes automatically when done.": "DMS דורש הרשאות מנהל מערכת. המסוף ייסגר אוטומטית בסיום." }, "DMS out of date": { "DMS out of date": "הDMS לא מעודכן" @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET אינו זמין" }, - "DWL service not available": { - "DWL service not available": "שירות DWL אינו זמין" - }, "Daily": { "Daily": "יומי" }, @@ -2109,7 +2118,7 @@ "Delete Printer": "מחק/י מדפסת" }, "Delete Rule": { - "Delete Rule": "" + "Delete Rule": "מחק/י חוק" }, "Delete Saved Item?": { "Delete Saved Item?": "למחוק את הפריט השמור?" @@ -2151,7 +2160,7 @@ "Desktop": "שולחן העבודה" }, "Desktop Application": { - "Desktop Application": "" + "Desktop Application": "אפליקציית שולחן העבודה" }, "Desktop Clock": { "Desktop Clock": "שעון לשולחן העבודה" @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "משבית WiFi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "דיסק" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "הצג/י את כל ההתראות מעל אפליקציות במסך מלא" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "הצג/י והחלף/י פריסות DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "הצג/י סמלי אפליקציות במצייני סביבת העבודה" @@ -2316,7 +2325,7 @@ "Display line numbers in editor": "הצג/י מספרי שורות בעורך" }, "Display name for this entry": { - "Display name for this entry": "" + "Display name for this entry": "שם תצוגה לרשומה זו" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "הצג/י רק סביבות עבודה שמכילות חלונות" @@ -2328,7 +2337,7 @@ "Display seconds in the clock": "הצג/י שניות בשעון" }, "Display setup failed": { - "Display setup failed": "" + "Display setup failed": "הגדרת התצוגה נכשלה" }, "Display the power system menu": { "Display the power system menu": "הצג/י את תפריט המערכת לניהול החשמל" @@ -2463,7 +2472,7 @@ "Edit Clipboard": "ערוך/ערכי לוח העתקה" }, "Edit Rule": { - "Edit Rule": "" + "Edit Rule": "עריכת חוק" }, "Edit Window Rule": { "Edit Window Rule": "ערוך/ערכי את חוק החלון" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "ערוך/ערכי טקסט מלוח ההעתקה" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "חינוך" }, @@ -2649,7 +2661,7 @@ "Enterprise": "ארגוני" }, "Entry Type": { - "Entry Type": "" + "Entry Type": "סוג רשומה" }, "Entry pinned": { "Entry pinned": "הרשומה הוצמדה" @@ -2829,7 +2841,7 @@ "Failed to fetch network QR code: %1": "קבלת קוד QR של הרשת נכשלה: %1" }, "Failed to generate systemd override": { - "Failed to generate systemd override": "" + "Failed to generate systemd override": "יצירת דריסת systemd נכשלה" }, "Failed to hold job": { "Failed to hold job": "השהיית העבודה נכשלה" @@ -2975,11 +2987,11 @@ "Failed to update sharing": { "Failed to update sharing": "עדכון השיתוף נכשל" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { - "Failed to write autostart entry": "" + "Failed to write autostart entry": "כתיבת רשומת ההפעלה האוטומטית נכשלה" + }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "כתיבת קובץ זמני לאימות נכשלה" @@ -3039,7 +3051,7 @@ "Fill": "מילוי" }, "Filter": { - "Filter": "" + "Filter": "סינון" }, "Find in Text": { "Find in Text": "חפש/י בטקסט" @@ -3101,8 +3113,20 @@ "Float": { "Float": "צף" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { - "Floating": "" + "Floating": "צף" + }, + "Floating Position": { + "Floating Position": "" }, "Fluent": { "Fluent": "Fluent" @@ -3114,16 +3138,16 @@ "Focus": "מיקוד" }, "Focus Ring Color": { - "Focus Ring Color": "" + "Focus Ring Color": "צבע טבעת המיקוד" }, "Focus Ring Off": { - "Focus Ring Off": "" + "Focus Ring Off": "טבעת מיקוד כבויה" }, "Focus at Startup": { "Focus at Startup": "מיקוד בהפעלה" }, "Focused": { - "Focused": "" + "Focused": "ממוקד" }, "Focused Border": { "Focused Border": "מסגרת ממוקדת" @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "חלון ממוקד" }, - "Focused monitor only": { - "Focused monitor only": "מסך ממוקד בלבד" - }, "Fog": { "Fog": "ערפל" }, @@ -3207,7 +3228,7 @@ "Force Kill (SIGKILL)": "כפה/י סגירה (SIGKILL)" }, "Force RGBX": { - "Force RGBX": "" + "Force RGBX": "אלץ/י RGBX" }, "Force Wide Color": { "Force Wide Color": "אלץ/י צבע רחב" @@ -3285,7 +3306,7 @@ "Full Day & Month": "יום וחודש מלאים" }, "Full command to execute": { - "Full command to execute": "" + "Full command to execute": "פקודה מלאה לביצוע" }, "Full with Year": { "Full with Year": "מלא עם שנה" @@ -3333,7 +3354,7 @@ "Gamma control not available. Requires DMS API v6+.": "בקרת גאמה אינה זמינה. נדרש API של DMS גרסה 6 ומעלה." }, "Generate Override": { - "Generate Override": "" + "Generate Override": "צור/צרי דריסה" }, "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.": { "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.": "צור/צרי תצורות בסיס עבור GTK3/4 או QT5/QT6 (החבילה qt6ct-kde נדרשת) כדי לעקוב אחר הצבעים של DMS. צריך ליצור את התבנית רק פעם אחת.

מומלץ להגדיר את adw-gtk3 לפני החלת ערכות נושא על GTK." @@ -3437,6 +3458,9 @@ "Group": { "Group": "קבוצה" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "קיבוץ האפליקציות של סביבת העבודה" }, @@ -3570,7 +3594,7 @@ "Hide the bar when the pointer leaves even if a popout is still open": "הסתר/י את הסרגל כשמצביע העכבר עוזב גם אם חלון קופץ עדיין פתוח" }, "High": { - "High": "" + "High": "גבוה" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "פלטת צבעים בנאמנות גבוהה המשמרת את גווני המקור." @@ -3660,13 +3684,13 @@ "Hyprland Website": "האתר של Hyprland" }, "Hyprland conf mode": { - "Hyprland conf mode": "" + "Hyprland conf mode": "מצב קונפיגורציית Hyprland" }, "Hyprland conf mode is read-only in Settings": { - "Hyprland conf mode is read-only in Settings": "" + "Hyprland conf mode is read-only in Settings": "מצב קונפיגורציית Hyprland הוא לקריאה בלבד בהגדרות" }, "Hyprland config include missing": { - "Hyprland config include missing": "" + "Hyprland config include missing": "קובץ includes של Hyprland חסר" }, "I Understand": { "I Understand": "הבנתי" @@ -3708,7 +3732,7 @@ "Idle": "בהמתנה" }, "Idle Inhibit": { - "Idle Inhibit": "" + "Idle Inhibit": "מניעת המתנה" }, "Idle Inhibitor": { "Idle Inhibitor": "מונע ההמתנה" @@ -3717,7 +3741,7 @@ "Idle Settings": "הגדרות המתנה" }, "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": { - "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "" + "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "אם סמלי אפליקציות בהפעלה אוטומטית אינם מופיעים במגש המערכת, צור/צרי דריסת systemd כדי להבטיח שDMS מופעל לפני אפליקציות אלו" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "אם השדה מוסתר, הוא יופיע ברגע שלוחצים על מקש." @@ -3797,8 +3821,11 @@ "Inhibitable": { "Inhibitable": "ניתן לעיכוב" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { - "Initialised": "" + "Initialised": "אותחל" }, "Inner padding applied to each widget": { "Inner padding applied to each widget": "ריווח פנימי שמוחל על כל ווידג׳ט" @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "היפוך בעת שינוי מצב" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "פריחת האיריס" }, @@ -4179,7 +4209,7 @@ "Longitude": "קו אורך" }, "Low": { - "Low": "" + "Low": "נמוך" }, "Low Priority": { "Low Priority": "עדיפות נמוכה" @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "מנהל קבצים ותיקיות" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "דריסות פריסה של MangoWC" }, @@ -4263,10 +4299,10 @@ "Marker Waste Full": "מיכל העודפים מלא" }, "Match (%1)": { - "Match (%1)": "" + "Match (%1)": "התאמה (%1)" }, "Match Conditions": { - "Match Conditions": "" + "Match Conditions": "תנאי התאמה" }, "Match Criteria": { "Match Criteria": "קריטריוני התאמה" @@ -4599,11 +4635,14 @@ "Named Workspace Icons": "סמלים לסביבות עבודה בעלות שם" }, "Native": { - "Native": "" + "Native": "מובנה" }, "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "מובנה: מעבד הפלטפורמה המובנה (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "ניווט" }, @@ -4782,7 +4821,7 @@ "No app customizations.": "אין התאמות אישיות לאפליקציות." }, "No application selected": { - "No application selected": "" + "No application selected": "לא נבחרה אפליקציה" }, "No apps found": { "No apps found": "לא נמצאו אפליקציות" @@ -4794,7 +4833,7 @@ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "אין אפליקציות מושתקות. לחץ/י לחיצה ימנית על התראה ובחר/י ב\"השתק/י חלונות קופצים\" להוספה לכאן." }, "No autostart entries": { - "No autostart entries": "" + "No autostart entries": "אין רשומות הפעלה אוטומטית" }, "No battery": { "No battery": "אין סוללה" @@ -4992,7 +5031,7 @@ "No window rules configured": "לא הוגדרו חוקי חלון" }, "Noise": { - "Noise": "" + "Noise": "רעש" }, "None": { "None": "ללא" @@ -5034,7 +5073,7 @@ "Not detected": "לא זוהה" }, "Not listed?": { - "Not listed?": "" + "Not listed?": "לא מופיע ברשימה?" }, "Not paired": { "Not paired": "לא מוצמד" @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "לפי דרישה" }, - "On-Screen Displays": { - "On-Screen Displays": "תצוגות על המסך" - }, "On-screen Displays": { "On-screen Displays": "תצוגות על המסך (OSD)" }, @@ -5226,7 +5262,7 @@ "Opening files": "פותח קבצים" }, "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" + "Opening terminal to update greetd": "פותח מסוף לעדכון greetd" }, "Opening terminal: ": { "Opening terminal: ": "פותח מסוף: " @@ -5247,7 +5283,7 @@ "Optional location": "מיקום אופציונלי" }, "Optional state-based conditions applied to the first match.": { - "Optional state-based conditions applied to the first match.": "" + "Optional state-based conditions applied to the first match.": "תנאים מבוססי מצב אופציונליים המוחלים על ההתאמה הראשונה." }, "Options": { "Options": "אפשרויות" @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "מחובר לחשמל" }, - "Plugged in": { - "Plugged in": "מחובר לחשמל" - }, "Plugin": { "Plugin": "תוסף" }, @@ -5664,7 +5697,7 @@ "Power Menu Customization": "התאמה אישית של תפריט הכיבוי" }, "Power Mode": { - "Power Mode": "" + "Power Mode": "מצב צריכת חשמל" }, "Power Off": { "Power Off": "כיבוי" @@ -5826,7 +5859,7 @@ "Protocol": "פרוטוקול" }, "Qt": { - "Qt": "" + "Qt": "Qt" }, "Qt colors applied successfully": { "Qt colors applied successfully": "צבעי Qt הוחלו בהצלחה" @@ -5886,7 +5919,7 @@ "Re-enter password": "הזן/י סיסמה מחדש" }, "Read-only legacy config": { - "Read-only legacy config": "" + "Read-only legacy config": "תצורת מורשת לקריאה בלבד" }, "Read:": { "Read:": "קריאה:" @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "רענן/י מזג אוויר" }, - "Refreshing…": { - "Refreshing…": "מרענן…" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -5988,7 +6021,7 @@ "Remove inner padding from all widgets": "הסר/י ריווח פנימי מכל הווידג׳טים" }, "Remove match": { - "Remove match": "" + "Remove match": "הסר/י התאמה" }, "Remove the shortcut %1?": { "Remove the shortcut %1?": "להסיר את קיצור הדרך %1?" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "נדרש שרת DMS עם יכולת עדכון מערכת (sysupdate)" }, - "Requires DWL compositor": { - "Requires DWL compositor": "קומפוזיטור DWL נדרש" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "נדרשת גרסה חדשה יותר של Quickshell" @@ -6051,7 +6084,7 @@ "Requires night mode support": "תמיכה במצב לילה נדרשת" }, "Requires remembering the last user and session. Enable those options first.": { - "Requires remembering the last user and session. Enable those options first.": "" + "Requires remembering the last user and session. Enable those options first.": "דורש זכירת המשתמש וההפעלה האחרונים. הפעל/י אפשרויות אלו תחילה." }, "Reset": { "Reset": "איפוס" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "שינוי גודל הווידג׳ט" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "רזולוציה ורענון" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "פינות מעוגלות לחלונות" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "פינות מעוגלות לחלונות (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "פינות מעוגלות לחלונות (decoration.rounding)" - }, "Rule": { "Rule": "חוק" }, @@ -6162,7 +6195,7 @@ "Rules (%1)": "חוקים (%1)" }, "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": { - "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "" + "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "נמצאו חוקים בהגדרות הקומפוזיטור שלך. הם לקריאה בלבד כאן, השתמש/י ב'המר/י לDMS' כדי ליצור עותק הניתן לעריכה." }, "Run Again": { "Run Again": "הרץ/י שוב" @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "הגדרות אפליקציות פעילות" }, - "Running greeter sync…": { - "Running greeter sync…": "מריץ סנכרון במסך ההתחברות…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "פועל במסוף" @@ -6204,7 +6237,7 @@ "SMS": "SMS" }, "Saturation": { - "Saturation": "" + "Saturation": "רוויה" }, "Save": { "Save": "שמירה" @@ -6315,7 +6348,7 @@ "Search Options": "אפשרויות חיפוש" }, "Search applications...": { - "Search applications...": "" + "Search applications...": "חפש/י אפליקציות..." }, "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "חפש/י לפי צירוף מקשים, תיאור או שם פעולה.\n\nפעולת ברירת מחדל מעתיקה את קיצור המקלדת ללוח ההעתקה.\nלחץ/י לחיצה ימנית או לחץ/י על חץ ימינה כדי להצמיד קיצורי מקלדת בשימוש תכוף - הם יופיעו בראש כשלא מחפשים." @@ -6420,7 +6453,7 @@ "Select a color from the palette or use custom sliders": "בחר/י צבע מהפלטה או השתמש/י במחוונים מותאמים אישית" }, "Select a desktop application": { - "Select a desktop application": "" + "Select a desktop application": "בחר/י אפליקציית שולחן עבודה" }, "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": { "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "בחר/י ווידג׳ט להוספה לשולחן העבודה שלך. כל ווידג׳ט הוא מופע נפרד עם הגדרות משלו." @@ -6681,7 +6714,7 @@ "Show Humidity": "הצג/י לחות" }, "Show Icon": { - "Show Icon": "" + "Show Icon": "הצג/י סמל" }, "Show Launcher Button": { "Show Launcher Button": "הצג/י את כפתור המשגר" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "הצגת אפליקציות בסביבת העבודה" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "הצג/י את כל 9 התגים במקום רק את התגים הפעילים (DWL בלבד)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "הצג/י טבעת מתאר סביב המחוון של סביבת העבודה הממוקדת" @@ -6837,7 +6870,7 @@ "Show mode tabs and keyboard hints at the bottom.": "הצג/י לשוניות מצב ורמזי מקלדת בתחתית." }, "Show mount path": { - "Show mount path": "" + "Show mount path": "הצג/י נתיב עגינה" }, "Show notification popups only on the currently focused monitor": { "Show notification popups only on the currently focused monitor": "הצג/י חלונות קופצים של התראות רק במסך הממוקד כעת" @@ -6963,7 +6996,7 @@ "Skip setup": "דלג/י על ההתקנה" }, "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": { - "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "" + "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "דלג/י על סיסמת מסך ההתחברות לאחר ההפעלה עד להתנתקות. פתיחת מסך הנעילה נשארת ללא שינוי. ייכנס לתוקף בהפעלה מחדש הבאה לאחר סנכרון." }, "Small": { "Small": "קטן" @@ -6999,7 +7032,7 @@ "Sounds": "צלילים" }, "Source: %1": { - "Source: %1": "" + "Source: %1": "מקור: %1" }, "Space between the bar and screen edges": { "Space between the bar and screen edges": "מרווח בין הסרגל לקצוות המסך" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "רווח בין חלונות" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "רווח בין חלונות (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "רווח בין חלונות (gaps_in ו-gaps_out)" - }, "Spacer": { "Spacer": "מרווח" }, @@ -7227,7 +7254,7 @@ "System toast notifications": "התראות מערכת קופצות" }, "Systemd Override generated": { - "Systemd Override generated": "" + "Systemd Override generated": "נוצרה דריסת systemd" }, "Tab": { "Tab": "טאב" @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: ניווט • ←→↑↓: ניווט ברשת • Enter/Space: בחירה" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "תגיות: %1" }, @@ -7317,7 +7347,7 @@ "The job queue of this printer is empty": "תור ההדפסה של מדפסת זו ריק" }, "The rule applies to any window matching one of these.": { - "The rule applies to any window matching one of these.": "" + "The rule applies to any window matching one of these.": "החוק חל על כל חלון שתואם לאחד מאלה." }, "Theme & Colors": { "Theme & Colors": "ערכת נושא וצבעים" @@ -7341,7 +7371,7 @@ "Themes": "ערכות נושא" }, "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": { - "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "" + "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "אלה מוסיפים רשומות לתיקיית ההפעלה האוטומטית של XDG (~/.config/autostart/*.desktop)" }, "Thickness": { "Thickness": "עובי" @@ -7362,16 +7392,16 @@ "This device": "התקן זה" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "התקנה זו עדיין משתמשת בhyprland.conf. הרץ/י dms setup כדי להעביר את ההגדרות לפני עריכת הגדרות סמן העכבר." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "התקנה זו עדיין משתמשת בhyprland.conf. הרץ/י dms setup כדי להעביר את ההגדרות לפני עריכת הגדרות התצוגה." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "התקנה זו עדיין משתמשת בhyprland.conf. הרץ/י dms setup כדי להעביר את ההגדרות לפני עריכת קיצורי מקלדת בהגדרות." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "התקנה זו עדיין משתמשת בhyprland.conf. הרץ/י dms setup כדי להעביר את ההגדרות לפני עריכת חוקי החלון בהגדרות." }, "This may take a few seconds": { "This may take a few seconds": "זה עשוי לקחת מספר שניות" @@ -7460,6 +7490,9 @@ "Title": { "Title": "כותרת" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Title regex (אופציונלי)" }, @@ -7572,7 +7605,7 @@ "Trash command failed (exit %1)": "פקודת האשפה נכשלה (יציאה %1)" }, "Tray Icon Fix": { - "Tray Icon Fix": "" + "Tray Icon Fix": "תיקון סמל מגש המערכת" }, "Trending GIFs": { "Trending GIFs": "GIFים טרנדיים" @@ -7641,7 +7674,7 @@ "Unavailable": "לא זמין" }, "Uncategorized": { - "Uncategorized": "" + "Uncategorized": "ללא קטגוריה" }, "Unfocused Color": { "Unfocused Color": "צבע לא ממוקד" @@ -7782,7 +7815,7 @@ "Uptime:": "זמן פעילות:" }, "Urgent": { - "Urgent": "" + "Urgent": "דחוף" }, "Urgent Color": { "Urgent Color": "צבע דחוף" @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "השתמש/י ברדיוס חלון מותאם אישית במקום ברדיוס של ערכת הנושא" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "השתמש/י בעיגול חלון מותאם אישית במקום ברדיוס של ערכת הנושא" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "שימוש ברקע של שולחן העבודה" }, @@ -7860,7 +7890,7 @@ "Use fingerprint authentication for the lock screen.": "השתמש/י באימות טביעת אצבע עבור מסך הנעילה." }, "Use keys 1-3 or arrows, Enter/Space to select": { - "Use keys 1-3 or arrows, Enter/Space to select": "" + "Use keys 1-3 or arrows, Enter/Space to select": "השתמש/י במקשים 1-3 או בחצים, Enter/Space לבחירה" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "השתמש/י בערכת נושא בהירה במקום כהה" @@ -7896,7 +7926,7 @@ "User": "משתמש" }, "User Window Rules (%1)": { - "User Window Rules (%1)": "" + "User Window Rules (%1)": "חוקי חלון של משתמש (%1)" }, "User already exists": { "User already exists": "המשתמש כבר קיים" @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "תצורת הVPN עודכנה" }, - "VPN connections": { - "VPN connections": "חיבורי VPN" - }, "VPN deleted": { "VPN deleted": "הVPN נמחק" }, @@ -8007,7 +8034,7 @@ "Vertical Tiling": "ריצוף אנכי" }, "Very High": { - "Very High": "" + "Very High": "גבוה מאוד" }, "Vibrant": { "Vibrant": "תוסס" @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "ווידג׳טים" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "ווידג׳טים, פריסה, סגנון" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "רוחב של קו המתאר של הווידג׳ט בפיקסלים" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "רוחב מסגרת חלון (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "רוחב מסגרת חלון (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "רוחב מסגרת חלון וטבעת מיקוד" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "פתיחת חלון" }, - "Window Rounding": { - "Window Rounding": "עיגול החלון" - }, "Window Rules": { "Window Rules": "חוקי חלון" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "ניגוב" }, - "Working…": { - "Working…": "עובד…" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "סביבת עבודה" @@ -8267,26 +8291,29 @@ "Workspaces": { "Workspaces": "סביבות עבודה" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "סביבות עבודה וווידג׳טים" - }, "Wrap the app command. %command% is replaced with the actual executable": { - "Wrap the app command. %command% is replaced with the actual executable": "" + "Wrap the app command. %command% is replaced with the actual executable": "עטוף/עטפי את פקודת האפליקציה. %command% יוחלף בקובץ ההרצה בפועל" }, "Write:": { "Write:": "כתיבה:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "ציר X" }, "X-Ray": { - "X-Ray": "" + "X-Ray": "רנטגן" }, "XWayland": { - "XWayland": "" + "XWayland": "XWayland" }, "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { - "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" + "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "רנטגן (xray) מטשטש רק את תמונת הרקע (חסכוני) וזוהי ברירת המחדל כאשר הטשטוש פועל. הגדר/י את ״רנטגן״ ככבוי לקבלת טשטוש מלא רגיל של כל מה שנמצא מתחת לחלון (זולל יותר משאבים)." + }, + "Y": { + "Y": "" }, "Y Axis": { "Y Axis": "ציר Y" @@ -8313,16 +8340,16 @@ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "עליך להגדיר את אחד מהמשתנים הבאים:\nQT_QPA_PLATFORMTHEME=gtk3 או\nQT_QPA_PLATFORMTHEME=qt6ct\nכמשתני סביבה ולאחר מכן להפעיל מחדש את DMS.\n\n* qt6ct דורש התקנה של qt6ct-kde." }, "You'll enter your password at the greeter after the next reboot.": { - "You'll enter your password at the greeter after the next reboot.": "" + "You'll enter your password at the greeter after the next reboot.": "תצטרך/תצטרכי להזין את הסיסמה שלך במסך ההתחברות לאחר ההפעלה מחדש הבאה." }, "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": { - "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "" + "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "את/ה תדלג/י על סיסמת מסך ההתחברות לאחר ההפעלה מחדש הבאה. מסך הנעילה והתנתקות מהמערכת עדיין ידרשו את הסיסמה שלך." }, "You're All Set!": { "You're All Set!": "הכל מוכן!" }, "Your compositor does not support background blur (ext-background-effect-v1)": { - "Your compositor does not support background blur (ext-background-effect-v1)": "" + "Your compositor does not support background blur (ext-background-effect-v1)": "הקומפוזיטור שלך אינו תומך בטשטוש רקע (ext-background-effect-v1)" }, "Your system is up to date!": { "Your system is up to date!": "המערכת שלך מעודכנת!" @@ -8370,10 +8397,10 @@ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "קובץ ההגדרה dms/outputs קיים אך אינו כלול בהגדרות הקומפוזיטור שלך. שינויי תצוגה לא יישמרו." }, "e.g. /usr/bin/my-script --flag": { - "e.g. /usr/bin/my-script --flag": "" + "e.g. /usr/bin/my-script --flag": "לדוגמה /usr/bin/my-script --flag" }, "e.g. My Script": { - "e.g. My Script": "" + "e.g. My Script": "לדוגמה My Script" }, "e.g. alice": { "e.g. alice": "לדוגמה alice" @@ -8385,7 +8412,7 @@ "e.g., focus-workspace 3, resize-column -10": "לדוגמא: focus-workspace 3, resize-column -10" }, "e.g., hl.dsp.focus({ workspace = \"3\" })": { - "e.g., hl.dsp.focus({ workspace = \"3\" })": "" + "e.g., hl.dsp.focus({ workspace = \"3\" })": "לדוגמא: hl.dsp.focus({ workspace = \"3\" })" }, "e.g., notify-send 'Hello' && sleep 1": { "e.g., notify-send 'Hello' && sleep 1": "לדוגמה: notify-send 'Hello' && sleep 1" @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "לדוגמה, scratch, /^tmp_.*/, build" }, - "events": { - "events": "אירועים" - }, "ext": { "ext": "ext" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl אינו זמין, אינטגרציה של הנעילה דורשת חיבור socket לDMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "שרת הDiscord של mangowc" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index e718c63e..007f8761 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -1,6 +1,6 @@ { "%1 (+%2 more)": { - "%1 (+%2 more)": "" + "%1 (+%2 more)": "%1 (+%2 további)" }, "%1 Animation Speed": { "%1 Animation Speed": "%1 animációsebesség" @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 online" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 frissítés" }, @@ -108,7 +111,7 @@ "%1m ago": "%1 perccel ezelőtt" }, "%command%": { - "%command%": "" + "%command%": "%command%" }, "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": { "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "Az 'Alternatív' lehetővé teszi a kulccsal történő önálló feloldást. A 'Második faktor' először jelszót vagy ujjlenyomatot igényel, majd a kulcsot." @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 eszköz csatlakoztatva" }, - "1 event": { - "1 event": "1 esemény" - }, "1 hour": { "1 hour": "1 óra" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 másodperc" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 perc" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24 órás óra" }, - "24-hour format": { - "24-hour format": "24 órás formátum" - }, "25 seconds": { "25 seconds": "25 másodperc" }, @@ -381,7 +381,7 @@ "Active VPN": "Aktív VPN" }, "Active in Column": { - "Active in Column": "" + "Active in Column": "Aktív az oszlopban" }, "Active tile background and icon color": { "Active tile background and icon color": "Aktív csempe háttér- és ikonszíne" @@ -417,7 +417,7 @@ "Add Desktop Widget": "Asztali widget hozzáadása" }, "Add Entry": { - "Add Entry": "" + "Add Entry": "Bejegyzés hozzáadása" }, "Add Printer": { "Add Printer": "Nyomtató hozzáadása" @@ -429,10 +429,10 @@ "Add Widget": "Widget hozzáadása" }, "Add Widget to %1": { - "Add Widget to %1": "" + "Add Widget to %1": "Widget hozzáadása ehhez: %1" }, "Add Window Rule": { - "Add Window Rule": "" + "Add Window Rule": "Ablakszabály hozzáadása" }, "Add a border around the dock": { "Add a border around the dock": "Szegély hozzáadása a dokk körül" @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Adj meg egy egyéni előtagot minden alkalmazás indításához. Ez használható például „uwsm-app”, „systemd-run” vagy más parancscsomagolókhoz." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Asztali widgetek hozzáadása és beállítása" }, @@ -447,7 +450,7 @@ "Add by Address": "Hozzáadás cím alapján" }, "Add match": { - "Add match": "" + "Add match": "Egyezés hozzáadása" }, "Add the new user to the %1 group so they can run dms greeter sync --profile.": { "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Az új felhasználó hozzáadása a(z) %1 csoporthoz, hogy futtathassa a dms greeter sync --profile parancsot." @@ -456,7 +459,7 @@ "Add the new user to the %1 group so they can use sudo.": "Az új felhasználó hozzáadása a(z) %1 csoporthoz, hogy használhassa a sudot." }, "Add to Autostart": { - "Add to Autostart": "" + "Add to Autostart": "Hozzáadás az automatikus indításhoz" }, "Adjust the bar height via inner padding": { "Adjust the bar height via inner padding": "A sáv magasságának beállítása belső térközzel" @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "Már ebben a munkamenetben vagy" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Vissza • F1/I: Fájlinformáció • F10: Súgó • Esc: Bezárás" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Konfiguráció elemzése…" }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Animáció időtartama" }, @@ -566,23 +575,23 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Névtelen azonosító (opcionális)" }, - "Any": { - "Any": "" - }, "Any window": { - "Any window": "" + "Any window": "Bármely ablak" }, "App Customizations": { "App Customizations": "Alkalmazás-testreszabások" }, "App ID": { - "App ID": "" + "App ID": "Alkalmazásazonosító" + }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" }, "App ID Substitutions": { "App ID Substitutions": "Alkalmazásazonosító-helyettesítések" }, "App ID regex": { - "App ID regex": "" + "App ID regex": "Alkalmazásazonosító regex" }, "App ID regex (e.g. ^firefox$)": { "App ID regex (e.g. ^firefox$)": "App ID regex (például ^firefox$)" @@ -600,7 +609,7 @@ "Appearance": "Megjelenés" }, "Application": { - "Application": "" + "Application": "Alkalmazás" }, "Application Dock": { "Application Dock": "Alkalmazásdokk" @@ -609,7 +618,7 @@ "Applications": "Alkalmazások" }, "Applications and commands to start automatically when you log in": { - "Applications and commands to start automatically when you log in": "" + "Applications and commands to start automatically when you log in": "Bejelentkezéskor automatikusan elinduló alkalmazások és parancsok" }, "Apply Changes": { "Apply Changes": "Változtatások alkalmazása" @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Meleg színhőmérséklet alkalmazása a szem megerőltetésének csökkentése érdekében. Az alábbi automatizálási beállítások segítségével szabályozhatod, hogy mikor aktiválódjon." }, - "Applying authentication changes…": { - "Applying authentication changes…": "A hitelesítési módosítások alkalmazása…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Alkalmazások" @@ -672,7 +681,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "Képernyő-elrendezés és a felbontás, frissítési frekvencia, valamint VRR beállítása" }, "At Startup": { - "At Startup": "" + "At Startup": "Indításkor" }, "At least one output must remain enabled": { "At least one output must remain enabled": "Legalább egy kimenetnek engedélyezve kell maradnia" @@ -795,16 +804,16 @@ "Auto-hide Dock": "Dokk automatikus elrejtése" }, "Auto-login": { - "Auto-login": "" + "Auto-login": "Automatikus bejelentkezés" }, "Auto-login disabled": { - "Auto-login disabled": "" + "Auto-login disabled": "Automatikus bejelentkezés letiltva" }, "Auto-login enabled": { - "Auto-login enabled": "" + "Auto-login enabled": "Automatikus bejelentkezés engedélyezve" }, "Auto-login on startup": { - "Auto-login on startup": "" + "Auto-login on startup": "Automatikus bejelentkezés indításkor" }, "Auto-saving...": { "Auto-saving...": "Automatikus mentés…" @@ -861,10 +870,10 @@ "Automation": "Automatizálás" }, "Autostart Apps": { - "Autostart Apps": "" + "Autostart Apps": "Automatikusan induló alkalmazások" }, "Autostart Entries": { - "Autostart Entries": "" + "Autostart Entries": "Automatikusan induló bejegyzések" }, "Available": { "Available": "Elérhető" @@ -894,7 +903,7 @@ "Back": "Vissza" }, "Back to user list": { - "Back to user list": "" + "Back to user list": "Vissza a felhasználólistához" }, "Backend": { "Backend": "Háttérrendszer" @@ -909,7 +918,7 @@ "Background Blur": "Háttér elmosása" }, "Background Effect": { - "Background Effect": "" + "Background Effect": "Háttéreffektus" }, "Background Opacity": { "Background Opacity": "Háttér átlátszósága" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Kiegyensúlyozott paletta fókuszált kiemelésekkel (alapértelmezett)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Sáv konfiguráció" }, @@ -1020,7 +1035,7 @@ "Bluetooth not available": "A Bluetooth nem érhető el" }, "Blur": { - "Blur": "" + "Blur": "Elmosás" }, "Blur Border Color": { "Blur Border Color": "Elmosás szegélyszíne" @@ -1053,7 +1068,7 @@ "Border Color": "Szegély színe" }, "Border Off": { - "Border Off": "" + "Border Off": "Keret kikapcsolva" }, "Border Opacity": { "Border Opacity": "Szegély átlátszósága" @@ -1074,10 +1089,10 @@ "Border color around blurred surfaces": "Szegélyszín az elmosott felületek körül" }, "Border w/ Bg": { - "Border w/ Bg": "" + "Border w/ Bg": "Keret háttérrel" }, "Border with Background": { - "Border with Background": "" + "Border with Background": "Keret háttérrel" }, "Bottom": { "Bottom": "Alul" @@ -1209,10 +1224,10 @@ "Caps Lock is on": "A Caps Lock be van kapcsolva" }, "Cast Target": { - "Cast Target": "" + "Cast Target": "Kivetítés célpontja" }, "Category": { - "Category": "" + "Category": "Kategória" }, "Center Section": { "Center Section": "Középső rész" @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Frissítések keresése…" }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Sudo hitelesítés szükségességének ellenőrzése…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Ellenőrzés…" }, - "Checking…": { - "Checking…": "Ellenőrzés…" - }, "Choose Color": { "Choose Color": "Szín választása" }, @@ -1296,7 +1308,7 @@ "Choose a color": "Válassz színt" }, "Choose a power profile": { - "Choose a power profile": "" + "Choose a power profile": "Válassz egy energiagazdálkodási profilt" }, "Choose colors from palette": { "Choose colors from palette": "Színek választása a palettáról" @@ -1326,10 +1338,10 @@ "Choose where notification popups appear on screen": "A felugró értesítések megjelenési helye" }, "Choose where on-screen displays appear on screen": { - "Choose where on-screen displays appear on screen": "A képernyőkijelzők megjelenítési helye" + "Choose where on-screen displays appear on screen": "A képernyőkijelzés megjelenítési helye" }, "Choose whether to launch a desktop app or a command": { - "Choose whether to launch a desktop app or a command": "" + "Choose whether to launch a desktop app or a command": "Válaszd ki, hogy asztali alkalmazást vagy parancsot indítasz" }, "Choose which displays show this widget": { "Choose which displays show this widget": "Mely kijelzők mutassák ezt a widgetet" @@ -1347,7 +1359,7 @@ "Circle": "Kör" }, "Class regex": { - "Class regex": "" + "Class regex": "Osztály-regex" }, "Class regex (e.g. ^firefox$)": { "Class regex (e.g. ^firefox$)": "Osztály (Class) regex (például ^firefox$)" @@ -1413,13 +1425,13 @@ "Clipboard": "Vágólap" }, "Clipboard History": { - "Clipboard History": "Vágólapelőzmények" + "Clipboard History": "Vágólap-előzmények" }, "Clipboard Manager": { "Clipboard Manager": "Vágólapkezelő" }, "Clipboard Saved": { - "Clipboard Saved": "" + "Clipboard Saved": "Vágólapra mentve" }, "Clipboard sent": { "Clipboard sent": "Vágólap elküldve" @@ -1518,7 +1530,7 @@ "Command": "Parancs" }, "Command Line": { - "Command Line": "" + "Command Line": "Parancssor" }, "Commands": { "Commands": "Parancsok" @@ -1551,7 +1563,7 @@ "Config action: %1": "Konfigurációs művelet: %1" }, "Config validation failed": { - "Config validation failed": "Nem sikerült ellenőrizni a konfigurációt" + "Config validation failed": "A konfiguráció-ellenőrzés sikertelen" }, "Configuration": { "Configuration": "Konfiguráció" @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Csatlakozás az eszközhöz" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "Csatlakozás a vágólap-szolgáltatáshoz…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Csatlakozás…" @@ -1659,7 +1671,7 @@ "Contrast": "Kontraszt" }, "Contributor": { - "Contributor": "" + "Contributor": "Közreműködő" }, "Control Center": { "Control Center": "Vezérlőközpont" @@ -1710,7 +1722,7 @@ "Convenience options for the login screen. Sync to apply.": "Kényelmi beállítások a bejelentkezési képernyőhöz. Szinkronizálj az alkalmazáshoz." }, "Convert to DMS": { - "Convert to DMS": "" + "Convert to DMS": "Konvertálás DMS-formátumba" }, "Cooldown": { "Cooldown": "Várakozási idő" @@ -1764,7 +1776,7 @@ "Corners & Background": "Sarkok és háttér" }, "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" + "Couldn't open a terminal for the auto-login update.": "Nem sikerült terminált nyitni az automatikus bejelentkezés frissítéséhez." }, "Count Only": { "Count Only": "Csak darabszám" @@ -1866,7 +1878,7 @@ "Cursor Theme": "Mutatótéma" }, "Curve": { - "Curve": "" + "Curve": "Görbe" }, "Curve: curve rasterizer.": { "Curve: curve rasterizer.": "Görbe: görberaszterező." @@ -1959,7 +1971,7 @@ "DMS Settings": "DMS-beállítások" }, "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": { - "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "" + "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "A DMS-beállítások Lua-gyorsbillentyűket írnak. Add hozzá a DMS include-ot a módosítások érvényesítéséhez." }, "DMS Shortcuts": { "DMS Shortcuts": "DMS-gyorsbillentyűk" @@ -1968,7 +1980,7 @@ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "A DMS-üdvözlőképernyőnek (greeter) szüksége van a következőkre: greetd, dms-greeter. Ujjlenyomat: fprintd, pam_fprintd. Biztonsági kulcsok: pam_u2f. Add hozzá a felhasználódat a greeter csoporthoz. A hitelesítési módosítások automatikusan alkalmazásra kerülnek, és terminált nyithatnak meg, ha sudo hitelesítés szükséges." }, "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" + "DMS needs administrator access. The terminal closes automatically when done.": "A DMS-nek rendszergazdai hozzáférésre van szüksége. A terminál a befejezés után automatikusan bezáródik." }, "DMS out of date": { "DMS out of date": "A DMS elavult" @@ -1977,7 +1989,7 @@ "DMS server is outdated (API v%1, expected v%2)": "A DMS-szerver elavult (API v%1, várt v%2)" }, "DMS service is not connected. Clipboard settings are unavailable.": { - "DMS service is not connected. Clipboard settings are unavailable.": "A DMS-szolgáltatás nincs csatlakoztatva. A vágólapbeállítások nem érhetők el." + "DMS service is not connected. Clipboard settings are unavailable.": "A DMS-szolgáltatás nincs csatlakoztatva. A vágólap-beállítások nem érhetők el." }, "DMS shell actions (launcher, clipboard, etc.)": { "DMS shell actions (launcher, clipboard, etc.)": "DMS-héjműveletek (indító, vágólap, stb.)" @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "A DMS_SOCKET nem érhető el" }, - "DWL service not available": { - "DWL service not available": "A DWL szolgáltatás nem érhető el" - }, "Daily": { "Daily": "Napi" }, @@ -2109,7 +2118,7 @@ "Delete Printer": "Nyomtató törlése" }, "Delete Rule": { - "Delete Rule": "" + "Delete Rule": "Szabály törlése" }, "Delete Saved Item?": { "Delete Saved Item?": "Mentett elem törlése?" @@ -2151,7 +2160,7 @@ "Desktop": "Asztal" }, "Desktop Application": { - "Desktop Application": "" + "Desktop Application": "Asztali alkalmazás" }, "Desktop Clock": { "Desktop Clock": "Asztali óra" @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Wi-Fi kikapcsolása…" }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Lemez" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Minden prioritás megjelenítése a teljes képernyős alkalmazások felett" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "DWL elrendezések megjelenítése és váltása" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Alkalmazás ikonok megjelenítése a munkaterület-jelzőkben" @@ -2316,7 +2325,7 @@ "Display line numbers in editor": "Sorszámok megjelenítése a szerkesztőben" }, "Display name for this entry": { - "Display name for this entry": "" + "Display name for this entry": "Bejegyzés megjelenítendő neve" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Csak azokat a munkaterületeket jelenítse meg, amelyek ablakokat tartalmaznak" @@ -2328,13 +2337,13 @@ "Display seconds in the clock": "Másodpercek megjelenítése az órán" }, "Display setup failed": { - "Display setup failed": "" + "Display setup failed": "A kijelző beállítása sikertelen" }, "Display the power system menu": { "Display the power system menu": "A főkapcsoló rendszermenüjének megjelenítése" }, "Display volume and brightness percentage values in OSD popups": { - "Display volume and brightness percentage values in OSD popups": "Hangerő és fényerő százalékos értékek megjelenítése a képernyőkijelző felugró ablakokban" + "Display volume and brightness percentage values in OSD popups": "Hangerő és fényerő százalékos értékek megjelenítése a képernyőkijelzési felugró ablakokban" }, "Displays": { "Displays": "Kijelzők" @@ -2463,7 +2472,7 @@ "Edit Clipboard": "Vágólap szerkesztése" }, "Edit Rule": { - "Edit Rule": "" + "Edit Rule": "Szabály szerkesztése" }, "Edit Window Rule": { "Edit Window Rule": "Ablakszabály szerkesztése" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "Vágólap szövegének szerkesztése" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Oktatás" }, @@ -2649,7 +2661,7 @@ "Enterprise": "Vállalati" }, "Entry Type": { - "Entry Type": "" + "Entry Type": "Bejegyzés típusa" }, "Entry pinned": { "Entry pinned": "Bejegyzés rögzítve" @@ -2829,7 +2841,7 @@ "Failed to fetch network QR code: %1": "Nem sikerült lekérni a hálózati QR-kódot: %1" }, "Failed to generate systemd override": { - "Failed to generate systemd override": "" + "Failed to generate systemd override": "Sikertelen a systemd felülbírálás létrehozása" }, "Failed to hold job": { "Failed to hold job": "Nem sikerült a feladat várakoztatása" @@ -2844,7 +2856,7 @@ "Failed to load VPN config": "Nem sikerült betölteni a VPN-konfigurációt" }, "Failed to load clipboard configuration.": { - "Failed to load clipboard configuration.": "Nem sikerült betölteni a vágólap konfigurációt." + "Failed to load clipboard configuration.": "Nem sikerült betölteni a vágólap-konfigurációt." }, "Failed to move job": { "Failed to move job": "Nem sikerült a feladat áthelyezése" @@ -2975,17 +2987,17 @@ "Failed to update sharing": { "Failed to update sharing": "Nem sikerült frissíteni a megosztás állapotát" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { - "Failed to write autostart entry": "" + "Failed to write autostart entry": "Nem sikerült írni az automatikus indítási bejegyzést" + }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Nem sikerült írni az ideiglenes fájlt az ellenőrzéshez" }, "Failed: %1": { - "Failed: %1": "Hiba: %1" + "Failed: %1": "Nem sikerült: %1" }, "Features": { "Features": "Funkciók" @@ -3039,7 +3051,7 @@ "Fill": "Kitöltés" }, "Filter": { - "Filter": "" + "Filter": "Szűrő" }, "Find in Text": { "Find in Text": "Keresés szövegben…" @@ -3101,8 +3113,20 @@ "Float": { "Float": "Lebegő" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { - "Floating": "" + "Floating": "Lebegő" + }, + "Floating Position": { + "Floating Position": "" }, "Fluent": { "Fluent": "Fluent" @@ -3114,16 +3138,16 @@ "Focus": "Fókusz" }, "Focus Ring Color": { - "Focus Ring Color": "" + "Focus Ring Color": "Fókuszgyűrű színe" }, "Focus Ring Off": { - "Focus Ring Off": "" + "Focus Ring Off": "Fókuszgyűrű kikapcsolva" }, "Focus at Startup": { "Focus at Startup": "Fókusz indításkor" }, "Focused": { - "Focused": "" + "Focused": "Fókuszált" }, "Focused Border": { "Focused Border": "Fókuszált szegély" @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Fókuszált ablak" }, - "Focused monitor only": { - "Focused monitor only": "Csak a fókuszált monitor" - }, "Fog": { "Fog": "Köd" }, @@ -3207,7 +3228,7 @@ "Force Kill (SIGKILL)": "Kényszerített megszakítás (SIGKILL)" }, "Force RGBX": { - "Force RGBX": "" + "Force RGBX": "RGBX kényszerítése" }, "Force Wide Color": { "Force Wide Color": "Széles színskála kényszerítése" @@ -3285,7 +3306,7 @@ "Full Day & Month": "Teljes nap és hónap" }, "Full command to execute": { - "Full command to execute": "" + "Full command to execute": "Teljes végrehajtandó parancs" }, "Full with Year": { "Full with Year": "Teljes évvel" @@ -3309,13 +3330,13 @@ "GPU": "GPU" }, "GPU Monitoring": { - "GPU Monitoring": "GPU figyelés" + "GPU Monitoring": "GPU-figyelés" }, "GPU Temperature": { "GPU Temperature": "GPU-hőmérséklet" }, "GPU temperature display": { - "GPU temperature display": "GPU hőmérséklet kijelzése" + "GPU temperature display": "GPU-hőmérséklet kijelzése" }, "GTK colors applied successfully": { "GTK colors applied successfully": "A GTK-színek alkalmazása sikeres" @@ -3333,7 +3354,7 @@ "Gamma control not available. Requires DMS API v6+.": "A gammavezérlés nem érhető el. DMS API v6+ szükséges." }, "Generate Override": { - "Generate Override": "" + "Generate Override": "Felülbírálás létrehozása" }, "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.": { "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.": "Alapszintű GTK3/4 vagy Qt5/Qt6 (qt6ct-kde szükséges) konfigurációk előállíta a DMS-színek követéséhez. Csak egyszer szükséges.

Javasolt az adw-gtk3 beállítása a GTK-témák alkalmazása előtt." @@ -3437,6 +3458,9 @@ "Group": { "Group": "Csoport" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Munkaterület-alkalmazások csoportosítása" }, @@ -3570,7 +3594,7 @@ "Hide the bar when the pointer leaves even if a popout is still open": "A sáv elrejtése, ha a mutató elhagyja azt, még akkor is, ha egy felugró ablak nyitva van" }, "High": { - "High": "" + "High": "Magas" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Nagy hűségű paletta, amely megőrzi a forrás árnyalatait." @@ -3660,13 +3684,13 @@ "Hyprland Website": "Hyprland weboldal" }, "Hyprland conf mode": { - "Hyprland conf mode": "" + "Hyprland conf mode": "Hyprland konfigurációs mód" }, "Hyprland conf mode is read-only in Settings": { - "Hyprland conf mode is read-only in Settings": "" + "Hyprland conf mode is read-only in Settings": "A Hyprland konfigurációs mód csak olvasható a Beállításokban" }, "Hyprland config include missing": { - "Hyprland config include missing": "" + "Hyprland config include missing": "A Hyprland konfigurációból hiányzik az include" }, "I Understand": { "I Understand": "Megértettem" @@ -3708,7 +3732,7 @@ "Idle": "Tétlen" }, "Idle Inhibit": { - "Idle Inhibit": "" + "Idle Inhibit": "Tétlenség gátlása" }, "Idle Inhibitor": { "Idle Inhibitor": "Inaktivitás megakadályozása" @@ -3717,7 +3741,7 @@ "Idle Settings": "Inaktivitási beállítások" }, "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": { - "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "" + "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "Ha az automatikusan induló alkalmazások ikonjai nem jelennek meg a tálcán, hozz létre egy systemd felülbírálást, hogy a DMS az automatikusan induló alkalmazások előtt induljon el" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "Ha a mező rejtett, megjelenik, amint lenyomsz egy billentyűt." @@ -3797,8 +3821,11 @@ "Inhibitable": { "Inhibitable": "Gátolható" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { - "Initialised": "" + "Initialised": "Inicializálva" }, "Inner padding applied to each widget": { "Inner padding applied to each widget": "Az egyes widgetekre alkalmazott belső térköz" @@ -3834,7 +3861,7 @@ "Install dsearch to search files.": "Telepítsd a dsearch eszközt a fájlok kereséséhez." }, "Install failed: %1": { - "Install failed: %1": "Telepítés sikertelen: %1" + "Install failed: %1": "A telepítés sikertelen: %1" }, "Install matugen package for dynamic theming": { "Install matugen package for dynamic theming": "Telepítsd a matugen csomagot a dinamikus témázáshoz" @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Invertálás módváltáskor" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Íriszvirágzás" }, @@ -4179,7 +4209,7 @@ "Longitude": "Hosszúság" }, "Low": { - "Low": "" + "Low": "Alacsony" }, "Low Priority": { "Low Priority": "Alacsony prioritás" @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "Fájlok és könyvtárak kezelése" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC elrendezés felülbírálások" }, @@ -4263,10 +4299,10 @@ "Marker Waste Full": "A hulladéktartály megtelt" }, "Match (%1)": { - "Match (%1)": "" + "Match (%1)": "Egyezés (%1)" }, "Match Conditions": { - "Match Conditions": "" + "Match Conditions": "Egyezési feltételek" }, "Match Criteria": { "Match Criteria": "Egyezési feltételek" @@ -4599,11 +4635,14 @@ "Named Workspace Icons": "Nevesített munkaterület ikonok" }, "Native": { - "Native": "" + "Native": "Natív" }, "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "Natív: platformmegjelenítő (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Navigáció" }, @@ -4782,7 +4821,7 @@ "No app customizations.": "Nincsenek alkalmazás testreszabások." }, "No application selected": { - "No application selected": "" + "No application selected": "Nincs alkalmazás kiválasztva" }, "No apps found": { "No apps found": "Nem találhatók alkalmazások" @@ -4794,7 +4833,7 @@ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Nincsenek némított alkalmazások. Kattints jobb gombbal egy értesítésre, és válaszd a „Felugró ablakok némítása” lehetőséget a hozzáadáshoz." }, "No autostart entries": { - "No autostart entries": "" + "No autostart entries": "Nincsenek automatikus indítási bejegyzések" }, "No battery": { "No battery": "Nincs akkumulátor" @@ -4935,7 +4974,7 @@ "No results found": "Nincsenek találatok" }, "No saved clipboard entries": { - "No saved clipboard entries": "Nincsenek mentett vágólapbejegyzések" + "No saved clipboard entries": "Nincsenek mentett vágólap-bejegyzések" }, "No session selected": { "No session selected": "Nincs munkamenet kiválasztva" @@ -4992,7 +5031,7 @@ "No window rules configured": "Nincsenek ablakszabályok beállítva" }, "Noise": { - "Noise": "" + "Noise": "Zaj" }, "None": { "None": "Nincs" @@ -5034,7 +5073,7 @@ "Not detected": "Nem észlelhető" }, "Not listed?": { - "Not listed?": "" + "Not listed?": "Nincs a listán?" }, "Not paired": { "Not paired": "Nincs párosítva" @@ -5103,7 +5142,7 @@ "OS Logo": "Operációs rendszer logó" }, "OSD Position": { - "OSD Position": "Képernyőkijelző pozíciója" + "OSD Position": "Képernyőkijelzés pozíciója" }, "Occupied Color": { "Occupied Color": "Foglalt szín" @@ -5132,11 +5171,8 @@ "On-Demand": { "On-Demand": "Igény szerint" }, - "On-Screen Displays": { - "On-Screen Displays": "Képernyőkijelzők" - }, "On-screen Displays": { - "On-screen Displays": "Képernyőkijelzők" + "On-screen Displays": "Képernyőkijelzés" }, "Once a day": { "Once a day": "Naponta egyszer" @@ -5226,7 +5262,7 @@ "Opening files": "Fájlok megnyitása" }, "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" + "Opening terminal to update greetd": "Terminál megnyitása a greetd frissítéséhez" }, "Opening terminal: ": { "Opening terminal: ": "Terminál megnyitása: " @@ -5247,7 +5283,7 @@ "Optional location": "Opcionális hely" }, "Optional state-based conditions applied to the first match.": { - "Optional state-based conditions applied to the first match.": "" + "Optional state-based conditions applied to the first match.": "Az első találatra alkalmazott opcionális, állapotalapú feltételek." }, "Options": { "Options": "Opciók" @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Csatlakoztatva" }, - "Plugged in": { - "Plugged in": "Csatlakoztatva" - }, "Plugin": { "Plugin": "Bővítmény" }, @@ -5664,7 +5697,7 @@ "Power Menu Customization": "Főkapcsoló menü testreszabása" }, "Power Mode": { - "Power Mode": "" + "Power Mode": "Energiagazdálkodási mód" }, "Power Off": { "Power Off": "Leállítás" @@ -5826,7 +5859,7 @@ "Protocol": "Protokoll" }, "Qt": { - "Qt": "" + "Qt": "Qt" }, "Qt colors applied successfully": { "Qt colors applied successfully": "A Qt-színek alkalmazása sikeres" @@ -5886,7 +5919,7 @@ "Re-enter password": "Jelszó újbóli megadása" }, "Read-only legacy config": { - "Read-only legacy config": "" + "Read-only legacy config": "Írásvédett örökölt konfiguráció" }, "Read:": { "Read:": "Olvasás:" @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Időjárás frissítése" }, - "Refreshing…": { - "Refreshing…": "Frissítés…" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -5988,7 +6021,7 @@ "Remove inner padding from all widgets": "Belső térköz eltávolítása minden widgetből" }, "Remove match": { - "Remove match": "" + "Remove match": "Egyezés eltávolítása" }, "Remove the shortcut %1?": { "Remove the shortcut %1?": "Eltávolítod a(z) %1 gyorsbillentyűt?" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "DMS-szerver szükséges sysupdate-képességgel" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Szükséges a DWL kompozitor" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "A Quickshell újabb verziója szükséges" @@ -6051,7 +6084,7 @@ "Requires night mode support": "Éjszakai mód támogatás szükséges" }, "Requires remembering the last user and session. Enable those options first.": { - "Requires remembering the last user and session. Enable those options first.": "" + "Requires remembering the last user and session. Enable those options first.": "Az utolsó felhasználó és munkamenet megjegyzése szükséges. Előbb engedélyezd ezeket a beállításokat." }, "Reset": { "Reset": "Visszaállítás" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Widget méretezése" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Felbontás és frissítés" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Lekerekített sarkok az ablakoknál" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Ablakok lekerekített sarkai (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Ablakok lekerekített sarkai (decoration.rounding)" - }, "Rule": { "Rule": "Szabály" }, @@ -6162,7 +6195,7 @@ "Rules (%1)": "Szabályok (%1)" }, "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": { - "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "" + "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "A kompozitor konfigurációjában talált szabályok. Ezek itt írásvédettek, a szerkeszthető másolathoz használd a „Konvertálás DMS-formátumba” lehetőséget." }, "Run Again": { "Run Again": "Futtatás újra" @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Futó alkalmazások beállításai" }, - "Running greeter sync…": { - "Running greeter sync…": "Üdvözlőképernyő szinkronizálása folyamatban…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "Futtatás terminálban" @@ -6204,7 +6237,7 @@ "SMS": "SMS" }, "Saturation": { - "Saturation": "" + "Saturation": "Telítettség" }, "Save": { "Save": "Mentés" @@ -6315,7 +6348,7 @@ "Search Options": "Keresési beállítások" }, "Search applications...": { - "Search applications...": "" + "Search applications...": "Alkalmazások keresése…" }, "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Keresés billentyűkombináció, leírás vagy műveletnév alapján.\n\nAz alapértelmezett művelet a vágólapra másolja a gyorsbillentyűt.\nKattints jobb gombbal vagy nyomd meg a jobb nyilat a gyakran használt gyorsbillentyűk rögzítéséhez – ezek a keresésen kívül felül jelennek meg." @@ -6420,7 +6453,7 @@ "Select a color from the palette or use custom sliders": "Válassz színt a palettáról, vagy használd az egyéni csúszkákat" }, "Select a desktop application": { - "Select a desktop application": "" + "Select a desktop application": "Válassz ki egy asztali alkalmazást" }, "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": { "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Válassz ki egy widgetet az asztalhoz való hozzáadáshoz. Minden widget egy külön példány, saját beállításokkal." @@ -6579,7 +6612,7 @@ "Shadow elevation on modals and dialogs": "Árnyék emelése a modális ablakokon és párbeszédpaneleken" }, "Shadow elevation on popouts, OSDs, and dropdowns": { - "Shadow elevation on popouts, OSDs, and dropdowns": "Árnyék emelése a felugrókon, OSD-ken és legördülő menükön" + "Shadow elevation on popouts, OSDs, and dropdowns": "Árnyék emelése a felugrókon, képernyőkijelzéseken és legördülő menükön" }, "Shadows": { "Shadows": "Árnyékok" @@ -6681,7 +6714,7 @@ "Show Humidity": "Páratartalom megjelenítése" }, "Show Icon": { - "Show Icon": "" + "Show Icon": "Ikon megjelenítése" }, "Show Launcher Button": { "Show Launcher Button": "Indítógomb megjelenítése" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Munkaterület-alkalmazások megjelenítése" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Mind a 9 címke megjelenítése a csak foglalt címkék helyett (csak DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Körvonal megjelenítése a fókuszált munkaterület-jelző körül" @@ -6837,7 +6870,7 @@ "Show mode tabs and keyboard hints at the bottom.": "Módlapok és billentyűzettippek megjelenítése alul." }, "Show mount path": { - "Show mount path": "" + "Show mount path": "Csatolási útvonal megjelenítése" }, "Show notification popups only on the currently focused monitor": { "Show notification popups only on the currently focused monitor": "Értesítési felugró ablakok megjelenítése csak az éppen fókuszált monitoron" @@ -6864,31 +6897,31 @@ "Show on screens:": "Megjelenítés képernyőkön:" }, "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Képernyőkijelző megjelenítése a fényerő változásakor" + "Show on-screen display when brightness changes": "Képernyőkijelzés megjelenítése a fényerő változásakor" }, "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Képernyőkijelző megjelenítése a Caps Lock állapotának változásakor" + "Show on-screen display when caps lock state changes": "Képernyőkijelzés megjelenítése a Caps Lock állapotának változásakor" }, "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Képernyőkijelző megjelenítése hangkimeneti eszközök váltásakor" + "Show on-screen display when cycling audio output devices": "Képernyőkijelzés megjelenítése hangkimeneti eszközök váltásakor" }, "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Képernyőkijelző megjelenítése az inaktivitás-megakadályozó állapotának változásakor" + "Show on-screen display when idle inhibitor state changes": "Képernyőkijelzés megjelenítése az inaktivitás-megakadályozó állapotának változásakor" }, "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Képernyőkijelző megjelenítése a médialejátszó állapotának változásakor" + "Show on-screen display when media player status changes": "Képernyőkijelzés megjelenítése a médialejátszó állapotának változásakor" }, "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Képernyőkijelző megjelenítése a médialejátszó hangerejének változásakor" + "Show on-screen display when media player volume changes": "Képernyőkijelzés megjelenítése a médialejátszó hangerejének változásakor" }, "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Képernyőkijelző megjelenítése a mikrofon némításakor/visszahangosításakor" + "Show on-screen display when microphone is muted/unmuted": "Képernyőkijelzés megjelenítése a mikrofon némításakor/visszahangosításakor" }, "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Képernyőkijelző megjelenítése az energiaprofil változásakor" + "Show on-screen display when power profile changes": "Képernyőkijelzés megjelenítése az energiaprofil változásakor" }, "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Képernyőkijelző megjelenítése a hangerő változásakor" + "Show on-screen display when volume changes": "Képernyőkijelzés megjelenítése a hangerő változásakor" }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "A sáv megjelenítése csak akkor, ha nincs nyitva ablak" @@ -6963,7 +6996,7 @@ "Skip setup": "Beállítás kihagyása" }, "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": { - "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "" + "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "Kihagyja a rendszerindítás után az üdvözlőképernyő jelszavát a kijelentkezésig. A zárolási képernyő feloldása változatlan marad. A szinkronizálás utáni következő újraindításkor lép életbe." }, "Small": { "Small": "Kicsi" @@ -6999,7 +7032,7 @@ "Sounds": "Hangok" }, "Source: %1": { - "Source: %1": "" + "Source: %1": "Forrás: %1" }, "Space between the bar and screen edges": { "Space between the bar and screen edges": "A sáv és a képernyő szélei közötti távolság" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Ablakok közötti hely" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Ablakok közötti távolság (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Ablakok közötti távolság (gaps_in és gaps_out)" - }, "Spacer": { "Spacer": "Térköz" }, @@ -7227,7 +7254,7 @@ "System toast notifications": "Rendszer értesítési felugró üzenetek" }, "Systemd Override generated": { - "Systemd Override generated": "" + "Systemd Override generated": "Systemd felülbírálás létrehozva" }, "Tab": { "Tab": "Lap" @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Rács Nav • Enter/Szóköz: Kiválasztás" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "Címkék: %1" }, @@ -7317,7 +7347,7 @@ "The job queue of this printer is empty": "A nyomtató feladatlistája üres" }, "The rule applies to any window matching one of these.": { - "The rule applies to any window matching one of these.": "" + "The rule applies to any window matching one of these.": "A szabály minden olyan ablakra vonatkozik, amely megegyezik ezek valamelyikével." }, "Theme & Colors": { "Theme & Colors": "Téma és színek" @@ -7341,7 +7371,7 @@ "Themes": "Témák" }, "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": { - "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "" + "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "Ezek bejegyzéseket adnak hozzá az XDG automatikus indítási könyvtárhoz (~/.config/autostart/*.desktop)" }, "Thickness": { "Thickness": "Vastagság" @@ -7362,16 +7392,16 @@ "This device": "Ez az eszköz" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "Ez a telepítés továbbra is a hyprland.conf fájlt használja. A mutatóbeállítások szerkesztése előtt futtasd a „dms setup” parancsot a migráláshoz." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "Ez a telepítés továbbra is a hyprland.conf fájlt használja. A kijelzőbeállítások szerkesztése előtt futtasd a „dms setup” parancsot a migráláshoz." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "Ez a telepítés továbbra is a hyprland.conf fájlt használja. A billentyűparancsok Beállításokban történő szerkesztése előtt futtasd a „dms setup” parancsot a migráláshoz." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "Ez a telepítés továbbra is a hyprland.conf fájlt használja. Az ablakszabályok Beállításokban történő szerkesztése előtt futtasd a „dms setup” parancsot a migráláshoz." }, "This may take a few seconds": { "This may take a few seconds": "Ez eltarthat néhány másodpercig" @@ -7389,7 +7419,7 @@ "This will delete all unpinned entries. %1 pinned entries will be kept.": "Ez törli az összes nem rögzített bejegyzést. %1 rögzített bejegyzés marad meg." }, "This will permanently delete all clipboard history.": { - "This will permanently delete all clipboard history.": "Ez véglegesen törölni fogja a vágólapelőzményeket." + "This will permanently delete all clipboard history.": "Ez véglegesen törölni fogja a vágólap-előzményeket." }, "This will permanently remove this saved clipboard item. This action cannot be undone.": { "This will permanently remove this saved clipboard item. This action cannot be undone.": "Ez véglegesen eltávolítja ezt a mentett vágólapelemet. A művelet nem vonható vissza." @@ -7460,6 +7490,9 @@ "Title": { "Title": "Cím" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Cím reguláris kifejezése (opcionális)" }, @@ -7572,7 +7605,7 @@ "Trash command failed (exit %1)": "A kuka parancs sikertelen (kilépési kód: %1)" }, "Tray Icon Fix": { - "Tray Icon Fix": "" + "Tray Icon Fix": "Tálcaikon javítás" }, "Trending GIFs": { "Trending GIFs": "Népszerű GIF-ek" @@ -7641,7 +7674,7 @@ "Unavailable": "Nem érhető el" }, "Uncategorized": { - "Uncategorized": "" + "Uncategorized": "Besorolatlan" }, "Unfocused Color": { "Unfocused Color": "Nem fókuszált szín" @@ -7662,7 +7695,7 @@ "Uninstall complete. Greeter has been removed.": "Az eltávolítás befejeződött. Az üdvözlőképernyő el lett távolítva." }, "Uninstall failed: %1": { - "Uninstall failed: %1": "Eltávolítás sikertelen: %1" + "Uninstall failed: %1": "Az eltávolítás sikertelen: %1" }, "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": { "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "Eltávolítod a DMS-üdvözlőképernyőt? (greeter) Ez törli a beállításokat és visszaállítja az előző megjelenítéskezelőt. Egy terminál fog megnyílni a sudo hitelesítéshez." @@ -7782,7 +7815,7 @@ "Uptime:": "Működési idő:" }, "Urgent": { - "Urgent": "" + "Urgent": "Sürgős" }, "Urgent Color": { "Urgent Color": "Sürgős szín" @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Egyéni ablaksugár használata a téma sugara helyett" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Egyéni ablaklekerekítés használata a téma sugara helyett" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Asztali háttérkép használata" }, @@ -7860,7 +7890,7 @@ "Use fingerprint authentication for the lock screen.": "Ujjlenyomatos hitelesítés használata a képernyőzárhoz." }, "Use keys 1-3 or arrows, Enter/Space to select": { - "Use keys 1-3 or arrows, Enter/Space to select": "" + "Use keys 1-3 or arrows, Enter/Space to select": "Használd az 1-3 billentyűket vagy a nyilakat, a kiválasztáshoz pedig az Enter/Szóköz billentyűt" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Világos téma használata a sötét helyett" @@ -7896,7 +7926,7 @@ "User": "Felhasználó" }, "User Window Rules (%1)": { - "User Window Rules (%1)": "" + "User Window Rules (%1)": "Felhasználói ablakszabályok (%1)" }, "User already exists": { "User already exists": "A felhasználó már létezik" @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-konfiguráció frissítve" }, - "VPN connections": { - "VPN connections": "VPN-kapcsolatok" - }, "VPN deleted": { "VPN deleted": "VPN-kapcsolat törölve" }, @@ -8007,7 +8034,7 @@ "Vertical Tiling": "Függőleges csempézés" }, "Very High": { - "Very High": "" + "Very High": "Nagyon magas" }, "Vibrant": { "Vibrant": "Élénk" @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgetek" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widgetek, elrendezés, stílus" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "A widget körvonalának szélessége képpontban" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Ablakszegély szélessége (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Ablakszegély szélessége (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Ablakszegély és fókuszgyűrű szélessége" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Ablak megnyitása" }, - "Window Rounding": { - "Window Rounding": "Ablaklekerekítés" - }, "Window Rules": { "Window Rules": "Ablakszabályok" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Törlés" }, - "Working…": { - "Working…": "Folyamatban…" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Munkaterület" @@ -8267,26 +8291,29 @@ "Workspaces": { "Workspaces": "Munkaterületek" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Munkaterületek és widgetek" - }, "Wrap the app command. %command% is replaced with the actual executable": { - "Wrap the app command. %command% is replaced with the actual executable": "" + "Wrap the app command. %command% is replaced with the actual executable": "Csomagold be az alkalmazás parancsát. A %command% helyére a tényleges végrehajtható fájl kerül." }, "Write:": { "Write:": "Írás:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X tengely" }, "X-Ray": { - "X-Ray": "" + "X-Ray": "X-Ray" }, "XWayland": { - "XWayland": "" + "XWayland": "XWayland" }, "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { - "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" + "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "Az X-Ray csak a háttérképet mossa el (hatékony), és ez az alapértelmezett, ha az Elmosás be van kapcsolva. Állítsd az X-Ray-t Ki állásba az ablak alatti összes elem normál, teljes elmosásához (erőforrás-igényesebb)." + }, + "Y": { + "Y": "" }, "Y Axis": { "Y Axis": "Y tengely" @@ -8313,16 +8340,16 @@ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Be kell állítanod a\nQT_QPA_PLATFORMTHEME=gtk3\nvagy a\nQT_QPA_PLATFORMTHEME=qt6ct\nkörnyezeti változót, majd indítsd újra a héjat.\n\nA qt6ct-hez telepíteni kell a qt6ct-kde csomagot." }, "You'll enter your password at the greeter after the next reboot.": { - "You'll enter your password at the greeter after the next reboot.": "" + "You'll enter your password at the greeter after the next reboot.": "A következő újraindítás után meg kell adnod a jelszavadat az üdvözlőképernyőn." }, "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": { - "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "" + "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "A következő újraindítás után kihagyja az üdvözlőképernyő jelszavát. A képernyőzár és a kijelentkezés továbbra is igényli a jelszót." }, "You're All Set!": { "You're All Set!": "Minden kész!" }, "Your compositor does not support background blur (ext-background-effect-v1)": { - "Your compositor does not support background blur (ext-background-effect-v1)": "" + "Your compositor does not support background blur (ext-background-effect-v1)": "A kompozitor nem támogatja a háttér elmosását (ext-background-effect-v1)" }, "Your system is up to date!": { "Your system is up to date!": "A rendszer naprakész!" @@ -8370,10 +8397,10 @@ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "A dms/outputs konfiguráció létezik, de nincs benne a kompozitor konfigurációjában. A kijelző változások nem maradnak meg." }, "e.g. /usr/bin/my-script --flag": { - "e.g. /usr/bin/my-script --flag": "" + "e.g. /usr/bin/my-script --flag": "Például /usr/bin/my-script --flag" }, "e.g. My Script": { - "e.g. My Script": "" + "e.g. My Script": "Például Saját parancsfájl" }, "e.g. alice": { "e.g. alice": "Például alice" @@ -8385,7 +8412,7 @@ "e.g., focus-workspace 3, resize-column -10": "Például focus-workspace 3, resize-column -10" }, "e.g., hl.dsp.focus({ workspace = \"3\" })": { - "e.g., hl.dsp.focus({ workspace = \"3\" })": "" + "e.g., hl.dsp.focus({ workspace = \"3\" })": "Például hl.dsp.focus({ workspace = „3” })" }, "e.g., notify-send 'Hello' && sleep 1": { "e.g., notify-send 'Hello' && sleep 1": "például notify-send „Hello” && sleep 1" @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "Például. scratch, /^tmp_.*/, build" }, - "events": { - "events": "események" - }, "ext": { "ext": "kiterj." }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "A loginctl nem érhető el – a zárolás integrációhoz DMS-socketkapcsolat szükséges" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord szerver" }, diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index e722d897..8badc37e 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -1,6 +1,6 @@ { "%1 (+%2 more)": { - "%1 (+%2 more)": "" + "%1 (+%2 more)": "%1 (+ altri %2)" }, "%1 Animation Speed": { "%1 Animation Speed": "Velocità Animazione %1" @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 online" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 aggiornamento" }, @@ -108,7 +111,7 @@ "%1m ago": "%1 min fa" }, "%command%": { - "%command%": "" + "%command%": "%command%" }, "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": { "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "\"Alternativa\" permette alla chiave di sbloccare da sola. \"Secondo fattore\" richiede prima la password o l'impronta digitale, poi la chiave." @@ -120,7 +123,7 @@ "(Unnamed)": "(Senza nome)" }, "+ %1 more": { - "+ %1 more": "+ %1 altre" + "+ %1 more": "+ %1 altri" }, "/path/to/videos": { "/path/to/videos": "/percorso/dei/video" @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 dispositivo connesso" }, - "1 event": { - "1 event": "1 evento" - }, "1 hour": { "1 hour": "1 ora" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 secondo" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minuti" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "orologio 24 ore" }, - "24-hour format": { - "24-hour format": "formato 24 ore" - }, "25 seconds": { "25 seconds": "25 secondi" }, @@ -330,7 +330,7 @@ "Accept Jobs": "Accetta Stampe" }, "Accepting": { - "Accepting": "In Accettazione" + "Accepting": "Accettazione" }, "Access clipboard history": { "Access clipboard history": "Accesso alla cronologia degli appunti" @@ -381,7 +381,7 @@ "Active VPN": "VPN Attiva" }, "Active in Column": { - "Active in Column": "" + "Active in Column": "Attivo in Colonna" }, "Active tile background and icon color": { "Active tile background and icon color": "Colore sfondo e icona dei riquadri attivi" @@ -417,7 +417,7 @@ "Add Desktop Widget": "Aggiungi Widget Desktop" }, "Add Entry": { - "Add Entry": "" + "Add Entry": "Aggiungi Voce" }, "Add Printer": { "Add Printer": "Aggiungi Stampante" @@ -429,10 +429,10 @@ "Add Widget": "Aggiungi Widget" }, "Add Widget to %1": { - "Add Widget to %1": "" + "Add Widget to %1": "Aggiungi Widget alla %1" }, "Add Window Rule": { - "Add Window Rule": "" + "Add Window Rule": "Aggiungi Regola Finestra" }, "Add a border around the dock": { "Add a border around the dock": "Aggiungi un bordo al dock" @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Aggiungi un prefisso personalizzato all'avvio di tutte le applicazioni. Può essere utilizzato per strumenti come \"uwsm-app\", \"systemd-run\" o altri wrapper di comandi." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Aggiungi e configura widget che compaiono sul tuo desktop" }, @@ -447,7 +450,7 @@ "Add by Address": "Aggiungi tramite Indirizzo" }, "Add match": { - "Add match": "" + "Add match": "Aggiungi Corrispondenza" }, "Add the new user to the %1 group so they can run dms greeter sync --profile.": { "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Aggiungi il nuovo utente al gruppo %1 in modo che possa eseguire il comando dms greeter sync --profile." @@ -456,7 +459,7 @@ "Add the new user to the %1 group so they can use sudo.": "Aggiungi il nuovo utente al gruppo %1 in modo che possa utilizzare sudo." }, "Add to Autostart": { - "Add to Autostart": "" + "Add to Autostart": "Aggiungi all'Avvio Automatico" }, "Adjust the bar height via inner padding": { "Adjust the bar height via inner padding": "Regola l'altezza della barra tramite spaziatura interna" @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "Già in quella sessione" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Indietro • F1/I: Info File • F10: Aiuto • Esc: Chiudi" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Analisi configurazione in corso..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Durata Animazione" }, @@ -566,23 +575,23 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identità Anonima (facoltativa)" }, - "Any": { - "Any": "" - }, "Any window": { - "Any window": "" + "Any window": "Qualsiasi finestra" }, "App Customizations": { "App Customizations": "Personalizzazioni App" }, "App ID": { - "App ID": "" + "App ID": "ID Applicazione" + }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" }, "App ID Substitutions": { "App ID Substitutions": "Sostituzioni App ID" }, "App ID regex": { - "App ID regex": "" + "App ID regex": "Regex ID Applicazione" }, "App ID regex (e.g. ^firefox$)": { "App ID regex (e.g. ^firefox$)": "Regex ID applicazione (es. ^firefox$)" @@ -600,7 +609,7 @@ "Appearance": "Aspetto" }, "Application": { - "Application": "" + "Application": "Applicazione" }, "Application Dock": { "Application Dock": "Dock delle Applicazioni" @@ -609,7 +618,7 @@ "Applications": "Applicazioni" }, "Applications and commands to start automatically when you log in": { - "Applications and commands to start automatically when you log in": "" + "Applications and commands to start automatically when you log in": "Applicazioni e Comandi da Avviare Automaticamente all'Accesso" }, "Apply Changes": { "Apply Changes": "Applica Modifiche" @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Applica una temperatura colore più calda per ridurre l'affaticamento visivo. Usa le impostazioni di automazione qui sotto per controllare quando attivarla." }, - "Applying authentication changes…": { - "Applying authentication changes…": "Applicazione delle modifiche di autenticazione in corso…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "App" @@ -672,7 +681,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "Disponi gli schermi e configura risoluzione, frequenza di aggiornamento e VRR" }, "At Startup": { - "At Startup": "" + "At Startup": "All'Avvio" }, "At least one output must remain enabled": { "At least one output must remain enabled": "Almeno un output deve rimanere abilitato" @@ -795,16 +804,16 @@ "Auto-hide Dock": "Nascondi Automaticamente il Dock" }, "Auto-login": { - "Auto-login": "" + "Auto-login": "Accesso Automatico" }, "Auto-login disabled": { - "Auto-login disabled": "" + "Auto-login disabled": "Accesso Automatico Disabilitato" }, "Auto-login enabled": { - "Auto-login enabled": "" + "Auto-login enabled": "Accesso Automatico Abilitato" }, "Auto-login on startup": { - "Auto-login on startup": "" + "Auto-login on startup": "Accesso Automatico all'Avvio" }, "Auto-saving...": { "Auto-saving...": "Salvataggio in corso..." @@ -861,10 +870,10 @@ "Automation": "Automazione" }, "Autostart Apps": { - "Autostart Apps": "" + "Autostart Apps": "Applicazioni in Avvio Automatico" }, "Autostart Entries": { - "Autostart Entries": "" + "Autostart Entries": "Voci in Avvio Automatico" }, "Available": { "Available": "Disponibile" @@ -894,7 +903,7 @@ "Back": "Indietro" }, "Back to user list": { - "Back to user list": "" + "Back to user list": "Torna alla Lista Utenti" }, "Backend": { "Backend": "Backend" @@ -909,7 +918,7 @@ "Background Blur": "Sfocatura Sfondo" }, "Background Effect": { - "Background Effect": "" + "Background Effect": "Effetto Sfondo" }, "Background Opacity": { "Background Opacity": "Opacità dello Sfondo" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Tavolozza bilanciata con accenti focalizzati (predefinito)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Configurazioni Barra" }, @@ -1020,7 +1035,7 @@ "Bluetooth not available": "Bluetooth non disponibile" }, "Blur": { - "Blur": "" + "Blur": "Sfocatura" }, "Blur Border Color": { "Blur Border Color": "Colore Bordo Sfocato" @@ -1053,7 +1068,7 @@ "Border Color": "Colore Bordo" }, "Border Off": { - "Border Off": "" + "Border Off": "Bordo Disattivato" }, "Border Opacity": { "Border Opacity": "Opacità Bordo" @@ -1074,10 +1089,10 @@ "Border color around blurred surfaces": "Colore del bordo attorno alle superfici sfocate" }, "Border w/ Bg": { - "Border w/ Bg": "" + "Border w/ Bg": "Bordo con Sfondo" }, "Border with Background": { - "Border with Background": "" + "Border with Background": "Bordo con Sfondo" }, "Bottom": { "Bottom": "In Basso" @@ -1209,10 +1224,10 @@ "Caps Lock is on": "Blocco Maiuscole è attivo" }, "Cast Target": { - "Cast Target": "" + "Cast Target": "Destinazione Trasmissione" }, "Category": { - "Category": "" + "Category": "Categoria" }, "Center Section": { "Center Section": "Sezione Centrale" @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Controllo aggiornamenti..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Verifica della necessità di autenticazione sudo…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Verifica in corso..." }, - "Checking…": { - "Checking…": "Controllo in corso…" - }, "Choose Color": { "Choose Color": "Scegli Colore" }, @@ -1296,7 +1308,7 @@ "Choose a color": "Scegli un colore" }, "Choose a power profile": { - "Choose a power profile": "" + "Choose a power profile": "Scegli un Profilo Energetico" }, "Choose colors from palette": { "Choose colors from palette": "Scegli i colori dalla tavolozza" @@ -1329,7 +1341,7 @@ "Choose where on-screen displays appear on screen": "Scegli dove i messaggi appaiono sullo schermo" }, "Choose whether to launch a desktop app or a command": { - "Choose whether to launch a desktop app or a command": "" + "Choose whether to launch a desktop app or a command": "Scegli se avviare un'applicazione desktop o un comando" }, "Choose which displays show this widget": { "Choose which displays show this widget": "Scegli su quali schermi mostrare questo widget" @@ -1347,7 +1359,7 @@ "Circle": "Cerchio" }, "Class regex": { - "Class regex": "" + "Class regex": "Regex Classe" }, "Class regex (e.g. ^firefox$)": { "Class regex (e.g. ^firefox$)": "Regex classe (es. ^firefox$)" @@ -1419,7 +1431,7 @@ "Clipboard Manager": "Gestore Appunti" }, "Clipboard Saved": { - "Clipboard Saved": "" + "Clipboard Saved": "Appunti Salvati" }, "Clipboard sent": { "Clipboard sent": "Appunti inviati" @@ -1518,7 +1530,7 @@ "Command": "Comando" }, "Command Line": { - "Command Line": "" + "Command Line": "Riga di Comando" }, "Commands": { "Commands": "Comandi" @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Connessione al Dispositivo" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "Connessione al servizio degli appunti…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Connessione in corso..." @@ -1659,7 +1671,7 @@ "Contrast": "Contrasto" }, "Contributor": { - "Contributor": "" + "Contributor": "Contributore" }, "Control Center": { "Control Center": "Centro di Controllo" @@ -1710,7 +1722,7 @@ "Convenience options for the login screen. Sync to apply.": "Opzioni di comodità per la schermata di accesso. Sincronizza per applicare." }, "Convert to DMS": { - "Convert to DMS": "" + "Convert to DMS": "Converti in DMS" }, "Cooldown": { "Cooldown": "Tempo di Attesa" @@ -1764,7 +1776,7 @@ "Corners & Background": "Angoli e Sfondo" }, "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" + "Couldn't open a terminal for the auto-login update.": "Impossibile aprire un terminale per l'aggiornamento dell'accesso automatico." }, "Count Only": { "Count Only": "Solo Conteggio" @@ -1866,7 +1878,7 @@ "Cursor Theme": "Tema Cursore" }, "Curve": { - "Curve": "" + "Curve": "Curva" }, "Curve: curve rasterizer.": { "Curve: curve rasterizer.": "Curve: rasterizzatore a curve." @@ -1959,7 +1971,7 @@ "DMS Settings": "Impostazioni DMS" }, "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": { - "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "" + "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "Le Impostazioni di DMS scrivono scorciatoie Lua. Aggiungi l'Inclusione di DMS affinché le modifiche vengano applicate." }, "DMS Shortcuts": { "DMS Shortcuts": "Scorciatoie DMS" @@ -1968,7 +1980,7 @@ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Il greeter DMS richiede: greetd, dms-greeter. Impronte digitali: fprintd, pam_fprintd. Chiavi di sicurezza: pam_u2f. Aggiungi il tuo utente al gruppo greeter. Le modifiche di autenticazione vengono applicate automaticamente e potrebbero aprire un terminale quando è richiesta l'autenticazione sudo." }, "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" + "DMS needs administrator access. The terminal closes automatically when done.": "DMS richiede l'accesso come amministratore. Il terminale si chiuderà automaticamente al termine." }, "DMS out of date": { "DMS out of date": "DMS obsoleta" @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET non disponibile" }, - "DWL service not available": { - "DWL service not available": "Servizio DWL non disponibile" - }, "Daily": { "Daily": "Giornaliero" }, @@ -2109,7 +2118,7 @@ "Delete Printer": "Elimina Stampante" }, "Delete Rule": { - "Delete Rule": "" + "Delete Rule": "Elimina Regola" }, "Delete Saved Item?": { "Delete Saved Item?": "Eliminare l'Elemento Salvato?" @@ -2151,7 +2160,7 @@ "Desktop": "Scrivania" }, "Desktop Application": { - "Desktop Application": "" + "Desktop Application": "Applicazione Desktop" }, "Desktop Clock": { "Desktop Clock": "Orologio Desktop" @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Disattivazione Wi-Fi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Disco" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Mostra priorità sopra app a schermo intero" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Visualizza e cambia i layout DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Mostra icone applicazioni negli indicatori degli spazi di lavoro" @@ -2316,7 +2325,7 @@ "Display line numbers in editor": "Mostra numero di riga nell'editor" }, "Display name for this entry": { - "Display name for this entry": "" + "Display name for this entry": "Nome visualizzato per questa voce" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Mostra solo gli spazi di lavoro con finestre" @@ -2328,7 +2337,7 @@ "Display seconds in the clock": "Mostra i secondi nell'orologio" }, "Display setup failed": { - "Display setup failed": "" + "Display setup failed": "Configurazione schermo non riuscita" }, "Display the power system menu": { "Display the power system menu": "Mostra il menu di alimentazione del sistema" @@ -2463,7 +2472,7 @@ "Edit Clipboard": "Modifica Appunti" }, "Edit Rule": { - "Edit Rule": "" + "Edit Rule": "Modifica Regola" }, "Edit Window Rule": { "Edit Window Rule": "Modifica Regola Finestra" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "Modifica il testo degli appunti" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Istruzione" }, @@ -2649,7 +2661,7 @@ "Enterprise": "Enterprise" }, "Entry Type": { - "Entry Type": "" + "Entry Type": "Tipo Voce" }, "Entry pinned": { "Entry pinned": "Voce fissata" @@ -2829,7 +2841,7 @@ "Failed to fetch network QR code: %1": "Impossibile recuperare il codice QR di rete: %1" }, "Failed to generate systemd override": { - "Failed to generate systemd override": "" + "Failed to generate systemd override": "Impossibile generare override systemd" }, "Failed to hold job": { "Failed to hold job": "Impossibile sospendere la stampa" @@ -2975,11 +2987,11 @@ "Failed to update sharing": { "Failed to update sharing": "Impossibile aggiornare la condivisione" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { - "Failed to write autostart entry": "" + "Failed to write autostart entry": "Impossibile scrivere la voce di avvio automatico" + }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Impossibile scrivere il file temporaneo per la validazione" @@ -3039,7 +3051,7 @@ "Fill": "Riempi" }, "Filter": { - "Filter": "" + "Filter": "Filtro" }, "Find in Text": { "Find in Text": "Trova nel Testo" @@ -3101,8 +3113,20 @@ "Float": { "Float": "Fluttuante" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { - "Floating": "" + "Floating": "Fluttuante" + }, + "Floating Position": { + "Floating Position": "" }, "Fluent": { "Fluent": "Fluente" @@ -3114,16 +3138,16 @@ "Focus": "Focus" }, "Focus Ring Color": { - "Focus Ring Color": "" + "Focus Ring Color": "Colore Anello Focus" }, "Focus Ring Off": { - "Focus Ring Off": "" + "Focus Ring Off": "Anello Focus Disattivato" }, "Focus at Startup": { "Focus at Startup": "Attiva all'Avvio" }, "Focused": { - "Focused": "" + "Focused": "A Fuoco" }, "Focused Border": { "Focused Border": "Bordo Attivo" @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Finestra Attiva" }, - "Focused monitor only": { - "Focused monitor only": "Solo schermo attivo" - }, "Fog": { "Fog": "Nebbia" }, @@ -3207,7 +3228,7 @@ "Force Kill (SIGKILL)": "Terminazione Forzata (SIGKILL)" }, "Force RGBX": { - "Force RGBX": "" + "Force RGBX": "Forza RGBX" }, "Force Wide Color": { "Force Wide Color": "Forza Colore Esteso" @@ -3285,7 +3306,7 @@ "Full Day & Month": "Data e Mese Estesi" }, "Full command to execute": { - "Full command to execute": "" + "Full command to execute": "Comando completo da eseguire" }, "Full with Year": { "Full with Year": "Completo con Anno" @@ -3333,7 +3354,7 @@ "Gamma control not available. Requires DMS API v6+.": "Controllo gamma non disponibile. Richiede API DMS v6+." }, "Generate Override": { - "Generate Override": "" + "Generate Override": "Genera Override" }, "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.": { "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.": "Genera configurazioni di base GTK3/4 o QT5/QT6 (richiede qt6ct-kde) per seguire i colori DMS. Necessario solo una volta.

Si consiglia di configurare adw-gtk3 prima di applicare i temi GTK." @@ -3437,6 +3458,9 @@ "Group": { "Group": "Gruppo" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Raggruppa App per Spazio di Lavoro" }, @@ -3570,7 +3594,7 @@ "Hide the bar when the pointer leaves even if a popout is still open": "Nascondi la barra quando il puntatore esce, anche se una finestra a comparsa è ancora aperta." }, "High": { - "High": "" + "High": "Alto" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Tavolozza ad alta fedeltà che preserva le tonalità della sorgente." @@ -3660,13 +3684,13 @@ "Hyprland Website": "Sito Web di Hyprland" }, "Hyprland conf mode": { - "Hyprland conf mode": "" + "Hyprland conf mode": "Modalità conf Hyprland" }, "Hyprland conf mode is read-only in Settings": { - "Hyprland conf mode is read-only in Settings": "" + "Hyprland conf mode is read-only in Settings": "La modalità conf di Hyprland è in sola lettura nelle Impostazioni" }, "Hyprland config include missing": { - "Hyprland config include missing": "" + "Hyprland config include missing": "Include di configurazione Hyprland mancante" }, "I Understand": { "I Understand": "Ho capito" @@ -3708,7 +3732,7 @@ "Idle": "Inattivo" }, "Idle Inhibit": { - "Idle Inhibit": "" + "Idle Inhibit": "Inibisci Inattività" }, "Idle Inhibitor": { "Idle Inhibitor": "Blocco Sospensione" @@ -3717,7 +3741,7 @@ "Idle Settings": "Impostazioni di Inattività" }, "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": { - "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "" + "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "Se le icone delle app in avvio automatico non appaiono nella barra di sistema, genera un override systemd per assicurare che DMS si avvii prima delle app in avvio automatico" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "Se il campo è nascosto, apparirà non appena viene premuto un tasto." @@ -3797,8 +3821,11 @@ "Inhibitable": { "Inhibitable": "Inibibile" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { - "Initialised": "" + "Initialised": "Inizializzato" }, "Inner padding applied to each widget": { "Inner padding applied to each widget": "Spaziatura interna applicata a ciascun widget" @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Inverti al cambio di modalità" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Effetto Iride" }, @@ -4179,7 +4209,7 @@ "Longitude": "Longitudine" }, "Low": { - "Low": "" + "Low": "Basso" }, "Low Priority": { "Low Priority": "Bassa Priorità" @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "Gestisce file e directory" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "Sovrascritture Layout MangoWC" }, @@ -4263,10 +4299,10 @@ "Marker Waste Full": "Vaschetta Recupero Toner Piena" }, "Match (%1)": { - "Match (%1)": "" + "Match (%1)": "Corrispondenza (%1)" }, "Match Conditions": { - "Match Conditions": "" + "Match Conditions": "Condizioni Di Corrispondenza" }, "Match Criteria": { "Match Criteria": "Criteri di Corrispondenza" @@ -4599,11 +4635,14 @@ "Named Workspace Icons": "Icone Spazi di Lavoro con Nome" }, "Native": { - "Native": "" + "Native": "Nativo" }, "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "Native: renderer di piattaforma (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Naviga" }, @@ -4782,7 +4821,7 @@ "No app customizations.": "Nessuna personalizzazione app." }, "No application selected": { - "No application selected": "" + "No application selected": "Nessuna applicazione selezionata" }, "No apps found": { "No apps found": "Nessuna app trovata" @@ -4794,7 +4833,7 @@ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Nessuna app silenziata. Fai clic destro su una notifica e scegli \"Silenzia popup\" per aggiungerne una qui." }, "No autostart entries": { - "No autostart entries": "" + "No autostart entries": "Nessuna voce di avvio automatico" }, "No battery": { "No battery": "Nessuna batteria" @@ -4992,7 +5031,7 @@ "No window rules configured": "Nessuna regola finestra configurata" }, "Noise": { - "Noise": "" + "Noise": "Rumore" }, "None": { "None": "Nessuna" @@ -5034,7 +5073,7 @@ "Not detected": "Non rilevato" }, "Not listed?": { - "Not listed?": "" + "Not listed?": "Non elencato?" }, "Not paired": { "Not paired": "Non associato" @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "Su Richiesta" }, - "On-Screen Displays": { - "On-Screen Displays": "Indicatori a Schermo" - }, "On-screen Displays": { "On-screen Displays": "Indicatori a Schermo" }, @@ -5226,7 +5262,7 @@ "Opening files": "Apertura dei file" }, "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" + "Opening terminal to update greetd": "Apertura terminale per aggiornare greetd" }, "Opening terminal: ": { "Opening terminal: ": "Apertura del terminale: " @@ -5247,7 +5283,7 @@ "Optional location": "Posizione facoltativa" }, "Optional state-based conditions applied to the first match.": { - "Optional state-based conditions applied to the first match.": "" + "Optional state-based conditions applied to the first match.": "Condizioni opzionali basate sullo stato applicate alla prima corrispondenza." }, "Options": { "Options": "Opzioni" @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Collegato" }, - "Plugged in": { - "Plugged in": "Collegato all'alimentazione" - }, "Plugin": { "Plugin": "Plugin" }, @@ -5664,7 +5697,7 @@ "Power Menu Customization": "Personalizzazione Menu Alimentazione" }, "Power Mode": { - "Power Mode": "" + "Power Mode": "Modalità Alimentazione" }, "Power Off": { "Power Off": "Spegni" @@ -5826,7 +5859,7 @@ "Protocol": "Protocollo" }, "Qt": { - "Qt": "" + "Qt": "Qt" }, "Qt colors applied successfully": { "Qt colors applied successfully": "I colori Qt sono stati applicati con successo" @@ -5886,7 +5919,7 @@ "Re-enter password": "Reinserisci la password" }, "Read-only legacy config": { - "Read-only legacy config": "" + "Read-only legacy config": "Configurazione legacy in sola lettura" }, "Read:": { "Read:": "Lettura:" @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Aggiorna Meteo" }, - "Refreshing…": { - "Refreshing…": "Aggiornamento…" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -5988,7 +6021,7 @@ "Remove inner padding from all widgets": "Rimuovi la spaziatura interna da tutti i widget" }, "Remove match": { - "Remove match": "" + "Remove match": "Rimuovi corrispondenza" }, "Remove the shortcut %1?": { "Remove the shortcut %1?": "Rimuovere il collegamento %1?" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "È necessario un server DMS dotato della funzionalità sysupdate" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Richiede compositor DWL" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "Richiede una versione più recente di Quickshell" @@ -6051,7 +6084,7 @@ "Requires night mode support": "Richiede il supporto alla modalità notturna" }, "Requires remembering the last user and session. Enable those options first.": { - "Requires remembering the last user and session. Enable those options first.": "" + "Requires remembering the last user and session. Enable those options first.": "Richiede di ricordare l'ultimo utente e sessione. Abilita prima quelle opzioni." }, "Reset": { "Reset": "Reimposta" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Ridimensiona Widget" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Risoluzione e Frequenza di Aggiornamento" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Angoli arrotondati per le finestre" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Angoli arrotondati per le finestre (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Angoli arrotondati per le finestre (decoration.rounding)" - }, "Rule": { "Rule": "Regola" }, @@ -6162,7 +6195,7 @@ "Rules (%1)": "Regole (%1)" }, "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": { - "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "" + "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "Regole trovate nella configurazione del tuo compositore. Queste sono in sola lettura qui, usa Converti In DMS per crearne una copia modificabile." }, "Run Again": { "Run Again": "Esegui di Nuovo" @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Impostazioni App in Esecuzione" }, - "Running greeter sync…": { - "Running greeter sync…": "Sincronizzazione del greeter in corso…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "In esecuzione nel terminale" @@ -6204,7 +6237,7 @@ "SMS": "SMS" }, "Saturation": { - "Saturation": "" + "Saturation": "Saturazione" }, "Save": { "Save": "Salva" @@ -6315,7 +6348,7 @@ "Search Options": "Opzioni di Ricerca" }, "Search applications...": { - "Search applications...": "" + "Search applications...": "Cerca applicazioni..." }, "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Cerca per combinazione di tasti, descrizione o nome azione.\n\nL'azione predefinita copia la scorciatoia negli appunti.\nFai clic destro o Freccia Destra per fissare le scorciatoie frequenti - appariranno in cima quando non si cerca." @@ -6420,7 +6453,7 @@ "Select a color from the palette or use custom sliders": "Seleziona un colore dalla tavolozza o usa lo slider di personalizzazione" }, "Select a desktop application": { - "Select a desktop application": "" + "Select a desktop application": "Seleziona un'applicazione desktop" }, "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": { "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Seleziona un widget da aggiungere al tuo desktop. Ogni widget è un'istanza separata con le proprie impostazioni." @@ -6681,7 +6714,7 @@ "Show Humidity": "Mostra Umidità" }, "Show Icon": { - "Show Icon": "" + "Show Icon": "Mostra Icona" }, "Show Launcher Button": { "Show Launcher Button": "Mostra Pulsante Launcher" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Mostra App negli Spazi di Lavoro" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Mostra tutti i 9 tag invece di quelli occupati (solo DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Mostra un bordo attorno all’indicatore dello spazio di lavoro attivo" @@ -6837,7 +6870,7 @@ "Show mode tabs and keyboard hints at the bottom.": "Mostra schede modalità e suggerimenti tastiera in basso." }, "Show mount path": { - "Show mount path": "" + "Show mount path": "Mostra percorso di montaggio" }, "Show notification popups only on the currently focused monitor": { "Show notification popups only on the currently focused monitor": "Mostra i popup delle notifiche solo sullo schermo attualmente attivo" @@ -6963,7 +6996,7 @@ "Skip setup": "Salta configurazione" }, "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": { - "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "" + "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "Salta la password del greeter dopo l'avvio fino alla disconnessione. Lo sblocco della schermata di blocco rimane invariato. Ha effetto al prossimo riavvio dopo la sincronizzazione." }, "Small": { "Small": "Piccolo" @@ -6999,7 +7032,7 @@ "Sounds": "Suoni" }, "Source: %1": { - "Source: %1": "" + "Source: %1": "Sorgente: %1" }, "Space between the bar and screen edges": { "Space between the bar and screen edges": "Spazio tra la barra e i bordi dello schermo" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Spazio tra le finestre" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Spazio tra le finestre (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Spazio tra le finestre (gaps_in e gaps_out)" - }, "Spacer": { "Spacer": "Distanziatore" }, @@ -7227,7 +7254,7 @@ "System toast notifications": "Notifiche a comparsa di sistema" }, "Systemd Override generated": { - "Systemd Override generated": "" + "Systemd Override generated": "Override systemd generato" }, "Tab": { "Tab": "Scheda" @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Nav Griglia • Invio/Spazio: Seleziona" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "Tag: %1" }, @@ -7317,7 +7347,7 @@ "The job queue of this printer is empty": "La coda delle stampe della stampante è vuota" }, "The rule applies to any window matching one of these.": { - "The rule applies to any window matching one of these.": "" + "The rule applies to any window matching one of these.": "La regola si applica a qualsiasi finestra che corrisponda a una di queste." }, "Theme & Colors": { "Theme & Colors": "Tema e Colori" @@ -7341,7 +7371,7 @@ "Themes": "Temi" }, "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": { - "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "" + "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "> Queste aggiungono voci alla directory di avvio automatico XDG (~/.config/autostart/*.desktop)" }, "Thickness": { "Thickness": "Spessore" @@ -7362,16 +7392,16 @@ "This device": "Questo dispositivo" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "Questa installazione usa ancora hyprland.conf. Esegui dms setup per migrare prima di modificare le impostazioni del cursore." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "Questa installazione usa ancora hyprland.conf. Esegui dms setup per migrare prima di modificare le impostazioni del display." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "Questa installazione usa ancora hyprland.conf. Esegui dms setup per migrare prima di modificare le scorciatoie nelle Impostazioni." }, "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "Questa installazione usa ancora hyprland.conf. Esegui dms setup per migrare prima di modificare le regole delle finestre nelle Impostazioni." }, "This may take a few seconds": { "This may take a few seconds": "L'operazione potrebbe richiedere alcuni secondi" @@ -7460,6 +7490,9 @@ "Title": { "Title": "Titolo" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Regex titolo (opzionale)" }, @@ -7572,7 +7605,7 @@ "Trash command failed (exit %1)": "Comando cestino non riuscito (exit %1)" }, "Tray Icon Fix": { - "Tray Icon Fix": "" + "Tray Icon Fix": "Correzione Icona Tray" }, "Trending GIFs": { "Trending GIFs": "GIF di Tendenza" @@ -7641,7 +7674,7 @@ "Unavailable": "Non disponibile" }, "Uncategorized": { - "Uncategorized": "" + "Uncategorized": "Senza Categoria" }, "Unfocused Color": { "Unfocused Color": "Colore Inattivo" @@ -7782,7 +7815,7 @@ "Uptime:": "Tempo di Attività:" }, "Urgent": { - "Urgent": "" + "Urgent": "Urgente" }, "Urgent Color": { "Urgent Color": "Colore Urgente" @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Usa raggio personalizzato per le finestre invece di quello del tema" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Usa un arrotondamento finestre personalizzato invece del raggio del tema" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Usa lo sfondo del desktop" }, @@ -7860,7 +7890,7 @@ "Use fingerprint authentication for the lock screen.": "Usa l'autenticazione tramite impronta digitale per la schermata di blocco." }, "Use keys 1-3 or arrows, Enter/Space to select": { - "Use keys 1-3 or arrows, Enter/Space to select": "" + "Use keys 1-3 or arrows, Enter/Space to select": "Usa i tasti 1-3 o le frecce, Invio/Spazio per selezionare" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Usa tema chiaro invece del tema scuro" @@ -7896,7 +7926,7 @@ "User": "Utente" }, "User Window Rules (%1)": { - "User Window Rules (%1)": "" + "User Window Rules (%1)": "Regole Finestra Utente (%1)" }, "User already exists": { "User already exists": "L'utente esiste già" @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "Configurazione VPN aggiornata" }, - "VPN connections": { - "VPN connections": "Connessioni VPN" - }, "VPN deleted": { "VPN deleted": "VPN eliminata" }, @@ -8007,7 +8034,7 @@ "Vertical Tiling": "Tiling Verticale" }, "Very High": { - "Very High": "" + "Very High": "Molto Alto" }, "Vibrant": { "Vibrant": "Vivace" @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widget" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widget, layout, stile" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "Larghezza del contorno del widget in pixel" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Larghezza bordo finestra (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Larghezza bordo finestra (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Larghezza del bordo e dell'anello di focus" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Apertura Finestra" }, - "Window Rounding": { - "Window Rounding": "Arrotondamento Finestre" - }, "Window Rules": { "Window Rules": "Regole Finestra" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Tendina" }, - "Working…": { - "Working…": "Elaborazione in corso…" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Spazio di Lavoro" @@ -8267,26 +8291,29 @@ "Workspaces": { "Workspaces": "Spazi di Lavoro" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Spazi di Lavoro e Widget" - }, "Wrap the app command. %command% is replaced with the actual executable": { - "Wrap the app command. %command% is replaced with the actual executable": "" + "Wrap the app command. %command% is replaced with the actual executable": "Avvolgi il comando dell'app. %command% viene sostituito con l'eseguibile effettivo" }, "Write:": { "Write:": "Scrittura:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "Asse X" }, "X-Ray": { - "X-Ray": "" + "X-Ray": "Raggi X" }, "XWayland": { - "XWayland": "" + "XWayland": "XWayland" }, "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { - "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" + "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "I Raggi X sfocano solo lo sfondo (efficiente) ed è l'impostazione predefinita quando la Sfocatura è attiva. Imposta Raggi X su Spento per una normale sfocatura completa di tutto ciò che si trova sotto la finestra (più costoso)." + }, + "Y": { + "Y": "" }, "Y Axis": { "Y Axis": "Asse Y" @@ -8313,16 +8340,16 @@ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Devi impostare una delle seguenti come variabili d'ambiente:\nQT_QPA_PLATFORMTHEME=gtk3 OPPURE\nQT_QPA_PLATFORMTHEME=qt6ct,\ne poi riavviare la shell.\n\nqt6ct richiede che qt6ct-kde sia installato." }, "You'll enter your password at the greeter after the next reboot.": { - "You'll enter your password at the greeter after the next reboot.": "" + "You'll enter your password at the greeter after the next reboot.": "Inserirai la password nel greeter dopo il prossimo riavvio." }, "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": { - "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "" + "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "Salterai la password del greeter dopo il prossimo riavvio. La schermata di blocco e la disconnessione richiederanno ancora la password." }, "You're All Set!": { "You're All Set!": "Tutto Pronto!" }, "Your compositor does not support background blur (ext-background-effect-v1)": { - "Your compositor does not support background blur (ext-background-effect-v1)": "" + "Your compositor does not support background blur (ext-background-effect-v1)": "Il tuo compositore non supporta la sfocatura dello sfondo (ext-background-effect-v1)" }, "Your system is up to date!": { "Your system is up to date!": "Il tuo sistema è aggiornato!" @@ -8370,10 +8397,10 @@ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configurazione dms/outputs esiste ma non è inclusa nella configurazione del compositor. Le modifiche allo schermo non saranno persistenti." }, "e.g. /usr/bin/my-script --flag": { - "e.g. /usr/bin/my-script --flag": "" + "e.g. /usr/bin/my-script --flag": "es. /usr/bin/my-script --flag" }, "e.g. My Script": { - "e.g. My Script": "" + "e.g. My Script": "es. Mio Script" }, "e.g. alice": { "e.g. alice": "ad esempio Alice" @@ -8385,7 +8412,7 @@ "e.g., focus-workspace 3, resize-column -10": "es. focus-workspace 3, resize-column -10" }, "e.g., hl.dsp.focus({ workspace = \"3\" })": { - "e.g., hl.dsp.focus({ workspace = \"3\" })": "" + "e.g., hl.dsp.focus({ workspace = \"3\" })": "es., hl.dsp.focus({ workspace = \"3\" })" }, "e.g., notify-send 'Hello' && sleep 1": { "e.g., notify-send 'Hello' && sleep 1": "es. notify-send \"Ciao\" && sleep 1" @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "es. scratch, /^tmp_.*/, build" }, - "events": { - "events": "eventi" - }, "ext": { "ext": "est" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl non disponibile - integrazione blocco richiede connessione socket DMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "Server Discord di mangowc" }, diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index eb7890dd..cf22a495 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "1%オンライン" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "更新 %1 件" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1台接続済み" }, - "1 event": { - "1 event": "1件のイベント" - }, "1 hour": { "1 hour": "1時間" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1秒" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10分" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24時間時計" }, - "24-hour format": { - "24-hour format": "24 時間形式" - }, "25 seconds": { "25 seconds": "25秒" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "すべてのアプリ起動にカスタム接頭辞を追加します。これは 'uwsm-app'、'systemd-run'、その他のコマンドラッパーなどに使用できます。" }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "デスクトップに表示されるウィジェットを追加および設定" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: 戻る • F1/I: ファイル情報 • F10: ヘルプ • Esc: 閉じる" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "設定を解析中..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "アニメーション時間" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "匿名 ID (オプション)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "App ID 置換" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "目の疲れを軽減するために、暖色系の色温度を適用します。以下の自動化設定で、いつアクティブにするか制御できます。" }, - "Applying authentication changes…": { - "Applying authentication changes…": "認証の変更を適用中…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "アプリ" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。" }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "バーの設定" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "更新を確認中..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "sudo 認証が必要か確認中…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "確認中..." }, - "Checking…": { - "Checking…": "確認中…" - }, "Choose Color": { "Choose Color": "色を選んでください" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "デバイスに接続中" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "クリップボードサービスに接続中…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "接続中..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKETが利用できません" }, - "DWL service not available": { - "DWL service not available": "DWLサービスが利用できません" - }, "Daily": { "Daily": "毎日" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "WiFi を無効化中..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "ディスク" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "フルスクリーンアプリよりもすべての優先度を表示する" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "DWL レイアウトの表示と切り替え" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "ワークスペース インジケーターにアプリのアイコンを表示" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "教育" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "共有設定の更新に失敗しました" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "検証用の一時ファイル書き込みに失敗しました" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "フロート" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": " Fluent" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "フォーカスされたウィンドウ" }, - "Focused monitor only": { - "Focused monitor only": "フォーカス中のモニターのみ" - }, "Fog": { "Fog": "霧" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "グループ" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "ワークスペースのアプリをグループ化" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "抑制可能" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "モード変更時に反転" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Iris Bloom" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "ファイルとディレクトリを管理します" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC レイアウト上書き" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "ネイティブ: プラットフォームレンダラー (FreeType)。" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "移動" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "オンデマンド" }, - "On-Screen Displays": { - "On-Screen Displays": "オンスクリーンディスプレイ" - }, "On-screen Displays": { "On-screen Displays": "オンスクリーンディスプレイ" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "接続" }, - "Plugged in": { - "Plugged in": "接続中" - }, "Plugin": { "Plugin": "プラグイン" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "天気を更新" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "正規表現" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "sysupdate 機能に対応した DMS サーバーが必要です" }, - "Requires DWL compositor": { - "Requires DWL compositor": "DWLコンポジターが必要" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "より新しいバージョンの Quickshell が必要" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "ウィジェットのサイズを変更" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "解像度とリフレッシュレート" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "ウィンドウの角を丸くする" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "ウィンドウの角を丸くする(border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "ウィンドウの角を丸くする(decoration.rounding)" - }, "Rule": { "Rule": "ルール" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "実行中のアプリの設定" }, - "Running greeter sync…": { - "Running greeter sync…": "Greeter 同期を実行中…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "端末で実行中" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "ワークスペースアプリを表示" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "占有タグのみではなく、9 つのタグをすべて表示 (DWL のみ)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "フォーカス中のワークスペースインジケーターの周囲にアウトラインリングを表示" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "ウィンドウ間の間隔" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "ウィンドウ間の間隔(gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "ウィンドウ間の間隔(gaps_in と gaps_out)" - }, "Spacer": { "Spacer": "間隔" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: ナビゲーション • ←→↑↓: グリッドナビゲーション • Enter/Space: 選択" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "タグ: %1" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "タイトル" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "タイトルの正規表現(任意)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "テーマ半径の代わりにカスタムウィンドウ半径を使用" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "テーマ半径の代わりにカスタムウィンドウ丸みを使用" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "デスクトップ壁紙を使用" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 設定を更新しました" }, - "VPN connections": { - "VPN connections": "VPN 接続" - }, "VPN deleted": { "VPN deleted": "VPN を削除しました" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "ウィジェット" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "ウィジェット、レイアウト、スタイル" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "ウィンドウ境界線の幅(borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "ウィンドウ境界線の幅(general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "ウィンドウ境界線とフォーカスリングの幅" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "ウィンドウの開く動作" }, - "Window Rounding": { - "Window Rounding": "ウィンドウの丸み" - }, "Window Rules": { "Window Rules": "ウィンドウルール" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "ワイプ" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "ワークスペース" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "ワークスペース" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "ワークスペースとウィジェット" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "書き込み:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X 軸" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Y 軸" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "例: scratch、/^tmp_.*/、build" }, - "events": { - "events": "イベント" - }, "ext": { "ext": "ext" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctlが利用できません- ロック統合のためにDMS socketの接続が必要です。" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord サーバー" }, diff --git a/quickshell/translations/poexports/nl.json b/quickshell/translations/poexports/nl.json index 4f881a12..12b94cef 100644 --- a/quickshell/translations/poexports/nl.json +++ b/quickshell/translations/poexports/nl.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 online" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 update" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 apparaat verbonden" }, - "1 event": { - "1 event": "1 afspraak" - }, "1 hour": { "1 hour": "1 uur" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 seconde" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minuten" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24-uursklok" }, - "24-hour format": { - "24-hour format": "24-uursnotatie" - }, "25 seconds": { "25 seconds": "25 seconden" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Voeg een aangepast voorvoegsel toe aan alle applicatiestarts. Dit kan worden gebruikt voor zaken als 'uwsm-app', 'systemd-run' of andere opdrachtwrappers." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Widgets toevoegen en configureren die op uw bureaublad verschijnen" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Terug • F1/I: Bestandsinfo • F10: Hulp • Esc: Sluiten" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Configuratie analyseren..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Animatieduur" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Anonieme identiteit (optioneel)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "App ID-vervangingen" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Warme kleurtemperatuur toepassen om oogvermoeidheid te verminderen. Gebruik de automatiseringsinstellingen hieronder om te bepalen wanneer dit activeert." }, - "Applying authentication changes…": { - "Applying authentication changes…": "Verificatiewijzigingen toepassen…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Apps" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Gebalanceerd palet met gerichte accenten (standaard)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Balkconfiguraties" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Zoeken naar updates..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Controleren of sudo-authenticatie vereist is…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Controleren..." }, - "Checking…": { - "Checking…": "Controleren…" - }, "Choose Color": { "Choose Color": "Kleur kiezen" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Verbinden met apparaat" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "Verbinden met klembord-service…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Verbinden..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET niet beschikbaar" }, - "DWL service not available": { - "DWL service not available": "DWL-service niet beschikbaar" - }, "Daily": { "Daily": "Dagelijks" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Wifi uitschakelen..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Schijf" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Alle prioriteiten over applicaties op volledig scherm tonen" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "DWL-indelingen tonen en wisselen" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Applicatiepictogrammen tonen in werkbladindicatoren" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Onderwijs" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Bijwerken van delen mislukt" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Schrijven van tijdelijk bestand voor validatie mislukt" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "Zweven" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "Fluent" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Actieve venster" }, - "Focused monitor only": { - "Focused monitor only": "Alleen op actieve monitor" - }, "Fog": { "Fog": "Mist" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "Groep" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Werkblad-apps groeperen" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "Onderdrukbaar" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Omkeren bij moduswisseling" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Irisbloei" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "Beheert bestanden en mappen" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC-indelingsoverschrijvingen" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "Native: platform-renderer (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Navigeren" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "Op aanvraag" }, - "On-Screen Displays": { - "On-Screen Displays": "On-screen displays" - }, "On-screen Displays": { "On-screen Displays": "On-screen displays" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Aangesloten" }, - "Plugged in": { - "Plugged in": "Aangesloten" - }, "Plugin": { "Plugin": "Plug-in" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Weer verversen" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "Vereist DMS-server met sysupdate-functionaliteit" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Vereist DWL-compositor" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "Vereist een nieuwere versie van Quickshell" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Widgetgrootte wijzigen" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Resolutie & Verversing" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Afgeronde hoeken voor vensters" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Afgeronde hoeken voor vensters (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Afgeronde hoeken voor vensters (decoration.rounding)" - }, "Rule": { "Rule": "Regel" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Instellingen actieve apps" }, - "Running greeter sync…": { - "Running greeter sync…": "Greeter-synchronisatie uitvoeren…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "Wordt uitgevoerd in terminal" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Werkblad-apps tonen" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Alle 9 tags tonen in plaats van alleen bezette tags (alleen DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Toon een omlijningsring rond de indicator van het gefocuste werkblad" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Ruimte tussen vensters" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Ruimte tussen vensters (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Ruimte tussen vensters (gaps_in en gaps_out)" - }, "Spacer": { "Spacer": "Afstandhouder" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Raster Nav • Enter/Spatie: Selecteren" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "Tags: %1" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Titel" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Titel-regex (optioneel)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Gebruik aangepaste vensterradius in plaats van themaradius" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Aangepaste vensterronding gebruiken in plaats van themaradius" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Bureaubladachtergrond gebruiken" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-configuratie bijgewerkt" }, - "VPN connections": { - "VPN connections": "VPN-verbindingen" - }, "VPN deleted": { "VPN deleted": "VPN verwijderd" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgets" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widgets, indeling, stijl" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Breedte van vensterrand (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Breedte van vensterrand (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Breedte van vensterrand en focusring" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Venster openen" }, - "Window Rounding": { - "Window Rounding": "Vensterronding" - }, "Window Rules": { "Window Rules": "Vensterregels" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Vegen" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Werkblad" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Werkbladen" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Werkbladen & Widgets" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "Schrijven:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X-as" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Y-as" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "bijv. scratch, /^tmp_.*/, build" }, - "events": { - "events": "afspraken" - }, "ext": { "ext": "ext" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl niet beschikbaar - vergrendelintegratie vereist DMS-socketverbinding" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord-server" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index 18dc1446..3d53a6c7 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 połączone urządzenie" }, - "1 event": { - "1 event": "1 wydarzenie" - }, "1 hour": { "1 hour": "" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 sekunda" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minut" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "" }, - "24-hour format": { - "24-hour format": "format 24-godzinny" - }, "25 seconds": { "25 seconds": "" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Dodaj niestandardowy prefiks do wszystkich poleceń aplikacji. Można tego użyć do poleceń takich jak 'uwsm-app', 'systemd-run' lub innych wrapperów." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Dodaj i skonfiguruj widżety pulpitu" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Wstecz • F1/I: Informacje o pliku • F10: Pomoc • Esc: Zamknij" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "" }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Tożsamość anonimowa (opcjonalnie)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Zastosuj ciepłą temperaturę barwową, aby zmniejszyć zmęczenie oczu. Użyj poniższych ustawień automatyzacji, aby kontrolować, kiedy się aktywuje." }, - "Applying authentication changes…": { - "Applying authentication changes…": "" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Zrównoważona paleta ze skupionymi akcentami (domyślnie)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Konfiguracje pasków" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "" }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "" }, - "Checking…": { - "Checking…": "" - }, "Choose Color": { "Choose Color": "Wybierz kolor" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Łączenie z urządzeniem" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Łączenie..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET niedostępny" }, - "DWL service not available": { - "DWL service not available": "Usługa DWL niedostępna" - }, "Daily": { "Daily": "" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Wyłączanie WiFi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Wyświetlaj wszystkie priorytety nad aplikacjami pełnoekranowymi" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Wyświetlanie i przełączanie układów DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Edukacja" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Nie udało się zaktualizować udostępniania" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Zapisanie pliku tymczasowego do walidacji nie powiodło się" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Aktywne okno" }, - "Focused monitor only": { - "Focused monitor only": "" - }, "Fog": { "Fog": "" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "Grupy" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Aplikacje obszaru roboczego grupy" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Odwróć przy zmianie trybu" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "" }, - "On-Screen Displays": { - "On-Screen Displays": "Wyświetlacze ekranowe" - }, "On-screen Displays": { "On-screen Displays": "Powiadomienia ekranowe" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Wpięty do zasilania" }, - "Plugged in": { - "Plugged in": "Wpięto" - }, "Plugin": { "Plugin": "Wtyczka" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Odśwież pogodę" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Wymaga kompozytora DWL" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Zmień rozmiar widżetu" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Rozdzielczość i odświeżanie" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Zaokrąglone narożniki okien" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "" - }, "Rule": { "Rule": "" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Ustawienia uruchomionych aplikacji" }, - "Running greeter sync…": { - "Running greeter sync…": "" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Pokaż wszystkie 9 tagów zamiast tylko zajętych (tylko DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Przerwa między oknami" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Odległość pomiędzy oknami (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Odległość pomiędzy oknami (gaps_in and gaps_out)" - }, "Spacer": { "Spacer": "Odstęp" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nawigacja • ←→↑↓: Nawigacja po siatce • Enter/Spacja: Wybierz" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Tytuł" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Używaj własnego promienia okna w zamiast ustawień motywu" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Użyj niestandardowego zaokrąglenia okien zamiast motywowego" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "Konfiguracja VPN zaktualizowana" }, - "VPN connections": { - "VPN connections": "Połączenia VPN" - }, "VPN deleted": { "VPN deleted": "VPN usunięty" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widżety" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Wtyczki, układ, styl" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Szerokość obramowania okna (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Szerokość obramowania okna (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "" }, - "Window Rounding": { - "Window Rounding": "" - }, "Window Rules": { "Window Rules": "" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Obszar roboczy" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Przestrzenie robocze" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Obszary robocze i widżety" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "Oś X" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Oś Y" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "" }, - "events": { - "events": "wydarzenia" - }, "ext": { "ext": "" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl niedostępny - integracja blokady wymaga połączenia z gniazdem DMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index 2817f544..5c99b29f 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 dispositivo conectado" }, - "1 event": { - "1 event": "1 evento" - }, "1 hour": { "1 hour": "1 hora" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 segundo" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minutos" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "" }, - "24-hour format": { - "24-hour format": "formato de 24 horas" - }, "25 seconds": { "25 seconds": "25 segundos" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Adicionar um prefixo personalizado para todos os inicializações de aplicativos. Isso pode ser usado para coisas como 'uwsm-app', 'systemd-run' ou outros invólucros de comandos." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Adicionar e configurar widgets que aparecem na sua área de trabalho" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Voltar • F1/I: Informações de Arquivo • F10: Ajuda • Esc: Fechar" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Analisando configuração..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Duração da Animação" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identidade Anônima (opcional)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "Substituições de ID de Aplicativo" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Aplicar temperatura de cor quente para reduzir a fadiga ocular. Use as configurações de automação abaixo para controlar quando ela será ativada." }, - "Applying authentication changes…": { - "Applying authentication changes…": "" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Aplicativos" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Paleta equilibrada com destaques de cor focados (padrão)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Configurações da Barra" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "" }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "" }, - "Checking…": { - "Checking…": "" - }, "Choose Color": { "Choose Color": "Escolha a Cor" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Conectando ao Dispositivo" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Conectando..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET não está disponível" }, - "DWL service not available": { - "DWL service not available": "Serviço do DWL não disponível" - }, "Daily": { "Daily": "Diário" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Desativando WiFi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Disco" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Exibir todas as prioridades em aplicativos de tela cheia" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Mostra e altera layouts do DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Mostrar ícones de aplicativos em indicadores de espaço de trabalho" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Educação" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Falha ao atualizar compartilhamento" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Falha ao salvar arquivo temporário para validação" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "Flutuante" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Janela Focada" }, - "Focused monitor only": { - "Focused monitor only": "" - }, "Fog": { "Fog": "Neblina" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "Grupo" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Agrupar Aplicativos da Área de Trabalho" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "Inibível" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Inverter na mudança de modo" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Íris em Flor" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "Substituições de Layout MangoWC" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "Por Demanda" }, - "On-Screen Displays": { - "On-Screen Displays": "Displays na Tela (OSDs)" - }, "On-screen Displays": { "On-screen Displays": "Exibições OSD" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Conectado" }, - "Plugged in": { - "Plugged in": "Conectado" - }, "Plugin": { "Plugin": "Plugin" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Atualizar Clima" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Requer o compositor DWL" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Redimensionar Widget" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Resolução & Taxa de Atualização" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Cantos arredondados para janelas" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Cantos arredondados para janelas (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Cantos arredondados para janelas (decoration.rounding)" - }, "Rule": { "Rule": "Regra" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Configurações de Apps em Execução" }, - "Running greeter sync…": { - "Running greeter sync…": "" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Mostrar Aplicativos da Área de Trabalho Virtual" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Mostrar todas as 9 tags ao invés de apenas tags ocupadas (apenas DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Mostrar um anel de contorno ao redor do indicador de espaço de trabalho em foco" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Espaço entre janelas" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Espaço entre janelas (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Espaço entre janelas (gaps_in e gaps_out)" - }, "Spacer": { "Spacer": "Espaçador" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Navegação • ←→↑↓: Navegação em Grade • Enter/Espaço: Selecionar" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Título" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Regex de Título (opcional)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Usar raio de janela personalizado em vez do raio do tema" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Usar arredondamento de janela personalizado em vez do raio do tema" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "Configuração da VPN atualizada" }, - "VPN connections": { - "VPN connections": "Conexões VPN" - }, "VPN deleted": { "VPN deleted": "VPN excluída" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgets" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widgets, layout, estilo" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Largura da borda da janela (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Largura da borda da janela (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Largura da borda da janela e anel de foco" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Abertura de Janela" }, - "Window Rounding": { - "Window Rounding": "Arredondamento da Janela" - }, "Window Rules": { "Window Rules": "Regras de Janela" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Limpar" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Área de Trabalho" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Áreas de Trabalho" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Áreas de Trabalho e Widgets" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "Escrita:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "Eixo X" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Eixo Y" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "" }, - "events": { - "events": "eventos" - }, "ext": { "ext": "ext" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl não disponível - integração com bloqueio requer conexão de socket DMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "" }, diff --git a/quickshell/translations/poexports/ru.json b/quickshell/translations/poexports/ru.json index befaebc8..47d71379 100644 --- a/quickshell/translations/poexports/ru.json +++ b/quickshell/translations/poexports/ru.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 в сети" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 обновление" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 устройство подключено" }, - "1 event": { - "1 event": "1 событие" - }, "1 hour": { "1 hour": "1 час" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 секунда" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 минут" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24-часовой формат времени" }, - "24-hour format": { - "24-hour format": "24-часовой формат" - }, "25 seconds": { "25 seconds": "25 секунд" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Добавить пользовательский префикс ко всем запускам приложений. Можно использовать для 'uwsm-app', 'systemd-run' или других командных обёрток." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Добавить и настроить виджеты, отображаемые на рабочем столе" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "Уже в этой сессии" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Назад • F1/I: Информация о Файле • F10: Справка • Esc: Закрыть" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Анализ конфигурации..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Длительность анимации" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Анонимный идентификатор (необязательно)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "Подстановки ID приложения" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Применить тёплую цветовую температуру для снижения нагрузки на глаза. Используйте настройки автоматизации ниже для управления активацией." }, - "Applying authentication changes…": { - "Applying authentication changes…": "Применение изменений аутентификации…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Приложения" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Сбалансированная палитра с фокусными акцентами (по умолчанию)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Конфигурации бара" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Проверка обновлений..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Проверка необходимости аутентификации через sudo…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Проверка..." }, - "Checking…": { - "Checking…": "Проверка…" - }, "Choose Color": { "Choose Color": "Выбрать Цвет" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Подключение к устройству" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "Подключение к службе буфера обмена…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Подключение..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET не доступен" }, - "DWL service not available": { - "DWL service not available": "Служба DWL недоступна" - }, "Daily": { "Daily": "Ежедневно" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Отключение Wi-Fi…" }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Стирание" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Отображает все приоритеты в полноэкранных приложениях" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Отображать и переключать layout DWL" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Отображать значки приложений в индикаторах рабочих пространств" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "Редактировать текст буфера обмена" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Обучение" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Не удалось обновить общий доступ" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Не удалось записать временный файл для проверки" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "Плавающий" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "Fluent" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Используемое Окно" }, - "Focused monitor only": { - "Focused monitor only": "Только активный монитор" - }, "Fog": { "Fog": "Туман" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "Группа" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Группировать приложения рабочего пространства" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "Блокируемый" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Инвертировать при смене режима" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Стирание" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "Управляет файлами и каталогами" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "Переопределения макета MangoWC" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "Native: системный рендерер (FreeType)." }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Навигация" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "По требованию" }, - "On-Screen Displays": { - "On-Screen Displays": "Наэкранные отображения" - }, "On-screen Displays": { "On-screen Displays": "Наэкранные отображения" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Подключено" }, - "Plugged in": { - "Plugged in": "Подключено" - }, "Plugin": { "Plugin": "Плагин" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Обновить погоду" }, - "Refreshing…": { - "Refreshing…": "Обновление…" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Регулярное выражение" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "Требуется сервер DMS с поддержкой sysupdate" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Требуется композитор DWL" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "требуется более новая версия Quickshell" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Изменить размер виджета" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Разрешение и обновление" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Скруглённые углы для окон" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Скруглённые углы для окон (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Скруглённые углы для окон (decoration.rounding)" - }, "Rule": { "Rule": "Правило" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Настройка Запущенных Приложений" }, - "Running greeter sync…": { - "Running greeter sync…": "Выполняется синхронизация экрана приветствия…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "Выполняется в терминале" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Показать приложения рабочего пространства" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Показать все 9 тегов вместо только занятых (только DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Показать контурное кольцо вокруг индикатора сфокусированного рабочего пространства" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Расстояние между окнами" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Расстояние между окнами (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Расстояние между окнами (gaps_in и gaps_out)" - }, "Spacer": { "Spacer": "Разделитель" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Навигация • ←→↑↓: Навигация сетки • Enter/Space: Выбрать" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "Теги: %1" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Заголовок" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Regex заголовка (необязательно)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Использовать пользовательский радиус окон вместо радиуса темы" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Использовать пользовательское скругление окон вместо радиуса темы" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Использовать обои рабочего стола" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN конфигурации updated" }, - "VPN connections": { - "VPN connections": "VPN подключения" - }, "VPN deleted": { "VPN deleted": "VPN удалён" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Виджеты" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Виджеты, макет, стиль" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "Ширина контура виджета в пикселях" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Ширина границы окна (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Ширина границы окна (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Ширина границы окна и кольца фокуса" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Открытие окна" }, - "Window Rounding": { - "Window Rounding": "Скругление окон" - }, "Window Rules": { "Window Rules": "Правила окон" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Стирание" }, - "Working…": { - "Working…": "Выполнение…" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Рабочее пространство" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Рабочие пространства" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Рабочие области и виджеты" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "Запись:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "Ось X" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Ось Y" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "например: scratch, /^tmp_.*/, build" }, - "events": { - "events": "события" - }, "ext": { "ext": "расш" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl недоступен — интеграция блокировки требует подключения к сокету DMS" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "Discord-сервер mangowc" }, diff --git a/quickshell/translations/poexports/sv.json b/quickshell/translations/poexports/sv.json index ff220b4f..1011aa5a 100644 --- a/quickshell/translations/poexports/sv.json +++ b/quickshell/translations/poexports/sv.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 uppdatering" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "1 enhet ansluten" }, - "1 event": { - "1 event": "1 händelse" - }, "1 hour": { "1 hour": "1 timme" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 sekund" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 minuter" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24-timmarsklocka" }, - "24-hour format": { - "24-hour format": "24-timmarsklocka" - }, "25 seconds": { "25 seconds": "25 sekunder" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Lägg till ett anpassat prefix på alla programstarter. Detta kan användas för t.ex. 'uwsm-app', 'systemd-run' eller andra kommandoomslag." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Lägg till och konfigurera widgetar som visas på skrivbordet" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backsteg: Gå tillbaka • F1/I: Filinformation • F10: Hjälp • Esc: Stäng" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "Analyserar konfiguration..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "Animeringstid" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Anonym identitet (valfritt)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "App-ID-substitutioner" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Applicera varm färgtemperatur för att minska ögontrötthet. Använd automatiseringsinställningarna nedan för att styra när det aktiveras." }, - "Applying authentication changes…": { - "Applying authentication changes…": "" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "Appar" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Balanserad palett med fokuserade accenter (standard)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Menyradskonfigurationer" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "Söker efter uppdateringar..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "Kontrollerar om sudo-autentisering behövs…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "Kontrollerar..." }, - "Checking…": { - "Checking…": "Kontrollerar…" - }, "Choose Color": { "Choose Color": "Välj färg" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Ansluter till enhet" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Ansluter..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET otillgänglig" }, - "DWL service not available": { - "DWL service not available": "DWL-tjänsten är inte tillgänglig" - }, "Daily": { "Daily": "Dagligen" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "Avaktiverar Wi-Fi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "Skiva" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Visa alla prioritetsnotiser ovanpå appar i helskärmsläge" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "Visa och växla DWL-layouter" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Visa appikoner i arbetsytans indikatorer" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Utbildning" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Misslyckades med att uppdatera delning" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Misslyckades med att skriva temporär fil för validering" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "Flytande" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Fönster i fokus" }, - "Focused monitor only": { - "Focused monitor only": "Bara fokuserad bildskärm" - }, "Fog": { "Fog": "Dimma" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "Grupp" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "Gruppera appar i arbetsytor" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "Kan inhiberas" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Invertera vid växling av ljust och mörkt läge" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "Iris Bloom" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC-layoutöverstyrningar" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "Navigera" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "Vid behov" }, - "On-Screen Displays": { - "On-Screen Displays": "Skärmvisningar" - }, "On-screen Displays": { "On-screen Displays": "Skärmvisningar" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Inkopplad" }, - "Plugged in": { - "Plugged in": "Inkopplad" - }, "Plugin": { "Plugin": "Tillägg" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Uppdatera väder" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "Regex" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "Kräver DWL-kompositor" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Ändra storlek på widget" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Upplösning och uppdateringsfrekvens" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Rundade hörn för fönster" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "Rundade hörn för fönster (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "Rundade hörn för fönster (decoration.rounding)" - }, "Rule": { "Rule": "Regel" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Inställningar för aktiva appar" }, - "Running greeter sync…": { - "Running greeter sync…": "Kör välkomstskärmssynkronisering…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Visa appar i en arbetsyta" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Visa alla 9 taggar istället för bara aktiva taggar (endast DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "Visa en konturring runt den fokuserade arbetsytans indikator" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Mellanrum mellan fönster" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "Mellanrum mellan fönster (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "Mellanrum mellan fönster (gaps_in och gaps_out)" - }, "Spacer": { "Spacer": "Mellanrum" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Skift+Tab: Navigering • ←→↑↓: Rutnätsnavigering • Retur/Blanksteg: Välj" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Titel" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "Titelregex (valfritt)" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Använd anpassad fönsterradie istället för temaradie" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "Använd anpassad fönsteravrundning istället för temaradie" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "Använd skrivbordets bakgrundsbild" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-konfiguration uppdaterad" }, - "VPN connections": { - "VPN connections": "VPN-anslutningar" - }, "VPN deleted": { "VPN deleted": "VPN raderat" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgetar" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "Widgetar, layout, stil" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "Bredd på fönsterram (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "Bredd på fönsterram (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "Bredd på fönsterram och fokusring" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "Fönsteröppning" }, - "Window Rounding": { - "Window Rounding": "Fönsteravrundning" - }, "Window Rules": { "Window Rules": "Fönsterregler" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "Sudda" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Arbetsyta" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Arbetsytor" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Arbetsytor & widgetar" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "Skrivit:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X-axel" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Y-axel" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "t.ex. scratch, /^tmp_.*/, build" }, - "events": { - "events": "händelser" - }, "ext": { "ext": "tillägg" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl inte tillgänglig – låsintegration kräver DMS-socketanslutning" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord-server" }, diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index 9435ec16..f026cec4 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "" }, @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "" }, - "1 event": { - "1 event": "1 etkinlik" - }, "1 hour": { "1 hour": "" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 saniye" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 dakika" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "" }, - "24-hour format": { - "24-hour format": "24-saat biçimi" - }, "25 seconds": { "25 seconds": "" }, @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Tüm uygulama başlatmalarına özel bir önek ekleyin. Bu, 'uwsm-app', 'systemd-run' veya diğer komut sarmalayıcıları gibi şeyler için kullanılabilir." }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "Masaüstünüzde görünen widget'ları ekle ve yapılandır" }, @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Geri • F1/I: Dosya bilgisi • F10: Yardım • Esc: Kapat" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "" }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "" }, @@ -566,9 +575,6 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Anonim Kimlik (isteğe bağlı)" }, - "Any": { - "Any": "" - }, "Any window": { "Any window": "" }, @@ -578,6 +584,9 @@ "App ID": { "App ID": "" }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Göz yorgunluğunu azaltmak için sıcak renk sıcaklığı uygulayın. Etkinleştirme zamanını kontrol etmek için aşağıdaki otomasyon ayarlarını kullanın." }, - "Applying authentication changes…": { - "Applying authentication changes…": "" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)." }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "Bar Ayarları" }, @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "" }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "" }, - "Checking…": { - "Checking…": "" - }, "Choose Color": { "Choose Color": "Renk Seç" }, @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "Cihaza Bağlanma" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "Bağlanıyor..." @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET kullanılamıyor" }, - "DWL service not available": { - "DWL service not available": "DWL hizmeti kullanılamıyor" - }, "Daily": { "Daily": "" }, @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "WiFi kapatılıyor..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "Tam ekran uygulamaların üzerinde tüm öncelikleri göster" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "DWL düzenlerini görüntüle ve değiştir" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "Eğitim" }, @@ -2975,12 +2987,12 @@ "Failed to update sharing": { "Failed to update sharing": "Paylaşım güncellenemedi" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { "Failed to write autostart entry": "" }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" + }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "Doğrulama için geçici dosya yazılmadı" }, @@ -3101,9 +3113,21 @@ "Float": { "Float": "" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { "Floating": "" }, + "Floating Position": { + "Floating Position": "" + }, "Fluent": { "Fluent": "" }, @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "Odaklanılmış Pencere" }, - "Focused monitor only": { - "Focused monitor only": "" - }, "Fog": { "Fog": "" }, @@ -3437,6 +3458,9 @@ "Group": { "Group": "" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "" }, @@ -3797,6 +3821,9 @@ "Inhibitable": { "Inhibitable": "" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { "Initialised": "" }, @@ -3899,6 +3926,9 @@ "Invert on mode change": { "Invert on mode change": "Mod değişikliğinde ters çevir" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "" }, @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "" }, @@ -4604,6 +4640,9 @@ "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "" }, @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "" }, - "On-Screen Displays": { - "On-Screen Displays": "Ekran Üstü Gösterimler" - }, "On-screen Displays": { "On-screen Displays": "Ekran Gösterimleri" }, @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "Bağlandı" }, - "Plugged in": { - "Plugged in": "Takılı" - }, "Plugin": { "Plugin": "Eklenti" }, @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "Hava Durumunu Yenile" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "" }, - "Requires DWL compositor": { - "Requires DWL compositor": "DWL kompozitör gerektirir" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "Widgetı Yeniden Boyutlandır" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "Çözünürlük ve Yenileme" }, @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "Pencereler için yuvarlatılmış köşeler" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "" - }, "Rule": { "Rule": "" }, @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "Çalışan Uygulamalar Ayarları" }, - "Running greeter sync…": { - "Running greeter sync…": "" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Sadece dolu etiketleri değil, tüm 9 etiketi göster (sadece DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "Pencereler arası boşluk" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "" - }, "Spacer": { "Spacer": "Boşluklandırıcı" }, @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Yön • ←→↑↓: Izgara Yönü • Enter/Space: Seç" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "" }, @@ -7460,6 +7490,9 @@ "Title": { "Title": "Başlık" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "" }, @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Tema yarıçapı yerine özel pencere yarıçapı kullanın" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "" }, @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN ayarı güncellendi" }, - "VPN connections": { - "VPN connections": "VPN bağlantıları" - }, "VPN deleted": { "VPN deleted": "VPN silindi" }, @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "Widgetlar" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "" }, @@ -8189,11 +8219,8 @@ "Width of the widget outline in pixels": { "Width of the widget outline in pixels": "" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "" }, - "Window Rounding": { - "Window Rounding": "" - }, "Window Rules": { "Window Rules": "" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "Çalışma Alanı" @@ -8267,15 +8291,15 @@ "Workspaces": { "Workspaces": "Çalışma Alanları" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "Çalışma Alanları & Widgetlar" - }, "Wrap the app command. %command% is replaced with the actual executable": { "Wrap the app command. %command% is replaced with the actual executable": "" }, "Write:": { "Write:": "" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X Ekseni" }, @@ -8288,6 +8312,9 @@ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" }, + "Y": { + "Y": "" + }, "Y Axis": { "Y Axis": "Y Ekseni" }, @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "" }, - "events": { - "events": "etkinlikler" - }, "ext": { "ext": "" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl kullanılabilir değil - kilit entegrasyonu DMS soket bağlantısı gerektirir" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index 979104cf..bd40c8f9 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -1,6 +1,6 @@ { "%1 (+%2 more)": { - "%1 (+%2 more)": "" + "%1 (+%2 more)": "%1(另有 %2 项)" }, "%1 Animation Speed": { "%1 Animation Speed": "%1动画速度" @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 在线" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 个更新" }, @@ -108,7 +111,7 @@ "%1m ago": "%1 分钟前" }, "%command%": { - "%command%": "" + "%command%": "%command%" }, "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": { "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "替代模式(Alternative)允许密钥自行解锁。双重验证模式(Second factor)则需要先输入密码或指纹,然后再使用密钥。" @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "已连接 1 个设备" }, - "1 event": { - "1 event": "1 个事件" - }, "1 hour": { "1 hour": "1 小时" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 秒钟" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 分钟" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24 小时制时钟" }, - "24-hour format": { - "24-hour format": "24 小时制" - }, "25 seconds": { "25 seconds": "25 秒钟" }, @@ -381,7 +381,7 @@ "Active VPN": "活动 VPN" }, "Active in Column": { - "Active in Column": "" + "Active in Column": "列中活动窗口" }, "Active tile background and icon color": { "Active tile background and icon color": "激活的磁帖背景及图标颜色" @@ -417,7 +417,7 @@ "Add Desktop Widget": "添加桌面部件" }, "Add Entry": { - "Add Entry": "" + "Add Entry": "添加自启动项" }, "Add Printer": { "Add Printer": "添加打印机" @@ -429,10 +429,10 @@ "Add Widget": "添加部件" }, "Add Widget to %1": { - "Add Widget to %1": "" + "Add Widget to %1": "添加部件到 %1" }, "Add Window Rule": { - "Add Window Rule": "" + "Add Window Rule": "添加窗口规则" }, "Add a border around the dock": { "Add a border around the dock": "在程序坞周围添加边框" @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "在所有应用启动前添加自定义前缀。可用于 uwsm-app、systemd-run 或其他命令封装器。" }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "添加与配置出现在你桌面的部件" }, @@ -447,7 +450,7 @@ "Add by Address": "通过地址添加" }, "Add match": { - "Add match": "" + "Add match": "添加匹配条件" }, "Add the new user to the %1 group so they can run dms greeter sync --profile.": { "Add the new user to the %1 group so they can run dms greeter sync --profile.": "将新用户添加到 %1 组,使其能够运行 dms greeter sync --profile。" @@ -456,7 +459,7 @@ "Add the new user to the %1 group so they can use sudo.": "将新用户添加到 %1 组,使其能够使用 sudo。" }, "Add to Autostart": { - "Add to Autostart": "" + "Add to Autostart": "添加到自启动" }, "Adjust the bar height via inner padding": { "Adjust the bar height via inner padding": "通过内边距调整状态栏高度" @@ -509,6 +512,9 @@ "Already on that session": { "Already on that session": "已在该会话中" }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" + }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace:返回 • F1/I:文件信息 • F10:帮助 • Esc:关闭" }, @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "正在分析配置..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "动画持续时间" }, @@ -566,23 +575,23 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "匿名身份(可选)" }, - "Any": { - "Any": "" - }, "Any window": { - "Any window": "" + "Any window": "任意窗口" }, "App Customizations": { "App Customizations": "应用自定义" }, "App ID": { - "App ID": "" + "App ID": "应用 ID" + }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" }, "App ID Substitutions": { "App ID Substitutions": "应用 ID 替换" }, "App ID regex": { - "App ID regex": "" + "App ID regex": "应用 ID 正则" }, "App ID regex (e.g. ^firefox$)": { "App ID regex (e.g. ^firefox$)": "应用 ID 正则(例如:^firefox$)" @@ -600,7 +609,7 @@ "Appearance": "外观" }, "Application": { - "Application": "" + "Application": "应用程序" }, "Application Dock": { "Application Dock": "程序坞" @@ -609,7 +618,7 @@ "Applications": "应用程序" }, "Applications and commands to start automatically when you log in": { - "Applications and commands to start automatically when you log in": "" + "Applications and commands to start automatically when you log in": "登录后自动启动的应用程序和命令" }, "Apply Changes": { "Apply Changes": "应用更改" @@ -632,11 +641,11 @@ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "应用暖色温以减轻眼睛疲劳,可通过下方设置控制自动激活时间。" }, - "Applying authentication changes…": { - "Applying authentication changes…": "正在应用认证变更..." + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "应用" @@ -654,7 +663,7 @@ "Apps are ordered by usage frequency, then last used, then alphabetically.": "应用依次按使用频率、最近使用时间和字母顺序排序。" }, "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { - "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "程序会带有自定义名称、图标与启动选项。右键点击应用并选择“编辑应用”进行自定义。" + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "程序会带有自定义名称、图标与启动选项。右键点击应用并选择“编辑应用”以自定义。" }, "Apps with notification popups muted. Unmute or delete to remove.": { "Apps with notification popups muted. Unmute or delete to remove.": "已静音通知弹窗的应用。请取消静音或删除以移除。" @@ -672,7 +681,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "排列显示器,配置分辨率、刷新率和 VRR" }, "At Startup": { - "At Startup": "" + "At Startup": "启动时" }, "At least one output must remain enabled": { "At least one output must remain enabled": "至少应有一个输出保持启用" @@ -777,7 +786,7 @@ "Auto mode is on. Manual profile selection is disabled.": "自动模式已开启。手动选择配置已禁用。" }, "Auto-Clear After": { - "Auto-Clear After": "在此之后自动清除" + "Auto-Clear After": "自动清除" }, "Auto-Hide Timeout": { "Auto-Hide Timeout": "自动隐藏超时" @@ -795,16 +804,16 @@ "Auto-hide Dock": "自动隐藏程序坞" }, "Auto-login": { - "Auto-login": "" + "Auto-login": "自动登录" }, "Auto-login disabled": { - "Auto-login disabled": "" + "Auto-login disabled": "已禁用自动登录" }, "Auto-login enabled": { - "Auto-login enabled": "" + "Auto-login enabled": "已启用自动登录" }, "Auto-login on startup": { - "Auto-login on startup": "" + "Auto-login on startup": "启动时自动登录" }, "Auto-saving...": { "Auto-saving...": "正在自动保存..." @@ -861,10 +870,10 @@ "Automation": "自动化" }, "Autostart Apps": { - "Autostart Apps": "" + "Autostart Apps": "应用自启动" }, "Autostart Entries": { - "Autostart Entries": "" + "Autostart Entries": "自启动项" }, "Available": { "Available": "可用" @@ -894,7 +903,7 @@ "Back": "返回" }, "Back to user list": { - "Back to user list": "" + "Back to user list": "返回用户列表" }, "Backend": { "Backend": "后端" @@ -909,7 +918,7 @@ "Background Blur": "背景模糊" }, "Background Effect": { - "Background Effect": "" + "Background Effect": "背景效果" }, "Background Opacity": { "Background Opacity": "背景透明度" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "均衡配色,强调重点(默认)" }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "状态栏设置" }, @@ -1020,7 +1035,7 @@ "Bluetooth not available": "蓝牙不可用" }, "Blur": { - "Blur": "" + "Blur": "模糊" }, "Blur Border Color": { "Blur Border Color": "模糊边框颜色" @@ -1053,7 +1068,7 @@ "Border Color": "边框颜色" }, "Border Off": { - "Border Off": "" + "Border Off": "关闭边框" }, "Border Opacity": { "Border Opacity": "边框透明度" @@ -1065,7 +1080,7 @@ "Border Size": "边框尺寸" }, "Border Thickness": { - "Border Thickness": "边框尺寸" + "Border Thickness": "边框厚度" }, "Border Width": { "Border Width": "边框宽度" @@ -1074,10 +1089,10 @@ "Border color around blurred surfaces": "模糊平面周围的边框颜色" }, "Border w/ Bg": { - "Border w/ Bg": "" + "Border w/ Bg": "边框带背景" }, "Border with Background": { - "Border with Background": "" + "Border with Background": "边框带背景" }, "Bottom": { "Bottom": "底部" @@ -1209,10 +1224,10 @@ "Caps Lock is on": "大写锁已激活" }, "Cast Target": { - "Cast Target": "" + "Cast Target": "投屏目标" }, "Category": { - "Category": "" + "Category": "分类" }, "Center Section": { "Center Section": "中间区域" @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "正在检查更新..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "正在检查是否需要 sudo 认证..." + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "正在检查..." }, - "Checking…": { - "Checking…": "正在检查..." - }, "Choose Color": { "Choose Color": "选择颜色" }, @@ -1296,7 +1308,7 @@ "Choose a color": "选择颜色" }, "Choose a power profile": { - "Choose a power profile": "" + "Choose a power profile": "选择电源配置" }, "Choose colors from palette": { "Choose colors from palette": "从调色板中选择颜色" @@ -1329,7 +1341,7 @@ "Choose where on-screen displays appear on screen": "选择 OSD 在屏幕上出现的位置" }, "Choose whether to launch a desktop app or a command": { - "Choose whether to launch a desktop app or a command": "" + "Choose whether to launch a desktop app or a command": "选择需要启动的桌面应用程序或命令" }, "Choose which displays show this widget": { "Choose which displays show this widget": "选择要在哪个显示器显示该小部件" @@ -1347,7 +1359,7 @@ "Circle": "圆形" }, "Class regex": { - "Class regex": "" + "Class regex": "类名正则" }, "Class regex (e.g. ^firefox$)": { "Class regex (e.g. ^firefox$)": "窗口类型正则(比如:^firefox$)" @@ -1368,7 +1380,7 @@ "Clear Sky": "晴空" }, "Clear all history when server starts": { - "Clear all history when server starts": "当服务器启动时清除所有纪录" + "Clear all history when server starts": "DMS 服务启动时清除所有历史记录" }, "Clear at Startup": { "Clear at Startup": "启动时清除" @@ -1419,7 +1431,7 @@ "Clipboard Manager": "剪切板管理器" }, "Clipboard Saved": { - "Clipboard Saved": "" + "Clipboard Saved": "剪贴板已保存" }, "Clipboard sent": { "Clipboard sent": "已发送剪切板" @@ -1518,7 +1530,7 @@ "Command": "命令" }, "Command Line": { - "Command Line": "" + "Command Line": "命令行" }, "Commands": { "Commands": "命令" @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "正在连接设备" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "正在连接剪贴板服务..." + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "正在连接..." @@ -1659,7 +1671,7 @@ "Contrast": "对比度" }, "Contributor": { - "Contributor": "" + "Contributor": "贡献者" }, "Control Center": { "Control Center": "控制中心" @@ -1710,7 +1722,7 @@ "Convenience options for the login screen. Sync to apply.": "登录界面的便捷选项。同步以应用。" }, "Convert to DMS": { - "Convert to DMS": "" + "Convert to DMS": "导入到 DMS" }, "Cooldown": { "Cooldown": "冷却" @@ -1725,7 +1737,7 @@ "Copied WebP": "已复制的 WebP" }, "Copied to clipboard": { - "Copied to clipboard": "复制到剪切板" + "Copied to clipboard": "已复制到剪切板" }, "Copied!": { "Copied!": "复制成功!" @@ -1764,7 +1776,7 @@ "Corners & Background": "圆角与背景" }, "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" + "Couldn't open a terminal for the auto-login update.": "无法为自动登录更新打开终端。" }, "Count Only": { "Count Only": "仅数量" @@ -1821,7 +1833,7 @@ "Current Items": "当前项目" }, "Current Locale": { - "Current Locale": "当前区域设置" + "Current Locale": "当前区域" }, "Current Monitor": { "Current Monitor": "当前显示器" @@ -1866,7 +1878,7 @@ "Cursor Theme": "光标主题" }, "Curve": { - "Curve": "" + "Curve": "Curve" }, "Curve: curve rasterizer.": { "Curve: curve rasterizer.": "曲线:曲线光栅器。" @@ -1959,7 +1971,7 @@ "DMS Settings": "DMS 设置" }, "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": { - "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "" + "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "DMS 设置会写入 Lua 快捷键配置。请添加 DMS 的 include,修改才能生效。" }, "DMS Shortcuts": { "DMS Shortcuts": "DMS 快捷键" @@ -1968,7 +1980,7 @@ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS 登录界面需要:greetd、dms-greeter。指纹:fprintd、pam_fprintd。安全密钥:pam_u2f。请将你的用户添加到 greeter 组。认证变更会自动应用,需要 sudo 认证时可能会打开终端。" }, "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" + "DMS needs administrator access. The terminal closes automatically when done.": "DMS 需要管理员权限。完成后终端会自动关闭。" }, "DMS out of date": { "DMS out of date": "DMS 已过期" @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET 不可用" }, - "DWL service not available": { - "DWL service not available": "DWL 服务不可用" - }, "Daily": { "Daily": "每日" }, @@ -2076,10 +2085,10 @@ "Default Width (%)": "默认宽度(%)" }, "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": { - "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "默认启动器快捷键会打开带模式标签页、网格视图和操作面板的完整启动器。" + "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "默认启动器快捷键会打开完整启动器,带有模式标签页、网格视图和操作面板。" }, "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": { - "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "默认启动器快捷键会打开极简聚焦搜索栏。下方专用聚焦搜索栏快捷键保持独立。" + "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "默认启动器快捷键会打开极简聚焦搜索栏,下方专用聚焦搜索栏快捷键会保持独立。" }, "Default selected action": { "Default selected action": "默认选项" @@ -2109,7 +2118,7 @@ "Delete Printer": "删除打印机" }, "Delete Rule": { - "Delete Rule": "" + "Delete Rule": "删除规则" }, "Delete Saved Item?": { "Delete Saved Item?": "是否删除已保存项目?" @@ -2151,7 +2160,7 @@ "Desktop": "桌面" }, "Desktop Application": { - "Desktop Application": "" + "Desktop Application": "桌面应用程序" }, "Desktop Clock": { "Desktop Clock": "桌面时钟" @@ -2214,7 +2223,7 @@ "Disable Built-in Wallpapers": "禁用内置壁纸" }, "Disable History Persistence": { - "Disable History Persistence": "禁用历史持久化" + "Disable History Persistence": "禁用历史记录持久化" }, "Disable Output": { "Disable Output": "禁用输出" @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "正在禁用 Wi-Fi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "圆盘" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "应用全屏时仍显示所有优先级的通知" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "显示与切换 DWL 布局" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "在工作区指示器中显示应用程序图标" @@ -2316,7 +2325,7 @@ "Display line numbers in editor": "在编辑器中显示行号" }, "Display name for this entry": { - "Display name for this entry": "" + "Display name for this entry": "此自启动项的显示名称" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "只显示包含窗口的工作区" @@ -2328,7 +2337,7 @@ "Display seconds in the clock": "在时钟中显示秒数" }, "Display setup failed": { - "Display setup failed": "" + "Display setup failed": "显示器设置失败" }, "Display the power system menu": { "Display the power system menu": "显示电源菜单" @@ -2412,7 +2421,7 @@ "Drop your override for %1 so the DMS default action re-applies?": "删除 %1 的覆盖设置并重新应用 DMS 默认动作吗?" }, "Duplicate": { - "Duplicate": "复制" + "Duplicate": "创建副本" }, "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "带模糊效果的壁纸副本" @@ -2463,7 +2472,7 @@ "Edit Clipboard": "编辑剪贴板" }, "Edit Rule": { - "Edit Rule": "" + "Edit Rule": "编辑规则" }, "Edit Window Rule": { "Edit Window Rule": "编辑窗口规则" @@ -2471,6 +2480,9 @@ "Edit clipboard text": { "Edit clipboard text": "编辑剪贴板文本" }, + "Editing changes on %1": { + "Editing changes on %1": "" + }, "Education": { "Education": "教育" }, @@ -2649,7 +2661,7 @@ "Enterprise": "企业" }, "Entry Type": { - "Entry Type": "" + "Entry Type": "自启动项类型" }, "Entry pinned": { "Entry pinned": "项目已固定" @@ -2829,7 +2841,7 @@ "Failed to fetch network QR code: %1": "获取网络二维码失败:%1" }, "Failed to generate systemd override": { - "Failed to generate systemd override": "" + "Failed to generate systemd override": "生成 systemd override 失败" }, "Failed to hold job": { "Failed to hold job": "暂停任务失败" @@ -2975,11 +2987,11 @@ "Failed to update sharing": { "Failed to update sharing": "更新共享失败" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { - "Failed to write autostart entry": "" + "Failed to write autostart entry": "写入自启动项失败" + }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "未能写入临时文件进行验证" @@ -3039,7 +3051,7 @@ "Fill": "填充" }, "Filter": { - "Filter": "" + "Filter": "筛选" }, "Find in Text": { "Find in Text": "查找文本" @@ -3101,8 +3113,20 @@ "Float": { "Float": "浮动" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { - "Floating": "" + "Floating": "浮动" + }, + "Floating Position": { + "Floating Position": "" }, "Fluent": { "Fluent": "流畅" @@ -3114,16 +3138,16 @@ "Focus": "聚焦" }, "Focus Ring Color": { - "Focus Ring Color": "" + "Focus Ring Color": "焦点环颜色" }, "Focus Ring Off": { - "Focus Ring Off": "" + "Focus Ring Off": "关闭焦点环" }, "Focus at Startup": { "Focus at Startup": "启动时聚焦" }, "Focused": { - "Focused": "" + "Focused": "已聚焦" }, "Focused Border": { "Focused Border": "聚焦边框" @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "聚焦窗口" }, - "Focused monitor only": { - "Focused monitor only": "仅聚焦的显示器" - }, "Fog": { "Fog": "雾天" }, @@ -3159,7 +3180,7 @@ "Follow focus": "跟随焦点" }, "Follows the default launcher choice selected above.": { - "Follows the default launcher choice selected above.": "跟随上方选择的默认启动器。" + "Follows the default launcher choice selected above.": "遵循上方选择的默认启动器。" }, "Font": { "Font": "字体" @@ -3207,7 +3228,7 @@ "Force Kill (SIGKILL)": "强制结束(SIGKILL)" }, "Force RGBX": { - "Force RGBX": "" + "Force RGBX": "强制 RGBX" }, "Force Wide Color": { "Force Wide Color": "强制广色域" @@ -3285,7 +3306,7 @@ "Full Day & Month": "周 月 日(全称)" }, "Full command to execute": { - "Full command to execute": "" + "Full command to execute": "要执行的完整命令" }, "Full with Year": { "Full with Year": "周 日 月 年" @@ -3333,7 +3354,7 @@ "Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。" }, "Generate Override": { - "Generate Override": "" + "Generate Override": "生成 Override" }, "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.": { "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.": "生成遵循 DMS 颜色的 GTK3/GTK4 或 QT5/QT6(需要 qt6ct-kde)基线配置。仅需执行一次。

建议在应用 GTK 主题前先配置 adw-gtk3。" @@ -3437,6 +3458,9 @@ "Group": { "Group": "分组" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "分组工作区应用" }, @@ -3570,7 +3594,7 @@ "Hide the bar when the pointer leaves even if a popout is still open": "即使弹窗仍打开,指针离开时也隐藏状态栏" }, "High": { - "High": "" + "High": "高" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "高保真配色,保留原始色调" @@ -3588,7 +3612,7 @@ "History Retention": "历史保留" }, "History Settings": { - "History Settings": "历史设置" + "History Settings": "历史记录设置" }, "History cleared. %1 pinned entries kept.": { "History cleared. %1 pinned entries kept.": "历史记录已清除。仍保留 %1 条已固定项目。" @@ -3618,7 +3642,7 @@ "Host": "主机" }, "Hostname": { - "Hostname": "Hostname" + "Hostname": "主机名" }, "Hot Corners": { "Hot Corners": "热区" @@ -3660,13 +3684,13 @@ "Hyprland Website": "Hyprland 网站" }, "Hyprland conf mode": { - "Hyprland conf mode": "" + "Hyprland conf mode": "Hyprland conf 模式" }, "Hyprland conf mode is read-only in Settings": { - "Hyprland conf mode is read-only in Settings": "" + "Hyprland conf mode is read-only in Settings": "Hyprland conf 模式在设置中为只读" }, "Hyprland config include missing": { - "Hyprland config include missing": "" + "Hyprland config include missing": "缺少 Hyprland 配置 include" }, "I Understand": { "I Understand": "我明白以上内容" @@ -3708,7 +3732,7 @@ "Idle": "待机" }, "Idle Inhibit": { - "Idle Inhibit": "" + "Idle Inhibit": "禁止空闲" }, "Idle Inhibitor": { "Idle Inhibitor": "待机抑制器" @@ -3717,7 +3741,7 @@ "Idle Settings": "待机设置" }, "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": { - "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "" + "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "如果自启动应用图标没有出现在系统托盘中,可生成一个 systemd override,确保 DMS 在这些自启动应用之前启动" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "若隐藏密码区域,按下按键后密码区域会即刻出现" @@ -3797,8 +3821,11 @@ "Inhibitable": { "Inhibitable": "可抑制" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { - "Initialised": "" + "Initialised": "已初始化" }, "Inner padding applied to each widget": { "Inner padding applied to each widget": "应用到每个部件的内边距" @@ -3899,8 +3926,11 @@ "Invert on mode change": { "Invert on mode change": "切换模式时反色" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { - "Iris Bloom": "虹膜绽放" + "Iris Bloom": "鸢尾花开" }, "Isolate Displays": { "Isolate Displays": "隔离显示" @@ -4179,7 +4209,7 @@ "Longitude": "经度" }, "Low": { - "Low": "" + "Low": "低" }, "Low Priority": { "Low Priority": "次要优先级" @@ -4223,6 +4253,12 @@ "Manages files and directories": { "Manages files and directories": "管理文件和目录" }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" + }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC 布局覆盖" }, @@ -4263,10 +4299,10 @@ "Marker Waste Full": "废墨仓已饱和" }, "Match (%1)": { - "Match (%1)": "" + "Match (%1)": "匹配(%1)" }, "Match Conditions": { - "Match Conditions": "" + "Match Conditions": "匹配条件" }, "Match Criteria": { "Match Criteria": "匹配条件" @@ -4278,7 +4314,7 @@ "Material Colors": "Material 配色" }, "Material Design inspired color themes": { - "Material Design inspired color themes": "受 Material 设计启发的色彩主题" + "Material Design inspired color themes": "受 Material 设计启发的颜色主题" }, "Material colors generated from wallpaper": { "Material colors generated from wallpaper": "从壁纸生成的 Material 色彩" @@ -4347,22 +4383,22 @@ "Maximize Widget Text": "最大化部件文本" }, "Maximum Entry Size": { - "Maximum Entry Size": "最大尺寸" + "Maximum Entry Size": "最高磁盘占用" }, "Maximum History": { - "Maximum History": "最多历史数" + "Maximum History": "最大历史记录数量" }, "Maximum Pinned Entries": { - "Maximum Pinned Entries": "固定项目最多数量" + "Maximum Pinned Entries": "最大固定项目数量" }, "Maximum fingerprint attempts reached. Please use password.": { "Maximum fingerprint attempts reached. Please use password.": "指纹尝试已达最大次数。请使用密码。" }, "Maximum number of clipboard entries to keep": { - "Maximum number of clipboard entries to keep": "剪切板项目记住的最大数量" + "Maximum number of clipboard entries to keep": "最大剪切板项目留存数量" }, "Maximum number of entries that can be saved": { - "Maximum number of entries that can be saved": "可被保存的项目最多数量" + "Maximum number of entries that can be saved": "最大剪切板固定项目留存数量" }, "Maximum number of notifications to keep": { "Maximum number of notifications to keep": "保留通知的最大数量" @@ -4371,7 +4407,7 @@ "Maximum pinned entries reached": "已达固定项目最多数量" }, "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "每个剪切板项目的最大尺寸" + "Maximum size per clipboard entry": "每个剪切板项目的最高磁盘占用" }, "Media": { "Media": "媒体" @@ -4599,11 +4635,14 @@ "Named Workspace Icons": "已命名工作区图标" }, "Native": { - "Native": "" + "Native": "原生" }, "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "原生:平台渲染器(FreeType)。" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "导航" }, @@ -4782,7 +4821,7 @@ "No app customizations.": "无应用自定义。" }, "No application selected": { - "No application selected": "" + "No application selected": "未选择应用程序" }, "No apps found": { "No apps found": "未找到应用" @@ -4794,7 +4833,7 @@ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "无已静音的应用。右键点击通知并选择“静音弹窗”以添加。" }, "No autostart entries": { - "No autostart entries": "" + "No autostart entries": "没有自启动项" }, "No battery": { "No battery": "无电池" @@ -4848,7 +4887,7 @@ "No folders found": "未找到文件夹" }, "No hidden apps.": { - "No hidden apps.": "无已隐藏应用。" + "No hidden apps.": "无隐藏应用。" }, "No human user accounts found.": { "No human user accounts found.": "未找到普通用户账户。" @@ -4992,7 +5031,7 @@ "No window rules configured": "未配置窗口规则" }, "Noise": { - "Noise": "" + "Noise": "噪点" }, "None": { "None": "无" @@ -5034,7 +5073,7 @@ "Not detected": "未检测到" }, "Not listed?": { - "Not listed?": "" + "Not listed?": "未列出?" }, "Not paired": { "Not paired": "未配对" @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "按需" }, - "On-Screen Displays": { - "On-Screen Displays": "屏上显示" - }, "On-screen Displays": { "On-screen Displays": "屏上显示" }, @@ -5226,7 +5262,7 @@ "Opening files": "正在打开文件" }, "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" + "Opening terminal to update greetd": "正在打开终端以更新 greetd" }, "Opening terminal: ": { "Opening terminal: ": "正在打开终端: " @@ -5247,7 +5283,7 @@ "Optional location": "可选位置" }, "Optional state-based conditions applied to the first match.": { - "Optional state-based conditions applied to the first match.": "" + "Optional state-based conditions applied to the first match.": "可选的状态条件,会应用到第一个匹配项。" }, "Options": { "Options": "选项" @@ -5517,7 +5553,7 @@ "Pixelate": "像素化" }, "Place a trash bin at the end of the dock": { - "Place a trash bin at the end of the dock": "在程序坞末尾回收站图标" + "Place a trash bin at the end of the dock": "在程序坞末尾放置回收站图标" }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "此处为插件目录,每个插件应带有一个 plugin.json 描述文件。" @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "连接电源" }, - "Plugged in": { - "Plugged in": "已接通电源" - }, "Plugin": { "Plugin": "插件" }, @@ -5664,7 +5697,7 @@ "Power Menu Customization": "自定义电源菜单" }, "Power Mode": { - "Power Mode": "" + "Power Mode": "电源模式" }, "Power Off": { "Power Off": "关机" @@ -5826,7 +5859,7 @@ "Protocol": "协议" }, "Qt": { - "Qt": "" + "Qt": "Qt" }, "Qt colors applied successfully": { "Qt colors applied successfully": "QT 配色已成功应用" @@ -5886,7 +5919,7 @@ "Re-enter password": "再次输入密码" }, "Read-only legacy config": { - "Read-only legacy config": "" + "Read-only legacy config": "只读旧版配置" }, "Read:": { "Read:": "读取:" @@ -5915,8 +5948,8 @@ "Refresh Weather": { "Refresh Weather": "刷新天气" }, - "Refreshing…": { - "Refreshing…": "正在刷新..." + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "正则" @@ -5988,7 +6021,7 @@ "Remove inner padding from all widgets": "移除所有部件的内边距" }, "Remove match": { - "Remove match": "" + "Remove match": "移除匹配条件" }, "Remove the shortcut %1?": { "Remove the shortcut %1?": "移除快捷键 %1 ?" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "需要具备 sysupdate 功能的 DMS 服务器" }, - "Requires DWL compositor": { - "Requires DWL compositor": "需要 DWL 合成器" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "需要更新版本的 Quickshell" @@ -6051,7 +6084,7 @@ "Requires night mode support": "需要夜间模式支持" }, "Requires remembering the last user and session. Enable those options first.": { - "Requires remembering the last user and session. Enable those options first.": "" + "Requires remembering the last user and session. Enable those options first.": "需要记住上次使用的用户和会话。请先启用这两个选项。" }, "Reset": { "Reset": "重置" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "调整部件大小" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "分辨率与刷新率" }, @@ -6123,10 +6162,10 @@ "Right Tiling": "右侧平铺" }, "Right-click and drag anywhere on the widget": { - "Right-click and drag anywhere on the widget": "在部件上右键点击并拖拽任意位置" + "Right-click and drag anywhere on the widget": "鼠标右键点击并拖拽部件任意位置" }, "Right-click and drag the bottom-right corner": { - "Right-click and drag the bottom-right corner": "右键点击并拖拽右下角" + "Right-click and drag the bottom-right corner": "鼠标右键点击并拖拽部件右下角" }, "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "右键点击状态栏上的部件以轮换" @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "窗口圆角" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "窗口圆角(border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "窗口圆角(decoration.rounding)" - }, "Rule": { "Rule": "规则" }, @@ -6162,7 +6195,7 @@ "Rules (%1)": "规则(%1)" }, "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": { - "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "" + "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "在你的合成器配置中发现了这些规则。它们在这里是只读的,请使用“导入到 DMS”创建一个可编辑副本。" }, "Run Again": { "Run Again": "再次运行" @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "活动应用设置" }, - "Running greeter sync…": { - "Running greeter sync…": "正在同步登录界面..." + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "正在终端中运行" @@ -6204,7 +6237,7 @@ "SMS": "短信" }, "Saturation": { - "Saturation": "" + "Saturation": "饱和度" }, "Save": { "Save": "保存" @@ -6231,7 +6264,7 @@ "Save dismissed notifications to history": "将已关闭通知保存至历史" }, "Save low priority notifications to history": { - "Save low priority notifications to history": "将低优先级通知保存至历史" + "Save low priority notifications to history": "将次要优先级通知保存至历史" }, "Save normal priority notifications to history": { "Save normal priority notifications to history": "将一般优先级通知保存至历史" @@ -6315,7 +6348,7 @@ "Search Options": "搜索选项" }, "Search applications...": { - "Search applications...": "" + "Search applications...": "搜索应用程序..." }, "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "通过按键组合、描述或动作名称进行搜索。\n\n默认操作是将按键绑定复制到剪贴板。\n按下鼠标右键或键盘右键可以固定常用的快捷键——不搜索时它们会出现在顶部。" @@ -6420,7 +6453,7 @@ "Select a color from the palette or use custom sliders": "从调色板中选择颜色,或使用自定义滑块" }, "Select a desktop application": { - "Select a desktop application": "" + "Select a desktop application": "选择一个桌面应用程序" }, "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": { "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "选择要添加至桌面的部件。每个部件均为独立实例,拥有自己的设置。" @@ -6570,7 +6603,7 @@ "Shadow Override": "阴影覆盖" }, "Shadow blur radius in pixels": { - "Shadow blur radius in pixels": "阴影模糊半径,单位为像素" + "Shadow blur radius in pixels": "阴影模糊半径(px)" }, "Shadow elevation on bars and panels": { "Shadow elevation on bars and panels": "状态栏与面板上的阴影高程" @@ -6681,7 +6714,7 @@ "Show Humidity": "显示湿度" }, "Show Icon": { - "Show Icon": "" + "Show Icon": "显示图标" }, "Show Launcher Button": { "Show Launcher Button": "显示启动器按钮" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "显示工作区内应用" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "显示所有 9 个标签,而非仅占用的标签(仅限 DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "在聚焦工作区指示器周围显示一个轮廓环" @@ -6819,7 +6852,7 @@ "Show dock when floating windows don't overlap its area": "当浮动窗口不覆盖其区域时显示程序坞" }, "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": { - "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": "在通知弹窗上显示下拉阴影。需要在主题与配色中启用 M3 高程。" + "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": "在通知弹窗上显示下拉阴影。需要在“主题与配色”中启用 M3 高程。" }, "Show during Niri overview": { "Show during Niri overview": "在 Niri 概览中显示" @@ -6837,7 +6870,7 @@ "Show mode tabs and keyboard hints at the bottom.": "在底部显示分类标签页与键盘提示。" }, "Show mount path": { - "Show mount path": "" + "Show mount path": "显示挂载路径" }, "Show notification popups only on the currently focused monitor": { "Show notification popups only on the currently focused monitor": "仅在当前聚焦的显示器上显示通知弹窗" @@ -6849,7 +6882,7 @@ "Show on Last Display": "最近使用的显示器" }, "Show on Overlay": { - "Show on Overlay": "保持前台显示" + "Show on Overlay": "叠加层中显示" }, "Show on Overview": { "Show on Overview": "概览中显示" @@ -6963,7 +6996,7 @@ "Skip setup": "跳过设置" }, "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": { - "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "" + "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "系统启动后直到你退出登录前,都会跳过登录界面的密码验证。锁屏解锁方式不变。同步后在下次重启时生效。" }, "Small": { "Small": "较小" @@ -6999,7 +7032,7 @@ "Sounds": "声音" }, "Source: %1": { - "Source: %1": "" + "Source: %1": "来源:%1" }, "Space between the bar and screen edges": { "Space between the bar and screen edges": "状态栏与屏幕边缘的间隙" @@ -7007,12 +7040,6 @@ "Space between windows": { "Space between windows": "窗口间空隙" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "窗口间隙(gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "窗口间隙(gaps_in 与 gaps_out)" - }, "Spacer": { "Spacer": "空白占位" }, @@ -7227,7 +7254,7 @@ "System toast notifications": "系统弹出式通知" }, "Systemd Override generated": { - "Systemd Override generated": "" + "Systemd Override generated": "已生成 Systemd Override" }, "Tab": { "Tab": "标签" @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab:导航 • ←→↑↓:网格导航 • Enter/Space:选中" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "标签:%1" }, @@ -7317,7 +7347,7 @@ "The job queue of this printer is empty": "打印任务队列为空" }, "The rule applies to any window matching one of these.": { - "The rule applies to any window matching one of these.": "" + "The rule applies to any window matching one of these.": "该规则会应用到匹配以下任一条件的窗口。" }, "Theme & Colors": { "Theme & Colors": "主题与配色" @@ -7329,10 +7359,10 @@ "Theme Registry": "主题仓库" }, "Theme color used for the border": { - "Theme color used for the border": "用于边框的主题色" + "Theme color used for the border": "边框主题色" }, "Theme color used for the widget outline": { - "Theme color used for the widget outline": "用于部件轮廓的主题色" + "Theme color used for the widget outline": "部件轮廓主题色" }, "Theme worker failed (%1)": { "Theme worker failed (%1)": "主题工作进程失败(%1)" @@ -7341,7 +7371,7 @@ "Themes": "主题" }, "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": { - "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "" + "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "创建的自启动项会写入到 XDG 自启动目录(~/.config/autostart/*.desktop)" }, "Thickness": { "Thickness": "厚度" @@ -7362,16 +7392,16 @@ "This device": "此设备" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "当前安装仍在使用 hyprland.conf。请先运行 dms setup 完成迁移,再编辑光标设置。" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "当前安装仍在使用 hyprland.conf。请先运行 dms setup 完成迁移,再编辑显示设置。" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "当前安装仍在使用 hyprland.conf。请先运行 dms setup 完成迁移,再在设置中编辑快捷键。" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "当前安装仍在使用 hyprland.conf。请先运行 dms setup 完成迁移,再在设置中编辑窗口规则。" }, "This may take a few seconds": { "This may take a few seconds": "此操作可能会花费一些时间" @@ -7446,7 +7476,7 @@ "Timeout for critical priority notifications": "关键优先级通知的超时时间" }, "Timeout for low priority notifications": { - "Timeout for low priority notifications": "低优先级通知的超时时间" + "Timeout for low priority notifications": "次要优先级通知的超时时间" }, "Timeout for normal priority notifications": { "Timeout for normal priority notifications": "普通优先级通知的超时时间" @@ -7460,6 +7490,9 @@ "Title": { "Title": "标题" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "标题正则(可选)" }, @@ -7488,7 +7521,7 @@ "Toggle fonts": "切换字体" }, "Toggle visibility of this bar configuration": { - "Toggle visibility of this bar configuration": "显示/隐藏当前状态栏配置" + "Toggle visibility of this bar configuration": "切换此状态栏可见性" }, "Toggling...": { "Toggling...": "正在切换..." @@ -7572,7 +7605,7 @@ "Trash command failed (exit %1)": "回收站命令失败(退出码 %1)" }, "Tray Icon Fix": { - "Tray Icon Fix": "" + "Tray Icon Fix": "托盘图标修复" }, "Trending GIFs": { "Trending GIFs": "热门 GIF" @@ -7641,7 +7674,7 @@ "Unavailable": "不可用" }, "Uncategorized": { - "Uncategorized": "" + "Uncategorized": "未分类" }, "Unfocused Color": { "Unfocused Color": "非聚焦颜色" @@ -7689,7 +7722,7 @@ "Unknown Device": "未知设备" }, "Unknown GPU": { - "Unknown GPU": "未知的 GPU" + "Unknown GPU": "未知 GPU" }, "Unknown Monitor": { "Unknown Monitor": "未知显示器" @@ -7782,7 +7815,7 @@ "Uptime:": "运行时间:" }, "Urgent": { - "Urgent": "" + "Urgent": "紧急" }, "Urgent Color": { "Urgent Color": "紧急颜色" @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "使用自定义窗口半径替代主题半径" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "使用自定义窗口圆角半径代替主题圆角半径" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "使用桌面壁纸" }, @@ -7860,7 +7890,7 @@ "Use fingerprint authentication for the lock screen.": "为锁屏使用指纹认证。" }, "Use keys 1-3 or arrows, Enter/Space to select": { - "Use keys 1-3 or arrows, Enter/Space to select": "" + "Use keys 1-3 or arrows, Enter/Space to select": "使用数字键 1-3 或方向键选择,按 Enter/Space 确认" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "使用浅色主题替代深色主题" @@ -7869,7 +7899,7 @@ "Use meters per second instead of km/h for wind speed": "使用 m/s 代替 km/h 来显示风速" }, "Use smaller notification cards": { - "Use smaller notification cards": "使用更小的通知卡" + "Use smaller notification cards": "使用更小的通知卡片" }, "Use sound theme from system settings": { "Use sound theme from system settings": "使用系统设置中的声音主题" @@ -7896,7 +7926,7 @@ "User": "用户" }, "User Window Rules (%1)": { - "User Window Rules (%1)": "" + "User Window Rules (%1)": "用户窗口规则(%1)" }, "User already exists": { "User already exists": "用户已存在" @@ -7938,7 +7968,7 @@ "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "使用所在位置的日出/日落时间,自动调节夜间模式。" }, "Uses the spotlight-bar IPC action and always opens the minimal bar.": { - "Uses the spotlight-bar IPC action and always opens the minimal bar.": "使用 spotlight-bar IPC 动作,并始终打开聚焦搜索框。" + "Uses the spotlight-bar IPC action and always opens the minimal bar.": "使用 spotlight-bar IPC 动作,并始终打开聚焦搜索栏。" }, "Using global monospace font from Settings → Personalization": { "Using global monospace font from Settings → Personalization": "正在使用“设置” → “个性化”中的全局等宽字体" @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 配置已更新" }, - "VPN connections": { - "VPN connections": "VPN 连接" - }, "VPN deleted": { "VPN deleted": "VPN 已删除" }, @@ -8007,7 +8034,7 @@ "Vertical Tiling": "垂直平铺" }, "Very High": { - "Very High": "" + "Very High": "非常高" }, "Vibrant": { "Vibrant": "鲜艳" @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "部件" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "部件、布局与风格" }, @@ -8187,16 +8217,13 @@ "Width of the border in pixels": "边框宽度(px)" }, "Width of the widget outline in pixels": { - "Width of the widget outline in pixels": "部件轮廓宽度,单位为像素" + "Width of the widget outline in pixels": "部件轮廓宽度(px)" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "窗口边框宽度(borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "窗口边框宽度(general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { - "Width of window border and focus ring": "窗口边框与聚焦环宽度" + "Width of window border and focus ring": "窗口边框与焦点环宽度" }, "Wind": { "Wind": "风速" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "窗口打开方式" }, - "Window Rounding": { - "Window Rounding": "窗口圆角" - }, "Window Rules": { "Window Rules": "窗口规则" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "擦除" }, - "Working…": { - "Working…": "正在处理..." + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "工作区" @@ -8267,26 +8291,29 @@ "Workspaces": { "Workspaces": "工作区" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "工作区与部件" - }, "Wrap the app command. %command% is replaced with the actual executable": { - "Wrap the app command. %command% is replaced with the actual executable": "" + "Wrap the app command. %command% is replaced with the actual executable": "封装应用启动命令。`%command%` 会被替换为实际执行文件" }, "Write:": { "Write:": "写入:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X 轴" }, "X-Ray": { - "X-Ray": "" + "X-Ray": "X-Ray" }, "XWayland": { - "XWayland": "" + "XWayland": "XWayland" }, "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { - "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" + "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "Xray 只模糊壁纸,性能开销更低,也是启用模糊时的默认行为。将 Xray 设为关闭后,会对窗口下方的所有内容进行常规全模糊,但性能开销更高。" + }, + "Y": { + "Y": "" }, "Y Axis": { "Y Axis": "Y 轴" @@ -8313,16 +8340,16 @@ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "你需要设置:\nQT_QPA_PLATFORMTHEME=gtk3 或\nQT_QPA_PLATFORMTHEME=qt6ct\n作为环境变量,然后重启 shell。\n\nqt6ct 需要安装 qt6ct-kde。" }, "You'll enter your password at the greeter after the next reboot.": { - "You'll enter your password at the greeter after the next reboot.": "" + "You'll enter your password at the greeter after the next reboot.": "下次重启后,你需要在登录界面输入密码。" }, "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": { - "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "" + "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "下次重启后,你将跳过登录界面的密码验证。锁屏解锁和退出登录仍然需要输入密码。" }, "You're All Set!": { "You're All Set!": "已全部设置!" }, "Your compositor does not support background blur (ext-background-effect-v1)": { - "Your compositor does not support background blur (ext-background-effect-v1)": "" + "Your compositor does not support background blur (ext-background-effect-v1)": "当前合成器不支持背景模糊(ext-background-effect-v1)" }, "Your system is up to date!": { "Your system is up to date!": "您的系统已是最新!" @@ -8370,10 +8397,10 @@ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs 配置存在,但未被合成器配置文件引用。显示器配置变更不会保留。" }, "e.g. /usr/bin/my-script --flag": { - "e.g. /usr/bin/my-script --flag": "" + "e.g. /usr/bin/my-script --flag": "例如:/usr/bin/my-script --flag" }, "e.g. My Script": { - "e.g. My Script": "" + "e.g. My Script": "例如:我的脚本" }, "e.g. alice": { "e.g. alice": "例如:alice" @@ -8385,7 +8412,7 @@ "e.g., focus-workspace 3, resize-column -10": "例如:focus-workspace 3, resize-column -10" }, "e.g., hl.dsp.focus({ workspace = \"3\" })": { - "e.g., hl.dsp.focus({ workspace = \"3\" })": "" + "e.g., hl.dsp.focus({ workspace = \"3\" })": "例如:hl.dsp.focus({ workspace = \"3\" })" }, "e.g., notify-send 'Hello' && sleep 1": { "e.g., notify-send 'Hello' && sleep 1": "例如:通知发送 'Hello' && sleep 1" @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "例如:scratch, /^tmp_.*/, build" }, - "events": { - "events": "事件" - }, "ext": { "ext": "外部" }, @@ -8414,6 +8438,12 @@ "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 启用锁定集成需连接 DMS socket" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord 服务器" }, diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index d4852db4..d02753c8 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -1,6 +1,6 @@ { "%1 (+%2 more)": { - "%1 (+%2 more)": "" + "%1 (+%2 more)": "%1(另有 %2 項)" }, "%1 Animation Speed": { "%1 Animation Speed": "%1 動畫速度" @@ -30,7 +30,7 @@ "%1 connected": "%1 已連接" }, "%1 copied": { - "%1 copied": "" + "%1 copied": "%1 已複製" }, "%1 custom animation duration": { "%1 custom animation duration": "%1 自訂動畫持續時間" @@ -80,6 +80,9 @@ "%1 online": { "%1 online": "%1 在線" }, + "%1 tasks": { + "%1 tasks": "" + }, "%1 update": { "%1 update": "%1 個更新" }, @@ -108,7 +111,7 @@ "%1m ago": "%1 分鐘前" }, "%command%": { - "%command%": "" + "%command%": "%command%" }, "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": { "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "「替代」讓密鑰自行解鎖。「第二因素」需要先輸入密碼或指紋,然後再輸入密鑰。" @@ -134,9 +137,6 @@ "1 device connected": { "1 device connected": "已連接 1 個裝置" }, - "1 event": { - "1 event": "1 個活動" - }, "1 hour": { "1 hour": "1 小時" }, @@ -152,6 +152,9 @@ "1 second": { "1 second": "1 秒" }, + "1 task": { + "1 task": "" + }, "10 minutes": { "10 minutes": "10 分鐘" }, @@ -200,9 +203,6 @@ "24-hour clock": { "24-hour clock": "24 小時制" }, - "24-hour format": { - "24-hour format": "24 小時制" - }, "25 seconds": { "25 seconds": "25 秒" }, @@ -300,10 +300,10 @@ "A modern desktop shell for Wayland compositors": "適用於 Wayland 顯示合成器的現代桌面殼層" }, "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": { - "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "" + "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "一個獨立的最小啟動器操作,適用於「獨立模式」、「獨立框架模式」和「連接框架模式」。" }, "A user with that name already exists.": { - "A user with that name already exists.": "" + "A user with that name already exists.": "該名稱的使用者已存在。" }, "AC Power": { "AC Power": "交流電源" @@ -348,10 +348,10 @@ "Action failed or terminal was closed.": "操作失敗或終端機已關閉。" }, "Action performed when scrolling horizontally on the bar": { - "Action performed when scrolling horizontally on the bar": "" + "Action performed when scrolling horizontally on the bar": "在工具列上進行水平捲動時執行的操作" }, "Action performed when scrolling vertically on the bar": { - "Action performed when scrolling vertically on the bar": "" + "Action performed when scrolling vertically on the bar": "在工具列上進行垂直捲動時執行的操作" }, "Actions": { "Actions": "選項" @@ -381,7 +381,7 @@ "Active VPN": "啟用中的 VPN" }, "Active in Column": { - "Active in Column": "" + "Active in Column": "直欄啟用" }, "Active tile background and icon color": { "Active tile background and icon color": "啟用磚背景與圖示顏色" @@ -405,10 +405,10 @@ "Add": "新增" }, "Add \"%1\" to the %2 group?": { - "Add \"%1\" to the %2 group?": "" + "Add \"%1\" to the %2 group?": "將「%1」加入至 %2 群組嗎?" }, "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": { - "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "" + "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "將「%1」加入至 %2 群組嗎?他們必須登出並重新登入,然後執行 dms greeter sync --profile 以發佈他們的登入畫面主題。" }, "Add Bar": { "Add Bar": "新增欄" @@ -417,7 +417,7 @@ "Add Desktop Widget": "新增桌面小工具" }, "Add Entry": { - "Add Entry": "" + "Add Entry": "新增項目" }, "Add Printer": { "Add Printer": "新增印表機" @@ -429,10 +429,10 @@ "Add Widget": "新增部件" }, "Add Widget to %1": { - "Add Widget to %1": "" + "Add Widget to %1": "將小工具新增至 %1" }, "Add Window Rule": { - "Add Window Rule": "" + "Add Window Rule": "新增視窗規則" }, "Add a border around the dock": { "Add a border around the dock": "在 Dock 周圍新增邊框" @@ -440,6 +440,9 @@ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "為所有應用程式啟動新增自訂前綴。這可用於「uwsm-app」、「systemd-run」或其他指令包裝器等。" }, + "Add a task...": { + "Add a task...": "" + }, "Add and configure widgets that appear on your desktop": { "Add and configure widgets that appear on your desktop": "新增及設定顯示在桌面上的小工具" }, @@ -447,19 +450,19 @@ "Add by Address": "按位址新增" }, "Add match": { - "Add match": "" + "Add match": "新增匹配條件" }, "Add the new user to the %1 group so they can run dms greeter sync --profile.": { - "Add the new user to the %1 group so they can run dms greeter sync --profile.": "" + "Add the new user to the %1 group so they can run dms greeter sync --profile.": "將新使用者加入至 %1 群組,以便他們可以執行 dms greeter sync --profile。" }, "Add the new user to the %1 group so they can use sudo.": { - "Add the new user to the %1 group so they can use sudo.": "" + "Add the new user to the %1 group so they can use sudo.": "將新使用者加入至 %1 群組,以便他們可以使用 sudo。" }, "Add to Autostart": { - "Add to Autostart": "" + "Add to Autostart": "加入自動啟動" }, "Adjust the bar height via inner padding": { - "Adjust the bar height via inner padding": "" + "Adjust the bar height via inner padding": "透過內部邊距調整工具列高度" }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "調整網格檢視模式中的欄數。" @@ -471,7 +474,7 @@ "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "調整生成顏色的對比度(-100 = 最小值,0 = 標準,100 = 最大值)" }, "Administrator group:": { - "Administrator group:": "" + "Administrator group:": "管理員群組:" }, "Advanced": { "Advanced": "進階" @@ -495,19 +498,22 @@ "All displays": "所有螢幕" }, "Allow": { - "Allow": "" + "Allow": "允許" }, "Allow clicks to pass through the widget": { "Allow clicks to pass through the widget": "允許點擊穿透小工具" }, "Allow greeter access?": { - "Allow greeter access?": "" + "Allow greeter access?": "允許歡迎畫面存取權限?" }, "Allow greeter login access": { - "Allow greeter login access": "" + "Allow greeter login access": "允許歡迎畫面登入存取權限" }, "Already on that session": { - "Already on that session": "" + "Already on that session": "已在該工作階段中" + }, + "Also group repeated application icons on the active workspace": { + "Also group repeated application icons on the active workspace": "" }, "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": { "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: 返回 • F1/I: 檔案資訊 • F10: 幫助 • Esc: 關閉" @@ -537,7 +543,7 @@ "Always show when there's only one connected display": "僅連接一個顯示器時一律顯示" }, "Always use this app for %1": { - "Always use this app for %1": "" + "Always use this app for %1": "始終使用此應用程式開啟 %1" }, "Amount": { "Amount": "數量" @@ -551,6 +557,9 @@ "Analyzing configuration...": { "Analyzing configuration...": "正在分析設定..." }, + "Anchor": { + "Anchor": "" + }, "Animation Duration": { "Animation Duration": "動畫持續時間" }, @@ -566,23 +575,23 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "匿名身分 (可選)" }, - "Any": { - "Any": "" - }, "Any window": { - "Any window": "" + "Any window": "任意視窗" }, "App Customizations": { "App Customizations": "應用程式自訂" }, "App ID": { - "App ID": "" + "App ID": "應用程式識別碼 (App ID)" + }, + "App ID (e.g. firefox)": { + "App ID (e.g. firefox)": "" }, "App ID Substitutions": { "App ID Substitutions": "應用程式ID替換" }, "App ID regex": { - "App ID regex": "" + "App ID regex": "應用程式識別碼正規表達式" }, "App ID regex (e.g. ^firefox$)": { "App ID regex (e.g. ^firefox$)": "應用程式 ID 正規表示式 (例如:^firefox$)" @@ -600,7 +609,7 @@ "Appearance": "外觀" }, "Application": { - "Application": "" + "Application": "應用程式" }, "Application Dock": { "Application Dock": "應用程式 Dock" @@ -609,7 +618,7 @@ "Applications": "應用程式" }, "Applications and commands to start automatically when you log in": { - "Applications and commands to start automatically when you log in": "" + "Applications and commands to start automatically when you log in": "登入時自動啟動的應用程式與指令" }, "Apply Changes": { "Apply Changes": "套用變更" @@ -627,16 +636,16 @@ "Apply compositor blur behind the frame border": "在框架邊界後方應用合成器模糊" }, "Apply inverse concave corner cutouts to the bar": { - "Apply inverse concave corner cutouts to the bar": "" + "Apply inverse concave corner cutouts to the bar": "對工具列套用反向凹角裁切" }, "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "應用暖色溫以減輕眼睛疲勞。使用下方的自動化設定來控制其啟動時間。" }, - "Applying authentication changes…": { - "Applying authentication changes…": "正在套用身份驗證變更…" + "Applying authentication changes...": { + "Applying authentication changes...": "" }, - "Applying auto-login on startup…": { - "Applying auto-login on startup…": "" + "Applying auto-login on startup...": { + "Applying auto-login on startup...": "" }, "Apps": { "Apps": "應用程式" @@ -672,7 +681,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "排列顯示器並設定解析度、重新整理頻率和 VRR" }, "At Startup": { - "At Startup": "" + "At Startup": "啟動時" }, "At least one output must remain enabled": { "At least one output must remain enabled": "至少一個輸出必須保持啟用" @@ -774,7 +783,7 @@ "Auto Popup Gaps": "自動調整彈出間隔" }, "Auto mode is on. Manual profile selection is disabled.": { - "Auto mode is on. Manual profile selection is disabled.": "" + "Auto mode is on. Manual profile selection is disabled.": "自動模式已開啟。手動選擇設定檔已停用。" }, "Auto-Clear After": { "Auto-Clear After": "自動清除於" @@ -795,16 +804,16 @@ "Auto-hide Dock": "自動隱藏 Dock" }, "Auto-login": { - "Auto-login": "" + "Auto-login": "自動登入" }, "Auto-login disabled": { - "Auto-login disabled": "" + "Auto-login disabled": "已停用自動登入" }, "Auto-login enabled": { - "Auto-login enabled": "" + "Auto-login enabled": "已啟用自動登入" }, "Auto-login on startup": { - "Auto-login on startup": "" + "Auto-login on startup": "開機自動登入" }, "Auto-saving...": { "Auto-saving...": "自動保存..." @@ -831,7 +840,7 @@ "Automatic Cycling": "桌布自動輪替" }, "Automatically calculate popup gap based on bar spacing": { - "Automatically calculate popup gap based on bar spacing": "" + "Automatically calculate popup gap based on bar spacing": "根據工具列間距自動計算彈出視窗間隙" }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "自動輪替更換同一資料夾中的桌布" @@ -846,7 +855,7 @@ "Automatically determine your location using your IP address": "使用您的 IP 位址自動確定您的位置" }, "Automatically hide the bar when the pointer moves away": { - "Automatically hide the bar when the pointer moves away": "" + "Automatically hide the bar when the pointer moves away": "當指標移開時自動隱藏工具列" }, "Automatically lock after": { "Automatically lock after": "指定時間後自動鎖定" @@ -861,10 +870,10 @@ "Automation": "自動化" }, "Autostart Apps": { - "Autostart Apps": "" + "Autostart Apps": "自動啟動應用程式" }, "Autostart Entries": { - "Autostart Entries": "" + "Autostart Entries": "自動啟動項目" }, "Available": { "Available": "可用" @@ -894,7 +903,7 @@ "Back": "返回" }, "Back to user list": { - "Back to user list": "" + "Back to user list": "返回使用者列表" }, "Backend": { "Backend": "後端" @@ -909,7 +918,7 @@ "Background Blur": "背景模糊" }, "Background Effect": { - "Background Effect": "" + "Background Effect": "背景特效" }, "Background Opacity": { "Background Opacity": "背景不透明度" @@ -932,6 +941,12 @@ "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "顏色平衡且帶有重點點綴的調色板 (預設)。" }, + "Bar": { + "Bar": "" + }, + "Bar %1": { + "Bar %1": "" + }, "Bar Configurations": { "Bar Configurations": "欄設定" }, @@ -978,10 +993,10 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "將鎖定畫面綁定到 loginctl 的 dbus 訊號。如果使用外部鎖屏,請停用" }, "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "" + "Bind the spotlight IPC action in your compositor config.": "在您的合成器設定中綁定 spotlight IPC 操作。" }, "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "" + "Bind the spotlight-bar IPC action in your compositor config.": "在您的合成器設定中綁定 spotlight-bar IPC 操作。" }, "Binds Include Missing": { "Binds Include Missing": "綁定包含遺失" @@ -993,7 +1008,7 @@ "Bit Depth": "位元深度" }, "Black": { - "Black": "" + "Black": "粗黑" }, "Block Out": { "Block Out": "遮蔽" @@ -1020,7 +1035,7 @@ "Bluetooth not available": "藍牙不可用" }, "Blur": { - "Blur": "" + "Blur": "模糊" }, "Blur Border Color": { "Blur Border Color": "模糊邊框顏色" @@ -1044,7 +1059,7 @@ "Body": "主體" }, "Bold": { - "Bold": "" + "Bold": "粗體" }, "Border": { "Border": "邊框" @@ -1053,7 +1068,7 @@ "Border Color": "邊框顏色" }, "Border Off": { - "Border Off": "" + "Border Off": "無邊框" }, "Border Opacity": { "Border Opacity": "邊框不透明度" @@ -1074,10 +1089,10 @@ "Border color around blurred surfaces": "模糊表面周圍的邊框顏色" }, "Border w/ Bg": { - "Border w/ Bg": "" + "Border w/ Bg": "帶背景邊框" }, "Border with Background": { - "Border with Background": "" + "Border with Background": "帶背景邊框" }, "Bottom": { "Bottom": "下方" @@ -1161,7 +1176,7 @@ "CUPS not available": "CUPS 不可用" }, "Calendar": { - "Calendar": "" + "Calendar": "日曆" }, "Camera": { "Camera": "相機" @@ -1176,7 +1191,7 @@ "Canceled": "已取消" }, "Cannot delete the only administrator": { - "Cannot delete the only administrator": "" + "Cannot delete the only administrator": "無法刪除唯一的管理員" }, "Cannot disable the only output": { "Cannot disable the only output": "無法禁用唯一的輸出" @@ -1191,7 +1206,7 @@ "Cannot pair": "無法配對" }, "Cannot remove the only administrator": { - "Cannot remove the only administrator": "" + "Cannot remove the only administrator": "無法移除唯一的管理員" }, "Capabilities": { "Capabilities": "功能" @@ -1209,10 +1224,10 @@ "Caps Lock is on": "大寫鎖定已開啟" }, "Cast Target": { - "Cast Target": "" + "Cast Target": "投影目標" }, "Category": { - "Category": "" + "Category": "類別" }, "Center Section": { "Center Section": "中間區塊" @@ -1254,10 +1269,10 @@ "Check interval": "檢查間隔" }, "Check on startup": { - "Check on startup": "" + "Check on startup": "啟動時檢查" }, "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": { - "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "" + "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "按需檢查同步狀態。同步(完整)適用於主要管理員:它會將您的主題複製到登入畫面並設定系統歡迎畫面配置。在多使用者系統上,請在「設定」→「使用者」中加入其他帳戶,然後讓每位使用者在登出並重新登入後執行 dms greeter sync --profile,而非完整同步。驗證變更會自動套用。" }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "請在「設定」→「Dock」→「垃圾桶」中檢查您的自訂指令。" @@ -1265,15 +1280,12 @@ "Checking for updates...": { "Checking for updates...": "正在檢查更新..." }, - "Checking whether sudo authentication is needed…": { - "Checking whether sudo authentication is needed…": "正在檢查是否需要 sudo 驗證…" + "Checking whether sudo authentication is needed...": { + "Checking whether sudo authentication is needed...": "" }, "Checking...": { "Checking...": "正在檢查..." }, - "Checking…": { - "Checking…": "正在檢查…" - }, "Choose Color": { "Choose Color": "選擇顏色" }, @@ -1296,7 +1308,7 @@ "Choose a color": "選擇顏色" }, "Choose a power profile": { - "Choose a power profile": "" + "Choose a power profile": "選擇電源設定檔" }, "Choose colors from palette": { "Choose colors from palette": "從調色盤選擇顏色" @@ -1329,7 +1341,7 @@ "Choose where on-screen displays appear on screen": "選擇螢幕顯示出現在螢幕上的位置" }, "Choose whether to launch a desktop app or a command": { - "Choose whether to launch a desktop app or a command": "" + "Choose whether to launch a desktop app or a command": "選擇要啟動桌面應用程式還是指令" }, "Choose which displays show this widget": { "Choose which displays show this widget": "選擇哪些顯示器顯示此小工具" @@ -1347,7 +1359,7 @@ "Circle": "圓形" }, "Class regex": { - "Class regex": "" + "Class regex": "類別正規表達式" }, "Class regex (e.g. ^firefox$)": { "Class regex (e.g. ^firefox$)": "類別正規表示式 (例如:^firefox$)" @@ -1419,7 +1431,7 @@ "Clipboard Manager": "剪貼簿管理" }, "Clipboard Saved": { - "Clipboard Saved": "" + "Clipboard Saved": "剪貼簿已儲存" }, "Clipboard sent": { "Clipboard sent": "剪貼簿已傳送" @@ -1449,7 +1461,7 @@ "Color": "顏色" }, "Color %1 copied": { - "Color %1 copied": "" + "Color %1 copied": "顏色 %1 已複製" }, "Color Gamut": { "Color Gamut": "色域" @@ -1518,7 +1530,7 @@ "Command": "指令" }, "Command Line": { - "Command Line": "" + "Command Line": "命令列" }, "Commands": { "Commands": "指令" @@ -1599,7 +1611,7 @@ "Confirm passkey for ": "確認密碼 " }, "Confirm password": { - "Confirm password": "" + "Confirm password": "確認密碼" }, "Conflicts with: %1": { "Conflicts with: %1": "與 %1 衝突" @@ -1626,7 +1638,7 @@ "Connected Displays": "已連接的螢幕" }, "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": { - "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "" + "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "「連接框架模式」使用連接的啟動器作為預設啟動器捷徑。" }, "Connected Options": { "Connected Options": "連接選項" @@ -1637,8 +1649,8 @@ "Connecting to Device": { "Connecting to Device": "正在連接裝置" }, - "Connecting to clipboard service…": { - "Connecting to clipboard service…": "正在連接到剪貼簿服務…" + "Connecting to clipboard service...": { + "Connecting to clipboard service...": "" }, "Connecting...": { "Connecting...": "連線中..." @@ -1659,7 +1671,7 @@ "Contrast": "對比" }, "Contributor": { - "Contributor": "" + "Contributor": "貢獻者" }, "Control Center": { "Control Center": "控制台" @@ -1710,7 +1722,7 @@ "Convenience options for the login screen. Sync to apply.": "登入畫面的便捷選項。同步以套用。" }, "Convert to DMS": { - "Convert to DMS": "" + "Convert to DMS": "轉換為 DMS" }, "Cooldown": { "Cooldown": "冷卻時間" @@ -1764,7 +1776,7 @@ "Corners & Background": "邊角與背景" }, "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" + "Couldn't open a terminal for the auto-login update.": "無法為自動登入更新開啟終端機。" }, "Count Only": { "Count Only": "僅計數" @@ -1782,7 +1794,7 @@ "Create Printer": "建立印表機" }, "Create User": { - "Create User": "" + "Create User": "建立使用者" }, "Create Window Rule": { "Create Window Rule": "建立視窗規則" @@ -1797,7 +1809,7 @@ "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.": "建立規則以靜音、忽略、從歷史記錄中隱藏或覆蓋通知優先級。預設只會覆蓋優先級;通知仍會正常顯示。" }, "Created plugin directory: %1": { - "Created plugin directory: %1": "" + "Created plugin directory: %1": "已建立外掛程式目錄:%1" }, "Creating...": { "Creating...": "建立中..." @@ -1809,10 +1821,10 @@ "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切換分頁 • Ctrl+S:釘選/取消釘選 • Shift+Del:全部清除 • Esc:關閉" }, "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": { - "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "" + "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab:切換分頁 • Ctrl+S:釘選/取消釘選 • Shift+Enter:複製 • Shift+Del:全部清除 • F10:說明 • Esc:關閉" }, "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": { - "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "" + "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab:切換分頁 • Ctrl+S:釘選/取消釘選 • Shift+Enter:貼上 • Shift+Del:全部清除 • F10:說明 • Esc:關閉" }, "Current": { "Current": "目前" @@ -1866,7 +1878,7 @@ "Cursor Theme": "游標主題" }, "Curve": { - "Curve": "" + "Curve": "曲線" }, "Curve: curve rasterizer.": { "Curve: curve rasterizer.": "曲線:曲線光柵化器。" @@ -1950,16 +1962,16 @@ "DEMO MODE - Click anywhere to exit": "演示模式 - 點擊任意處關閉" }, "DMS Chooser": { - "DMS Chooser": "" + "DMS Chooser": "DMS 選擇器" }, "DMS Plugin Manager Unavailable": { "DMS Plugin Manager Unavailable": "DMS 插件管理器不可用" }, "DMS Settings": { - "DMS Settings": "" + "DMS Settings": "DMS 設定" }, "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": { - "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "" + "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": "DMS 設定會寫入 Lua 按鍵綁定。請新增 DMS 包含項目以套用變更。" }, "DMS Shortcuts": { "DMS Shortcuts": "DMS 捷徑" @@ -1968,13 +1980,13 @@ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS 歡迎介面需要:greetd, dms-greeter。指紋:fprintd, pam_fprintd。安全金鑰:pam_u2f。將您的使用者加入 greeter 群組。身份驗證變更會自動套用,當需要 sudo 身份驗證時可能會開啟終端機。" }, "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" + "DMS needs administrator access. The terminal closes automatically when done.": "DMS 需要管理員權限。完成後終端機會自動關閉。" }, "DMS out of date": { "DMS out of date": "DMS 已過期" }, "DMS server is outdated (API v%1, expected v%2)": { - "DMS server is outdated (API v%1, expected v%2)": "" + "DMS server is outdated (API v%1, expected v%2)": "DMS 伺服器已過時 (API v%1,預期 v%2)" }, "DMS service is not connected. Clipboard settings are unavailable.": { "DMS service is not connected. Clipboard settings are unavailable.": "DMS 服務未連線。剪貼簿設定無法使用。" @@ -1985,9 +1997,6 @@ "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET 不可用" }, - "DWL service not available": { - "DWL service not available": "DWL 服務不可用" - }, "Daily": { "Daily": "每日" }, @@ -2058,28 +2067,28 @@ "Default (Black)": "預設 (黑色)" }, "Default (Global)": { - "Default (Global)": "" + "Default (Global)": "預設 (全域)" }, "Default Apps": { - "Default Apps": "" + "Default Apps": "預設應用程式" }, "Default Launcher": { - "Default Launcher": "" + "Default Launcher": "預設啟動器" }, "Default Launcher Shortcut": { - "Default Launcher Shortcut": "" + "Default Launcher Shortcut": "預設啟動器捷徑" }, "Default Opens": { - "Default Opens": "" + "Default Opens": "預設開啟方式" }, "Default Width (%)": { "Default Width (%)": "預設寬度 (%)" }, "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": { - "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "" + "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "預設啟動器捷徑會開啟包含模式分頁、網格檢視和操作面板的完整啟動器。" }, "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": { - "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "" + "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "預設啟動器捷徑會開啟最小化的 Spotlight 工具列。下方的專用 Spotlight 工具列捷徑保持獨立。" }, "Default selected action": { "Default selected action": "預設選定的動作" @@ -2097,7 +2106,7 @@ "Delete": "刪除" }, "Delete \"%1\" and remove the home directory? This cannot be undone.": { - "Delete \"%1\" and remove the home directory? This cannot be undone.": "" + "Delete \"%1\" and remove the home directory? This cannot be undone.": "刪除「%1」並移除家目錄嗎?此操作無法復原。" }, "Delete \"%1\"?": { "Delete \"%1\"?": "刪除 \"%1\"?" @@ -2109,7 +2118,7 @@ "Delete Printer": "刪除印表機" }, "Delete Rule": { - "Delete Rule": "" + "Delete Rule": "刪除規則" }, "Delete Saved Item?": { "Delete Saved Item?": "刪除已儲存項目?" @@ -2124,13 +2133,13 @@ "Delete profile \"%1\"?": "刪除設定檔 \"%1\"?" }, "Delete user": { - "Delete user": "" + "Delete user": "刪除使用者" }, "Delete user?": { - "Delete user?": "" + "Delete user?": "刪除使用者嗎?" }, "Demi Bold": { - "Demi Bold": "" + "Demi Bold": "中粗" }, "Dependencies & documentation": { "Dependencies & documentation": "依賴項與文件" @@ -2151,7 +2160,7 @@ "Desktop": "桌面" }, "Desktop Application": { - "Desktop Application": "" + "Desktop Application": "桌面應用程式" }, "Desktop Clock": { "Desktop Clock": "桌面時鐘" @@ -2228,8 +2237,8 @@ "Disabling WiFi...": { "Disabling WiFi...": "正在停用 Wi-Fi..." }, - "Disabling auto-login on startup…": { - "Disabling auto-login on startup…": "" + "Disabling auto-login on startup...": { + "Disabling auto-login on startup...": "" }, "Disc": { "Disc": "光碟" @@ -2294,8 +2303,8 @@ "Display all priorities over fullscreen apps": { "Display all priorities over fullscreen apps": "顯示全螢幕應用程式上的所有優先級" }, - "Display and switch DWL layouts": { - "Display and switch DWL layouts": "顯示並切換 DWL 佈局" + "Display and switch MangoWC layouts": { + "Display and switch MangoWC layouts": "" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "在工作區標籤中顯示應用程式圖標" @@ -2313,10 +2322,10 @@ "Display hourly weather predictions": "顯示每小時天氣預報" }, "Display line numbers in editor": { - "Display line numbers in editor": "" + "Display line numbers in editor": "在編輯器中顯示行號" }, "Display name for this entry": { - "Display name for this entry": "" + "Display name for this entry": "此項目的顯示名稱" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "只顯示包含視窗的工作區" @@ -2328,7 +2337,7 @@ "Display seconds in the clock": "在時鐘中顯示秒數" }, "Display setup failed": { - "Display setup failed": "" + "Display setup failed": "顯示設定失敗" }, "Display the power system menu": { "Display the power system menu": "顯示電源系統選單" @@ -2409,7 +2418,7 @@ "Drizzle": "毛毛雨" }, "Drop your override for %1 so the DMS default action re-applies?": { - "Drop your override for %1 so the DMS default action re-applies?": "" + "Drop your override for %1 so the DMS default action re-applies?": "捨棄您對 %1 的覆蓋設定,以便重新套用 DMS 預設操作嗎?" }, "Duplicate": { "Duplicate": "複製" @@ -2442,7 +2451,7 @@ "Dynamic colors from wallpaper": "從桌布產生動態色彩" }, "Dynamic colors parse error: %1": { - "Dynamic colors parse error: %1": "" + "Dynamic colors parse error: %1": "動態顏色解析錯誤:%1" }, "Dynamic colors, presets": { "Dynamic colors, presets": "動態顏色、預設集" @@ -2460,16 +2469,19 @@ "Edit App": "編輯應用程式" }, "Edit Clipboard": { - "Edit Clipboard": "" + "Edit Clipboard": "編輯剪貼簿" }, "Edit Rule": { - "Edit Rule": "" + "Edit Rule": "編輯規則" }, "Edit Window Rule": { "Edit Window Rule": "編輯視窗規則" }, "Edit clipboard text": { - "Edit clipboard text": "" + "Edit clipboard text": "編輯剪貼簿文字" + }, + "Editing changes on %1": { + "Editing changes on %1": "" }, "Education": { "Education": "教育" @@ -2649,7 +2661,7 @@ "Enterprise": "企業" }, "Entry Type": { - "Entry Type": "" + "Entry Type": "項目類型" }, "Entry pinned": { "Entry pinned": "項目已釘選" @@ -2688,7 +2700,7 @@ "Exclusive Zone Offset": "獨佔區域偏移" }, "Existing Users": { - "Existing Users": "" + "Existing Users": "現有使用者" }, "Experimental Feature": { "Experimental Feature": "實驗性功能" @@ -2718,10 +2730,10 @@ "Extra Arguments": "額外參數" }, "Extra Bold": { - "Extra Bold": "" + "Extra Bold": "特粗" }, "Extra Light": { - "Extra Light": "" + "Extra Light": "特細" }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切換 • F10: 幫助" @@ -2748,10 +2760,10 @@ "Failed to add printer to class": "無法將印表機新增至類別" }, "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" + "Failed to apply GTK colors": "套用 GTK 顏色失敗" }, "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply Qt colors": "套用 Qt 顏色失敗" }, "Failed to apply profile": { "Failed to apply profile": "套用設定檔失敗" @@ -2796,7 +2808,7 @@ "Failed to disable night mode": "無法停用夜間模式" }, "Failed to disable plugin: %1": { - "Failed to disable plugin: %1": "" + "Failed to disable plugin: %1": "停用外掛程式失敗:%1" }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "無法斷開 VPN" @@ -2823,13 +2835,13 @@ "Failed to enable night mode": "無法啟用夜間模式" }, "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" + "Failed to enable plugin: %1": "啟用外掛程式失敗:%1" }, "Failed to fetch network QR code: %1": { - "Failed to fetch network QR code: %1": "" + "Failed to fetch network QR code: %1": "擷取網路 QR 碼失敗:%1" }, "Failed to generate systemd override": { - "Failed to generate systemd override": "" + "Failed to generate systemd override": "產生 systemd 覆蓋檔失敗" }, "Failed to hold job": { "Failed to hold job": "無法保留工作" @@ -2871,16 +2883,16 @@ "Failed to print test page": "無法列印測試頁" }, "Failed to read theme file: %1": { - "Failed to read theme file: %1": "" + "Failed to read theme file: %1": "讀取主題檔案失敗:%1" }, "Failed to reject pairing": { "Failed to reject pairing": "無法拒絕配對" }, "Failed to reload plugin: %1": { - "Failed to reload plugin: %1": "" + "Failed to reload plugin: %1": "重新載入外掛程式失敗:%1" }, "Failed to remove QR code at %1: %2": { - "Failed to remove QR code at %1: %2": "" + "Failed to remove QR code at %1: %2": "移除 %1 處的 QR 碼失敗:%2" }, "Failed to remove device": { "Failed to remove device": "無法移除裝置" @@ -2964,7 +2976,7 @@ "Failed to update autoconnect": "自動連線更新失敗" }, "Failed to update clipboard": { - "Failed to update clipboard": "" + "Failed to update clipboard": "更新剪貼簿失敗" }, "Failed to update description": { "Failed to update description": "無法更新描述" @@ -2975,11 +2987,11 @@ "Failed to update sharing": { "Failed to update sharing": "無法更新分享設定" }, - "Failed to write Hyprland outputs config.": { - "Failed to write Hyprland outputs config.": "" - }, "Failed to write autostart entry": { - "Failed to write autostart entry": "" + "Failed to write autostart entry": "寫入自動啟動項目失敗" + }, + "Failed to write outputs config.": { + "Failed to write outputs config.": "" }, "Failed to write temp file for validation": { "Failed to write temp file for validation": "寫入驗證的暫存檔案失敗" @@ -3015,7 +3027,7 @@ "File Information": "檔案資訊" }, "File Manager": { - "File Manager": "" + "File Manager": "檔案管理員" }, "File manager used to open the trash. Pick \"custom\" to enter your own command.": { "File manager used to open the trash. Pick \"custom\" to enter your own command.": "檔案管理器用於開啟垃圾桶。選擇「自訂」以輸入您自己的指令。" @@ -3027,7 +3039,7 @@ "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "檔案搜尋需要 dsearch\n從 github.com/morelazers/dsearch 安裝" }, "File search unavailable": { - "File search unavailable": "" + "File search unavailable": "檔案搜尋不可用" }, "Files": { "Files": "檔案" @@ -3039,7 +3051,7 @@ "Fill": "填滿" }, "Filter": { - "Filter": "" + "Filter": "篩選器" }, "Find in Text": { "Find in Text": "尋找文字" @@ -3048,7 +3060,7 @@ "Find in note...": "尋找筆記..." }, "Fine-tune the space reserved for the bar from the screen edge": { - "Fine-tune the space reserved for the bar from the screen edge": "" + "Fine-tune the space reserved for the bar from the screen edge": "微調工具列與螢幕邊緣之間保留的空間" }, "Fingerprint availability could not be confirmed.": { "Fingerprint availability could not be confirmed.": "無法確認指紋可用性。" @@ -3101,8 +3113,20 @@ "Float": { "Float": "浮動" }, + "Float Anchor": { + "Float Anchor": "" + }, + "Float X": { + "Float X": "" + }, + "Float Y": { + "Float Y": "" + }, "Floating": { - "Floating": "" + "Floating": "浮動" + }, + "Floating Position": { + "Floating Position": "" }, "Fluent": { "Fluent": "流暢" @@ -3114,16 +3138,16 @@ "Focus": "聚焦" }, "Focus Ring Color": { - "Focus Ring Color": "" + "Focus Ring Color": "焦點邊框顏色" }, "Focus Ring Off": { - "Focus Ring Off": "" + "Focus Ring Off": "關閉焦點邊框" }, "Focus at Startup": { "Focus at Startup": "啟動時聚焦" }, "Focused": { - "Focused": "" + "Focused": "已聚焦" }, "Focused Border": { "Focused Border": "聚焦邊框" @@ -3137,9 +3161,6 @@ "Focused Window": { "Focused Window": "視窗對焦" }, - "Focused monitor only": { - "Focused monitor only": "僅限專注螢幕" - }, "Fog": { "Fog": "霧" }, @@ -3159,7 +3180,7 @@ "Follow focus": "跟隨焦點" }, "Follows the default launcher choice selected above.": { - "Follows the default launcher choice selected above.": "" + "Follows the default launcher choice selected above.": "遵循上述選擇的預設啟動器選項。" }, "Font": { "Font": "字體" @@ -3195,10 +3216,10 @@ "For 8 hours": "8小時" }, "For editing plain text files": { - "For editing plain text files": "" + "For editing plain text files": "用於編輯純文字檔案" }, "For reading PDF files": { - "For reading PDF files": "" + "For reading PDF files": "用於閱讀 PDF 檔案" }, "Force HDR": { "Force HDR": "強制 HDR" @@ -3207,7 +3228,7 @@ "Force Kill (SIGKILL)": "強制終止 (SIGKILL)" }, "Force RGBX": { - "Force RGBX": "" + "Force RGBX": "強制 RGBX" }, "Force Wide Color": { "Force Wide Color": "強制廣色域" @@ -3273,7 +3294,7 @@ "Fruit Salad": "水果沙拉" }, "Full": { - "Full": "" + "Full": "全" }, "Full Command:": { "Full Command:": "完整指令:" @@ -3285,7 +3306,7 @@ "Full Day & Month": "完整月日" }, "Full command to execute": { - "Full command to execute": "" + "Full command to execute": "要執行的完整指令" }, "Full with Year": { "Full with Year": "完整含年份" @@ -3318,7 +3339,7 @@ "GPU temperature display": "GPU 溫度顯示" }, "GTK colors applied successfully": { - "GTK colors applied successfully": "" + "GTK colors applied successfully": "GTK 顏色已成功套用" }, "GTK, Qt, IDEs, more": { "GTK, Qt, IDEs, more": "GTK、Qt、IDE 等" @@ -3333,7 +3354,7 @@ "Gamma control not available. Requires DMS API v6+.": "Gamma 控制不可用。需要 DMS API v6+。" }, "Generate Override": { - "Generate Override": "" + "Generate Override": "產生覆蓋檔" }, "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.": { "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.": "產生基準 GTK3/4 或 QT5/QT6(需要 qt6ct-kde)配置以遵循 DMS 顏色。僅需執行一次。

建議在應用 GTK 主題之前配置adw-gtk3。" @@ -3348,7 +3369,7 @@ "GitHub": "GitHub" }, "Global fonts can be configured in Settings → Personalization": { - "Global fonts can be configured in Settings → Personalization": "" + "Global fonts can be configured in Settings → Personalization": "全域字體可在「設定 → 個人化」中配置" }, "Globally scale all animation durations": { "Globally scale all animation durations": "全域縮放所有動畫持續時間" @@ -3372,19 +3393,19 @@ "Gradually fade the screen before turning off monitors with a configurable grace period": "關閉顯示器前逐漸淡化螢幕,可設定緩衝期" }, "Grant": { - "Grant": "" + "Grant": "授與" }, "Grant admin?": { - "Grant admin?": "" + "Grant admin?": "授與管理員權限?" }, "Grant administrator privileges": { - "Grant administrator privileges": "" + "Grant administrator privileges": "授與管理員權限" }, "Granted administrator privileges": { - "Granted administrator privileges": "" + "Granted administrator privileges": "已授與管理員權限" }, "Granted greeter login access": { - "Granted greeter login access": "" + "Granted greeter login access": "已授與歡迎畫面登入存取權限" }, "Graph Time Range": { "Graph Time Range": "圖表時間範圍" @@ -3411,10 +3432,10 @@ "Greeter font": "歡迎畫面字體" }, "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": { - "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "" + "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "歡迎畫面群組成員可以在登出並重新登入後,使用 dms greeter sync --profile 同步他們的登入畫面主題。" }, "Greeter group:": { - "Greeter group:": "" + "Greeter group:": "歡迎畫面群組:" }, "Greeter only — does not affect main clock": { "Greeter only — does not affect main clock": "僅限歡迎畫面 — 不影響主時鐘" @@ -3437,6 +3458,9 @@ "Group": { "Group": "群組" }, + "Group Active Workspace": { + "Group Active Workspace": "" + }, "Group Workspace Apps": { "Group Workspace Apps": "群組工作區應用程式" }, @@ -3468,16 +3492,16 @@ "HSV": "HSV" }, "HSV %1 copied": { - "HSV %1 copied": "" + "HSV %1 copied": "HSV %1 已複製" }, "HTML copied to clipboard": { "HTML copied to clipboard": "HTML 已複製到剪貼簿" }, "Handles links and opens HTML files": { - "Handles links and opens HTML files": "" + "Handles links and opens HTML files": "處理連結並開啟 HTML 檔案" }, "Handles mailto links": { - "Handles mailto links": "" + "Handles mailto links": "處理 mailto 連結" }, "Health": { "Health": "健康狀態" @@ -3507,7 +3531,7 @@ "Hibernate": "休眠" }, "Hibernate failed": { - "Hibernate failed": "" + "Hibernate failed": "休眠失敗" }, "Hidden": { "Hidden": "隱藏的" @@ -3567,10 +3591,10 @@ "Hide on Touch": "觸控時隱藏" }, "Hide the bar when the pointer leaves even if a popout is still open": { - "Hide the bar when the pointer leaves even if a popout is still open": "" + "Hide the bar when the pointer leaves even if a popout is still open": "即使彈出視窗仍開啟,當指標離開時也會隱藏工具列" }, "High": { - "High": "" + "High": "高" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "保留來源色調的高保真調色板。" @@ -3660,13 +3684,13 @@ "Hyprland Website": "Hyprland 網站" }, "Hyprland conf mode": { - "Hyprland conf mode": "" + "Hyprland conf mode": "Hyprland 設定模式" }, "Hyprland conf mode is read-only in Settings": { - "Hyprland conf mode is read-only in Settings": "" + "Hyprland conf mode is read-only in Settings": "Hyprland 設定模式在「設定」中為唯讀" }, "Hyprland config include missing": { - "Hyprland config include missing": "" + "Hyprland config include missing": "遺失 Hyprland 設定包含項目" }, "I Understand": { "I Understand": "我了解" @@ -3699,16 +3723,16 @@ "Icon Theme": "圖示主題" }, "Identical alerts show as one popup instead of stacking": { - "Identical alerts show as one popup instead of stacking": "" + "Identical alerts show as one popup instead of stacking": "相同的警告顯示為一個彈出視窗,而不是堆疊顯示" }, "Identical alerts stack as separate notification cards": { - "Identical alerts stack as separate notification cards": "" + "Identical alerts stack as separate notification cards": "相同的警告會堆疊為獨立的通知卡片" }, "Idle": { "Idle": "閒置" }, "Idle Inhibit": { - "Idle Inhibit": "" + "Idle Inhibit": "閒置抑制" }, "Idle Inhibitor": { "Idle Inhibitor": "空閒抑制器" @@ -3717,7 +3741,7 @@ "Idle Settings": "閒置設定" }, "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": { - "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "" + "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": "如果自動啟動的應用程式圖示未出現在系統匣中,請產生 systemd 覆蓋檔以確保 DMS 在自動啟動應用程式前執行" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "如果此欄位已隱藏,只要按下按鍵便會顯示。" @@ -3729,7 +3753,7 @@ "Image": "圖片" }, "Image Viewer": { - "Image Viewer": "" + "Image Viewer": "圖片檢視器" }, "Image copied to clipboard": { "Image copied to clipboard": "影像已複製到剪貼簿" @@ -3797,11 +3821,14 @@ "Inhibitable": { "Inhibitable": "可抑制" }, + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": { + "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.": "" + }, "Initialised": { - "Initialised": "" + "Initialised": "已初始化" }, "Inner padding applied to each widget": { - "Inner padding applied to each widget": "" + "Inner padding applied to each widget": "套用於每個小工具的內部邊距" }, "Input Devices": { "Input Devices": "輸入設備" @@ -3831,7 +3858,7 @@ "Install complete. Greeter has been installed.": "安裝完成。歡迎畫面已安裝。" }, "Install dsearch to search files.": { - "Install dsearch to search files.": "" + "Install dsearch to search files.": "安裝 dsearch 以搜尋檔案。" }, "Install failed: %1": { "Install failed: %1": "安裝失敗:%1" @@ -3885,7 +3912,7 @@ "Interval": "間隔" }, "Invalid JSON format: %1": { - "Invalid JSON format: %1": "" + "Invalid JSON format: %1": "無效的 JSON 格式:%1" }, "Invalid configuration": { "Invalid configuration": "無效配置" @@ -3894,11 +3921,14 @@ "Invalid password for %1": "%1 的密碼無效" }, "Invalid username": { - "Invalid username": "" + "Invalid username": "無效的使用者名稱" }, "Invert on mode change": { "Invert on mode change": "模式改變時反轉" }, + "Invert touchpad scroll direction": { + "Invert touchpad scroll direction": "" + }, "Iris Bloom": { "Iris Bloom": "鳶尾花開" }, @@ -3918,7 +3948,7 @@ "Keep Changes": "保留變更" }, "Keep typing": { - "Keep typing": "" + "Keep typing": "繼續輸入" }, "Keeping Awake": { "Keeping Awake": "保持喚醒" @@ -4050,7 +4080,7 @@ "Left Section": "左方區塊" }, "Light": { - "Light": "" + "Light": "細" }, "Light Direction": { "Light Direction": "光線方向" @@ -4179,7 +4209,7 @@ "Longitude": "經度" }, "Low": { - "Low": "" + "Low": "低" }, "Low Priority": { "Low Priority": "低優先級" @@ -4191,16 +4221,16 @@ "MTU": "MTU" }, "Mail": { - "Mail": "" + "Mail": "郵件" }, "Make admin": { - "Make admin": "" + "Make admin": "設為管理員" }, "Make sure KDE Connect or Valent is running on your other devices": { "Make sure KDE Connect or Valent is running on your other devices": "請確認您的其他裝置上已執行 KDE Connect 或 Valent" }, "Make the bar background fully transparent": { - "Make the bar background fully transparent": "" + "Make the bar background fully transparent": "使工具列背景完全透明" }, "Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": "管理和配置用於擴展 DMS 功能的插件" @@ -4218,10 +4248,16 @@ "Management": "管理" }, "Manages calendar events": { - "Manages calendar events": "" + "Manages calendar events": "管理日曆事件" }, "Manages files and directories": { - "Manages files and directories": "" + "Manages files and directories": "管理檔案和目錄" + }, + "Mango Options": { + "Mango Options": "" + }, + "Mango service not available": { + "Mango service not available": "" }, "MangoWC Layout Overrides": { "MangoWC Layout Overrides": "MangoWC 版面配置覆寫" @@ -4242,7 +4278,7 @@ "Manual Show/Hide": "手動顯示/隱藏" }, "Manual config": { - "Manual config": "" + "Manual config": "手動設定" }, "Map window class names to icon names for proper icon display": { "Map window class names to icon names for proper icon display": "為正確顯示圖示,將視窗類別名稱對應至圖示名稱" @@ -4263,10 +4299,10 @@ "Marker Waste Full": "標記廢料已滿" }, "Match (%1)": { - "Match (%1)": "" + "Match (%1)": "匹配 (%1)" }, "Match Conditions": { - "Match Conditions": "" + "Match Conditions": "匹配條件" }, "Match Criteria": { "Match Criteria": "符合條件" @@ -4530,7 +4566,7 @@ "Mount Points": "掛載點" }, "Mouse clicks pass through the bar to windows behind it": { - "Mouse clicks pass through the bar to windows behind it": "" + "Mouse clicks pass through the bar to windows behind it": "滑鼠點擊可穿透工具列並作用於後方的視窗" }, "Mouse pointer appearance": { "Mouse pointer appearance": "滑鼠指標外觀" @@ -4554,7 +4590,7 @@ "Multi-Monitor": "多顯示器" }, "Multimedia": { - "Multimedia": "" + "Multimedia": "多媒體" }, "Multiplexer": { "Multiplexer": "多工器" @@ -4569,7 +4605,7 @@ "Music": "音樂" }, "Music Player": { - "Music Player": "" + "Music Player": "音樂播放器" }, "Mute Popups": { "Mute Popups": "靜音彈出視窗" @@ -4599,11 +4635,14 @@ "Named Workspace Icons": "命名工作區圖示" }, "Native": { - "Native": "" + "Native": "原生" }, "Native: platform renderer (FreeType).": { "Native: platform renderer (FreeType).": "原生:平台渲染器 (FreeType)。" }, + "Natural Touchpad Scrolling": { + "Natural Touchpad Scrolling": "" + }, "Navigate": { "Navigate": "導覽" }, @@ -4689,7 +4728,7 @@ "Night mode & gamma": "夜間模式與伽瑪" }, "Night mode failed: DMS gamma control not available": { - "Night mode failed: DMS gamma control not available": "" + "Night mode failed: DMS gamma control not available": "夜間模式失敗:DMS gamma 控制不可用" }, "Niri Integration": { "Niri Integration": "Niri 整合" @@ -4770,7 +4809,7 @@ "No active %1 sessions": "無活躍的 %1 會話" }, "No active session found for %1": { - "No active session found for %1": "" + "No active session found for %1": "找不到 %1 的使用中工作階段" }, "No adapter": { "No adapter": "無轉接器" @@ -4782,7 +4821,7 @@ "No app customizations.": "沒有應用程式自訂設定。" }, "No application selected": { - "No application selected": "" + "No application selected": "未選擇應用程式" }, "No apps found": { "No apps found": "未找到應用程式" @@ -4794,7 +4833,7 @@ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "未靜音任何應用程式。右鍵點擊通知並選擇「靜音彈出視窗」以在此處添加一個。" }, "No autostart entries": { - "No autostart entries": "" + "No autostart entries": "沒有自動啟動項目" }, "No battery": { "No battery": "無電池" @@ -4827,7 +4866,7 @@ "No disk data available": "無可用硬碟資料" }, "No display profiles found. Create them in Settings > Displays.": { - "No display profiles found. Create them in Settings > Displays.": "" + "No display profiles found. Create them in Settings > Displays.": "未找到顯示設定檔。請在「設定 > 顯示」中建立。" }, "No drivers found": { "No drivers found": "找不到驅動程式" @@ -4851,7 +4890,7 @@ "No hidden apps.": "沒有隱藏的應用程式。" }, "No human user accounts found.": { - "No human user accounts found.": "" + "No human user accounts found.": "找不到任何真實使用者帳戶。" }, "No info items": { "No info items": "無資訊項目" @@ -4893,7 +4932,7 @@ "No mount points found": "找不到掛載點" }, "No other active sessions on this seat": { - "No other active sessions on this seat": "" + "No other active sessions on this seat": "此座位上沒有其他使用中工作階段" }, "No output device": { "No output device": "無輸出裝置" @@ -4929,7 +4968,7 @@ "No recent clipboard entries found": "找不到近期剪貼簿項目" }, "No results": { - "No results": "" + "No results": "無結果" }, "No results found": { "No results found": "未找到結果" @@ -4938,7 +4977,7 @@ "No saved clipboard entries": "沒有儲存的剪貼簿項目" }, "No session selected": { - "No session selected": "" + "No session selected": "未選擇工作階段" }, "No sessions found": { "No sessions found": "未找到會話" @@ -4962,7 +5001,7 @@ "No trigger": "無觸發條件" }, "No user specified": { - "No user specified": "" + "No user specified": "未指定使用者" }, "No video found in folder": { "No video found in folder": "資料夾中沒有找到影片" @@ -4992,13 +5031,13 @@ "No window rules configured": "未設定任何視窗規則" }, "Noise": { - "Noise": "" + "Noise": "雜訊" }, "None": { "None": "無" }, "None active": { - "None active": "" + "None active": "無啟用" }, "Normal": { "Normal": "一般" @@ -5025,7 +5064,7 @@ "Not available — install or configure pam_u2f.": "無法使用 — 請安裝或設定 pam_u2f。" }, "Not bound": { - "Not bound": "" + "Not bound": "未綁定" }, "Not connected": { "Not connected": "未連接" @@ -5034,7 +5073,7 @@ "Not detected": "未偵測到" }, "Not listed?": { - "Not listed?": "" + "Not listed?": "未列出?" }, "Not paired": { "Not paired": "未配對" @@ -5132,9 +5171,6 @@ "On-Demand": { "On-Demand": "按需" }, - "On-Screen Displays": { - "On-Screen Displays": "螢幕顯示" - }, "On-screen Displays": { "On-screen Displays": "螢幕顯示" }, @@ -5160,10 +5196,10 @@ "Opacity": "不透明度" }, "Opacity of the bar background": { - "Opacity of the bar background": "" + "Opacity of the bar background": "工具列背景透明度" }, "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" + "Opacity of widget backgrounds": "小工具背景透明度" }, "Opaque": { "Opaque": "不透明" @@ -5226,19 +5262,19 @@ "Opening files": "正在開啟檔案" }, "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" + "Opening terminal to update greetd": "正在開啟終端機以更新 greetd" }, "Opening terminal: ": { "Opening terminal: ": "正在開啟終端機:" }, "Opens a picker of other active sessions on this seat": { - "Opens a picker of other active sessions on this seat": "" + "Opens a picker of other active sessions on this seat": "開啟此工作階段中其他活動工作階段的選擇器" }, "Opens image files": { - "Opens image files": "" + "Opens image files": "開啟圖片檔案" }, "Opens the connected launcher in Connected Frame Mode.": { - "Opens the connected launcher in Connected Frame Mode.": "" + "Opens the connected launcher in Connected Frame Mode.": "以連線框架模式開啟已連線的啟動器。" }, "Optional description": { "Optional description": "選填描述" @@ -5247,7 +5283,7 @@ "Optional location": "選填位置" }, "Optional state-based conditions applied to the first match.": { - "Optional state-based conditions applied to the first match.": "" + "Optional state-based conditions applied to the first match.": "應用於首次匹配的可選狀態條件。" }, "Options": { "Options": "選項" @@ -5307,7 +5343,7 @@ "Override global layout settings for this output": "覆寫此輸出的全域版面配置設定" }, "Override global transparency for Notepad": { - "Override global transparency for Notepad": "" + "Override global transparency for Notepad": "覆寫記事本的全域透明度" }, "Override terminal with a custom command or script": { "Override terminal with a custom command or script": "使用自訂指令或腳本覆蓋終端機" @@ -5316,7 +5352,7 @@ "Override the global shadow with per-bar settings": "使用每個 bar 的設定覆蓋全域陰影" }, "Override the popup gap size when auto is disabled": { - "Override the popup gap size when auto is disabled": "" + "Override the popup gap size when auto is disabled": "當自動模式停用時,覆寫彈出視窗間距大小" }, "Overrides": { "Overrides": "覆蓋" @@ -5349,7 +5385,7 @@ "PAM provides fingerprint auth, but no reader was detected.": "PAM 提供指紋驗證,但未檢測到讀取器。" }, "PDF Reader": { - "PDF Reader": "" + "PDF Reader": "PDF 閱讀器" }, "PIN": { "PIN": "PIN" @@ -5403,22 +5439,22 @@ "Password": "密碼" }, "Password cannot be empty": { - "Password cannot be empty": "" + "Password cannot be empty": "密碼不能為空" }, "Password change failed (exit %1)": { - "Password change failed (exit %1)": "" + "Password change failed (exit %1)": "密碼變更失敗(退出代碼 %1)" }, "Password set": { - "Password set": "" + "Password set": "密碼已設定" }, "Password updated": { - "Password updated": "" + "Password updated": "密碼已更新" }, "Password...": { "Password...": "密碼..." }, "Passwords do not match.": { - "Passwords do not match.": "" + "Passwords do not match.": "密碼不符。" }, "Paste": { "Paste": "貼上" @@ -5526,10 +5562,10 @@ "Place plugins in %1": "將外掛程式置於 %1 中" }, "Place the bar on the Wayland overlay layer": { - "Place the bar on the Wayland overlay layer": "" + "Place the bar on the Wayland overlay layer": "將工具列放置在 Wayland 覆蓋層上" }, "Place the dock on the Wayland overlay layer": { - "Place the dock on the Wayland overlay layer": "" + "Place the dock on the Wayland overlay layer": "將 Dock 放置在 Wayland 覆蓋層上" }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "螢幕鎖定時播放影片。" @@ -5556,10 +5592,10 @@ "Playback error: ": "播放錯誤:" }, "Plays audio files": { - "Plays audio files": "" + "Plays audio files": "播放音訊檔案" }, "Plays video files": { - "Plays video files": "" + "Plays video files": "播放視訊檔案" }, "Please wait...": { "Please wait...": "請稍候..." @@ -5570,9 +5606,6 @@ "Plugged In": { "Plugged In": "已插入" }, - "Plugged in": { - "Plugged in": "已插入" - }, "Plugin": { "Plugin": "外掛程式" }, @@ -5586,22 +5619,22 @@ "Plugin Visibility": "外掛程式可見度" }, "Plugin disabled: %1": { - "Plugin disabled: %1": "" + "Plugin disabled: %1": "外掛程式已停用:%1" }, "Plugin enabled: %1": { - "Plugin enabled: %1": "" + "Plugin enabled: %1": "外掛程式已啟用:%1" }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "插件已停用 - 在插件設定中啟用即可使用" }, "Plugin reloaded: %1": { - "Plugin reloaded: %1": "" + "Plugin reloaded: %1": "外掛程式已重新載入:%1" }, "Plugin uninstalled: %1": { - "Plugin uninstalled: %1": "" + "Plugin uninstalled: %1": "外掛程式已解除安裝:%1" }, "Plugin updated: %1": { - "Plugin updated: %1": "" + "Plugin updated: %1": "外掛程式已更新:%1" }, "Plugins": { "Plugins": "插件" @@ -5610,7 +5643,7 @@ "Pointer": "指標" }, "Polkit integration is disabled. User management requires Polkit to elevate privileges.": { - "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "" + "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "Polkit 整合已停用。使用者管理需要 Polkit 來提升權限。" }, "Popout Shadows": { "Popout Shadows": "彈出陰影" @@ -5664,7 +5697,7 @@ "Power Menu Customization": "電源選單自訂" }, "Power Mode": { - "Power Mode": "" + "Power Mode": "電源模式" }, "Power Off": { "Power Off": "關機" @@ -5826,10 +5859,10 @@ "Protocol": "協定" }, "Qt": { - "Qt": "" + "Qt": "Qt" }, "Qt colors applied successfully": { - "Qt colors applied successfully": "" + "Qt colors applied successfully": "Qt 顏色已成功套用" }, "Qt: distance-field renderer.": { "Qt: distance-field renderer.": "Qt:距離場渲染器。" @@ -5883,10 +5916,10 @@ "Rate": "速率" }, "Re-enter password": { - "Re-enter password": "" + "Re-enter password": "再次輸入密碼" }, "Read-only legacy config": { - "Read-only legacy config": "" + "Read-only legacy config": "唯讀舊版設定檔" }, "Read:": { "Read:": "讀取:" @@ -5898,7 +5931,7 @@ "Reboot": "重新啟動" }, "Recent": { - "Recent": "" + "Recent": "最近" }, "Recent Colors": { "Recent Colors": "最近的顏色" @@ -5915,14 +5948,14 @@ "Refresh Weather": { "Refresh Weather": "刷新天氣" }, - "Refreshing…": { - "Refreshing…": "" + "Refreshing...": { + "Refreshing...": "" }, "Regex": { "Regex": "正規表達式" }, "Regular": { - "Regular": "" + "Regular": "標準" }, "Reject": { "Reject": "拒絕" @@ -5943,7 +5976,7 @@ "Remaining / Total": "剩餘 / 總計" }, "Remember Last Mode": { - "Remember Last Mode": "" + "Remember Last Mode": "記住上次模式" }, "Remember Last Query": { "Remember Last Query": "記住上次查詢" @@ -5958,49 +5991,49 @@ "Remove": "刪除" }, "Remove \"%1\" from the %2 group?": { - "Remove \"%1\" from the %2 group?": "" + "Remove \"%1\" from the %2 group?": "是否從 %2 群組中移除 \"%1\"?" }, "Remove Shortcut?": { - "Remove Shortcut?": "" + "Remove Shortcut?": "移除捷徑?" }, "Remove Widget Padding": { "Remove Widget Padding": "移除小部件內邊距" }, "Remove admin": { - "Remove admin": "" + "Remove admin": "移除管理員" }, "Remove admin?": { - "Remove admin?": "" + "Remove admin?": "移除管理員?" }, "Remove corner rounding from the bar": { - "Remove corner rounding from the bar": "" + "Remove corner rounding from the bar": "移除工具列的圓角" }, "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "視窗最大化時移除間距與邊框" }, "Remove greeter access?": { - "Remove greeter access?": "" + "Remove greeter access?": "移除登入畫面存取權?" }, "Remove greeter login access": { - "Remove greeter login access": "" + "Remove greeter login access": "移除登入畫面存取權" }, "Remove inner padding from all widgets": { - "Remove inner padding from all widgets": "" + "Remove inner padding from all widgets": "移除所有小工具的內部邊距" }, "Remove match": { - "Remove match": "" + "Remove match": "移除匹配" }, "Remove the shortcut %1?": { - "Remove the shortcut %1?": "" + "Remove the shortcut %1?": "移除捷徑 %1?" }, "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": { - "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "" + "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "移除捷徑 %1?一個解除綁定的條目將被儲存至 dms/binds-user.lua,以確保在 DMS 更新後該捷徑保持移除狀態。" }, "Removed administrator privileges": { - "Removed administrator privileges": "" + "Removed administrator privileges": "已移除管理員權限" }, "Removed greeter login access": { - "Removed greeter login access": "" + "Removed greeter login access": "已移除登入畫面存取權" }, "Rename": { "Rename": "重新命名" @@ -6041,8 +6074,8 @@ "Requires DMS server with sysupdate capability": { "Requires DMS server with sysupdate capability": "需要具有 sysupdate 功能的 DMS 伺服器" }, - "Requires DWL compositor": { - "Requires DWL compositor": "需要 DWL 混成器" + "Requires MangoWC compositor": { + "Requires MangoWC compositor": "" }, "Requires a newer version of Quickshell": { "Requires a newer version of Quickshell": "需要較新版本的 Quickshell" @@ -6051,7 +6084,7 @@ "Requires night mode support": "需要夜間模式支援" }, "Requires remembering the last user and session. Enable those options first.": { - "Requires remembering the last user and session. Enable those options first.": "" + "Requires remembering the last user and session. Enable those options first.": "需要記憶最後使用的使用者與工作階段。請先啟用這些選項。" }, "Reset": { "Reset": "重設" @@ -6063,10 +6096,10 @@ "Reset Size": "重設大小" }, "Reset to Default?": { - "Reset to Default?": "" + "Reset to Default?": "重設為預設值?" }, "Reset to default": { - "Reset to default": "" + "Reset to default": "重設為預設值" }, "Reset to default name": { "Reset to default name": "重設為預設名稱" @@ -6074,6 +6107,12 @@ "Resize Widget": { "Resize Widget": "調整小工具大小" }, + "Resize on Border": { + "Resize on Border": "" + }, + "Resize windows by dragging their edges with the mouse": { + "Resize windows by dragging their edges with the mouse": "" + }, "Resolution & Refresh": { "Resolution & Refresh": "解析度與更新率" }, @@ -6093,7 +6132,7 @@ "Restore Special Workspace Windows": "恢復特殊工作區視窗" }, "Restore the last selected mode (tab) when the launcher is opened": { - "Restore the last selected mode (tab) when the launcher is opened": "" + "Restore the last selected mode (tab) when the launcher is opened": "開啟啟動器時恢復上次選擇的模式(分頁)" }, "Resume": { "Resume": "恢復" @@ -6146,12 +6185,6 @@ "Rounded corners for windows": { "Rounded corners for windows": "視窗圓角" }, - "Rounded corners for windows (border_radius)": { - "Rounded corners for windows (border_radius)": "視窗圓角 (border_radius)" - }, - "Rounded corners for windows (decoration.rounding)": { - "Rounded corners for windows (decoration.rounding)": "視窗圓角 (decoration.rounding)" - }, "Rule": { "Rule": "規則" }, @@ -6162,7 +6195,7 @@ "Rules (%1)": "規則 (%1)" }, "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": { - "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "" + "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": "在您的合成器設定中找到的規則。此處為唯讀,請使用「轉換為 DMS」建立可編輯副本。" }, "Run Again": { "Run Again": "重新執行" @@ -6188,8 +6221,8 @@ "Running Apps Settings": { "Running Apps Settings": "正在運行的應用程式設定" }, - "Running greeter sync…": { - "Running greeter sync…": "正在同步歡迎畫面…" + "Running greeter sync...": { + "Running greeter sync...": "" }, "Running in terminal": { "Running in terminal": "在終端機中運行" @@ -6204,7 +6237,7 @@ "SMS": "簡訊" }, "Saturation": { - "Saturation": "" + "Saturation": "飽和度" }, "Save": { "Save": "儲存" @@ -6216,10 +6249,10 @@ "Save QR Code": "保存 QR 碼" }, "Save and close": { - "Save and close": "" + "Save and close": "儲存並關閉" }, "Save and paste": { - "Save and paste": "" + "Save and paste": "儲存並貼上" }, "Save and switch between display configurations": { "Save and switch between display configurations": "儲存並切換顯示設定" @@ -6315,7 +6348,7 @@ "Search Options": "搜尋選項" }, "Search applications...": { - "Search applications...": "" + "Search applications...": "搜尋應用程式..." }, "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "按組合鍵、描述或動作名稱搜尋。\n\n預設動作將綁定鍵複製到剪貼簿。\n右鍵點擊或按右箭頭以釘選常用綁定鍵 — 搜尋時它們將出現在頂部。" @@ -6354,7 +6387,7 @@ "Search...": "搜尋..." }, "Searching": { - "Searching": "" + "Searching": "正在搜尋" }, "Searching...": { "Searching...": "搜尋中..." @@ -6420,7 +6453,7 @@ "Select a color from the palette or use custom sliders": "從調色板中選取一個顏色,或使用滑條調整" }, "Select a desktop application": { - "Select a desktop application": "" + "Select a desktop application": "選擇一個桌面應用程式" }, "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": { "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "選取一個小工具以新增至您的桌面。每個小工具都是獨立的實例,擁有自己的設定。" @@ -6432,7 +6465,7 @@ "Select a window...": "選擇一個視窗..." }, "Select an active session to switch to. The current session stays running in the background.": { - "Select an active session to switch to. The current session stays running in the background.": "" + "Select an active session to switch to. The current session stays running in the background.": "選擇一個要切換到的活動工作階段。目前的工作階段將在背景持續執行。" }, "Select an image file...": { "Select an image file...": "選擇一張圖片..." @@ -6474,7 +6507,7 @@ "Select the palette algorithm used for wallpaper-based colors": "請選擇調色板演算法,以桌布的顏色為基底。" }, "Select user...": { - "Select user...": "" + "Select user...": "選擇使用者..." }, "Select which keybind providers to include": { "Select which keybind providers to include": "選擇要包含哪些快捷鍵提供者" @@ -6534,7 +6567,7 @@ "Set different wallpapers for light and dark mode": "為淺色/深色主題設定不同的桌布" }, "Set initial password": { - "Set initial password": "" + "Set initial password": "設定初始密碼" }, "Set key and action to save": { "Set key and action to save": "設定按鍵和動作以保存" @@ -6543,13 +6576,13 @@ "Set notification rules": "設定通知規則" }, "Setting": { - "Setting": "" + "Setting": "設定" }, "Settings": { "Settings": "設定" }, "Settings Search": { - "Settings Search": "" + "Settings Search": "設定搜尋" }, "Settings are read-only. Changes will not persist.": { "Settings are read-only. Changes will not persist.": "設定為唯讀。變更將不會保留。" @@ -6570,7 +6603,7 @@ "Shadow Override": "陰影覆蓋" }, "Shadow blur radius in pixels": { - "Shadow blur radius in pixels": "" + "Shadow blur radius in pixels": "陰影模糊半徑(像素)" }, "Shadow elevation on bars and panels": { "Shadow elevation on bars and panels": "bar 和面板上的陰影抬升" @@ -6603,7 +6636,7 @@ "Shell": "Shell" }, "Shift+Enter to copy": { - "Shift+Enter to copy": "" + "Shift+Enter to copy": "Shift+Enter 複製" }, "Shift+Enter to paste": { "Shift+Enter to paste": "Shift+Enter 貼上" @@ -6630,7 +6663,7 @@ "Show All Tags": "顯示所有標籤" }, "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": { - "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "" + "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "在 Spotlight 工具列輸入框旁顯示「全部」、「應用程式」、「檔案」和「外掛程式」分類標籤。" }, "Show Badge": { "Show Badge": "顯示徽章" @@ -6681,7 +6714,7 @@ "Show Humidity": "顯示濕度" }, "Show Icon": { - "Show Icon": "" + "Show Icon": "顯示圖示" }, "Show Launcher Button": { "Show Launcher Button": "顯示啟動器按鈕" @@ -6714,7 +6747,7 @@ "Show Memory in GB": "以 GB 顯示記憶體" }, "Show Mode Chips": { - "Show Mode Chips": "" + "Show Mode Chips": "顯示模式標籤" }, "Show Network": { "Show Network": "顯示網路" @@ -6768,7 +6801,7 @@ "Show Swap": "顯示交換空間" }, "Show Switch User": { - "Show Switch User": "" + "Show Switch User": "顯示切換使用者" }, "Show System Date": { "Show System Date": "顯示系統日期" @@ -6800,8 +6833,8 @@ "Show Workspace Apps": { "Show Workspace Apps": "顯示工作區應用程式" }, - "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "顯示所有 9 個標籤,而非僅顯示已佔用的標籤 (僅限 DWL)" + "Show all 9 tags instead of only occupied tags": { + "Show all 9 tags instead of only occupied tags": "" }, "Show an outline ring around the focused workspace indicator": { "Show an outline ring around the focused workspace indicator": "顯示聚焦工作區指示器外框" @@ -6837,7 +6870,7 @@ "Show mode tabs and keyboard hints at the bottom.": "在底部顯示模式分頁與鍵盤提示。" }, "Show mount path": { - "Show mount path": "" + "Show mount path": "顯示掛載路徑" }, "Show notification popups only on the currently focused monitor": { "Show notification popups only on the currently focused monitor": "僅在當前焦點顯示器上顯示通知彈出視窗" @@ -6891,10 +6924,10 @@ "Show on-screen display when volume changes": "音量改變時顯示螢幕顯示" }, "Show the bar only when no windows are open": { - "Show the bar only when no windows are open": "" + "Show the bar only when no windows are open": "僅在沒有視窗開啟時顯示工具列" }, "Show the bar when niri overview is active": { - "Show the bar when niri overview is active": "" + "Show the bar when niri overview is active": "當 niri 概覽處於活動狀態時顯示工具列" }, "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "在頂部欄和控制中心顯示天氣資訊" @@ -6963,7 +6996,7 @@ "Skip setup": "跳過設定" }, "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": { - "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "" + "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": "開機後跳過歡迎介面密碼,直到您登出為止。鎖定螢幕解鎖不受影響。同步後於下次重新開機時生效。" }, "Small": { "Small": "小" @@ -6999,20 +7032,14 @@ "Sounds": "聲音" }, "Source: %1": { - "Source: %1": "" + "Source: %1": "來源:%1" }, "Space between the bar and screen edges": { - "Space between the bar and screen edges": "" + "Space between the bar and screen edges": "工具列與螢幕邊緣之間的距離" }, "Space between windows": { "Space between windows": "視窗間距" }, - "Space between windows (gappih/gappiv/gappoh/gappov)": { - "Space between windows (gappih/gappiv/gappoh/gappov)": "視窗間距 (gappih/gappiv/gappoh/gappov)" - }, - "Space between windows (gaps_in and gaps_out)": { - "Space between windows (gaps_in and gaps_out)": "視窗間距 (gaps_in 和 gaps_out)" - }, "Spacer": { "Spacer": "空白間隔" }, @@ -7029,16 +7056,16 @@ "Spool Area Full": "緩衝區已滿" }, "Spotlight": { - "Spotlight": "" + "Spotlight": "聚焦" }, "Spotlight Bar": { - "Spotlight Bar": "" + "Spotlight Bar": "Spotlight 工具列" }, "Spotlight Bar Shortcut": { - "Spotlight Bar Shortcut": "" + "Spotlight Bar Shortcut": "Spotlight 工具列捷徑" }, "Spotlight Search": { - "Spotlight Search": "" + "Spotlight Search": "聚焦搜尋" }, "Square Corners": { "Square Corners": "方角" @@ -7083,10 +7110,10 @@ "Stretch": "延展" }, "Stretch widget icons to fill the available bar height": { - "Stretch widget icons to fill the available bar height": "" + "Stretch widget icons to fill the available bar height": "拉伸小工具圖示以填滿可用的工具列高度" }, "Stretch widget text to fill the available bar height": { - "Stretch widget text to fill the available bar height": "" + "Stretch widget text to fill the available bar height": "拉伸小工具文字以填滿可用的工具列高度" }, "Strict auto-hide": { "Strict auto-hide": "嚴格自動隱藏" @@ -7104,7 +7131,7 @@ "Sunset": "日落" }, "Suppress Duplicate Notifications": { - "Suppress Duplicate Notifications": "" + "Suppress Duplicate Notifications": "抑制重複通知" }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "啟用時抑制通知彈出視窗" @@ -7146,7 +7173,7 @@ "Switch User": "切換使用者" }, "Switch between display configurations": { - "Switch between display configurations": "" + "Switch between display configurations": "切換顯示配置" }, "Switch to power profile": { "Switch to power profile": "切換至電源設定檔" @@ -7227,7 +7254,7 @@ "System toast notifications": "系統快顯通知" }, "Systemd Override generated": { - "Systemd Override generated": "" + "Systemd Override generated": "已產生 Systemd 覆寫" }, "Tab": { "Tab": "分頁" @@ -7235,6 +7262,9 @@ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: 切換焦點 • ←→↑↓: 切換焦點 • Enter/Space: 選擇" }, + "Tags": { + "Tags": "" + }, "Tags: %1": { "Tags: %1": "標籤:%1" }, @@ -7296,7 +7326,7 @@ "Text Color": "文字顏色" }, "Text Editor": { - "Text Editor": "" + "Text Editor": "文字編輯器" }, "Text Rendering": { "Text Rendering": "文字渲染" @@ -7317,7 +7347,7 @@ "The job queue of this printer is empty": "此印表機的工作佇列為空" }, "The rule applies to any window matching one of these.": { - "The rule applies to any window matching one of these.": "" + "The rule applies to any window matching one of these.": "該規則適用於任何符合其中一項條件的視窗。" }, "Theme & Colors": { "Theme & Colors": "主題和顏色" @@ -7329,25 +7359,25 @@ "Theme Registry": "主題註冊" }, "Theme color used for the border": { - "Theme color used for the border": "" + "Theme color used for the border": "用於邊框的主題顏色" }, "Theme color used for the widget outline": { - "Theme color used for the widget outline": "" + "Theme color used for the widget outline": "用於小工具輪廓的主題顏色" }, "Theme worker failed (%1)": { - "Theme worker failed (%1)": "" + "Theme worker failed (%1)": "主題工作器失敗 (%1)" }, "Themes": { "Themes": "主題" }, "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": { - "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "" + "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": "這些會將項目新增至 XDG 自動啟動目錄 (~/.config/autostart/*.desktop)" }, "Thickness": { "Thickness": "粗細" }, "Thin": { - "Thin": "" + "Thin": "特細" }, "Third-Party Plugin Warning": { "Third-Party Plugin Warning": "第三方插件警告" @@ -7362,16 +7392,16 @@ "This device": "此裝置" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": "此安裝仍在使用 hyprland.conf。在編輯游標設定前,請執行 dms setup 進行遷移。" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": "此安裝仍在使用 hyprland.conf。在編輯顯示設定前,請執行 dms setup 進行遷移。" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": "此安裝仍在使用 hyprland.conf。在編輯設定中的快捷鍵前,請執行 dms setup 進行遷移。" }, "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "" + "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": "此安裝仍在使用 hyprland.conf。在編輯設定中的視窗規則前,請執行 dms setup 進行遷移。" }, "This may take a few seconds": { "This may take a few seconds": "這可能需要幾秒鐘" @@ -7434,7 +7464,7 @@ "Time remaining: %1": "剩餘時間:%1" }, "Time to wait before hiding after the pointer leaves": { - "Time to wait before hiding after the pointer leaves": "" + "Time to wait before hiding after the pointer leaves": "指標離開後隱藏前的等待時間" }, "Time until full: %1": { "Time until full: %1": "充滿電剩餘時間:%1" @@ -7460,6 +7490,9 @@ "Title": { "Title": "標題" }, + "Title (optional)": { + "Title (optional)": "" + }, "Title regex (optional)": { "Title regex (optional)": "標題正規表達式 (選用)" }, @@ -7467,7 +7500,7 @@ "To Full": "全部" }, "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": { - "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "" + "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "若要以不同使用者身分登入,請登出並從登入畫面選擇帳號。並行建立新的工作階段需要多重工作階段登入管理器(greetd-flexiserver / GDM / LightDM)。" }, "To update, run the following command:": { "To update, run the following command:": "若要更新,請執行以下命令:" @@ -7482,10 +7515,10 @@ "Today": "今天" }, "Toggle bar visibility manually via IPC": { - "Toggle bar visibility manually via IPC": "" + "Toggle bar visibility manually via IPC": "透過 IPC 手動切換工具列的可見度" }, "Toggle fonts": { - "Toggle fonts": "" + "Toggle fonts": "切換字體" }, "Toggle visibility of this bar configuration": { "Toggle visibility of this bar configuration": "切換此欄配置的可見性" @@ -7557,13 +7590,13 @@ "Transparency": "透明度" }, "Transparency of the border": { - "Transparency of the border": "" + "Transparency of the border": "邊框透明度" }, "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" + "Transparency of the shadow layer": "陰影層透明度" }, "Transparency of the widget outline": { - "Transparency of the widget outline": "" + "Transparency of the widget outline": "小工具輪廓透明度" }, "Trash": { "Trash": "垃圾桶" @@ -7572,7 +7605,7 @@ "Trash command failed (exit %1)": "垃圾桶指令失敗(返回碼 %1)" }, "Tray Icon Fix": { - "Tray Icon Fix": "" + "Tray Icon Fix": "系統匣圖示修復" }, "Trending GIFs": { "Trending GIFs": "熱門 GIF" @@ -7596,7 +7629,7 @@ "Try a different search": "嘗試不同的搜尋" }, "Try a different search or switch filters.": { - "Try a different search or switch filters.": "" + "Try a different search or switch filters.": "請嘗試其他搜尋方式或切換篩選條件。" }, "Turn off": { "Turn off": "關閉" @@ -7623,7 +7656,7 @@ "Type at least 2 characters": "請輸入至少 2 個字元" }, "Type at least 2 characters to search files.": { - "Type at least 2 characters to search files.": "" + "Type at least 2 characters to search files.": "請輸入至少 2 個字元來搜尋檔案。" }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "輸入此前綴以搜尋快捷鍵" @@ -7641,7 +7674,7 @@ "Unavailable": "不可用" }, "Uncategorized": { - "Uncategorized": "" + "Uncategorized": "未分類" }, "Unfocused Color": { "Unfocused Color": "未聚焦顏色" @@ -7737,7 +7770,7 @@ "Unsaved note...": "未儲存筆記..." }, "Unset": { - "Unset": "" + "Unset": "取消設定" }, "Until %1": { "Until %1": "直到 %1" @@ -7770,7 +7803,7 @@ "Update Plugin": "更新插件" }, "Update failed: %1": { - "Update failed: %1": "" + "Update failed: %1": "更新失敗:%1" }, "Upgrading...": { "Upgrading...": "正在升級..." @@ -7782,7 +7815,7 @@ "Uptime:": "開機時間:" }, "Urgent": { - "Urgent": "" + "Urgent": "緊急" }, "Urgent Color": { "Urgent Color": "緊急顏色" @@ -7815,7 +7848,7 @@ "Use Monospace Font": "使用等寬字體" }, "Use Overlay Layer": { - "Use Overlay Layer": "" + "Use Overlay Layer": "使用覆蓋層" }, "Use System Theme": { "Use System Theme": "使用系統主題" @@ -7824,7 +7857,7 @@ "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "為登入畫面使用自訂圖片,或留空以使用您的桌面背景。" }, "Use a custom radius for goth corner cutouts": { - "Use a custom radius for goth corner cutouts": "" + "Use a custom radius for goth corner cutouts": "使用自訂半徑進行哥德式圓角切割" }, "Use a fixed shadow direction for this bar": { "Use a fixed shadow direction for this bar": "為此列使用固定陰影方向" @@ -7850,9 +7883,6 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "使用自訂視窗圓角而非主題圓角" }, - "Use custom window rounding instead of theme radius": { - "Use custom window rounding instead of theme radius": "使用自訂視窗圓角而非主題半徑" - }, "Use desktop wallpaper": { "Use desktop wallpaper": "使用桌面背景" }, @@ -7860,7 +7890,7 @@ "Use fingerprint authentication for the lock screen.": "使用指紋驗證鎖定螢幕。" }, "Use keys 1-3 or arrows, Enter/Space to select": { - "Use keys 1-3 or arrows, Enter/Space to select": "" + "Use keys 1-3 or arrows, Enter/Space to select": "使用鍵盤 1-3 或方向鍵,按 Enter/Space 進行選擇" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "使用淺色主題而不是深色主題" @@ -7878,7 +7908,7 @@ "Use the extended surface for launcher content": "使用延伸表面作為啟動器內容" }, "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "" + "Use the overlay layer when opening the launcher": "開啟啟動器時使用覆蓋層" }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "在所有螢幕上使用相同的位置與大小" @@ -7887,7 +7917,7 @@ "Use trigger prefix to activate": "使用觸發前綴啟用" }, "Used for xdg-terminal-exec": { - "Used for xdg-terminal-exec": "" + "Used for xdg-terminal-exec": "用於 xdg-terminal-exec" }, "Used when accent color is set to Custom": { "Used when accent color is set to Custom": "當強調色設為自訂時使用" @@ -7896,40 +7926,40 @@ "User": "使用者" }, "User Window Rules (%1)": { - "User Window Rules (%1)": "" + "User Window Rules (%1)": "使用者視窗規則 (%1)" }, "User already exists": { - "User already exists": "" + "User already exists": "使用者已存在" }, "User created": { - "User created": "" + "User created": "使用者已建立" }, "User created with administrator and greeter login access": { - "User created with administrator and greeter login access": "" + "User created with administrator and greeter login access": "使用者建立成功,具有管理員及登入畫面存取權" }, "User created with administrator privileges": { - "User created with administrator privileges": "" + "User created with administrator privileges": "使用者建立成功,具有管理員權限" }, "User created with greeter login access": { - "User created with greeter login access": "" + "User created with greeter login access": "使用者建立成功,具有登入畫面存取權" }, "User deleted": { - "User deleted": "" + "User deleted": "使用者已刪除" }, "User not found": { - "User not found": "" + "User not found": "找不到使用者" }, "Username": { "Username": "使用者名稱" }, "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": { - "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "" + "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "使用者名稱必須以小寫字母或底線開頭,且只能包含小寫字母、數字、連字號或底線。" }, "Username...": { "Username...": "使用者名稱..." }, "Users": { - "Users": "" + "Users": "使用者" }, "Uses sunrise/sunset times based on your location.": { "Uses sunrise/sunset times based on your location.": "依據您的位置使用日出/日落時間。" @@ -7938,10 +7968,10 @@ "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "使用根據您的位置日出/日落時間自動調整夜間模式。" }, "Uses the spotlight-bar IPC action and always opens the minimal bar.": { - "Uses the spotlight-bar IPC action and always opens the minimal bar.": "" + "Uses the spotlight-bar IPC action and always opens the minimal bar.": "使用 spotlight-bar IPC 動作並始終開啟簡約工具列。" }, "Using global monospace font from Settings → Personalization": { - "Using global monospace font from Settings → Personalization": "" + "Using global monospace font from Settings → Personalization": "使用來自「設定」→「個人化」的全域等寬字體" }, "Using shared settings from Gamma Control": { "Using shared settings from Gamma Control": "使用 Gamma Control 的共享設定" @@ -7961,9 +7991,6 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 設定已更新" }, - "VPN connections": { - "VPN connections": "VPN 連線" - }, "VPN deleted": { "VPN deleted": "VPN 已刪除" }, @@ -8007,7 +8034,7 @@ "Vertical Tiling": "垂直平鋪" }, "Very High": { - "Very High": "" + "Very High": "非常高" }, "Vibrant": { "Vibrant": "鮮豔" @@ -8019,7 +8046,7 @@ "Video Path": "影片路徑" }, "Video Player": { - "Video Player": "" + "Video Player": "影片播放器" }, "Video Screensaver": { "Video Screensaver": "影片螢幕保護程式" @@ -8097,7 +8124,7 @@ "Weather Widget": "天氣部件" }, "Web Browser": { - "Web Browser": "" + "Web Browser": "網頁瀏覽器" }, "Welcome": { "Welcome": "歡迎" @@ -8112,7 +8139,7 @@ "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "啟用後,應用程式將按字母順序排序。禁用後,應用程式將按使用頻率排序。" }, "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": { - "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": "" + "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": "啟用後,將於啟動時檢查更新。停用後,僅在上述時間間隔或手動重新整理時執行檢查。" }, "When locked": { "When locked": "鎖定時" @@ -8177,6 +8204,9 @@ "Widgets": { "Widgets": "小工具" }, + "Widgets & Notifications": { + "Widgets & Notifications": "" + }, "Widgets, layout, style": { "Widgets, layout, style": "小工具、版面配置、樣式" }, @@ -8184,16 +8214,13 @@ "Width": "寬度" }, "Width of the border in pixels": { - "Width of the border in pixels": "" + "Width of the border in pixels": "邊框寬度(像素)" }, "Width of the widget outline in pixels": { - "Width of the widget outline in pixels": "" + "Width of the widget outline in pixels": "小工具輪廓寬度(像素)" }, - "Width of window border (borderpx)": { - "Width of window border (borderpx)": "視窗邊框寬度 (borderpx)" - }, - "Width of window border (general.border_size)": { - "Width of window border (general.border_size)": "視窗邊框寬度 (general.border_size)" + "Width of window border": { + "Width of window border": "" }, "Width of window border and focus ring": { "Width of window border and focus ring": "視窗邊框與焦點環寬度" @@ -8222,9 +8249,6 @@ "Window Opening": { "Window Opening": "視窗開啟" }, - "Window Rounding": { - "Window Rounding": "視窗圓角" - }, "Window Rules": { "Window Rules": "視窗規則" }, @@ -8237,8 +8261,8 @@ "Wipe": { "Wipe": "清除" }, - "Working…": { - "Working…": "" + "Working...": { + "Working...": "" }, "Workspace": { "Workspace": "工作區" @@ -8267,26 +8291,29 @@ "Workspaces": { "Workspaces": "工作區" }, - "Workspaces & Widgets": { - "Workspaces & Widgets": "工作區與小工具" - }, "Wrap the app command. %command% is replaced with the actual executable": { - "Wrap the app command. %command% is replaced with the actual executable": "" + "Wrap the app command. %command% is replaced with the actual executable": "包裹應用程式指令。%command% 會被替換為實際的可執行檔" }, "Write:": { "Write:": "寫入:" }, + "X": { + "X": "" + }, "X Axis": { "X Axis": "X 軸" }, "X-Ray": { - "X-Ray": "" + "X-Ray": "X-Ray" }, "XWayland": { - "XWayland": "" + "XWayland": "XWayland" }, "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": { - "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "" + "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": "Xray 僅模糊壁紙(高效能),這是啟用模糊時的預設值。若要對視窗下方的所有內容進行常規全模糊(效能消耗較高),請將 Xray 設為關閉。" + }, + "Y": { + "Y": "" }, "Y Axis": { "Y Axis": "Y 軸" @@ -8313,16 +8340,16 @@ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "您需要設定以下其中一個環境變數並重新啟動 shell:\nQT_QPA_PLATFORMTHEME=gtk3 或\nQT_QPA_PLATFORMTHEME=qt6ct\n\nqt6ct 需要安裝 qt6ct-kde。" }, "You'll enter your password at the greeter after the next reboot.": { - "You'll enter your password at the greeter after the next reboot.": "" + "You'll enter your password at the greeter after the next reboot.": "您將在下次重啟後的歡迎介面輸入密碼。" }, "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": { - "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "" + "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": "您將在下次重啟後跳過歡迎介面密碼。鎖定螢幕與登出仍需輸入密碼。" }, "You're All Set!": { "You're All Set!": "一切就緒!" }, "Your compositor does not support background blur (ext-background-effect-v1)": { - "Your compositor does not support background blur (ext-background-effect-v1)": "" + "Your compositor does not support background blur (ext-background-effect-v1)": "您的合成器不支援背景模糊 (ext-background-effect-v1)" }, "Your system is up to date!": { "Your system is up to date!": "您的系統是最新版本!" @@ -8331,7 +8358,7 @@ "actions": "動作" }, "admin": { - "admin": "" + "admin": "管理員" }, "attached": { "attached": "已附加" @@ -8370,13 +8397,13 @@ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs 組態存在,但未包含在您的合成器組態中。顯示變更將不會保留。" }, "e.g. /usr/bin/my-script --flag": { - "e.g. /usr/bin/my-script --flag": "" + "e.g. /usr/bin/my-script --flag": "例如:/usr/bin/my-script --flag" }, "e.g. My Script": { - "e.g. My Script": "" + "e.g. My Script": "例如:我的指令稿" }, "e.g. alice": { - "e.g. alice": "" + "e.g. alice": "例如:alice" }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "例如,firefox, kitty --title foo" @@ -8385,7 +8412,7 @@ "e.g., focus-workspace 3, resize-column -10": "例如,focus-workspace 3, resize-column -10" }, "e.g., hl.dsp.focus({ workspace = \"3\" })": { - "e.g., hl.dsp.focus({ workspace = \"3\" })": "" + "e.g., hl.dsp.focus({ workspace = \"3\" })": "例如:hl.dsp.focus({ workspace = \"3\" })" }, "e.g., notify-send 'Hello' && sleep 1": { "e.g., notify-send 'Hello' && sleep 1": "例如:notify-send 'Hello' && sleep 1" @@ -8393,9 +8420,6 @@ "e.g., scratch, /^tmp_.*/, build": { "e.g., scratch, /^tmp_.*/, build": "例如:scratch, /^tmp_.*/, build" }, - "events": { - "events": "活動" - }, "ext": { "ext": "外部" }, @@ -8409,11 +8433,17 @@ "leave empty for default": "留空以使用預設值" }, "loginctl activate failed (exit %1)": { - "loginctl activate failed (exit %1)": "" + "loginctl activate failed (exit %1)": "loginctl 啟動失敗(結束代碼 %1)" }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 鎖定整合需要 DMS 套接字連接" }, + "mango: config reloaded": { + "mango: config reloaded": "" + }, + "mango: failed to reload config": { + "mango: failed to reload config": "" + }, "mangowc Discord Server": { "mangowc Discord Server": "mangowc Discord 伺服器" }, @@ -8421,10 +8451,10 @@ "mangowc GitHub": "mangowc GitHub" }, "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "" + "matugen not available or disabled - cannot apply GTK colors": "matugen 無法使用或已停用 - 無法套用 GTK 顏色" }, "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply Qt colors": "matugen 無法使用或已停用 - 無法套用 Qt 顏色" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "找不到 matugen - 請安裝 matugen 套件以實現動態主題" @@ -8451,10 +8481,10 @@ "niri/dms Discord": "niri/dms Discord" }, "niri: config reloaded": { - "niri: config reloaded": "" + "niri: config reloaded": "niri:設定已重新載入" }, "niri: failed to load config": { - "niri: failed to load config": "" + "niri: failed to load config": "niri:設定載入失敗" }, "now": { "now": "現在" @@ -8499,13 +8529,13 @@ "relay: %1": "中繼:%1" }, "remote": { - "remote": "" + "remote": "遠端" }, "seconds": { "seconds": "秒" }, "session %1": { - "session %1": "" + "session %1": "工作階段 %1" }, "source": { "source": "來源" @@ -8523,13 +8553,13 @@ "update dms for NM integration.": "更新 dms 以進行 NM 整合。" }, "useradd failed (exit %1)": { - "useradd failed (exit %1)": "" + "useradd failed (exit %1)": "useradd 失敗(結束代碼 %1)" }, "userdel failed (exit %1)": { - "userdel failed (exit %1)": "" + "userdel failed (exit %1)": "userdel 失敗(結束代碼 %1)" }, "usermod failed (exit %1)": { - "usermod failed (exit %1)": "" + "usermod failed (exit %1)": "usermod 失敗(結束代碼 %1)" }, "v%1 by %2": { "v%1 by %2": "v%1 由 %2" @@ -8580,9 +8610,9 @@ "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: 導航 • 空格鍵: 展開 • Enter: 動作/展開 • E: 文字" }, "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": { - "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "" + "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓:導航 • Enter/Ctrl+C:複製 • Del:刪除 • Ctrl+E:編輯 • Ctrl+S:釘選/取消釘選 • F10:說明" }, "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": { - "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "" + "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓:導航 • Enter:貼上 • Ctrl+C:複製 • Del:刪除 • Ctrl+E:編輯 • Ctrl+S:釘選/取消釘選 • F10:說明" } } diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index 824ae9b9..b83a7356 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -849,142 +849,27 @@ "visibility", "visible" ], - "icon": "visibility_off", + "icon": "visibility", "description": "Automatically hide the bar when the pointer moves away" }, - { - "section": "niriLayoutBorderSize", - "label": "Border Size", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "floating", - "focus", - "fullscreen", - "gaps", - "matching", - "niri", - "opacity", - "override", - "overrides", - "ring", - "rules", - "size", - "spaces", - "virtual desktops", - "width", - "window" - ], - "description": "Width of window border and focus ring" - }, - { - "section": "hyprlandLayoutBorderSize", - "label": "Border Size", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "floating", - "fullscreen", - "gaps", - "hyprland", - "matching", - "opacity", - "override", - "overrides", - "rules", - "size", - "spaces", - "virtual desktops", - "width", - "window" - ], - "description": "Width of window border (general.border_size)" - }, - { - "section": "mangoLayoutBorderSize", - "label": "Border Size", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "floating", - "fullscreen", - "gaps", - "mango", - "mangowc", - "matching", - "opacity", - "override", - "overrides", - "rules", - "size", - "spaces", - "virtual desktops", - "width", - "window" - ], - "description": "Width of window border (borderpx)" - }, - { - "section": "_tab_4", - "label": "Compositor", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner rounding", - "floating", - "fullscreen", - "gaps", - "matching", - "opacity", - "overrides", - "rules", - "spaces", - "virtual desktops", - "window" - ], - "icon": "layers", - "conditionKey": "keybindsAvailable" - }, { "section": "workspaceDragReorder", "label": "Drag to Reorder", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", "drag", - "floating", - "fullscreen", - "gaps", "indicators", - "matching", "move", - "opacity", - "overrides", + "panel", "reorder", - "rules", "sort", - "spaces", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Drag workspace indicators to reorder them", @@ -994,30 +879,22 @@ "section": "workspaceFollowFocus", "label": "Follow Monitor Focus", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ - "borders", - "compositor", - "corner rounding", + "bar", "currently", + "dank", "desktop", "desktops", - "floating", "focus", "focused", "follow", - "fullscreen", - "gaps", - "matching", "monitor", - "opacity", - "overrides", - "rules", + "panel", "show", - "spaces", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace", "workspaces" ], @@ -1028,33 +905,25 @@ "section": "groupActiveWorkspaceApps", "label": "Group Active Workspace", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "active", "app", "application", "apps", - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", - "floating", "focused", - "fullscreen", - "gaps", "group", "grouped", "icons", - "matching", - "opacity", - "overrides", + "panel", "program", "repeated", - "rules", - "spaces", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Also group repeated application icons on the active workspace" @@ -1063,34 +932,26 @@ "section": "groupWorkspaceApps", "label": "Group Workspace Apps", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "app", "application", "apps", - "borders", + "bar", "collapse", - "compositor", - "corner rounding", + "dank", "desktop", "desktops", - "floating", - "fullscreen", - "gaps", "group", "grouped", "icons", - "matching", - "opacity", - "overrides", + "panel", "program", "repeated", - "rules", - "spaces", + "statusbar", + "topbar", "unfocused", "virtual", - "virtual desktops", - "window", "workspace", "workspaces" ], @@ -1100,542 +961,69 @@ "section": "workspaceActiveAppHighlightEnabled", "label": "Highlight Active Workspace App", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "active", "app", "apps", - "borders", - "compositor", - "corner rounding", + "bar", "currently", + "dank", "day", "desktop", - "floating", "focused", - "fullscreen", - "gaps", "highlight", "icons", "indicators", "inside", "light mode", - "matching", - "opacity", - "overrides", - "rules", - "spaces", + "panel", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Highlight the currently focused app inside workspace indicators" }, - { - "section": "hyprlandLayout", - "label": "Hyprland Layout Overrides", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gap", - "gaps", - "hyprland", - "layout", - "margin", - "margins", - "matching", - "opacity", - "overrides", - "padding", - "panel", - "radius", - "rounding", - "rules", - "spaces", - "spacing", - "statusbar", - "taskbar", - "topbar", - "virtual desktops", - "window" - ], - "icon": "crop_square", - "description": "Use custom gaps instead of bar spacing", - "conditionKey": "isHyprland" - }, - { - "section": "mangoLayout", - "label": "MangoWC Layout Overrides", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "custom", - "dwl", - "floating", - "fullscreen", - "gap", - "gaps", - "layout", - "mango", - "mangowc", - "margin", - "margins", - "matching", - "opacity", - "overrides", - "padding", - "panel", - "radius", - "rules", - "spaces", - "spacing", - "statusbar", - "taskbar", - "topbar", - "virtual desktops", - "window" - ], - "icon": "crop_square", - "description": "Use custom gaps instead of bar spacing", - "conditionKey": "isDwl" - }, { "section": "workspaceIcons", "label": "Named Workspace Icons", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", - "floating", - "fullscreen", - "gaps", "icons", - "matching", "named", - "opacity", - "overrides", - "rules", - "spaces", + "panel", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "icon": "label" }, - { - "section": "niriLayout", - "label": "Niri Layout Overrides", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gap", - "gaps", - "layout", - "margin", - "margins", - "matching", - "niri", - "opacity", - "overrides", - "padding", - "panel", - "radius", - "rules", - "spaces", - "spacing", - "statusbar", - "taskbar", - "topbar", - "virtual desktops", - "window" - ], - "icon": "crop_square", - "description": "Use custom gaps instead of bar spacing", - "conditionKey": "isNiri" - }, - { - "section": "niriLayoutBorderSizeEnabled", - "label": "Override Border Size", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "focus", - "fullscreen", - "gaps", - "matching", - "niri", - "opacity", - "override", - "overrides", - "ring", - "rules", - "size", - "spaces", - "virtual desktops", - "width", - "window" - ], - "description": "Use custom border/focus-ring width" - }, - { - "section": "hyprlandLayoutBorderSizeEnabled", - "label": "Override Border Size", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gaps", - "hyprland", - "matching", - "opacity", - "override", - "overrides", - "rules", - "size", - "spaces", - "virtual desktops", - "window" - ], - "description": "Use custom border size" - }, - { - "section": "mangoLayoutBorderSizeEnabled", - "label": "Override Border Size", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gaps", - "mango", - "mangowc", - "matching", - "opacity", - "override", - "overrides", - "rules", - "size", - "spaces", - "virtual desktops", - "window" - ], - "description": "Use custom border size" - }, - { - "section": "niriLayoutRadiusOverrideEnabled", - "label": "Override Corner Radius", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "appearance", - "borders", - "colors", - "colour", - "compositor", - "corner", - "corner rounding", - "corners", - "custom", - "floating", - "fullscreen", - "gaps", - "look", - "matching", - "niri", - "opacity", - "override", - "overrides", - "radius", - "round", - "rounded", - "rules", - "spaces", - "style", - "theme", - "virtual desktops", - "window" - ], - "description": "Use custom window radius instead of theme radius" - }, - { - "section": "hyprlandLayoutRadiusOverrideEnabled", - "label": "Override Corner Radius", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "appearance", - "borders", - "colors", - "colour", - "compositor", - "corner", - "corner rounding", - "corners", - "custom", - "floating", - "fullscreen", - "gaps", - "hyprland", - "look", - "matching", - "opacity", - "override", - "overrides", - "radius", - "round", - "rounded", - "rounding", - "rules", - "spaces", - "style", - "theme", - "virtual desktops", - "window" - ], - "description": "Use custom window rounding instead of theme radius" - }, - { - "section": "mangoLayoutRadiusOverrideEnabled", - "label": "Override Corner Radius", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "appearance", - "borders", - "colors", - "colour", - "compositor", - "corner", - "corner rounding", - "corners", - "custom", - "floating", - "fullscreen", - "gaps", - "look", - "mango", - "mangowc", - "matching", - "opacity", - "override", - "overrides", - "radius", - "round", - "rounded", - "rules", - "spaces", - "style", - "theme", - "virtual desktops", - "window" - ], - "description": "Use custom window radius instead of theme radius" - }, - { - "section": "niriLayoutGapsOverrideEnabled", - "label": "Override Gaps", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gap", - "gaps", - "margin", - "margins", - "matching", - "niri", - "opacity", - "override", - "overrides", - "padding", - "panel", - "rules", - "spaces", - "spacing", - "statusbar", - "taskbar", - "topbar", - "virtual desktops", - "window" - ], - "description": "Use custom gaps instead of bar spacing" - }, - { - "section": "hyprlandLayoutGapsOverrideEnabled", - "label": "Override Gaps", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gap", - "gaps", - "hyprland", - "margin", - "margins", - "matching", - "opacity", - "override", - "overrides", - "padding", - "panel", - "rules", - "spaces", - "spacing", - "statusbar", - "taskbar", - "topbar", - "virtual desktops", - "window" - ], - "description": "Use custom gaps instead of bar spacing" - }, - { - "section": "mangoLayoutGapsOverrideEnabled", - "label": "Override Gaps", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner rounding", - "custom", - "floating", - "fullscreen", - "gap", - "gaps", - "mango", - "mangowc", - "margin", - "margins", - "matching", - "opacity", - "override", - "overrides", - "padding", - "panel", - "rules", - "spaces", - "spacing", - "statusbar", - "taskbar", - "topbar", - "virtual desktops", - "window" - ], - "description": "Use custom gaps instead of bar spacing" - }, - { - "section": "hyprlandResizeOnBorder", - "label": "Resize on Border", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "border", - "borders", - "compositor", - "corner rounding", - "drag", - "dragging", - "edges", - "floating", - "fullscreen", - "gaps", - "hyprland", - "matching", - "mouse", - "opacity", - "overrides", - "resize", - "rules", - "spaces", - "their", - "virtual desktops", - "window", - "windows" - ], - "description": "Resize windows by dragging their edges with the mouse" - }, { "section": "reverseScrolling", "label": "Reverse Scrolling Direction", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", "direction", - "floating", - "fullscreen", - "gaps", - "matching", - "opacity", "over", - "overrides", "panel", "reverse", - "rules", "scroll", "scrolling", - "spaces", "statusbar", "switch", "taskbar", "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Reverse workspace switch direction when scrolling over the bar", @@ -1645,61 +1033,45 @@ "section": "dwlShowAllTags", "label": "Show All Tags", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "all", - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "dwl", - "floating", - "fullscreen", - "gaps", - "matching", "occupied", - "opacity", - "overrides", - "rules", + "panel", "show", - "spaces", + "statusbar", "tags", - "virtual desktops", - "window", + "topbar", "workspace" ], "description": "Show all 9 tags instead of only occupied tags", - "conditionKey": "isDwl" + "conditionKey": "isMango" }, { "section": "showOccupiedWorkspacesOnly", "label": "Show Occupied Workspaces Only", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "active", - "borders", - "compositor", + "bar", "contain", - "corner rounding", + "dank", "desktop", "desktops", "display", - "floating", - "fullscreen", - "gaps", - "matching", "monitor", "occupied", - "opacity", "output", - "overrides", - "rules", + "panel", "screen", "show", - "spaces", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "windows", "workspace", "workspaces" @@ -1711,270 +1083,51 @@ "section": "showWorkspaceApps", "label": "Show Workspace Apps", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "app", "application", "applications", "apps", - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", "display", - "floating", - "fullscreen", - "gaps", "icons", "indicators", - "matching", "monitor", - "opacity", "output", - "overrides", + "panel", "program", - "rules", "screen", "show", - "spaces", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Display application icons in workspace indicators", "conditionKey": "isNiri" }, - { - "section": "niriLayoutRadiusOverride", - "label": "Window Corner Radius", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner", - "corner rounding", - "corners", - "floating", - "fullscreen", - "gaps", - "matching", - "niri", - "opacity", - "override", - "overrides", - "radius", - "round", - "rounded", - "rules", - "spaces", - "virtual desktops", - "window", - "windows" - ], - "description": "Rounded corners for windows" - }, - { - "section": "mangoLayoutRadiusOverride", - "label": "Window Corner Radius", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner", - "corner rounding", - "corners", - "floating", - "fullscreen", - "gaps", - "mango", - "mangowc", - "matching", - "opacity", - "override", - "overrides", - "radius", - "round", - "rounded", - "rules", - "spaces", - "virtual desktops", - "window", - "windows" - ], - "description": "Rounded corners for windows (border_radius)" - }, - { - "section": "niriLayoutGapsOverride", - "label": "Window Gaps", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "between", - "borders", - "compositor", - "corner rounding", - "floating", - "fullscreen", - "gaps", - "matching", - "niri", - "opacity", - "override", - "overrides", - "rules", - "space", - "spaces", - "virtual desktops", - "window", - "windows" - ], - "description": "Space between windows" - }, - { - "section": "hyprlandLayoutGapsOverride", - "label": "Window Gaps", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "between", - "borders", - "compositor", - "corner rounding", - "floating", - "fullscreen", - "gaps", - "hyprland", - "matching", - "opacity", - "override", - "overrides", - "rules", - "space", - "spaces", - "virtual desktops", - "window", - "windows" - ], - "description": "Space between windows (gaps_in and gaps_out)" - }, - { - "section": "mangoLayoutGapsOverride", - "label": "Window Gaps", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "between", - "borders", - "compositor", - "corner rounding", - "floating", - "fullscreen", - "gappiv", - "gappoh", - "gaps", - "mango", - "mangowc", - "matching", - "opacity", - "override", - "overrides", - "rules", - "space", - "spaces", - "virtual desktops", - "window", - "windows" - ], - "description": "Space between windows (gappih/gappiv/gappoh/gappov)" - }, - { - "section": "hyprlandLayoutRadiusOverride", - "label": "Window Rounding", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "borders", - "compositor", - "corner rounding", - "corners", - "floating", - "fullscreen", - "gaps", - "hyprland", - "matching", - "opacity", - "override", - "overrides", - "radius", - "round", - "rounded", - "rounding", - "rules", - "spaces", - "virtual desktops", - "window", - "windows" - ], - "description": "Rounded corners for windows (decoration.rounding)" - }, - { - "section": "windowRules", - "label": "Window Rules", - "tabIndex": 4, - "category": "Compositor", - "keywords": [ - "behavior", - "borders", - "compositor", - "corner rounding", - "define", - "floating", - "fullscreen", - "gaps", - "matching", - "opacity", - "overrides", - "rules", - "spaces", - "virtual desktops", - "window" - ], - "icon": "select_window", - "description": "Define compositor rules for window behavior" - }, { "section": "showWorkspaceIndex", "label": "Workspace Index Numbers", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", - "floating", - "fullscreen", - "gaps", "index", "labels", - "matching", "numbers", - "opacity", - "overrides", "panel", - "rules", "show", - "spaces", "statusbar", "switcher", "taskbar", "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Show workspace index numbers in the top bar workspace switcher" @@ -1983,36 +1136,25 @@ "section": "showWorkspaceName", "label": "Workspace Names", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ + "bar", "bars", - "borders", - "compositor", - "corner rounding", + "dank", "desktop", "first", - "floating", - "fullscreen", - "gaps", "horizontal", "labels", "letter", - "matching", "name", "names", - "opacity", - "overrides", "panel", - "rules", "show", - "spaces", "statusbar", "taskbar", "topbar", "vertical", "virtual", - "virtual desktops", - "window", "workspace" ], "description": "Show workspace name on horizontal bars, and first letter on vertical bars" @@ -2021,31 +1163,23 @@ "section": "showWorkspacePadding", "label": "Workspace Padding", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ "always", "available", - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", "desktops", "even", "fewer", - "floating", - "fullscreen", - "gaps", - "matching", "minimum", - "opacity", - "overrides", "padding", - "rules", + "panel", "show", - "spaces", + "statusbar", + "topbar", "virtual", - "virtual desktops", - "window", "workspace", "workspaces" ], @@ -2055,39 +1189,47 @@ "section": "workspaceSettings", "label": "Workspace Settings", "tabIndex": 4, - "category": "Compositor", + "category": "Dank Bar", "keywords": [ - "borders", - "compositor", - "corner rounding", + "bar", + "dank", "desktop", - "floating", - "fullscreen", - "gaps", "index", "labels", - "matching", "numbers", - "opacity", - "overrides", "panel", - "rules", "settings", "show", - "spaces", "statusbar", "switcher", "taskbar", "topbar", "virtual", - "virtual desktops", - "window", "workspace" ], "icon": "view_module", "description": "Show workspace index numbers in the top bar workspace switcher", "conditionKey": "isNiri" }, + { + "section": "_tab_4", + "label": "Workspaces", + "tabIndex": 4, + "category": "Dank Bar", + "keywords": [ + "bar", + "dank", + "desktop", + "desktops", + "panel", + "statusbar", + "topbar", + "virtual", + "workspace", + "workspaces" + ], + "icon": "view_module" + }, { "section": "dockAutoHide", "label": "Auto-hide Dock", @@ -2960,7 +2102,8 @@ "workspace" ], "icon": "palette", - "description": "Show an outline ring around the focused workspace indicator" + "description": "Show an outline ring around the focused workspace indicator", + "conditionKey": "isNiri" }, { "section": "_tab_7", @@ -4528,7 +3671,8 @@ "touchpad", "trackpad" ], - "description": "Invert touchpad scroll direction" + "description": "Invert touchpad scroll direction", + "conditionKey": "isMango" }, { "section": "popoutElevationEnabled", @@ -4691,32 +3835,6 @@ ], "description": "Material inspired shadows and elevation on modals, popouts, and dialogs" }, - { - "section": "popupTransparency", - "label": "Surface Opacity", - "tabIndex": 10, - "category": "Theme & Colors", - "keywords": [ - "appearance", - "colors", - "content", - "controls", - "layers", - "look", - "modal", - "modals", - "opacity", - "popouts", - "popup", - "scheme", - "style", - "surface", - "their", - "theme", - "transparency" - ], - "description": "Controls opacity of all popouts, modals, and their content layers" - }, { "section": "syncModeWithPortal", "label": "Sync Mode with Portal", @@ -4848,6 +3966,35 @@ "icon": "palette", "description": "Select the palette algorithm used for wallpaper-based colors" }, + { + "section": "popupTransparency", + "label": "Transparency", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "alpha", + "appearance", + "colors", + "content", + "controls", + "layers", + "look", + "modal", + "modals", + "opacity", + "popouts", + "popup", + "scheme", + "style", + "surface", + "their", + "theme", + "translucent", + "transparency", + "transparent" + ], + "description": "Controls opacity of all popouts, modals, and their content layers" + }, { "section": "matugenTemplateVscode", "label": "VS Code", @@ -5416,27 +4563,6 @@ ], "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", @@ -7571,6 +6697,27 @@ "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", @@ -9093,5 +8240,585 @@ "startup" ], "icon": "line_start" + }, + { + "section": "niriLayoutBorderSize", + "label": "Border Size", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "focus", + "niri", + "override", + "personal", + "personalization", + "ring", + "size", + "width", + "window" + ], + "description": "Width of window border and focus ring" + }, + { + "section": "hyprlandLayoutBorderSize", + "label": "Border Size", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "hyprland", + "override", + "personal", + "personalization", + "size", + "width", + "window" + ], + "description": "Width of window border" + }, + { + "section": "mangoLayoutBorderSize", + "label": "Border Size", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "mango", + "mangowc", + "override", + "personal", + "personalization", + "size", + "width", + "window" + ], + "description": "Width of window border" + }, + { + "section": "hyprlandLayout", + "label": "Hyprland Layout Overrides", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "gap", + "gaps", + "hyprland", + "layout", + "margin", + "margins", + "overrides", + "padding", + "panel", + "personal", + "personalization", + "radius", + "rounding", + "spacing", + "statusbar", + "taskbar", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Use custom gaps instead of bar spacing", + "conditionKey": "isHyprland" + }, + { + "section": "mangoLayout", + "label": "MangoWC Layout Overrides", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "dwl", + "gap", + "gaps", + "layout", + "mango", + "mangowc", + "margin", + "margins", + "overrides", + "padding", + "panel", + "personal", + "personalization", + "radius", + "spacing", + "statusbar", + "taskbar", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Use custom gaps instead of bar spacing", + "conditionKey": "isMango" + }, + { + "section": "niriLayout", + "label": "Niri Layout Overrides", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "gap", + "gaps", + "layout", + "margin", + "margins", + "niri", + "overrides", + "padding", + "panel", + "personal", + "personalization", + "radius", + "spacing", + "statusbar", + "taskbar", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Use custom gaps instead of bar spacing", + "conditionKey": "isNiri" + }, + { + "section": "niriLayoutBorderSizeEnabled", + "label": "Override Border Size", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "focus", + "niri", + "override", + "personal", + "personalization", + "ring", + "size", + "width" + ], + "description": "Use custom border/focus-ring width" + }, + { + "section": "hyprlandLayoutBorderSizeEnabled", + "label": "Override Border Size", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "hyprland", + "override", + "personal", + "personalization", + "size" + ], + "description": "Use custom border size" + }, + { + "section": "mangoLayoutBorderSizeEnabled", + "label": "Override Border Size", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "mango", + "mangowc", + "override", + "personal", + "personalization", + "size" + ], + "description": "Use custom border size" + }, + { + "section": "niriLayoutRadiusOverrideEnabled", + "label": "Override Corner Radius", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "colors", + "colour", + "corner", + "corners", + "custom", + "customize", + "look", + "niri", + "override", + "personal", + "personalization", + "radius", + "round", + "rounded", + "style", + "theme", + "window" + ], + "description": "Use custom window radius instead of theme radius" + }, + { + "section": "hyprlandLayoutRadiusOverrideEnabled", + "label": "Override Corner Radius", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "colors", + "colour", + "corner", + "corners", + "custom", + "customize", + "hyprland", + "look", + "override", + "personal", + "personalization", + "radius", + "round", + "rounded", + "rounding", + "style", + "theme", + "window" + ], + "description": "Use custom window radius instead of theme radius" + }, + { + "section": "mangoLayoutRadiusOverrideEnabled", + "label": "Override Corner Radius", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "colors", + "colour", + "corner", + "corners", + "custom", + "customize", + "look", + "mango", + "mangowc", + "override", + "personal", + "personalization", + "radius", + "round", + "rounded", + "style", + "theme", + "window" + ], + "description": "Use custom window radius instead of theme radius" + }, + { + "section": "niriLayoutGapsOverrideEnabled", + "label": "Override Gaps", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "custom", + "customize", + "gap", + "gaps", + "margin", + "margins", + "niri", + "override", + "padding", + "panel", + "personal", + "personalization", + "spacing", + "statusbar", + "taskbar", + "topbar" + ], + "description": "Use custom gaps instead of bar spacing" + }, + { + "section": "hyprlandLayoutGapsOverrideEnabled", + "label": "Override Gaps", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "custom", + "customize", + "gap", + "gaps", + "hyprland", + "margin", + "margins", + "override", + "padding", + "panel", + "personal", + "personalization", + "spacing", + "statusbar", + "taskbar", + "topbar" + ], + "description": "Use custom gaps instead of bar spacing" + }, + { + "section": "mangoLayoutGapsOverrideEnabled", + "label": "Override Gaps", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "custom", + "customize", + "gap", + "gaps", + "mango", + "mangowc", + "margin", + "margins", + "override", + "padding", + "panel", + "personal", + "personalization", + "spacing", + "statusbar", + "taskbar", + "topbar" + ], + "description": "Use custom gaps instead of bar spacing" + }, + { + "section": "hyprlandResizeOnBorder", + "label": "Resize on Border", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "border", + "custom", + "customize", + "drag", + "dragging", + "edges", + "hyprland", + "mouse", + "personal", + "personalization", + "resize", + "their", + "windows" + ], + "description": "Resize windows by dragging their edges with the mouse" + }, + { + "section": "niriLayoutRadiusOverride", + "label": "Window Corner Radius", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "corner", + "corners", + "custom", + "customize", + "niri", + "override", + "personal", + "personalization", + "radius", + "round", + "rounded", + "window", + "windows" + ], + "description": "Rounded corners for windows" + }, + { + "section": "hyprlandLayoutRadiusOverride", + "label": "Window Corner Radius", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "corner", + "corners", + "custom", + "customize", + "hyprland", + "override", + "personal", + "personalization", + "radius", + "round", + "rounded", + "rounding", + "window", + "windows" + ], + "description": "Rounded corners for windows" + }, + { + "section": "mangoLayoutRadiusOverride", + "label": "Window Corner Radius", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "corner", + "corners", + "custom", + "customize", + "mango", + "mangowc", + "override", + "personal", + "personalization", + "radius", + "round", + "rounded", + "window", + "windows" + ], + "description": "Rounded corners for windows" + }, + { + "section": "niriLayoutGapsOverride", + "label": "Window Gaps", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "between", + "custom", + "customize", + "gaps", + "niri", + "override", + "personal", + "personalization", + "space", + "window", + "windows" + ], + "description": "Space between windows" + }, + { + "section": "hyprlandLayoutGapsOverride", + "label": "Window Gaps", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "between", + "custom", + "customize", + "gaps", + "hyprland", + "override", + "personal", + "personalization", + "space", + "window", + "windows" + ], + "description": "Space between windows" + }, + { + "section": "mangoLayoutGapsOverride", + "label": "Window Gaps", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "between", + "custom", + "customize", + "gaps", + "mango", + "mangowc", + "override", + "personal", + "personalization", + "space", + "window", + "windows" + ], + "description": "Space between windows" + }, + { + "section": "_tab_38", + "label": "Window Rules", + "tabIndex": 38, + "category": "Applications", + "keywords": [ + "applications", + "apps", + "floating", + "matching", + "programs", + "rules", + "window" + ], + "icon": "select_window", + "conditionKey": "windowRulesCapable" + }, + { + "section": "windowRules", + "label": "Window Rules", + "tabIndex": 38, + "category": "Applications", + "keywords": [ + "applications", + "apps", + "behavior", + "compositor", + "define", + "floating", + "fullscreen", + "matching", + "opacity", + "programs", + "rules", + "window" + ], + "icon": "select_window", + "description": "Define compositor rules for window behavior", + "conditionKey": "windowRulesCapable" } ] diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index a5c5824a..e37fa323 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -188,6 +188,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 tasks", + "translation": "", + "context": "task count next to a date, %1 is the number of tasks", + "reference": "", + "comment": "" + }, { "term": "%1 update", "translation": "", @@ -314,13 +321,6 @@ "reference": "", "comment": "" }, - { - "term": "1 event", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "1 hour", "translation": "", @@ -356,6 +356,13 @@ "reference": "", "comment": "" }, + { + "term": "1 task", + "translation": "", + "context": "task count next to a date", + "reference": "", + "comment": "" + }, { "term": "10 minutes", "translation": "", @@ -1021,6 +1028,13 @@ "reference": "", "comment": "" }, + { + "term": "Add a task...", + "translation": "", + "context": "placeholder in the new-task input field", + "reference": "", + "comment": "" + }, { "term": "Add and configure widgets that appear on your desktop", "translation": "", @@ -1136,7 +1150,7 @@ { "term": "All day", "translation": "", - "context": "", + "context": "calendar task with no specific time", "reference": "", "comment": "" }, @@ -1182,6 +1196,13 @@ "reference": "", "comment": "" }, + { + "term": "Also group repeated application icons on the active workspace", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", "translation": "", @@ -1280,6 +1301,13 @@ "reference": "", "comment": "" }, + { + "term": "Anchor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Animation Duration", "translation": "", @@ -1315,13 +1343,6 @@ "reference": "", "comment": "" }, - { - "term": "Any", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Any window", "translation": "", @@ -1343,6 +1364,13 @@ "reference": "", "comment": "" }, + { + "term": "App ID (e.g. firefox)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "App ID Substitutions", "translation": "", @@ -1470,14 +1498,14 @@ "comment": "" }, { - "term": "Applying authentication changes…", + "term": "Applying authentication changes...", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Applying auto-login on startup…", + "term": "Applying auto-login on startup...", "translation": "", "context": "", "reference": "", @@ -2169,6 +2197,20 @@ "reference": "", "comment": "" }, + { + "term": "Bar", + "translation": "", + "context": "fallback name for an unnamed bar", + "reference": "", + "comment": "" + }, + { + "term": "Bar %1", + "translation": "", + "context": "numbered name for an unnamed bar, %1 is its position", + "reference": "", + "comment": "" + }, { "term": "Bar Configurations", "translation": "", @@ -2947,7 +2989,7 @@ "comment": "" }, { - "term": "Checking whether sudo authentication is needed…", + "term": "Checking whether sudo authentication is needed...", "translation": "", "context": "", "reference": "", @@ -2956,13 +2998,6 @@ { "term": "Checking...", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Checking…", - "translation": "", "context": "greeter status loading", "reference": "", "comment": "" @@ -3815,7 +3850,7 @@ "comment": "" }, { - "term": "Connecting to clipboard service…", + "term": "Connecting to clipboard service...", "translation": "", "context": "", "reference": "", @@ -4626,13 +4661,6 @@ "reference": "", "comment": "" }, - { - "term": "DWL service not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Daily", "translation": "", @@ -5194,7 +5222,7 @@ "comment": "" }, { - "term": "Disabling auto-login on startup…", + "term": "Disabling auto-login on startup...", "translation": "", "context": "", "reference": "", @@ -5348,7 +5376,7 @@ "comment": "" }, { - "term": "Display and switch DWL layouts", + "term": "Display and switch MangoWC layouts", "translation": "", "context": "", "reference": "", @@ -5760,6 +5788,13 @@ "reference": "", "comment": "" }, + { + "term": "Editing changes on %1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Education", "translation": "", @@ -6937,14 +6972,14 @@ "comment": "" }, { - "term": "Failed to write Hyprland outputs config.", + "term": "Failed to write autostart entry", "translation": "", "context": "", "reference": "", "comment": "" }, { - "term": "Failed to write autostart entry", + "term": "Failed to write outputs config.", "translation": "", "context": "", "reference": "", @@ -7230,6 +7265,27 @@ "reference": "", "comment": "" }, + { + "term": "Float Anchor", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Float X", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Float Y", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Floating", "translation": "", @@ -7237,6 +7293,13 @@ "reference": "", "comment": "" }, + { + "term": "Floating Position", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Fluent", "translation": "", @@ -8007,6 +8070,13 @@ "reference": "", "comment": "" }, + { + "term": "Group Active Workspace", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Group Workspace Apps", "translation": "", @@ -8847,6 +8917,13 @@ "reference": "", "comment": "" }, + { + "term": "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Initialised", "translation": "", @@ -9085,6 +9162,13 @@ "reference": "", "comment": "" }, + { + "term": "Invert touchpad scroll direction", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Iris Bloom", "translation": "", @@ -9564,7 +9648,7 @@ { "term": "Loading...", "translation": "", - "context": "loading indicator", + "context": "", "reference": "", "comment": "" }, @@ -9841,6 +9925,20 @@ "reference": "", "comment": "" }, + { + "term": "Mango Options", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Mango service not available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "MangoWC Layout Overrides", "translation": "", @@ -10730,6 +10828,13 @@ "reference": "", "comment": "" }, + { + "term": "Natural Touchpad Scrolling", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Navigate", "translation": "", @@ -13776,7 +13881,7 @@ "comment": "" }, { - "term": "Refreshing…", + "term": "Refreshing...", "translation": "", "context": "", "reference": "", @@ -14070,7 +14175,7 @@ "comment": "" }, { - "term": "Requires DWL compositor", + "term": "Requires MangoWC compositor", "translation": "", "context": "", "reference": "", @@ -14146,6 +14251,20 @@ "reference": "", "comment": "" }, + { + "term": "Resize on Border", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Resize windows by dragging their edges with the mouse", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Resolution & Refresh", "translation": "", @@ -14314,20 +14433,6 @@ "reference": "", "comment": "" }, - { - "term": "Rounded corners for windows (border_radius)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Rounded corners for windows (decoration.rounding)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Rule", "translation": "", @@ -14413,7 +14518,7 @@ "comment": "" }, { - "term": "Running greeter sync…", + "term": "Running greeter sync...", "translation": "", "context": "", "reference": "", @@ -15841,7 +15946,7 @@ "comment": "" }, { - "term": "Show all 9 tags instead of only occupied tags (DWL only)", + "term": "Show all 9 tags instead of only occupied tags", "translation": "", "context": "", "reference": "", @@ -16323,20 +16428,6 @@ "reference": "", "comment": "" }, - { - "term": "Space between windows (gappih/gappiv/gappoh/gappov)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Space between windows (gaps_in and gaps_out)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Spacer", "translation": "", @@ -16855,6 +16946,13 @@ "reference": "", "comment": "" }, + { + "term": "Tags", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Tags: %1", "translation": "", @@ -17380,6 +17478,13 @@ "reference": "", "comment": "" }, + { + "term": "Title (optional)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Title regex (optional)", "translation": "", @@ -18290,13 +18395,6 @@ "reference": "", "comment": "" }, - { - "term": "Use custom window rounding instead of theme radius", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Use desktop wallpaper", "translation": "", @@ -19046,6 +19144,13 @@ "reference": "", "comment": "" }, + { + "term": "Widgets & Notifications", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Widgets, layout, style", "translation": "", @@ -19075,14 +19180,7 @@ "comment": "" }, { - "term": "Width of window border (borderpx)", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Width of window border (general.border_size)", + "term": "Width of window border", "translation": "", "context": "", "reference": "", @@ -19151,13 +19249,6 @@ "reference": "", "comment": "" }, - { - "term": "Window Rounding", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Window Rules", "translation": "", @@ -19187,7 +19278,7 @@ "comment": "" }, { - "term": "Working…", + "term": "Working...", "translation": "", "context": "", "reference": "", @@ -19256,13 +19347,6 @@ "reference": "", "comment": "" }, - { - "term": "Workspaces & Widgets", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Wrap the app command. %command% is replaced with the actual executable", "translation": "", @@ -19277,6 +19361,13 @@ "reference": "", "comment": "" }, + { + "term": "X", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "X Axis", "translation": "", @@ -19305,6 +19396,13 @@ "reference": "", "comment": "" }, + { + "term": "Y", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Y Axis", "translation": "", @@ -19550,13 +19648,6 @@ "reference": "", "comment": "" }, - { - "term": "events", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "ext", "translation": "", @@ -19599,6 +19690,20 @@ "reference": "", "comment": "" }, + { + "term": "mango: config reloaded", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "mango: failed to reload config", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "mangowc Discord Server", "translation": "", @@ -19840,7 +19945,7 @@ { "term": "up", "translation": "", - "context": "", + "context": "uptime prefix, e.g. 'up 4h 2m'", "reference": "", "comment": "" },