diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 107fcf086..2df707866 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,6 +36,14 @@ repos: language: system files: ^quickshell/(.*\.qml|translations/(term_freeze\.json|check_term_freeze\.py|extract_translations\.py))$ pass_filenames: false + - repo: local + hooks: + - id: i18n-term-variants + name: i18n term variants (no case/punctuation duplicates) + entry: python3 quickshell/translations/check_term_variants.py + language: system + files: ^quickshell/(.*\.qml|translations/(check_term_variants\.py|extract_translations\.py))$ + pass_filenames: false - repo: local hooks: - id: no-console-in-qml diff --git a/quickshell/Common/I18n.qml b/quickshell/Common/I18n.qml index 079b3746e..97c36cb2c 100644 --- a/quickshell/Common/I18n.qml +++ b/quickshell/Common/I18n.qml @@ -117,12 +117,17 @@ Singleton { log.warn("Falling back to built-in English strings"); } - function tr(term, context) { + // isRealContext is consumed by translations/extract_translations.py only: + // pass a literal `true` (same line) to give (term, context) its own POEditor + // translation slot. Lookup ignores it -- a real context exists as a bucket + // in the export, a comment-only context does not. + function tr(term, context, isRealContext) { if (!translationsLoaded || !translations) return term; - const ctx = context || term; - if (translations[ctx] && translations[ctx][term]) - return translations[ctx][term]; + if (context && translations[context] && translations[context][term]) + return translations[context][term]; + if (translations[term] && translations[term][term]) + return translations[term][term]; for (const c in translations) { if (translations[c] && translations[c][term]) return translations[c][term]; diff --git a/quickshell/Common/SessionData.qml b/quickshell/Common/SessionData.qml index f1999eb35..5216872f2 100644 --- a/quickshell/Common/SessionData.qml +++ b/quickshell/Common/SessionData.qml @@ -291,7 +291,7 @@ Singleton { _parseError = true; const msg = e.message; log.error("Failed to parse session.json - file will not be overwritten."); - Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse session.json"), msg)); + Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse %1").arg("session.json"), msg)); } } @@ -371,7 +371,7 @@ Singleton { _parseError = true; const msg = e.message; log.error("Failed to parse session.json - file will not be overwritten."); - Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse session.json"), msg)); + Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse %1").arg("session.json"), msg)); } } diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index 79d265f41..4a85da10c 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -1793,7 +1793,7 @@ Singleton { _parseError = true; const msg = e.message; log.error("Failed to parse settings.json - file will not be overwritten. Error:", msg); - Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse settings.json"), msg)); + Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse %1").arg("settings.json"), msg)); applyStoredTheme(); } finally { _loading = false; @@ -1891,7 +1891,7 @@ Singleton { _pluginParseError = true; const msg = e.message; log.error("Failed to parse plugin_settings.json - file will not be overwritten. Error:", msg); - Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse plugin_settings.json"), msg)); + Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse %1").arg("plugin_settings.json"), msg)); pluginSettings = {}; } finally { _pluginSettingsLoading = false; @@ -3653,7 +3653,7 @@ Singleton { _parseError = true; const msg = e.message; log.error("Failed to reload settings.json - file will not be overwritten. Error:", msg); - Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse settings.json"), msg)); + Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse %1").arg("settings.json"), msg)); } finally { _loading = false; } diff --git a/quickshell/Common/Theme.qml b/quickshell/Common/Theme.qml index 05d1e9d99..3bcae6c9a 100644 --- a/quickshell/Common/Theme.qml +++ b/quickshell/Common/Theme.qml @@ -1956,7 +1956,7 @@ Singleton { function applyGtkColors() { if (!matugenAvailable) { if (typeof ToastService !== "undefined") { - ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply GTK colors")); + ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply %1 colors").arg("GTK")); } return; } @@ -1969,7 +1969,7 @@ Singleton { } } else { if (typeof ToastService !== "undefined") { - ToastService.showError(I18n.tr("Failed to apply GTK colors")); + ToastService.showError(I18n.tr("Failed to apply %1 colors").arg("GTK")); } } }); @@ -1978,7 +1978,7 @@ Singleton { function applyQtColors() { if (!matugenAvailable) { if (typeof ToastService !== "undefined") { - ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply Qt colors")); + ToastService.showError(I18n.tr("matugen not available or disabled - cannot apply %1 colors").arg("Qt")); } return; } @@ -1990,7 +1990,7 @@ Singleton { } } else { if (typeof ToastService !== "undefined") { - ToastService.showError(I18n.tr("Failed to apply Qt colors")); + ToastService.showError(I18n.tr("Failed to apply %1 colors").arg("Qt")); } } }); diff --git a/quickshell/Common/settings/Processes.qml b/quickshell/Common/settings/Processes.qml index b6f12a9e6..732d42db1 100644 --- a/quickshell/Common/settings/Processes.qml +++ b/quickshell/Common/settings/Processes.qml @@ -646,7 +646,7 @@ Singleton { onExited: exitCode => { if (exitCode === 0) { - const message = root.authApplyTerminalFallbackFromPrecheck ? I18n.tr("Terminal opened. Complete authentication setup there; it will close automatically when done.") : I18n.tr("Terminal fallback opened. Complete authentication setup there; it will close automatically when done."); + const message = root.authApplyTerminalFallbackFromPrecheck ? I18n.tr("Terminal opened. Complete authentication there; it will close automatically when done.") : I18n.tr("Terminal fallback opened. Complete authentication there; it will close automatically when done."); ToastService.showInfo(message, "", "", "auth-sync"); } else { let details = (root.authApplyTerminalFallbackStderr || "").trim(); diff --git a/quickshell/DMSShell.qml b/quickshell/DMSShell.qml index 252bb0918..3db647133 100644 --- a/quickshell/DMSShell.qml +++ b/quickshell/DMSShell.qml @@ -323,7 +323,7 @@ Item { target: TrashService function onEmptyTrashConfirmRequested(itemCount) { emptyTrashConfirm.showWithOptions({ - title: I18n.tr("Empty Trash?"), + title: I18n.tr("Empty Trash"), message: I18n.tr("Permanently delete %1 item(s)? This cannot be undone.").arg(itemCount), confirmText: I18n.tr("Empty"), cancelText: I18n.tr("Cancel"), diff --git a/quickshell/Modals/DankLauncherV2/LauncherContent.qml b/quickshell/Modals/DankLauncherV2/LauncherContent.qml index d6aa71208..02b0caff6 100644 --- a/quickshell/Modals/DankLauncherV2/LauncherContent.qml +++ b/quickshell/Modals/DankLauncherV2/LauncherContent.qml @@ -408,14 +408,14 @@ FocusScope { StyledText { anchors.verticalCenter: parent.verticalCenter - text: "↵ " + I18n.tr("open") + text: "↵ " + I18n.tr("Open") font.pixelSize: Theme.fontSizeSmall - 1 color: Theme.surfaceVariantText } StyledText { anchors.verticalCenter: parent.verticalCenter - text: "Tab " + I18n.tr("actions") + text: "Tab " + I18n.tr("Actions") font.pixelSize: Theme.fontSizeSmall - 1 color: Theme.surfaceVariantText visible: actionPanel.hasActions diff --git a/quickshell/Modals/DankLauncherV2/SpotlightResultsList.qml b/quickshell/Modals/DankLauncherV2/SpotlightResultsList.qml index 276c29da7..dc3f609c5 100644 --- a/quickshell/Modals/DankLauncherV2/SpotlightResultsList.qml +++ b/quickshell/Modals/DankLauncherV2/SpotlightResultsList.qml @@ -156,7 +156,7 @@ Item { function statusTitle() { if (root.controller?.isSearching || root.controller?.isFileSearching) - return I18n.tr("Searching"); + return I18n.tr("Searching..."); if ((root.controller?.searchMode ?? "") === "files" && !DSearchService.dsearchAvailable) return I18n.tr("File search unavailable"); if ((root.controller?.searchMode ?? "") === "files" && (root.controller?.searchQuery?.length ?? 0) < 2) diff --git a/quickshell/Modals/PolkitAuthContent.qml b/quickshell/Modals/PolkitAuthContent.qml index 8fbfc7276..f1aa87d4a 100644 --- a/quickshell/Modals/PolkitAuthContent.qml +++ b/quickshell/Modals/PolkitAuthContent.qml @@ -294,7 +294,7 @@ FocusScope { } StyledText { - text: I18n.tr("Authentication failed, please try again") + text: I18n.tr("Authentication failed - try again") font.pixelSize: Theme.fontSizeSmall color: Theme.error width: parent.width diff --git a/quickshell/Modals/ProcessListModal.qml b/quickshell/Modals/ProcessListModal.qml index 55be5cbc9..59d76752a 100644 --- a/quickshell/Modals/ProcessListModal.qml +++ b/quickshell/Modals/ProcessListModal.qml @@ -494,7 +494,7 @@ FloatingWindow { spacing: Theme.spacingXS StyledText { - text: I18n.tr("Processes:", "process count label in footer") + text: I18n.tr("Processes", "process count label in footer") + ":" font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText } @@ -511,7 +511,7 @@ FloatingWindow { spacing: Theme.spacingXS StyledText { - text: I18n.tr("Uptime:", "uptime label in footer") + text: I18n.tr("Uptime", "uptime label in footer") + ":" font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText } diff --git a/quickshell/Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml b/quickshell/Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml index da961ce93..7fe37fd9d 100644 --- a/quickshell/Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml +++ b/quickshell/Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml @@ -16,7 +16,7 @@ PluginComponent { ccWidgetPrimaryText: I18n.tr("Printers") ccWidgetSecondaryText: { if (CupsService.cupsAvailable && CupsService.getPrintersNum() > 0) { - return I18n.tr("Printers: ") + CupsService.getPrintersNum() + " - " + I18n.tr("Jobs: ") + CupsService.getTotalJobsNum(); + return I18n.tr("Printers") + ": " + CupsService.getPrintersNum() + " - " + I18n.tr("Jobs") + ": " + CupsService.getTotalJobsNum(); } else { if (!CupsService.cupsAvailable) { return I18n.tr("Print Server not available"); diff --git a/quickshell/Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml b/quickshell/Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml index 0693d4663..978da4747 100644 --- a/quickshell/Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml +++ b/quickshell/Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml @@ -18,7 +18,7 @@ PluginComponent { ccWidgetPrimaryText: I18n.tr("VPN") ccWidgetSecondaryText: { if (vpnActivating) - return I18n.tr("Connecting…"); + return I18n.tr("Connecting..."); if (!vpnActivated) return I18n.tr("Disconnected"); const names = DMSNetworkService.activeNames || []; diff --git a/quickshell/Modules/ControlCenter/Details/BluetoothDetail.qml b/quickshell/Modules/ControlCenter/Details/BluetoothDetail.qml index f750fd807..03e14e1fc 100644 --- a/quickshell/Modules/ControlCenter/Details/BluetoothDetail.qml +++ b/quickshell/Modules/ControlCenter/Details/BluetoothDetail.qml @@ -166,7 +166,7 @@ Rectangle { } StyledText { - text: scanButton.isDiscovering ? I18n.tr("Scanning") : I18n.tr("Scan") + text: scanButton.isDiscovering ? I18n.tr("Scanning...") : I18n.tr("Scan") color: scanButton.adapterEnabled ? Theme.primary : Theme.surfaceVariantText font.pixelSize: Theme.fontSizeMedium font.weight: Font.Medium diff --git a/quickshell/Modules/ControlCenter/Details/NetworkDetail.qml b/quickshell/Modules/ControlCenter/Details/NetworkDetail.qml index 73d0339d1..af666683f 100644 --- a/quickshell/Modules/ControlCenter/Details/NetworkDetail.qml +++ b/quickshell/Modules/ControlCenter/Details/NetworkDetail.qml @@ -624,7 +624,7 @@ Rectangle { spacing: Theme.spacingXS StyledText { - text: wifiDelegate.isConnecting ? I18n.tr("Connecting...") + " \u2022" : (wifiDelegate.isConnected ? I18n.tr("Connected") + " \u2022" : (modelData.secured ? I18n.tr("Secured") + " \u2022" : I18n.tr("Open") + " \u2022")) + text: wifiDelegate.isConnecting ? I18n.tr("Connecting...") + " \u2022" : (wifiDelegate.isConnected ? I18n.tr("Connected") + " \u2022" : (modelData.secured ? I18n.tr("Secured") + " \u2022" : I18n.tr("Open", "network security type", true) + " \u2022")) font.pixelSize: Theme.fontSizeSmall color: wifiDelegate.isConnecting ? Theme.warning : Theme.surfaceVariantText } diff --git a/quickshell/Modules/DankDash/Overview/CalendarEventEditor.qml b/quickshell/Modules/DankDash/Overview/CalendarEventEditor.qml index 7d357f0c2..d464ac5d0 100644 --- a/quickshell/Modules/DankDash/Overview/CalendarEventEditor.qml +++ b/quickshell/Modules/DankDash/Overview/CalendarEventEditor.qml @@ -329,7 +329,7 @@ Item { spacing: Theme.spacingS DankButton { - text: root.saving ? I18n.tr("Saving…") : I18n.tr("Save") + text: root.saving ? I18n.tr("Saving...") : I18n.tr("Save") iconName: "check" buttonHeight: 32 backgroundColor: Theme.primary diff --git a/quickshell/Modules/Notepad/Notepad.qml b/quickshell/Modules/Notepad/Notepad.qml index 7021e7421..82ab5f7a8 100644 --- a/quickshell/Modules/Notepad/Notepad.qml +++ b/quickshell/Modules/Notepad/Notepad.qml @@ -692,14 +692,14 @@ Item { spacing: Theme.spacingM StyledText { - text: I18n.tr("Unsaved Changes") + text: I18n.tr("Unsaved changes") font.pixelSize: Theme.fontSizeLarge color: Theme.surfaceText font.weight: Font.Medium } StyledText { - text: root.pendingAction === "new" ? I18n.tr("You have unsaved changes. Save before creating a new file?") : root.pendingAction.startsWith("close_tab_") ? I18n.tr("You have unsaved changes. Save before closing this tab?") : root.pendingAction === "load_file" || root.pendingAction === "open" ? I18n.tr("You have unsaved changes. Save before opening a file?") : I18n.tr("You have unsaved changes. Save before continuing?") + text: I18n.tr("You have unsaved changes. Save before continuing?") font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceTextMedium width: parent.width diff --git a/quickshell/Modules/Notifications/Center/NotificationSettings.qml b/quickshell/Modules/Notifications/Center/NotificationSettings.qml index 74b9657ec..ffeb7c2dd 100644 --- a/quickshell/Modules/Notifications/Center/NotificationSettings.qml +++ b/quickshell/Modules/Notifications/Center/NotificationSettings.qml @@ -172,7 +172,7 @@ Rectangle { } StyledText { - text: I18n.tr("Notification Timeouts") + text: I18n.tr("Timeouts") font.pixelSize: Theme.fontSizeSmall font.weight: Font.Medium color: Theme.surfaceVariantText @@ -182,7 +182,6 @@ Rectangle { id: lowTimeoutDropdown transientSurfaceTracker: root.transientSurfaceTracker text: I18n.tr("Low Priority") - description: I18n.tr("Timeout for low priority notifications") currentValue: getTimeoutText(SettingsData.notificationTimeoutLow) options: timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -199,7 +198,6 @@ Rectangle { id: normalTimeoutDropdown transientSurfaceTracker: root.transientSurfaceTracker text: I18n.tr("Normal Priority") - description: I18n.tr("Timeout for normal priority notifications") currentValue: getTimeoutText(SettingsData.notificationTimeoutNormal) options: timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -216,7 +214,6 @@ Rectangle { id: criticalTimeoutDropdown transientSurfaceTracker: root.transientSurfaceTracker text: I18n.tr("Critical Priority") - description: I18n.tr("Timeout for critical priority notifications") currentValue: getTimeoutText(SettingsData.notificationTimeoutCritical) options: timeoutOptions.map(opt => opt.text) onValueChanged: value => { diff --git a/quickshell/Modules/Settings/BatteryTab.qml b/quickshell/Modules/Settings/BatteryTab.qml index 3517ab892..424beedc6 100644 --- a/quickshell/Modules/Settings/BatteryTab.qml +++ b/quickshell/Modules/Settings/BatteryTab.qml @@ -48,8 +48,9 @@ done SettingsCard { width: parent.width iconName: "battery_charging_full" - title: I18n.tr("Battery Status") + title: I18n.tr("Status") settingKey: "batteryStatusCard" + tags: ["battery", "status", "charge", "health"] Column { width: parent.width - Theme.spacingM * 2 @@ -167,8 +168,9 @@ done SettingsCard { width: parent.width iconName: "tune" - title: I18n.tr("Battery Protection") + title: I18n.tr("Protection") settingKey: "batteryProtection" + tags: ["battery", "protection", "charge", "limit"] SettingsSliderRow { settingKey: "batteryChargeLimit" @@ -230,8 +232,9 @@ done SettingsCard { width: parent.width iconName: "notifications" - title: I18n.tr("Battery Alerts") + title: I18n.tr("Alerts") settingKey: "batteryAlerts" + tags: ["battery", "alerts", "low", "warning"] SettingsSliderRow { settingKey: "batteryLowThreshold" @@ -332,7 +335,6 @@ done SettingsDropdownRow { settingKey: "acProfileName" text: I18n.tr("Profile when Plugged In (AC)") - description: I18n.tr("Power profile to use when AC power is connected.") options: [I18n.tr("Don't Change"), Theme.getPowerProfileLabel(0), Theme.getPowerProfileLabel(1), Theme.getPowerProfileLabel(2)] currentValue: { const val = SettingsData.acProfileName; @@ -350,7 +352,6 @@ done SettingsDropdownRow { settingKey: "batteryProfileName" text: I18n.tr("Profile when on Battery") - description: I18n.tr("Power profile to use when running on battery power.") options: [I18n.tr("Don't Change"), Theme.getPowerProfileLabel(0), Theme.getPowerProfileLabel(1), Theme.getPowerProfileLabel(2)] currentValue: { const val = SettingsData.batteryProfileName; diff --git a/quickshell/Modules/Settings/ClipboardTab.qml b/quickshell/Modules/Settings/ClipboardTab.qml index d20400741..ea1d2df39 100644 --- a/quickshell/Modules/Settings/ClipboardTab.qml +++ b/quickshell/Modules/Settings/ClipboardTab.qml @@ -153,7 +153,7 @@ Item { ] readonly property var entryActionKeys: ["copy", "paste", "pin", "edit", "delete"] - readonly property var entryActionLabels: [I18n.tr("Copy"), I18n.tr("Paste"), I18n.tr("Pin"), I18n.tr("Edit"), I18n.tr("Delete")] + readonly property var entryActionLabels: [I18n.tr("Copy"), I18n.tr("Paste"), I18n.tr("Pin", "pin item action"), I18n.tr("Edit"), I18n.tr("Delete")] function getMaxHistoryText(value) { if (value <= 0) @@ -341,7 +341,6 @@ Item { tags: ["clipboard", "entry", "size", "limit"] settingKey: "maxEntrySize" text: I18n.tr("Maximum Entry Size") - description: I18n.tr("Maximum size per clipboard entry") options: root.maxEntrySizeOptions.map(opt => opt.text) Component.onCompleted: { diff --git a/quickshell/Modules/Settings/CompositorLayoutTab.qml b/quickshell/Modules/Settings/CompositorLayoutTab.qml index 397bcced9..b5db373fe 100644 --- a/quickshell/Modules/Settings/CompositorLayoutTab.qml +++ b/quickshell/Modules/Settings/CompositorLayoutTab.qml @@ -94,7 +94,7 @@ Item { function fixLayoutInclude() { if (readOnly) { - ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings."), "dms setup", "hyprland-migration"); + ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."), "dms setup", "hyprland-migration"); return; } const paths = getLayoutConfigPaths(); @@ -208,7 +208,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; StyledText { text: { if (warningBox.showLegacy) - return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings."); + return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."); if (warningBox.showSetup) return I18n.tr("Click 'Setup' to create %1 and add include to your compositor config.").arg("dms/layout"); return ""; @@ -270,7 +270,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; SettingsCard { width: parent.width tags: ["niri", "layout", "gaps", "radius", "window", "border"] - title: I18n.tr("Niri Layout Overrides") + title: I18n.tr("%1 Layout Overrides").arg("niri") settingKey: "niriLayout" iconName: "layers" visible: CompositorService.isNiri @@ -279,7 +279,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; tags: ["niri", "gaps", "override", "unmanaged"] settingKey: "niriLayoutGapsMode" text: I18n.tr("Gaps") - description: I18n.tr("Auto matches bar spacing; Off leaves gaps to your niri config") + description: I18n.tr("Auto matches bar spacing; Off leaves gaps to your %1 config").arg("niri") model: [I18n.tr("Auto"), I18n.tr("Custom"), I18n.tr("Off")] currentIndex: { if (SettingsData.niriLayoutGapsOverride === -2) @@ -399,7 +399,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; SettingsCard { width: parent.width tags: ["hyprland", "layout", "gaps", "radius", "window", "border", "rounding"] - title: I18n.tr("Hyprland Layout Overrides") + title: I18n.tr("%1 Layout Overrides").arg("Hyprland") settingKey: "hyprlandLayout" iconName: "crop_square" visible: CompositorService.isHyprland @@ -408,7 +408,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; tags: ["hyprland", "gaps", "override", "inner", "outer", "unmanaged"] settingKey: "hyprlandLayoutGapsMode" text: I18n.tr("Gaps") - description: I18n.tr("Auto matches bar spacing; Off leaves gaps to your Hyprland config") + description: I18n.tr("Auto matches bar spacing; Off leaves gaps to your %1 config").arg("Hyprland") model: [I18n.tr("Auto"), I18n.tr("Custom"), I18n.tr("Off")] currentIndex: { if (SettingsData.hyprlandLayoutGapsOverride === -2) @@ -492,7 +492,6 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; tags: ["hyprland", "border", "override"] settingKey: "hyprlandLayoutBorderSizeEnabled" text: I18n.tr("Override Border Size") - description: I18n.tr("Use custom border size") checked: SettingsData.hyprlandLayoutBorderSize >= 0 onToggled: checked => { if (checked) { @@ -551,7 +550,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; SettingsCard { width: parent.width tags: ["mangowc", "mango", "dwl", "layout", "gaps", "radius", "window", "border"] - title: I18n.tr("MangoWC Layout Overrides") + title: I18n.tr("%1 Layout Overrides").arg("MangoWC") settingKey: "mangoLayout" iconName: "crop_square" visible: CompositorService.isMango @@ -560,7 +559,7 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; tags: ["mangowc", "mango", "gaps", "override", "inner", "outer", "unmanaged"] settingKey: "mangoLayoutGapsMode" text: I18n.tr("Gaps") - description: I18n.tr("Auto matches bar spacing; Off leaves gaps to your MangoWC config") + description: I18n.tr("Auto matches bar spacing; Off leaves gaps to your %1 config").arg("MangoWC") model: [I18n.tr("Auto"), I18n.tr("Custom"), I18n.tr("Off")] currentIndex: { if (SettingsData.mangoLayoutGapsOverride === -2) @@ -644,7 +643,6 @@ awk '$1 == "xray" { print FILENAME ":" FNR; exit }' $files 2>/dev/null`; tags: ["mangowc", "mango", "border", "override"] settingKey: "mangoLayoutBorderSizeEnabled" text: I18n.tr("Override Border Size") - description: I18n.tr("Use custom border size") checked: SettingsData.mangoLayoutBorderSize >= 0 onToggled: checked => { if (checked) { diff --git a/quickshell/Modules/Settings/DankBarTab.qml b/quickshell/Modules/Settings/DankBarTab.qml index 1d0bbf2ee..dcc9459da 100644 --- a/quickshell/Modules/Settings/DankBarTab.qml +++ b/quickshell/Modules/Settings/DankBarTab.qml @@ -266,7 +266,7 @@ Item { SettingsCard { iconName: "dashboard" - title: I18n.tr("Bar Configurations") + title: I18n.tr("Configurations") settingKey: "barConfigurations" visible: !dankBarTab.appearanceOnly @@ -490,7 +490,7 @@ Item { DankButtonGroup { id: positionButtonGroup anchors.horizontalCenter: parent.horizontalCenter - model: [I18n.tr("Top"), I18n.tr("Bottom"), I18n.tr("Left"), I18n.tr("Right")] + model: [I18n.tr("Top", "screen edge position"), I18n.tr("Bottom", "screen edge position"), I18n.tr("Left", "screen edge position"), I18n.tr("Right", "screen edge position")] currentIndex: { selectedBarId; const config = SettingsData.getBarConfig(selectedBarId); @@ -820,7 +820,6 @@ Item { id: barTransparencySlider visible: !SettingsData.frameEnabled text: I18n.tr("Bar Opacity") - description: I18n.tr("Controls opacity of the bar background") value: (selectedBarConfig?.transparency ?? 1.0) * 100 minimum: 0 maximum: 100 @@ -843,7 +842,6 @@ Item { SettingsSliderRow { id: widgetTransparencySlider text: I18n.tr("Widget Opacity") - description: I18n.tr("Controls opacity of widget backgrounds") value: (selectedBarConfig?.widgetTransparency ?? 1.0) * 100 minimum: 0 maximum: 100 @@ -1463,7 +1461,6 @@ Item { SettingsSliderRow { id: borderOpacitySlider text: I18n.tr("Opacity") - description: I18n.tr("Controls opacity of the border") value: (selectedBarConfig?.borderOpacity ?? 1.0) * 100 minimum: 0 maximum: 100 @@ -1558,7 +1555,6 @@ Item { SettingsSliderRow { id: widgetOutlineOpacitySlider text: I18n.tr("Opacity") - description: I18n.tr("Controls opacity of the widget outline") value: (selectedBarConfig?.widgetOutlineOpacity ?? 1.0) * 100 minimum: 0 maximum: 100 @@ -1667,7 +1663,6 @@ Item { SettingsSliderRow { visible: shadowCard.shadowActive text: I18n.tr("Opacity") - description: I18n.tr("Controls opacity of the shadow layer") minimum: 10 maximum: 100 unit: "%" diff --git a/quickshell/Modules/Settings/DefaultAppsTab.qml b/quickshell/Modules/Settings/DefaultAppsTab.qml index dbf9895ae..9a6675342 100644 --- a/quickshell/Modules/Settings/DefaultAppsTab.qml +++ b/quickshell/Modules/Settings/DefaultAppsTab.qml @@ -312,7 +312,6 @@ Item { text: I18n.tr("Calendar", "Calendar") category: root.appCategory.Calendar tags: ["calendar", "events"] - description: I18n.tr("Manages calendar events", "Manages calendar events") } } @@ -330,7 +329,6 @@ Item { text: I18n.tr("PDF Reader", "PDF Reader") category: root.appCategory.PDFReader tags: ["pdf", "reader"] - description: I18n.tr("For reading PDF files", "For reading PDF files") } } @@ -341,13 +339,11 @@ Item { text: I18n.tr("Image Viewer", "Image Viewer") category: root.appCategory.ImageViewer tags: ["image", "viewer"] - description: I18n.tr("Opens image files", "Opens image files") } AppSelector { text: I18n.tr("Video Player", "Video Player") category: root.appCategory.VideoPlayer tags: ["video", "player"] - description: I18n.tr("Plays video files", "Plays video files") } AppSelector { text: I18n.tr("Music Player", "Music Player") diff --git a/quickshell/Modules/Settings/DisplayConfig/DisplayConfigState.qml b/quickshell/Modules/Settings/DisplayConfig/DisplayConfigState.qml index 7cba71cbb..27b8d5ecc 100644 --- a/quickshell/Modules/Settings/DisplayConfig/DisplayConfigState.qml +++ b/quickshell/Modules/Settings/DisplayConfig/DisplayConfigState.qml @@ -1518,7 +1518,7 @@ Singleton { } function showHyprlandReadOnlyWarning() { - ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing display settings."), "dms setup", "display-config"); + ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."), "dms setup", "display-config"); } function buildOutputsMap() { @@ -2639,7 +2639,7 @@ Singleton { function getTransformLabel(transform) { switch (transform) { case "Normal": - return I18n.tr("Normal"); + return I18n.tr("Normal", "display rotation option", true); case "90": return I18n.tr("90°"); case "180": @@ -2655,12 +2655,12 @@ Singleton { case "Flipped270": return I18n.tr("Flipped 270°"); default: - return I18n.tr("Normal"); + return I18n.tr("Normal", "display rotation option", true); } } function getTransformValue(label) { - if (label === I18n.tr("Normal")) + if (label === I18n.tr("Normal", "display rotation option", true)) return "Normal"; if (label === I18n.tr("90°")) return "90"; diff --git a/quickshell/Modules/Settings/DisplayConfig/IncludeWarningBox.qml b/quickshell/Modules/Settings/DisplayConfig/IncludeWarningBox.qml index b249fac7c..08622f250 100644 --- a/quickshell/Modules/Settings/DisplayConfig/IncludeWarningBox.qml +++ b/quickshell/Modules/Settings/DisplayConfig/IncludeWarningBox.qml @@ -60,9 +60,9 @@ StyledRect { StyledText { text: { if (root.showLegacy) - return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing display settings."); + return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."); if (root.showSetup) - return I18n.tr("Click 'Setup' to create the outputs config and add include to your compositor config."); + return I18n.tr("Click 'Setup' to create %1 and add include to your compositor config.").arg("dms/outputs"); return ""; } font.pixelSize: Theme.fontSizeSmall diff --git a/quickshell/Modules/Settings/DisplayConfig/NiriOutputSettings.qml b/quickshell/Modules/Settings/DisplayConfig/NiriOutputSettings.qml index c2edbc774..ad14a9cdc 100644 --- a/quickshell/Modules/Settings/DisplayConfig/NiriOutputSettings.qml +++ b/quickshell/Modules/Settings/DisplayConfig/NiriOutputSettings.qml @@ -93,21 +93,21 @@ Column { currentValue: { if (!hotCornersData) - return I18n.tr("Inherit"); + return I18n.tr("Inherit", "inherit from global setting"); if (hotCornersData.off) return I18n.tr("Off"); const corners = hotCornersData.corners || []; if (corners.length === 0) - return I18n.tr("Inherit"); + return I18n.tr("Inherit", "inherit from global setting"); if (corners.length === 4) return I18n.tr("All"); return I18n.tr("Select..."); } - options: [I18n.tr("Inherit"), I18n.tr("Off"), I18n.tr("All"), I18n.tr("Select...")] + options: [I18n.tr("Inherit", "inherit from global setting"), I18n.tr("Off"), I18n.tr("All"), I18n.tr("Select...")] onValueChanged: value => { switch (value) { - case I18n.tr("Inherit"): + case I18n.tr("Inherit", "inherit from global setting"): DisplayConfigState.setNiriSetting(root.outputData, root.outputName, "hotCorners", null); break; case I18n.tr("Off"): @@ -232,7 +232,7 @@ Column { DankTextField { width: parent.width height: 40 - placeholderText: I18n.tr("Inherit") + placeholderText: I18n.tr("Inherit", "inherit from global setting") enabled: !settingsColumn.isDisabled text: { const layout = DisplayConfigState.getNiriSetting(root.outputData, root.outputName, "layout", null); @@ -270,7 +270,7 @@ Column { DankTextField { width: parent.width height: 40 - placeholderText: I18n.tr("Inherit") + placeholderText: I18n.tr("Inherit", "inherit from global setting") enabled: !settingsColumn.isDisabled text: { const layout = DisplayConfigState.getNiriSetting(root.outputData, root.outputName, "layout", null); @@ -321,7 +321,7 @@ Column { DankTextField { width: parent.width height: 40 - placeholderText: I18n.tr("Inherit") + placeholderText: I18n.tr("Inherit", "inherit from global setting") enabled: !settingsColumn.isDisabled text: { const layout = DisplayConfigState.getNiriSetting(root.outputData, root.outputName, "layout", null); diff --git a/quickshell/Modules/Settings/DisplayConfig/OutputCard.qml b/quickshell/Modules/Settings/DisplayConfig/OutputCard.qml index b4208e49c..6cd81b9c7 100644 --- a/quickshell/Modules/Settings/DisplayConfig/OutputCard.qml +++ b/quickshell/Modules/Settings/DisplayConfig/OutputCard.qml @@ -308,7 +308,7 @@ StyledRect { return DisplayConfigState.getTransformLabel(pendingTransform); return DisplayConfigState.getTransformLabel(root.outputData?.logical?.transform ?? "Normal"); } - options: [I18n.tr("Normal"), I18n.tr("90°"), I18n.tr("180°"), I18n.tr("270°"), I18n.tr("Flipped"), I18n.tr("Flipped 90°"), I18n.tr("Flipped 180°"), I18n.tr("Flipped 270°")] + options: [I18n.tr("Normal", "display rotation option", true), I18n.tr("90°"), I18n.tr("180°"), I18n.tr("270°"), I18n.tr("Flipped"), I18n.tr("Flipped 90°"), I18n.tr("Flipped 180°"), I18n.tr("Flipped 270°")] onValueChanged: value => DisplayConfigState.setPendingChange(root.outputName, "transform", DisplayConfigState.getTransformValue(value)) } } diff --git a/quickshell/Modules/Settings/DisplayWidgetsTab.qml b/quickshell/Modules/Settings/DisplayWidgetsTab.qml index e5d4b591b..bee3dd706 100644 --- a/quickshell/Modules/Settings/DisplayWidgetsTab.qml +++ b/quickshell/Modules/Settings/DisplayWidgetsTab.qml @@ -399,7 +399,6 @@ Item { DankToggle { width: parent.width text: I18n.tr("All displays") - description: I18n.tr("Show on all connected displays") checked: { var prefs = root.getScreenPreferences(parent.componentId); return prefs.includes("all") || (typeof prefs[0] === "string" && prefs[0] === "all"); @@ -420,7 +419,6 @@ Item { DankToggle { width: parent.width text: I18n.tr("Focused Monitor Only") - description: I18n.tr("Show notifications only on the currently focused monitor") visible: parent.componentId === "notifications" checked: SettingsData.notificationFocusedMonitor onToggled: checked => SettingsData.set("notificationFocusedMonitor", checked) diff --git a/quickshell/Modules/Settings/DockTab.qml b/quickshell/Modules/Settings/DockTab.qml index b5ab3f196..7c10d9b7d 100644 --- a/quickshell/Modules/Settings/DockTab.qml +++ b/quickshell/Modules/Settings/DockTab.qml @@ -37,7 +37,7 @@ Item { SettingsCard { width: parent.width iconName: "dock_to_bottom" - title: I18n.tr("Dock Visibility") + title: I18n.tr("Visibility") settingKey: "dockVisibility" SettingsToggleRow { @@ -228,7 +228,6 @@ Item { settingKey: "dockShowOverflowBadge" tags: ["dock", "overflow", "badge", "count", "indicator"] text: I18n.tr("Show Overflow Badge Count") - description: I18n.tr("Displays count when overflow is active") checked: SettingsData.dockShowOverflowBadge onToggled: checked => SettingsData.set("dockShowOverflowBadge", checked) } @@ -461,7 +460,7 @@ Item { if (!PopoutService.colorPickerModal) return; PopoutService.colorPickerModal.selectedColor = SettingsData.dockLauncherLogoColorOverride; - PopoutService.colorPickerModal.pickerTitle = I18n.tr("Choose Dock Launcher Logo Color"); + PopoutService.colorPickerModal.pickerTitle = I18n.tr("Choose Launcher Logo Color"); PopoutService.colorPickerModal.onColorSelectedCallback = function (selectedColor) { SettingsData.set("dockLauncherLogoColorOverride", selectedColor); }; @@ -683,7 +682,6 @@ Item { SettingsButtonGroupRow { text: I18n.tr("Border Color") - description: I18n.tr("Choose the border accent color") visible: SettingsData.dockBorderEnabled model: [I18n.tr("Surface", "color option"), I18n.tr("Secondary", "color option"), I18n.tr("Primary", "color option")] buttonPadding: Theme.spacingS diff --git a/quickshell/Modules/Settings/FrameTab.qml b/quickshell/Modules/Settings/FrameTab.qml index 73184023b..7832b4393 100644 --- a/quickshell/Modules/Settings/FrameTab.qml +++ b/quickshell/Modules/Settings/FrameTab.qml @@ -31,7 +31,7 @@ Item { SettingsCard { width: parent.width iconName: "frame_source" - title: I18n.tr("Frame") + title: I18n.tr("General") settingKey: "frameEnabled" SettingsToggleRow { diff --git a/quickshell/Modules/Settings/GammaControlTab.qml b/quickshell/Modules/Settings/GammaControlTab.qml index c6b2f6bc8..1482d5f87 100644 --- a/quickshell/Modules/Settings/GammaControlTab.qml +++ b/quickshell/Modules/Settings/GammaControlTab.qml @@ -122,7 +122,6 @@ Item { tags: ["gamma", "day", "temperature", "kelvin", "color"] width: parent.width - parent.leftPadding - parent.rightPadding text: I18n.tr("Day Temperature") - description: I18n.tr("Color temperature for day time") minimum: SessionData.nightModeTemperature maximum: 10000 step: 100 diff --git a/quickshell/Modules/Settings/GreeterTab.qml b/quickshell/Modules/Settings/GreeterTab.qml index 97cac4a96..b3f22156b 100644 --- a/quickshell/Modules/Settings/GreeterTab.qml +++ b/quickshell/Modules/Settings/GreeterTab.qml @@ -305,7 +305,7 @@ Item { onExited: exitCode => { root.greeterSyncRunning = false; if (exitCode === 0) { - var launched = root.greeterTerminalFallbackFromPrecheck ? I18n.tr("Terminal opened. Complete sync authentication there; it will close automatically when done.") : I18n.tr("Terminal fallback opened. Complete sync there; it will close automatically when done."); + var launched = root.greeterTerminalFallbackFromPrecheck ? I18n.tr("Terminal opened. Complete authentication there; it will close automatically when done.") : I18n.tr("Terminal fallback opened. Complete authentication there; it will close automatically when done."); root.greeterStatusText = root.greeterStatusText ? root.greeterStatusText + "\n\n" + launched : launched; SettingsData.clearGreeterSyncPending(); return; @@ -396,7 +396,7 @@ Item { SettingsCard { width: parent.width iconName: "info" - title: I18n.tr("Greeter Status") + title: I18n.tr("Status") settingKey: "greeterStatus" StyledText { @@ -470,7 +470,7 @@ Item { SettingsCard { width: parent.width iconName: "fingerprint" - title: I18n.tr("Login Authentication") + title: I18n.tr("Authentication") settingKey: "greeterAuth" StyledText { @@ -517,7 +517,7 @@ Item { SettingsCard { width: parent.width iconName: "palette" - title: I18n.tr("Greeter Appearance") + title: I18n.tr("Appearance") settingKey: "greeterAppearance" StyledText { @@ -558,7 +558,7 @@ Item { currentValue: { var current = (SettingsData.greeterLockDateFormat !== undefined && SettingsData.greeterLockDateFormat !== "") ? SettingsData.greeterLockDateFormat : SettingsData.lockDateFormat || ""; var match = root._lockDateFormatPresets.find(p => p.format === current); - return match ? match.label : (current ? I18n.tr("Custom: ") + current : root._lockDateFormatPresets[0].label); + return match ? match.label : (current ? I18n.tr("Custom") + ": " + current : root._lockDateFormatPresets[0].label); } onValueChanged: value => { var preset = root._lockDateFormatPresets.find(p => p.label === value); @@ -601,7 +601,7 @@ Item { SettingsCard { width: parent.width iconName: "history" - title: I18n.tr("Greeter Behavior") + title: I18n.tr("Behavior") settingKey: "greeterBehavior" StyledText { diff --git a/quickshell/Modules/Settings/KeybindsTab.qml b/quickshell/Modules/Settings/KeybindsTab.qml index a0c885a10..f6912a41e 100644 --- a/quickshell/Modules/Settings/KeybindsTab.qml +++ b/quickshell/Modules/Settings/KeybindsTab.qml @@ -117,7 +117,7 @@ Item { function confirmResetBind(key, remainingKey) { removeBindConfirm.showWithOptions({ - title: I18n.tr("Reset to Default?"), + title: I18n.tr("Reset to default"), message: I18n.tr("Drop your override for %1 so the DMS default action re-applies?").arg(key), confirmText: I18n.tr("Reset"), confirmColor: Theme.primary, @@ -397,7 +397,7 @@ Item { StyledText { text: { if (warningBox.showLegacy) - return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings."); + return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."); if (warningBox.showSetup) return I18n.tr("Click 'Setup' to create %1 and add include to your compositor config.").arg("dms/binds"); if (warningBox.showWarning) { diff --git a/quickshell/Modules/Settings/LauncherTab.qml b/quickshell/Modules/Settings/LauncherTab.qml index b6ef548d6..6e551fff7 100644 --- a/quickshell/Modules/Settings/LauncherTab.qml +++ b/quickshell/Modules/Settings/LauncherTab.qml @@ -139,7 +139,7 @@ Item { } StyledText { - text: !root.keybindsAvailable ? I18n.tr("Bind the spotlight IPC action in your compositor config.") : SettingsData.connectedFrameModeActive ? I18n.tr("Opens the connected launcher in Connected Frame Mode.") : I18n.tr("Follows the default launcher choice selected above.") + text: !root.keybindsAvailable ? I18n.tr("Bind the %1 IPC action in your compositor config.").arg("spotlight") : SettingsData.connectedFrameModeActive ? I18n.tr("Opens the connected launcher in Connected Frame Mode.") : I18n.tr("Follows the default launcher choice selected above.") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText width: parent.width @@ -173,7 +173,6 @@ Item { settingKey: "launcherUseOverlayLayer" tags: ["launcher", "fullscreen", "overlay", "layer"] text: I18n.tr("Use Overlay Layer", "launcher layer toggle: use Wayland overlay layer") - description: I18n.tr("Use the overlay layer when opening the launcher") checked: SettingsData.launcherUseOverlayLayer onToggled: checked => SettingsData.set("launcherUseOverlayLayer", checked) } @@ -233,7 +232,7 @@ Item { } StyledText { - text: !root.keybindsAvailable ? I18n.tr("Bind the spotlight-bar IPC action in your compositor config.") : I18n.tr("Uses the spotlight-bar IPC action and always opens the minimal bar.") + text: !root.keybindsAvailable ? I18n.tr("Bind the %1 IPC action in your compositor config.").arg("spotlight-bar") : I18n.tr("Uses the spotlight-bar IPC action and always opens the minimal bar.") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText width: parent.width diff --git a/quickshell/Modules/Settings/LocaleTab.qml b/quickshell/Modules/Settings/LocaleTab.qml index d4f7f5efe..c18cb1373 100644 --- a/quickshell/Modules/Settings/LocaleTab.qml +++ b/quickshell/Modules/Settings/LocaleTab.qml @@ -45,7 +45,7 @@ Item { SettingsCard { tab: "locale" tags: ["locale", "language", "country"] - title: I18n.tr("Locale Settings") + title: I18n.tr("General") iconName: "language" SettingsDropdownRow { diff --git a/quickshell/Modules/Settings/LockScreenTab.qml b/quickshell/Modules/Settings/LockScreenTab.qml index 99e044958..755ac0a5d 100644 --- a/quickshell/Modules/Settings/LockScreenTab.qml +++ b/quickshell/Modules/Settings/LockScreenTab.qml @@ -266,7 +266,7 @@ Item { SettingsCard { width: parent.width iconName: "lock" - title: I18n.tr("Lock Screen layout") + title: I18n.tr("Layout") settingKey: "lockLayout" SettingsToggleRow { @@ -345,7 +345,7 @@ Item { SettingsCard { width: parent.width iconName: "palette" - title: I18n.tr("Lock Screen Appearance") + title: I18n.tr("Appearance") settingKey: "lockAppearance" StyledText { @@ -476,7 +476,6 @@ Item { settingKey: "lockPamExternallyManaged" tags: ["lock", "screen", "pam", "managed", "external", "authentication", "policy"] text: I18n.tr("Use system PAM authentication", "system PAM policy toggle") - description: I18n.tr("System PAM sets the authentication policy.", "system PAM policy toggle") checked: SettingsData.lockPamExternallyManaged onToggled: checked => SettingsData.set("lockPamExternallyManaged", checked) } @@ -582,7 +581,7 @@ Item { SettingsCard { width: parent.width iconName: "lock" - title: I18n.tr("Lock Screen behaviour") + title: I18n.tr("Behavior") settingKey: "lockBehavior" StyledText { @@ -721,7 +720,7 @@ Item { SettingsCard { width: parent.width iconName: "monitor" - title: I18n.tr("Lock Screen Display") + title: I18n.tr("Display Assignment") settingKey: "lockDisplay" StyledText { diff --git a/quickshell/Modules/Settings/MediaPlayerTab.qml b/quickshell/Modules/Settings/MediaPlayerTab.qml index 868d0f709..7e7eeb41d 100644 --- a/quickshell/Modules/Settings/MediaPlayerTab.qml +++ b/quickshell/Modules/Settings/MediaPlayerTab.qml @@ -34,7 +34,7 @@ Item { SettingsCard { width: parent.width iconName: "music_note" - title: I18n.tr("Media Player Settings") + title: I18n.tr("General") settingKey: "mediaPlayer" SettingsToggleRow { @@ -146,7 +146,7 @@ Item { SettingsCard { width: parent.width iconName: "do_not_disturb_on" - title: I18n.tr("Excluded Media Players") + title: I18n.tr("Excluded Players") settingKey: "mediaExcludePlayers" tags: ["media", "music", "exclude", "ignore", "player", "mpris"] diff --git a/quickshell/Modules/Settings/MuxTab.qml b/quickshell/Modules/Settings/MuxTab.qml index 0ad90c99d..be641e44e 100644 --- a/quickshell/Modules/Settings/MuxTab.qml +++ b/quickshell/Modules/Settings/MuxTab.qml @@ -25,7 +25,7 @@ Item { SettingsCard { tab: "mux" tags: ["mux", "multiplexer", "tmux", "zellij", "type"] - title: I18n.tr("Multiplexer") + title: I18n.tr("General") iconName: "terminal" SettingsDropdownRow { @@ -33,7 +33,6 @@ Item { tags: ["mux", "multiplexer", "tmux", "zellij", "type", "backend"] settingKey: "muxType" text: I18n.tr("Multiplexer Type") - description: I18n.tr("Terminal multiplexer backend to use") options: root.muxTypeOptions currentValue: SettingsData.muxType onValueChanged: value => SettingsData.set("muxType", value) diff --git a/quickshell/Modules/Settings/NetworkStatusTab.qml b/quickshell/Modules/Settings/NetworkStatusTab.qml index 9b55b63a0..d69a64ea2 100644 --- a/quickshell/Modules/Settings/NetworkStatusTab.qml +++ b/quickshell/Modules/Settings/NetworkStatusTab.qml @@ -37,7 +37,7 @@ Item { SettingsCard { id: root - title: I18n.tr("Network Status") + title: I18n.tr("Status") iconName: "lan" settingKey: "networkStatus" tags: ["status", "network", "connectivity", "internet"] @@ -128,7 +128,7 @@ Item { } StyledText { - text: I18n.tr("Primary") + text: I18n.tr("Primary", "primary network connection label", true) font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText visible: NetworkService.primaryConnection.length > 0 diff --git a/quickshell/Modules/Settings/NetworkWifiTab.qml b/quickshell/Modules/Settings/NetworkWifiTab.qml index aca22de43..4fd967110 100644 --- a/quickshell/Modules/Settings/NetworkWifiTab.qml +++ b/quickshell/Modules/Settings/NetworkWifiTab.qml @@ -318,7 +318,7 @@ Item { visible: NetworkService.wifiConnected StyledText { - text: I18n.tr("Signal:") + text: I18n.tr("Signal") + ":" font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText width: 100 @@ -563,7 +563,7 @@ Item { spacing: Theme.spacingXS StyledText { - text: isConnecting ? I18n.tr("Connecting...") : (isConnected ? I18n.tr("Connected") : (modelData.secured ? I18n.tr("Secured") : I18n.tr("Open"))) + text: isConnecting ? I18n.tr("Connecting...") : (isConnected ? I18n.tr("Connected") : (modelData.secured ? I18n.tr("Secured") : I18n.tr("Open", "network security type", true))) font.pixelSize: Theme.fontSizeSmall color: isConnecting ? Theme.warning : (isConnected ? Theme.primary : Theme.surfaceVariantText) } @@ -770,7 +770,7 @@ Item { }); fields.push({ label: I18n.tr("Security"), - value: net.secured ? (net.enterprise ? I18n.tr("Enterprise") : I18n.tr("WPA/WPA2")) : I18n.tr("Open") + value: net.secured ? (net.enterprise ? I18n.tr("Enterprise") : I18n.tr("WPA/WPA2")) : I18n.tr("Open", "network security type", true) }); return fields; @@ -966,7 +966,7 @@ Item { text: { if (isConnecting) return I18n.tr("Connecting..."); - const parts = [isConnected ? I18n.tr("Connected") : (modelData.secured ? I18n.tr("Secured") : I18n.tr("Open"))]; + const parts = [isConnected ? I18n.tr("Connected") : (modelData.secured ? I18n.tr("Secured") : I18n.tr("Open", "network security type", true))]; parts.push(isOutOfRange ? I18n.tr("Unavailable") : (modelData.signal || 0) + "%"); if (modelData.hidden || false) parts.push(I18n.tr("Hidden")); @@ -1131,7 +1131,7 @@ Item { }); fields.push({ label: I18n.tr("Security"), - value: net.secured ? (net.enterprise ? I18n.tr("Enterprise") : I18n.tr("WPA/WPA2")) : I18n.tr("Open") + value: net.secured ? (net.enterprise ? I18n.tr("Enterprise") : I18n.tr("WPA/WPA2")) : I18n.tr("Open", "network security type", true) }); return fields; diff --git a/quickshell/Modules/Settings/NotificationsTab.qml b/quickshell/Modules/Settings/NotificationsTab.qml index 98f3f5434..69c9b6602 100644 --- a/quickshell/Modules/Settings/NotificationsTab.qml +++ b/quickshell/Modules/Settings/NotificationsTab.qml @@ -203,7 +203,7 @@ Item { SettingsCard { width: parent.width iconName: "notifications" - title: I18n.tr("Notification Popups") + title: I18n.tr("Popups") settingKey: "notificationPopups" // Font size selectors for summary and body @@ -211,7 +211,6 @@ Item { settingKey: "notificationSummaryFontSize" tags: ["notification", "font", "summary", "size"] text: I18n.tr("Summary Font Size") - description: I18n.tr("Set the font size for notification summary text") options: [I18n.tr("Unset"), "10", "12", "14", "16", "18"] currentValue: (SettingsData.notificationSummaryFontSize || I18n.tr("Unset")).toString() onValueChanged: value => { @@ -340,7 +339,6 @@ Item { settingKey: "notificationFocusedMonitor" tags: ["notification", "popup", "focused", "monitor", "display", "screen", "active"] text: I18n.tr("Focused Monitor Only") - description: I18n.tr("Show notification popups only on the currently focused monitor") checked: SettingsData.notificationFocusedMonitor onToggled: checked => SettingsData.set("notificationFocusedMonitor", checked) } @@ -445,7 +443,7 @@ Item { id: notificationRulesCard width: parent.width iconName: "rule_settings" - title: I18n.tr("Notification Rules") + title: I18n.tr("Rules") settingKey: "notificationRules" tags: ["notification", "rules", "mute", "ignore", "priority", "regex", "history"] collapsible: true @@ -510,7 +508,7 @@ Item { StyledText { id: ruleLabel - text: I18n.tr("Rule") + " " + (index + 1) + text: I18n.tr("Rule %1").arg(index + 1) font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText anchors.verticalCenter: parent.verticalCenter @@ -785,7 +783,7 @@ Item { SettingsCard { width: parent.width iconName: "timer" - title: I18n.tr("Notification Timeouts") + title: I18n.tr("Timeouts") settingKey: "notificationTimeouts" collapsible: true expanded: false @@ -794,7 +792,6 @@ Item { settingKey: "notificationTimeoutLow" tags: ["notification", "timeout", "low", "priority", "duration"] text: I18n.tr("Low Priority") - description: I18n.tr("Timeout for low priority notifications") currentValue: root.getTimeoutText(SettingsData.notificationTimeoutLow) options: root.timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -811,7 +808,6 @@ Item { settingKey: "notificationTimeoutNormal" tags: ["notification", "timeout", "normal", "priority", "duration"] text: I18n.tr("Normal Priority") - description: I18n.tr("Timeout for normal priority notifications") currentValue: root.getTimeoutText(SettingsData.notificationTimeoutNormal) options: root.timeoutOptions.map(opt => opt.text) onValueChanged: value => { @@ -828,7 +824,6 @@ Item { settingKey: "notificationTimeoutCritical" tags: ["notification", "timeout", "critical", "priority", "duration"] text: I18n.tr("Critical Priority") - description: I18n.tr("Timeout for critical priority notifications") currentValue: root.getTimeoutText(SettingsData.notificationTimeoutCritical) options: root.timeoutOptions.map(opt => opt.text) onValueChanged: value => { diff --git a/quickshell/Modules/Settings/OSDTab.qml b/quickshell/Modules/Settings/OSDTab.qml index 4bf26d8c5..38266ae2d 100644 --- a/quickshell/Modules/Settings/OSDTab.qml +++ b/quickshell/Modules/Settings/OSDTab.qml @@ -91,7 +91,6 @@ Item { SettingsToggleRow { settingKey: "osdVolumeEnabled" text: I18n.tr("Volume") - description: I18n.tr("Show on-screen display when volume changes") checked: SettingsData.osdVolumeEnabled onToggled: checked => SettingsData.set("osdVolumeEnabled", checked) } @@ -99,7 +98,6 @@ Item { SettingsToggleRow { settingKey: "osdMediaVolumeEnabled" text: I18n.tr("Media Volume") - description: I18n.tr("Show on-screen display when media player volume changes") checked: SettingsData.osdMediaVolumeEnabled onToggled: checked => SettingsData.set("osdMediaVolumeEnabled", checked) } @@ -107,7 +105,6 @@ Item { SettingsToggleRow { settingKey: "osdMediaPlaybackEnabled" text: I18n.tr("Media Playback") - description: I18n.tr("Show on-screen display when media player status changes") checked: SettingsData.osdMediaPlaybackEnabled onToggled: checked => SettingsData.set("osdMediaPlaybackEnabled", checked) } @@ -115,7 +112,6 @@ Item { SettingsToggleRow { settingKey: "osdBrightnessEnabled" text: I18n.tr("Brightness") - description: I18n.tr("Show on-screen display when brightness changes") checked: SettingsData.osdBrightnessEnabled onToggled: checked => SettingsData.set("osdBrightnessEnabled", checked) } @@ -123,7 +119,6 @@ Item { SettingsToggleRow { settingKey: "osdIdleInhibitorEnabled" text: I18n.tr("Idle Inhibitor") - description: I18n.tr("Show on-screen display when idle inhibitor state changes") checked: SettingsData.osdIdleInhibitorEnabled onToggled: checked => SettingsData.set("osdIdleInhibitorEnabled", checked) } @@ -131,7 +126,6 @@ Item { SettingsToggleRow { settingKey: "osdMicMuteEnabled" text: I18n.tr("Microphone Mute") - description: I18n.tr("Show on-screen display when microphone is muted/unmuted") checked: SettingsData.osdMicMuteEnabled onToggled: checked => SettingsData.set("osdMicMuteEnabled", checked) } @@ -139,7 +133,6 @@ Item { SettingsToggleRow { settingKey: "osdCapsLockEnabled" text: I18n.tr("Caps Lock") - description: I18n.tr("Show on-screen display when caps lock state changes") checked: SettingsData.osdCapsLockEnabled onToggled: checked => SettingsData.set("osdCapsLockEnabled", checked) } @@ -147,7 +140,6 @@ Item { SettingsToggleRow { settingKey: "osdPowerProfileEnabled" text: I18n.tr("Power Profile") - description: I18n.tr("Show on-screen display when power profile changes") checked: SettingsData.osdPowerProfileEnabled onToggled: checked => SettingsData.set("osdPowerProfileEnabled", checked) } @@ -155,7 +147,6 @@ Item { SettingsToggleRow { settingKey: "osdAudioOutputEnabled" text: I18n.tr("Audio Output Switch") - description: I18n.tr("Show on-screen display when cycling audio output devices") checked: SettingsData.osdAudioOutputEnabled onToggled: checked => SettingsData.set("osdAudioOutputEnabled", checked) } diff --git a/quickshell/Modules/Settings/PluginUpdatesDialog.qml b/quickshell/Modules/Settings/PluginUpdatesDialog.qml index 331d19f39..0c7efc5c8 100644 --- a/quickshell/Modules/Settings/PluginUpdatesDialog.qml +++ b/quickshell/Modules/Settings/PluginUpdatesDialog.qml @@ -46,7 +46,8 @@ StyledRect { } function updateSingle(plugin) { - if (isUpdating) return; + if (isUpdating) + return; isUpdating = true; currentUpdatingPlugin = plugin.name; @@ -68,7 +69,8 @@ StyledRect { } function updateAll() { - if (isUpdating) return; + if (isUpdating) + return; isUpdating = true; var list = updatesList.slice(); @@ -149,7 +151,9 @@ StyledRect { clip: true Behavior on height { - NumberAnimation { duration: Theme.shortDuration } + NumberAnimation { + duration: Theme.shortDuration + } } Row { @@ -220,7 +224,7 @@ StyledRect { } StyledText { - text: modelData.author ? I18n.tr("By %1").arg(modelData.author) : "" + text: modelData.author ? I18n.tr("by %1", "author attribution").arg(modelData.author) : "" font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText elide: Text.ElideRight diff --git a/quickshell/Modules/Settings/PluginsTab.qml b/quickshell/Modules/Settings/PluginsTab.qml index f47afea2a..1740ade31 100644 --- a/quickshell/Modules/Settings/PluginsTab.qml +++ b/quickshell/Modules/Settings/PluginsTab.qml @@ -21,7 +21,8 @@ FocusScope { property var filteredPlugins: [] readonly property var pluginsWithUpdates: { - if (!DMSService.installedPlugins) return []; + if (!DMSService.installedPlugins) + return []; return DMSService.installedPlugins.filter(p => p.hasUpdate === true); } @@ -438,7 +439,7 @@ FocusScope { StyledText { width: parent.width - text: I18n.tr("No plugins found.") + "\n" + I18n.tr("Place plugins in %1").arg(PluginService.pluginDirectory) + text: I18n.tr("No plugins found", "empty plugin list") + "\n" + I18n.tr("Place plugins in %1").arg(PluginService.pluginDirectory) font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceVariantText horizontalAlignment: Text.AlignHCenter diff --git a/quickshell/Modules/Settings/SoundsTab.qml b/quickshell/Modules/Settings/SoundsTab.qml index 252a40ec1..a9382a886 100644 --- a/quickshell/Modules/Settings/SoundsTab.qml +++ b/quickshell/Modules/Settings/SoundsTab.qml @@ -71,7 +71,6 @@ Item { tags: ["sound", "enable", "system"] settingKey: "soundsEnabled" text: I18n.tr("Enable System Sounds") - description: I18n.tr("Play sounds for system events") checked: SettingsData.soundsEnabled onToggled: checked => SettingsData.set("soundsEnabled", checked) } @@ -106,7 +105,6 @@ Item { visible: SettingsData.useSystemSoundTheme && AudioService.availableSoundThemes.length > 0 enabled: SettingsData.useSystemSoundTheme && AudioService.availableSoundThemes.length > 0 text: I18n.tr("Sound Theme") - description: I18n.tr("Select system sound theme") options: AudioService.availableSoundThemes currentValue: { const theme = AudioService.currentSoundTheme; diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index 0860c6620..1cdcaad74 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -143,7 +143,7 @@ Item { function fixCursorInclude() { if (cursorReadOnly) { - ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings."), "dms setup", "hyprland-migration"); + ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."), "dms setup", "hyprland-migration"); return; } const paths = getCursorConfigPaths(); @@ -1626,7 +1626,6 @@ Item { tags: ["widget", "background", "color", "surface", "material"] settingKey: "widgetBackgroundColor" text: I18n.tr("Widget Background Color") - description: I18n.tr("Choose the background color for widgets") dropdownWidth: 220 options: themeColorsTab.widgetBackgroundOptions currentMode: SettingsData.widgetBackgroundColor @@ -1943,7 +1942,6 @@ Item { tags: ["elevation", "shadow", "opacity", "transparency", "m3"] settingKey: "m3ElevationOpacity" text: I18n.tr("Shadow Opacity") - description: I18n.tr("Controls the opacity of the shadow") value: SettingsData.m3ElevationOpacity ?? 30 minimum: 0 maximum: 100 @@ -2220,7 +2218,7 @@ Item { StyledText { text: { if (cursorWarningBox.showLegacy) - return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings."); + return I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."); if (cursorWarningBox.showSetup) return I18n.tr("Click 'Setup' to create %1 and add include to your compositor config.").arg("dms/cursor"); return ""; diff --git a/quickshell/Modules/Settings/TimeWeatherTab.qml b/quickshell/Modules/Settings/TimeWeatherTab.qml index 070ec1db9..648e59625 100644 --- a/quickshell/Modules/Settings/TimeWeatherTab.qml +++ b/quickshell/Modules/Settings/TimeWeatherTab.qml @@ -84,7 +84,6 @@ Item { tags: ["time", "seconds", "clock"] settingKey: "showSeconds" text: I18n.tr("Show Seconds") - description: I18n.tr("Display seconds in the clock") checked: SettingsData.showSeconds onToggled: checked => SettingsData.set("showSeconds", checked) } @@ -113,7 +112,6 @@ Item { tags: ["show", "week"] settingKey: "showWeekNumber" text: I18n.tr("Show Week Number") - description: I18n.tr("Show week number in the calendar") checked: SettingsData.showWeekNumber onToggled: checked => SettingsData.set("showWeekNumber", checked) } @@ -218,7 +216,7 @@ Item { } ]; const match = presets.find(p => p.format === SettingsData.clockDateFormat); - return match ? match.label : I18n.tr("Custom: ") + SettingsData.clockDateFormat; + return match ? match.label : I18n.tr("Custom") + ": " + SettingsData.clockDateFormat; } onValueChanged: value => { const formatMap = {}; @@ -305,7 +303,7 @@ Item { } ]; const match = presets.find(p => p.format === SettingsData.lockDateFormat); - return match ? match.label : I18n.tr("Custom: ") + SettingsData.lockDateFormat; + return match ? match.label : I18n.tr("Custom") + ": " + SettingsData.lockDateFormat; } onValueChanged: value => { const formatMap = {}; diff --git a/quickshell/Modules/Settings/TypographyMotionTab.qml b/quickshell/Modules/Settings/TypographyMotionTab.qml index 73a6eb437..e3f70006e 100644 --- a/quickshell/Modules/Settings/TypographyMotionTab.qml +++ b/quickshell/Modules/Settings/TypographyMotionTab.qml @@ -455,7 +455,7 @@ Item { buttonPadding: parent.width < 480 ? Theme.spacingXS : Theme.spacingS minButtonWidth: parent.width < 480 ? 40 : 56 textSize: parent.width < 480 ? Theme.fontSizeSmall : Theme.fontSizeMedium - model: [I18n.tr("Default"), I18n.tr("Low"), I18n.tr("Normal"), I18n.tr("High"), I18n.tr("Very High")] + model: [I18n.tr("Default"), I18n.tr("Low", "quality level option"), I18n.tr("Normal", "quality level option"), I18n.tr("High", "quality level option"), I18n.tr("Very High", "quality level option")] selectionMode: "single" currentIndex: SettingsData.textRenderQuality onSelectionChanged: (index, selected) => { @@ -622,7 +622,6 @@ Item { tags: ["animation", "duration", "custom", "speed", "popout"] settingKey: "popoutCustomAnimationDuration" text: I18n.tr("Custom Duration") - description: I18n.tr("%1 custom animation duration").arg(I18n.tr("Popouts")) minimum: 0 maximum: 1000 value: Theme.popoutAnimationDuration @@ -706,7 +705,6 @@ Item { tags: ["animation", "duration", "custom", "speed", "modal"] settingKey: "modalCustomAnimationDuration" text: I18n.tr("Custom Duration") - description: I18n.tr("%1 custom animation duration").arg(I18n.tr("Modals")) minimum: 0 maximum: 1000 value: Theme.modalAnimationDuration diff --git a/quickshell/Modules/Settings/UsersTab.qml b/quickshell/Modules/Settings/UsersTab.qml index 9863f52fa..bf76cb1c2 100644 --- a/quickshell/Modules/Settings/UsersTab.qml +++ b/quickshell/Modules/Settings/UsersTab.qml @@ -290,7 +290,7 @@ Item { return; const makeAdmin = !userRow.modelData.isAdmin; adminToggleConfirm.showWithOptions({ - title: makeAdmin ? I18n.tr("Grant admin?") : I18n.tr("Remove admin?"), + title: makeAdmin ? I18n.tr("Make admin") : I18n.tr("Remove admin"), message: makeAdmin ? I18n.tr("Add \"%1\" to the %2 group?").arg(userRow.modelData.username).arg(UsersService.adminGroup) : I18n.tr("Remove \"%1\" from the %2 group?").arg(userRow.modelData.username).arg(UsersService.adminGroup), confirmText: makeAdmin ? I18n.tr("Grant") : I18n.tr("Remove"), confirmColor: Theme.primary, @@ -317,7 +317,7 @@ Item { if (actionBlocked) return; deleteUserConfirm.showWithOptions({ - title: I18n.tr("Delete user?"), + title: I18n.tr("Delete user"), message: I18n.tr("Delete \"%1\" and remove the home directory? This cannot be undone.").arg(userRow.modelData.username), confirmText: I18n.tr("Delete"), confirmColor: Theme.primary, diff --git a/quickshell/Modules/Settings/WallpaperTab.qml b/quickshell/Modules/Settings/WallpaperTab.qml index 90afda2c3..2ca0ae516 100644 --- a/quickshell/Modules/Settings/WallpaperTab.qml +++ b/quickshell/Modules/Settings/WallpaperTab.qml @@ -804,7 +804,6 @@ Item { settingKey: "selectedMonitor" width: parent.width - Theme.spacingM * 2 text: I18n.tr("Wallpaper Monitor") - description: I18n.tr("Select monitor to configure wallpaper") currentValue: { var screens = Quickshell.screens; for (var i = 0; i < screens.length; i++) { @@ -843,7 +842,7 @@ Item { currentValue: { var screens = Quickshell.screens; if (!SettingsData.matugenTargetMonitor || SettingsData.matugenTargetMonitor === "") { - return screens.length > 0 ? SettingsData.getScreenDisplayName(screens[0]) + " " + I18n.tr("(Default)", "default monitor label suffix") : I18n.tr("No monitors", "no monitors available label"); + return screens.length > 0 ? SettingsData.getScreenDisplayName(screens[0]) + " " + "(" + I18n.tr("Default") + ")" : I18n.tr("No monitors", "no monitors available label"); } for (var i = 0; i < screens.length; i++) { if (screens[i].name === SettingsData.matugenTargetMonitor) { @@ -858,14 +857,14 @@ Item { for (var i = 0; i < screens.length; i++) { var label = SettingsData.getScreenDisplayName(screens[i]); if (i === 0 && (!SettingsData.matugenTargetMonitor || SettingsData.matugenTargetMonitor === "")) { - label += " " + I18n.tr("(Default)", "default monitor label suffix"); + label += " " + "(" + I18n.tr("Default") + ")"; } screenNames.push(label); } return screenNames; } onValueChanged: value => { - var cleanValue = value.replace(" " + I18n.tr("(Default)", "default monitor label suffix"), ""); + var cleanValue = value.replace(" " + "(" + I18n.tr("Default") + ")", ""); var screens = Quickshell.screens; for (var i = 0; i < screens.length; i++) { if (SettingsData.getScreenDisplayName(screens[i]) === cleanValue) { @@ -924,7 +923,7 @@ Item { width: parent.width - Theme.spacingM * 2 StyledText { - text: I18n.tr("Mode:") + text: I18n.tr("Mode") + ":" font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceText anchors.verticalCenter: parent.verticalCenter diff --git a/quickshell/Modules/Settings/WidgetsTab.qml b/quickshell/Modules/Settings/WidgetsTab.qml index fb5fbf0d7..a6eac7cb3 100644 --- a/quickshell/Modules/Settings/WidgetsTab.qml +++ b/quickshell/Modules/Settings/WidgetsTab.qml @@ -192,7 +192,7 @@ Item { { "id": "battery", "text": I18n.tr("Battery"), - "description": I18n.tr("Battery level and power management"), + "description": I18n.tr("Battery and power management"), "icon": "battery_std", "enabled": true }, diff --git a/quickshell/Modules/Settings/WindowRulesTab.qml b/quickshell/Modules/Settings/WindowRulesTab.qml index f1cc88ee7..08ec2210c 100644 --- a/quickshell/Modules/Settings/WindowRulesTab.qml +++ b/quickshell/Modules/Settings/WindowRulesTab.qml @@ -45,7 +45,7 @@ Item { "appId": I18n.tr("App ID"), "title": I18n.tr("Title"), "isFloating": I18n.tr("Floating"), - "isActive": I18n.tr("Active"), + "isActive": I18n.tr("Active", "active state label"), "isFocused": I18n.tr("Focused"), "isActiveInColumn": I18n.tr("Active in Column"), "isWindowCastTarget": I18n.tr("Cast Target"), @@ -343,7 +343,7 @@ Item { } function showHyprlandReadOnlyWarning() { - ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings."), "dms setup", "hyprland-migration"); + ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."), "dms setup", "hyprland-migration"); } Component.onCompleted: { @@ -509,7 +509,7 @@ Item { } StyledText { - text: warningBox.showLegacy ? I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.") : I18n.tr("Click 'Setup' to create %1 and add include to your compositor config.").arg("dms/windowrules") + text: warningBox.showLegacy ? I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.") : I18n.tr("Click 'Setup' to create %1 and add include to your compositor config.").arg("dms/windowrules") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText wrapMode: Text.WordWrap diff --git a/quickshell/Modules/Settings/WorkspaceAppearanceCard.qml b/quickshell/Modules/Settings/WorkspaceAppearanceCard.qml index 30a13d413..f7cda2bec 100644 --- a/quickshell/Modules/Settings/WorkspaceAppearanceCard.qml +++ b/quickshell/Modules/Settings/WorkspaceAppearanceCard.qml @@ -8,7 +8,7 @@ SettingsCard { id: root iconName: "palette" - title: I18n.tr("Workspace Appearance") + title: I18n.tr("Appearance") settingKey: "workspaceAppearance" tags: ["workspace", "focused", "color", "custom"] collapsible: true @@ -200,10 +200,10 @@ SettingsCard { tabHeight: 44 showIcons: false model: [({ - "text": I18n.tr("Focused Display", "workspace appearance tab") - }), ({ - "text": I18n.tr("Unfocused Display(s)", "workspace appearance tab") - })] + "text": I18n.tr("Focused Display", "workspace appearance tab") + }), ({ + "text": I18n.tr("Unfocused Display(s)", "workspace appearance tab") + })] onTabClicked: index => currentIndex = index Component.onCompleted: Qt.callLater(updateIndicator) diff --git a/quickshell/Modules/Settings/WorkspacesTab.qml b/quickshell/Modules/Settings/WorkspacesTab.qml index 1bd8fa225..2b0143857 100644 --- a/quickshell/Modules/Settings/WorkspacesTab.qml +++ b/quickshell/Modules/Settings/WorkspacesTab.qml @@ -25,7 +25,7 @@ Item { SettingsCard { width: parent.width iconName: "view_module" - title: I18n.tr("Workspace Settings") + title: I18n.tr("General") settingKey: "workspaceSettings" SettingsToggleRow { diff --git a/quickshell/Services/KeybindsService.qml b/quickshell/Services/KeybindsService.qml index 127029aeb..5f9b8c720 100644 --- a/quickshell/Services/KeybindsService.qml +++ b/quickshell/Services/KeybindsService.qml @@ -547,7 +547,7 @@ Singleton { } function showHyprlandReadOnlyWarning() { - ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings."), "dms setup", "hyprland-migration"); + ToastService.showWarning(I18n.tr("Hyprland conf mode"), I18n.tr("This install is still using hyprland.conf. Run dms setup to migrate before changing these settings."), "dms setup", "hyprland-migration"); } function removeBind(key) { diff --git a/quickshell/scripts/i18nsync.py b/quickshell/scripts/i18nsync.py index fda4ff351..fbacc9eea 100755 --- a/quickshell/scripts/i18nsync.py +++ b/quickshell/scripts/i18nsync.py @@ -90,15 +90,20 @@ def json_changed(file_path, new_data): old_data = normalize_json(file_path) return json.dumps(old_data, sort_keys=True) != json.dumps(new_data, sort_keys=True) -def upload_source_strings(api_token, project_id): +def upload_source_strings(api_token, project_id, prune=False): if not EN_JSON.exists(): warn("No en.json to upload") return False - info("Uploading source strings to POEditor...") + info("Uploading source strings to POEditor..." + (" (pruning terms not in en.json)" if prune else "")) with open(EN_JSON, 'rb') as f: boundary = '----WebKitFormBoundary7MA4YWxkTrZu0gW' + sync_part = ( + f'--{boundary}\r\n' + f'Content-Disposition: form-data; name="sync_terms"\r\n\r\n' + f'1\r\n' + ) if prune else '' body = ( f'--{boundary}\r\n' f'Content-Disposition: form-data; name="api_token"\r\n\r\n' @@ -109,6 +114,7 @@ def upload_source_strings(api_token, project_id): f'--{boundary}\r\n' f'Content-Disposition: form-data; name="updating"\r\n\r\n' f'terms\r\n' + f'{sync_part}' f'--{boundary}\r\n' f'Content-Disposition: form-data; name="file"; filename="en.json"\r\n' f'Content-Type: application/json\r\n\r\n' @@ -253,7 +259,7 @@ def save_sync_state(): def main(): if len(sys.argv) < 2: - error("Usage: i18nsync.py [check|sync|test|local]") + error("Usage: i18nsync.py [check|sync [--prune]|test|local]") command = sys.argv[1] @@ -290,6 +296,10 @@ def main(): elif command == "sync": api_token = get_env_or_error('POEDITOR_API_TOKEN') project_id = get_env_or_error('POEDITOR_PROJECT_ID') + prune = "--prune" in sys.argv[2:] + if prune: + warn("--prune deletes every POEditor term missing from the local en.json, including its translations.") + warn("Terms from dms-plugins/ are machine-dependent: make sure all official plugins are present before pruning.") extract_strings() @@ -310,8 +320,8 @@ def main(): strings_changed = json.dumps(current_en, sort_keys=True) != json.dumps(staged_en, sort_keys=True) - if strings_changed: - upload_source_strings(api_token, project_id) + if strings_changed or prune: + upload_source_strings(api_token, project_id, prune) else: info("No changes in source strings") diff --git a/quickshell/translations/check_term_freeze.py b/quickshell/translations/check_term_freeze.py index 7b070eb7d..b52c3e9e1 100644 --- a/quickshell/translations/check_term_freeze.py +++ b/quickshell/translations/check_term_freeze.py @@ -4,6 +4,9 @@ While term_freeze.json exists, any I18n.tr()/qsTr() term not in it fails the check. Existing terms may be reused or moved freely. +The freeze is term-granular: adding a new real context to a frozen term via +I18n.tr(term, ctx, true) does not trip it (same English string, new slot). + --update re-snapshot the current terms into term_freeze.json (delete term_freeze.json to lift the freeze) """ diff --git a/quickshell/translations/check_term_variants.py b/quickshell/translations/check_term_variants.py new file mode 100644 index 000000000..0b322a3db --- /dev/null +++ b/quickshell/translations/check_term_variants.py @@ -0,0 +1,68 @@ +#!/usr/bin/env python3 +"""Block near-variant translation terms (case/trailing-punctuation duplicates). + +Unlike a term freeze, new terms are always allowed. This only fails when two +terms collapse to the same string after lowercasing and stripping trailing +".:?! " punctuation - e.g. "Signal" vs "Signal:", "Reset to Default?" vs +"Reset to default". Build punctuation outside tr() instead: + I18n.tr("Signal") + ":" + +"Term" vs "Term..." pairs are NOT flagged: a trailing ellipsis is meaningful +(progress states, opens-a-dialog affordances). +""" +import sys +from collections import defaultdict + +from extract_translations import extract_qstr_strings +from pathlib import Path + +ROOT_DIR = Path(__file__).parent.parent + +# Intentional pairs that survive normalization on purpose. +ALLOWED = [ + {"PIN", "Pin"}, # WPS PIN acronym vs the verb "pin" + {"Device", "device"}, # label vs inline generic-noun fallback + {"Until %1", "until %1"}, # sentence-initial vs mid-sentence position +] + + +def normalize(term): + t = term.replace("…", "...") + ellipsis = t.rstrip().endswith("...") + t = t.lower().rstrip(".:?! ") + return t + "..." if ellipsis else t + + +def main(): + translations = extract_qstr_strings(ROOT_DIR) + groups = defaultdict(set) + for term in translations: + groups[normalize(term)].add(term) + + failures = [] + for variants in groups.values(): + if len(variants) < 2 or any(variants == a for a in ALLOWED): + continue + # term vs term+"..." is allowed; flag only same-ellipsis-class variants + plain = {v for v in variants if not v.replace("…", "...").rstrip().endswith("...")} + dotted = variants - plain + for cls in (plain, dotted): + if len(cls) > 1: + failures.append(sorted(cls)) + + if not failures: + print(f"No term variants ({len(translations)} terms checked)") + return 0 + + print("Near-variant terms found - reuse one exact term (or add to ALLOWED " + "in check_term_variants.py if genuinely intentional):", file=sys.stderr) + for variants in sorted(failures): + print(f" {variants}", file=sys.stderr) + for v in variants: + for occ in translations[v]["occurrences"][:3]: + print(f" {v!r}: {occ['file']}:{occ['line']}", file=sys.stderr) + return 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index dc671e7bd..5ed5728df 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -3,18570 +3,27331 @@ "term": "%1 (+%2 more)", "context": "%1 (+%2 more)", "reference": "Modules/Settings/WindowRulesTab.qml:89, Modules/Settings/WindowRulesTab.qml:947", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 Animation Speed", "context": "%1 Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:577, Modules/Settings/TypographyMotionTab.qml:661", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:577, Modules/Settings/TypographyMotionTab.qml:660", + "comment": "", + "tags": [ + "settings" + ] + }, + { + "term": "%1 Layout Overrides", + "context": "%1 Layout Overrides", + "reference": "Modules/Settings/CompositorLayoutTab.qml:273, Modules/Settings/CompositorLayoutTab.qml:402, Modules/Settings/CompositorLayoutTab.qml:553", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 Sessions", "context": "%1 Sessions", "reference": "Modals/MuxModal.qml:288", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 Startup Failed", "context": "%1 Startup Failed", "reference": "Services/PluginService.qml:767", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 active session", "context": "%1 active session", "reference": "Modals/MuxModal.qml:301", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 active sessions", "context": "%1 active sessions", "reference": "Modals/MuxModal.qml:301", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 adapter, none connected", "context": "%1 adapter, none connected", "reference": "Modules/Settings/NetworkEthernetTab.qml:62", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 adapters, none connected", "context": "%1 adapters, none connected", "reference": "Modules/Settings/NetworkEthernetTab.qml:62", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 character", "context": "%1 character", "reference": "Modules/Notepad/NotepadTextEditor.qml:1005", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 characters", "context": "%1 characters", "reference": "Modules/Notepad/NotepadTextEditor.qml:1005", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 connected", "context": "%1 connected", "reference": "Modules/Settings/NetworkEthernetTab.qml:63", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 copied", "context": "%1 copied", "reference": "Modals/DankColorPickerModal.qml:676", - "comment": "" - }, - { - "term": "%1 custom animation duration", - "context": "%1 custom animation duration", - "reference": "Modules/Settings/TypographyMotionTab.qml:625, Modules/Settings/TypographyMotionTab.qml:709", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 disconnected", "context": "%1 disconnected", "reference": "Modules/Settings/DisplayConfigTab.qml:560", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 disconnected (hidden)", "context": "%1 disconnected (hidden)", "reference": "Modules/Settings/DisplayConfigTab.qml:561", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 display", "context": "%1 display", "reference": "Modules/Settings/DankBarTab.qml:372", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 displays", "context": "%1 displays", "reference": "Modules/Settings/DankBarTab.qml:372", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 filtered", "context": "%1 filtered", "reference": "Modals/MuxModal.qml:302, Modals/MuxModal.qml:302", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 h %2 m left", "context": "%1 h %2 m left", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:52, Modules/Notifications/Center/DndDurationMenu.qml:39", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 h left", "context": "%1 h left", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:51, Modules/Notifications/Center/DndDurationMenu.qml:38", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 is now included in config", "context": "%1 is now included in config", "reference": "Services/KeybindsService.qml:261", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 issue found", "context": "%1 issue found", "reference": "Modals/Greeter/GreeterDoctorPage.qml:225", - "comment": "greeter doctor page error count" + "comment": "greeter doctor page error count", + "tags": [ + "shell" + ] }, { "term": "%1 issues found", "context": "%1 issues found", "reference": "Modals/Greeter/GreeterDoctorPage.qml:225", - "comment": "greeter doctor page error count" + "comment": "greeter doctor page error count", + "tags": [ + "shell" + ] }, { "term": "%1 min left", "context": "%1 min left", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:47, Modules/Notifications/Center/DndDurationMenu.qml:34", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 notifications", "context": "%1 notifications", "reference": "Modules/Lock/LockScreenContent.qml:521", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 online", "context": "%1 online", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:24", - "comment": "Number of online Tailscale peers" + "comment": "Number of online Tailscale peers", + "tags": [ + "shell" + ] }, { "term": "%1 tasks", "context": "%1 tasks", "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:314", - "comment": "task count next to a date, %1 is the number of tasks" + "comment": "task count next to a date, %1 is the number of tasks", + "tags": [ + "shell" + ] }, { "term": "%1 update", "context": "%1 update", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:170", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 updates", "context": "%1 updates", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:172", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 variants", "context": "%1 variants", "reference": "Modules/Settings/ThemeBrowser.qml:495, Modules/Settings/ThemeBrowser.qml:496", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 wallpaper • %2 / %3", "context": "%1 wallpaper • %2 / %3", "reference": "Modules/DankDash/WallpaperTab.qml:657", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 wallpapers • %2 / %3", "context": "%1 wallpapers • %2 / %3", "reference": "Modules/DankDash/WallpaperTab.qml:657", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 widgets", "context": "%1 widgets", "reference": "Modules/Settings/DankBarTab.qml:393", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "%1 window", "context": "%1 window", "reference": "Modals/MuxModal.qml:466", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1 windows", "context": "%1 windows", "reference": "Modals/MuxModal.qml:466", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1: %2", "context": "%1: %2", "reference": "Services/DMSNetworkService.qml:394", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%1m ago", "context": "%1m ago", "reference": "Services/NotificationService.qml:273", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "%command%", "context": "%command%", "reference": "Modules/Settings/AutoStartTab.qml:519", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", "context": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", - "reference": "Modules/Settings/LockScreenTab.qml:500", - "comment": "lock screen U2F security key mode setting" - }, - { - "term": "(Default)", - "context": "(Default)", - "reference": "Modules/Settings/WallpaperTab.qml:846, Modules/Settings/WallpaperTab.qml:861, Modules/Settings/WallpaperTab.qml:868", - "comment": "default monitor label suffix" + "reference": "Modules/Settings/LockScreenTab.qml:509", + "comment": "lock screen U2F security key mode setting", + "tags": [ + "settings" + ] }, { "term": "(Unnamed)", "context": "(Unnamed)", "reference": "Modules/Dock/DockContextMenu.qml:47, Modules/DankBar/Widgets/AppsDockContextMenu.qml:187", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "+ %1 more", "context": "+ %1 more", "reference": "Modules/Lock/LockScreenContent.qml:601, Modules/Lock/LockScreenContent.qml:716", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "/path/to/videos", "context": "/path/to/videos", - "reference": "Modules/Settings/LockScreenTab.qml:564", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:690", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:1839", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1838", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "1 day", "context": "1 day", - "reference": "Modules/Settings/NotificationsTab.qml:884, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:902, Modules/Settings/ClipboardTab.qml:103", - "comment": "notification history retention option" + "reference": "Modules/Settings/NotificationsTab.qml:879, Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/ClipboardTab.qml:103", + "comment": "notification history retention option", + "tags": [ + "settings" + ] }, { "term": "1 day before", "context": "1 day before", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "1 hour", "context": "1 hour", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:71", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:71", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "1 hour 30 minutes", "context": "1 hour 30 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "1 hour before", "context": "1 hour before", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "1 minute", "context": "1 minute", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:71", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:71", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "1 notification", "context": "1 notification", "reference": "Modules/Lock/LockScreenContent.qml:521", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "1 second", "context": "1 second", "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:43", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "1 task", "context": "1 task", "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:314", - "comment": "task count next to a date" + "comment": "task count next to a date", + "tags": [ + "shell" + ] }, { "term": "10 min before", "context": "10 min before", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "10 minutes", "context": "10 minutes", "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:77, Modules/Notifications/Center/NotificationSettings.qml:83", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "10 seconds", "context": "10 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:53, Modules/Notifications/Center/NotificationSettings.qml:59", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:53, Modules/Notifications/Center/NotificationSettings.qml:59", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "10-bit Color", "context": "10-bit Color", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:118", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "12 hours", "context": "12 hours", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "14 days", "context": "14 days", - "reference": "Modules/Settings/NotificationsTab.qml:890, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:908, Modules/Settings/ClipboardTab.qml:115", - "comment": "notification history retention option" + "reference": "Modules/Settings/NotificationsTab.qml:885, Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:903, Modules/Settings/ClipboardTab.qml:115", + "comment": "notification history retention option", + "tags": [ + "settings" + ] }, { "term": "15 min", "context": "15 min", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:63", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "15 min before", "context": "15 min before", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "15 minutes", "context": "15 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "15 seconds", "context": "15 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:57, Modules/Notifications/Center/NotificationSettings.qml:63", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:57, Modules/Notifications/Center/NotificationSettings.qml:63", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "180°", "context": "180°", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2646, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2667", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "2 hours", "context": "2 hours", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "2 minutes", "context": "2 minutes", "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:69, Modules/Notifications/Center/NotificationSettings.qml:75", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "2 seconds", "context": "2 seconds", "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "20 minutes", "context": "20 minutes", "reference": "Modules/Settings/PowerSleepTab.qml:10", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "20 seconds", "context": "20 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "24-Hour Format", "context": "24-Hour Format", - "reference": "Modules/Settings/WallpaperTab.qml:1121", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1120", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "25 seconds", "context": "25 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "250 ms", "context": "250 ms", "reference": "Modules/Settings/PowerSleepTab.qml:512", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "270°", "context": "270°", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2648, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2669", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "3 days", "context": "3 days", - "reference": "Modules/Settings/NotificationsTab.qml:886, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:904, Modules/Settings/ClipboardTab.qml:107", - "comment": "notification history retention option" + "reference": "Modules/Settings/NotificationsTab.qml:881, Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:899, Modules/Settings/ClipboardTab.qml:107", + "comment": "notification history retention option", + "tags": [ + "settings" + ] }, { "term": "3 hours", "context": "3 hours", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:75", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:75", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "3 minutes", "context": "3 minutes", "reference": "Modules/Settings/PowerSleepTab.qml:10", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "3 seconds", "context": "3 seconds", "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:41, Modules/Notifications/Center/NotificationSettings.qml:47", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "30 days", "context": "30 days", - "reference": "Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:910, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", - "comment": "notification history filter | notification history retention option" + "reference": "Modules/Settings/NotificationsTab.qml:887, Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:905, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:112", + "comment": "notification history filter | notification history retention option", + "tags": [ + "settings", + "shell" + ] }, { "term": "30 min", "context": "30 min", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:67", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "30 min before", "context": "30 min before", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "30 minutes", "context": "30 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "30 seconds", "context": "30 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:61, Modules/Notifications/Center/NotificationSettings.qml:67", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:61, Modules/Notifications/Center/NotificationSettings.qml:67", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "35 seconds", "context": "35 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "3rd party", "context": "3rd party", "reference": "Modules/Settings/PluginBrowser.qml:165", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "4 hours", "context": "4 hours", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "4 seconds", "context": "4 seconds", "reference": "Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "40 seconds", "context": "40 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "45 seconds", "context": "45 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "5 min before", "context": "5 min before", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "5 minutes", "context": "5 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/WallpaperTab.qml:1007, Modules/Settings/WallpaperTab.qml:1031, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:73, Modules/Notifications/Center/NotificationSettings.qml:79", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/WallpaperTab.qml:1006, Modules/Settings/WallpaperTab.qml:1030, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:73, Modules/Notifications/Center/NotificationSettings.qml:79", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "5 seconds", "context": "5 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Notifications/Center/NotificationSettings.qml:51, Modules/Notifications/Center/NotificationSettings.qml:90", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Notifications/Center/NotificationSettings.qml:51, Modules/Notifications/Center/NotificationSettings.qml:90", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "50 seconds", "context": "50 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "500 ms", "context": "500 ms", "reference": "Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/PowerSleepTab.qml:522", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "55 seconds", "context": "55 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "6 hours", "context": "6 hours", - "reference": "Modules/Settings/WallpaperTab.qml:983", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982", + "comment": "wallpaper interval", + "tags": [ + "settings" + ] }, { "term": "7 days", "context": "7 days", - "reference": "Modules/Settings/NotificationsTab.qml:888, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:906, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", - "comment": "notification history filter | notification history retention option" + "reference": "Modules/Settings/NotificationsTab.qml:883, Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:901, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:107", + "comment": "notification history filter | notification history retention option", + "tags": [ + "settings", + "shell" + ] }, { "term": "750 ms", "context": "750 ms", "reference": "Modules/Settings/PowerSleepTab.qml:512", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "8 hours", "context": "8 hours", - "reference": "Modules/Settings/WallpaperTab.qml:983, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:79", - "comment": "wallpaper interval" + "reference": "Modules/Settings/WallpaperTab.qml:982, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:79", + "comment": "wallpaper interval", + "tags": [ + "settings", + "shell" + ] }, { "term": "8 seconds", "context": "8 seconds", "reference": "Modules/Settings/NotificationsTab.qml:49, Modules/Notifications/Center/NotificationSettings.qml:55", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "90 days", "context": "90 days", "reference": "Modules/Settings/ClipboardTab.qml:123", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "90°", "context": "90°", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2644, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2665", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "MIT License", "context": "MIT License", "reference": "Modules/Settings/AboutTab.qml:826", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "A file with this name already exists. Do you want to overwrite it?", "context": "A file with this name already exists. Do you want to overwrite it?", "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:61", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "A modern desktop shell for Wayland compositors", "context": "A modern desktop shell for Wayland compositors", "reference": "Modals/Greeter/GreeterWelcomePage.qml:54", - "comment": "greeter welcome page tagline" + "comment": "greeter welcome page tagline", + "tags": [ + "shell" + ] }, { "term": "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.", "context": "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.", - "reference": "Modules/Settings/LauncherTab.qml:190", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:189", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "A user with that name already exists.", "context": "A user with that name already exists.", "reference": "Modules/Settings/UsersTab.qml:390", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "AC Adapter (Plugged In)", "context": "AC Adapter (Plugged In)", - "reference": "Modules/Settings/BatteryTab.qml:71", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:72", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "AC Power", "context": "AC Power", "reference": "Modules/Settings/PowerSleepTab.qml:59", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "API", "context": "API", "reference": "Modules/Settings/AboutTab.qml:673", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.", "context": "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:501", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Aborted", "context": "Aborted", "reference": "Services/CupsService.qml:771", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "About", "context": "About", "reference": "Modals/Settings/SettingsSidebar.qml:407, Modules/Settings/AboutTab.qml:576", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Accent Color", "context": "Accent Color", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:36", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Accept", "context": "Accept", "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:272", - "comment": "KDE Connect accept pairing button" + "comment": "KDE Connect accept pairing button", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Accept Jobs", "context": "Accept Jobs", "reference": "Modules/Settings/PrinterTab.qml:1319", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Accepting", "context": "Accepting", "reference": "Modules/Settings/PrinterTab.qml:1181", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Access clipboard history", "context": "Access clipboard history", "reference": "Modules/Settings/WidgetsTab.qml:120", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Access to notifications and do not disturb", "context": "Access to notifications and do not disturb", "reference": "Modules/Settings/WidgetsTab.qml:188", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Access to system controls and settings", "context": "Access to system controls and settings", "reference": "Modules/Settings/WidgetsTab.qml:181", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Action", "context": "Action", - "reference": "Widgets/KeybindItem.qml:966, Widgets/KeybindItem.qml:1168, Modules/Settings/NotificationsTab.qml:631", - "comment": "" + "reference": "Widgets/KeybindItem.qml:966, Widgets/KeybindItem.qml:1168, Modules/Settings/NotificationsTab.qml:629", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Action failed or terminal was closed.", "context": "Action failed or terminal was closed.", "reference": "Modules/Settings/GreeterTab.qml:338", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Action performed when scrolling horizontally on the bar", "context": "Action performed when scrolling horizontally on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1900", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1895", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Action performed when scrolling vertically on the bar", "context": "Action performed when scrolling vertically on the bar", - "reference": "Modules/Settings/DankBarTab.qml:1860", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1855", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Actions", "context": "Actions", - "reference": "Widgets/DankIconPicker.qml:51, Modules/Settings/WindowRulesTab.qml:1052", - "comment": "" + "reference": "Widgets/DankIconPicker.qml:51, Modals/DankLauncherV2/LauncherContent.qml:418, Modules/Settings/WindowRulesTab.qml:1052", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Activate", "context": "Activate", "reference": "Modules/Settings/GreeterTab.qml:90, Modules/Settings/GreeterTab.qml:138, Modules/ControlCenter/Details/NetworkDetail.qml:405", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Activate Greeter", "context": "Activate Greeter", "reference": "Modules/Settings/GreeterTab.qml:136", - "comment": "greeter action confirmation" + "comment": "greeter action confirmation", + "tags": [ + "settings" + ] }, { "term": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", "context": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", "reference": "Modules/Settings/GreeterTab.qml:137", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Activation", "context": "Activation", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:97", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Active", "context": "Active", - "reference": "Modals/WindowRuleModal.qml:892, Modules/DankDash/MediaDropdownOverlay.qml:373, Modules/Settings/ThemeColorsTab.qml:1531, Modules/Settings/NetworkEthernetTab.qml:435, Modules/Settings/WindowRulesTab.qml:48, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:196", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:892, Modules/DankDash/MediaDropdownOverlay.qml:393, Modules/Settings/ThemeColorsTab.qml:1531, Modules/Settings/NetworkEthernetTab.qml:435, Modules/Settings/WindowRulesTab.qml:48, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:196", + "comment": "active state label", + "tags": [ + "settings", + "shell" + ] }, { "term": "Active Color", "context": "Active Color", "reference": "Modules/Settings/WidgetsTabSection.qml:4303", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Active VPN", "context": "Active VPN", "reference": "Services/DMSNetworkService.qml:111", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Active in Column", "context": "Active in Column", "reference": "Modals/WindowRuleModal.qml:902, Modules/Settings/WindowRulesTab.qml:50", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Active tile background and icon color", "context": "Active tile background and icon color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1667", - "comment": "control center tile color setting description" + "reference": "Modules/Settings/ThemeColorsTab.qml:1666", + "comment": "control center tile color setting description", + "tags": [ + "settings" + ] }, { "term": "Active: %1", "context": "Active: %1", "reference": "Widgets/VpnDetailContent.qml:59", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Active: %1 +%2", "context": "Active: %1 +%2", "reference": "Widgets/VpnDetailContent.qml:60", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Active: None", "context": "Active: None", "reference": "Widgets/VpnDetailContent.qml:56", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Adapters", "context": "Adapters", "reference": "Modules/Settings/NetworkEthernetTab.qml:83", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Adaptive Media Width", "context": "Adaptive Media Width", "reference": "Modules/Settings/MediaPlayerTab.qml:62", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add", "context": "Add", "reference": "Widgets/KeybindItem.qml:1879, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:248", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Add \"%1\" to the %2 group?", "context": "Add \"%1\" to the %2 group?", "reference": "Modules/Settings/UsersTab.qml:294", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "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.", "context": "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.", "reference": "Modules/Settings/UsersTab.qml:266", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add Bar", "context": "Add Bar", "reference": "Modules/Settings/DankBarTab.qml:286", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add Desktop Widget", "context": "Add Desktop Widget", "reference": "Modules/Settings/DesktopWidgetBrowser.qml:106, Modules/Settings/DesktopWidgetBrowser.qml:224", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add Entry", "context": "Add Entry", "reference": "Modules/Settings/AutoStartTab.qml:380", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add Printer", "context": "Add Printer", "reference": "Modules/Settings/PrinterTab.qml:277", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add Title", "context": "Add Title", "reference": "Modals/WindowRuleModal.qml:759", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Add Widget", "context": "Add Widget", "reference": "Modules/Settings/WidgetsTabSection.qml:1282, Modules/Settings/WidgetSelectionPopup.qml:111, Modules/Settings/DesktopWidgetsTab.qml:191, Modules/ControlCenter/Components/EditControls.qml:131, Modules/ControlCenter/Components/EditControls.qml:238", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Add Widget to %1", "context": "Add Widget to %1", "reference": "Modules/Settings/WidgetSelectionPopup.qml:242", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add Window Rule", "context": "Add Window Rule", "reference": "Modules/Settings/WindowRulesTab.qml:426", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add a border around the dock", "context": "Add a border around the dock", - "reference": "Modules/Settings/DockTab.qml:679", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:678", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", "context": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", - "reference": "Modules/Settings/LauncherTab.qml:563", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:562", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add a task...", "context": "Add a task...", "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:1081", - "comment": "placeholder in the new-task input field" + "comment": "placeholder in the new-task input field", + "tags": [ + "shell" + ] }, { "term": "Add and configure widgets that appear on your desktop", "context": "Add and configure widgets that appear on your desktop", "reference": "Modules/Settings/DesktopWidgetsTab.qml:180", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add by Address", "context": "Add by Address", "reference": "Modules/Settings/PrinterTab.qml:400", - "comment": "Toggle button to manually add a printer by IP or hostname" + "comment": "Toggle button to manually add a printer by IP or hostname", + "tags": [ + "settings" + ] }, { "term": "Add location", "context": "Add location", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:303", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Add match", "context": "Add match", "reference": "Modals/WindowRuleModal.qml:850", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Add notes", "context": "Add notes", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:313", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Add the new user to the %1 group so they can run dms greeter sync --profile.", "context": "Add the new user to the %1 group so they can run dms greeter sync --profile.", "reference": "Modules/Settings/UsersTab.qml:467", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add the new user to the %1 group so they can use sudo.", "context": "Add the new user to the %1 group so they can use sudo.", "reference": "Modules/Settings/UsersTab.qml:458", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Add to Autostart", "context": "Add to Autostart", "reference": "Modules/Settings/AutoStartTab.qml:609", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Adjust the bar height via inner padding", "context": "Adjust the bar height via inner padding", - "reference": "Modules/Settings/DankBarTab.qml:938", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:936", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Adjust the number of columns in grid view mode.", "context": "Adjust the number of columns in grid view mode.", - "reference": "Modules/Settings/LauncherTab.qml:598", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:597", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Adjust volume per scroll indent", "context": "Adjust volume per scroll indent", "reference": "Modules/Settings/MediaPlayerTab.qml:109", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)", "context": "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)", "reference": "Modules/Settings/ThemeColorsTab.qml:645", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Administrator access is required. Use the Sync button in Settings → Greeter to apply.", "context": "Administrator access is required. Use the Sync button in Settings → Greeter to apply.", - "reference": "Common/settings/Processes.qml:365", - "comment": "" + "reference": "Common/settings/Processes.qml:366", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Administrator group:", "context": "Administrator group:", "reference": "Modules/Settings/UsersTab.qml:102", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Advanced", "context": "Advanced", - "reference": "Modules/Settings/ClipboardTab.qml:509, Modules/Settings/SystemUpdaterTab.qml:327", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:508, Modules/Settings/SystemUpdaterTab.qml:327", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Afternoon", "context": "Afternoon", "reference": "Services/WeatherService.qml:262", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Alerts", + "context": "Alerts", + "reference": "Modules/Settings/BatteryTab.qml:235", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "All", "context": "All", "reference": "Modals/ProcessListModal.qml:383, Services/AppSearchService.qml:728, Services/AppSearchService.qml:749, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:784, Modals/DankLauncherV2/SpotlightLauncherContent.qml:460, Modals/DankLauncherV2/LauncherContent.qml:334, Modals/DankLauncherV2/LauncherContent.qml:623, Modals/Clipboard/ClipboardContent.qml:16, Modules/ProcessList/ProcessListPopout.qml:169, Modules/Settings/WidgetsTabSection.qml:4014, Modules/Settings/WidgetsTabSection.qml:4070, Modules/Settings/PluginBrowser.qml:265, Modules/Settings/KeybindsTab.qml:458, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:260, Modules/Notifications/Center/HistoryNotificationList.qml:87", - "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter" + "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter", + "tags": [ + "plugin-dankstickersearch", + "settings", + "shell" + ] }, { "term": "All checks passed", "context": "All checks passed", "reference": "Modals/Greeter/GreeterDoctorPage.qml:224", - "comment": "greeter doctor page success" + "comment": "greeter doctor page success", + "tags": [ + "shell" + ] }, { "term": "All day", "context": "All day", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:205, Modules/DankDash/Overview/CalendarEventDetail.qml:104, Modules/DankDash/Overview/CalendarOverviewCard.qml:910", - "comment": "calendar task with no specific time" + "comment": "calendar task with no specific time", + "tags": [ + "shell" + ] }, { "term": "All displays", "context": "All displays", "reference": "Modules/Plugins/PluginSettings.qml:257, Modules/Settings/DisplayWidgetsTab.qml:401, Modules/Settings/DankBarTab.qml:371, Modules/Settings/DankBarTab.qml:566, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Allow", "context": "Allow", "reference": "Modules/Settings/UsersTab.qml:267", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Allow LAN access", "context": "Allow LAN access", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:212", - "comment": "Tailscale allow LAN access toggle" + "comment": "Tailscale allow LAN access toggle", + "tags": [ + "shell" + ] }, { "term": "Allow adjusting device volume by scrolling on the right half of items in the device list", "context": "Allow adjusting device volume by scrolling on the right half of items in the device list", "reference": "Modules/Settings/MediaPlayerTab.qml:140", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Allow clicks to pass through the widget", "context": "Allow clicks to pass through the widget", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:344", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Allow greeter access?", "context": "Allow greeter access?", "reference": "Modules/Settings/UsersTab.qml:265", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Allow greeter login access", "context": "Allow greeter login access", "reference": "Modules/Settings/UsersTab.qml:258, Modules/Settings/UsersTab.qml:466", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Already on that session", "context": "Already on that session", "reference": "Services/SessionsService.qml:112, Services/SessionsService.qml:133", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", "context": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", "reference": "Modals/FileBrowser/KeyboardHints.qml:35", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Alternative (OR)", "context": "Alternative (OR)", - "reference": "Modules/Settings/LockScreenTab.qml:502, Modules/Settings/LockScreenTab.qml:503", - "comment": "U2F mode option: key works as standalone unlock method" + "reference": "Modules/Settings/LockScreenTab.qml:511, Modules/Settings/LockScreenTab.qml:512", + "comment": "U2F mode option: key works as standalone unlock method", + "tags": [ + "settings" + ] }, { "term": "Always Active", "context": "Always Active", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Always Show Percentage", "context": "Always Show Percentage", "reference": "Modules/Settings/OSDTab.qml:78", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Always blur against the wallpaper, even with Xray off", "context": "Always blur against the wallpaper, even with Xray off", - "reference": "Modules/Settings/CompositorLayoutTab.qml:393, Modules/Settings/CompositorLayoutTab.qml:545", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:393, Modules/Settings/CompositorLayoutTab.qml:544", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Always hide the dock and reveal it when hovering near the dock area", "context": "Always hide the dock and reveal it when hovering near the dock area", "reference": "Modules/Settings/DockTab.qml:56", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Always on icons", "context": "Always on icons", "reference": "Modules/Settings/WidgetsTabSection.qml:2820", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:53", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Always show the dock when niri's overview is open", "context": "Always show the dock when niri's overview is open", "reference": "Modules/Settings/DockTab.qml:86", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Always show when there's only one connected display", "context": "Always show when there's only one connected display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:432", - "comment": "" + "reference": "Modules/Settings/DisplayWidgetsTab.qml:430", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Always use this app for %1", "context": "Always use this app for %1", "reference": "Modals/AppPickerModal.qml:542", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Amount", "context": "Amount", "reference": "Widgets/KeybindItem.qml:1012", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "An xray rule at %1 may conflict with the Xray settings below", "context": "An xray rule at %1 may conflict with the Xray settings below", "reference": "Modules/Settings/CompositorLayoutTab.qml:262", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Analog", "context": "Analog", "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:33, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:42", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Analog, digital, or stacked clock display", "context": "Analog, digital, or stacked clock display", "reference": "Services/DesktopWidgetRegistry.qml:40", - "comment": "Desktop clock widget description" + "comment": "Desktop clock widget description", + "tags": [ + "shell" + ] }, { "term": "Analyzing configuration...", "context": "Analyzing configuration...", "reference": "Modals/Greeter/GreeterDoctorPage.qml:159", - "comment": "greeter doctor page loading text" + "comment": "greeter doctor page loading text", + "tags": [ + "shell" + ] }, { "term": "Anchor", "context": "Anchor", "reference": "Modals/WindowRuleModal.qml:1402", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Animation Duration", "context": "Animation Duration", "reference": "Modules/Settings/TypographyMotionTab.qml:525", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Animation Speed", "context": "Animation Speed", - "reference": "Modules/Settings/TypographyMotionTab.qml:480, Modules/Settings/NotificationsTab.qml:361", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:480, Modules/Settings/NotificationsTab.qml:359", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Animation Style", "context": "Animation Style", "reference": "Modules/Settings/TypographyMotionTab.qml:61", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Anonymous Identity", "context": "Anonymous Identity", "reference": "Modals/WifiPasswordModal.qml:197", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Anonymous Identity (optional)", "context": "Anonymous Identity (optional)", "reference": "Modals/WifiPasswordModal.qml:576", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Any window", "context": "Any window", "reference": "Modules/Settings/WindowRulesTab.qml:87, Modules/Settings/WindowRulesTab.qml:1043", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "App Customizations", "context": "App Customizations", - "reference": "Modules/Settings/LauncherTab.qml:1312", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1311", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "App ID", "context": "App ID", "reference": "Modules/Settings/WindowRulesTab.qml:45", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "App ID (e.g. firefox)", "context": "App ID (e.g. firefox)", "reference": "Modals/WindowRuleModal.qml:726", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "App ID Substitutions", "context": "App ID Substitutions", "reference": "Modules/Settings/RunningAppsTab.qml:25", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "App ID regex", "context": "App ID regex", "reference": "Modals/WindowRuleModal.qml:793", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "App ID regex (e.g. ^firefox$)", "context": "App ID regex (e.g. ^firefox$)", "reference": "Modals/WindowRuleModal.qml:726", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "App Launcher", "context": "App Launcher", "reference": "Modules/Settings/WidgetsTab.qml:63", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "App Names", "context": "App Names", - "reference": "Modules/Settings/LockScreenTab.qml:264, Modules/Settings/NotificationsTab.qml:85, Modules/Settings/NotificationsTab.qml:774", - "comment": "lock screen notification mode option | notification rule match field option" + "reference": "Modules/Settings/LockScreenTab.qml:334, Modules/Settings/NotificationsTab.qml:85, Modules/Settings/NotificationsTab.qml:772", + "comment": "lock screen notification mode option | notification rule match field option", + "tags": [ + "settings" + ] }, { "term": "App Theming", "context": "App Theming", "reference": "Modals/Greeter/GreeterWelcomePage.qml:97", - "comment": "greeter feature card title" + "comment": "greeter feature card title", + "tags": [ + "shell" + ] }, { "term": "App name or identity (e.g., firefox)", "context": "App name or identity (e.g., firefox)", "reference": "Modules/Settings/MediaPlayerTab.qml:173", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Appearance", "context": "Appearance", - "reference": "Modals/Settings/SettingsSidebar.qml:122, Modules/Settings/LauncherTab.qml:610", - "comment": "launcher appearance settings" + "reference": "Modals/Settings/SettingsSidebar.qml:122, Modules/Settings/GreeterTab.qml:520, Modules/Settings/LauncherTab.qml:609, Modules/Settings/LockScreenTab.qml:348, Modules/Settings/WorkspaceAppearanceCard.qml:11", + "comment": "launcher appearance settings", + "tags": [ + "settings" + ] }, { "term": "Application", "context": "Application", "reference": "Modules/Settings/AutoStartTab.qml:408", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Application Dock", "context": "Application Dock", "reference": "Modules/Settings/DisplayWidgetsTab.qml:31", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Applications", "context": "Applications", - "reference": "Modals/DankLauncherV2/Controller.qml:199, Modals/Settings/SettingsSidebar.qml:277, Modules/Settings/ThemeColorsTab.qml:2136, Modules/Dock/DockLauncherButton.qml:25", - "comment": "" + "reference": "Modals/DankLauncherV2/Controller.qml:199, Modals/Settings/SettingsSidebar.qml:277, Modules/Settings/ThemeColorsTab.qml:2134, Modules/Dock/DockLauncherButton.qml:25", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Applications and commands to start automatically when you log in", "context": "Applications and commands to start automatically when you log in", "reference": "Modules/Settings/AutoStartTab.qml:635", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply Changes", "context": "Apply Changes", - "reference": "Modules/Settings/LockScreenTab.qml:371, Modules/Settings/DisplayConfigTab.qml:609", - "comment": "validate and apply custom PAM authentication source" + "reference": "Modules/Settings/LockScreenTab.qml:449, Modules/Settings/LockScreenTab.qml:554, Modules/Settings/DisplayConfigTab.qml:609", + "comment": "validate and apply custom PAM authentication source | validate and apply custom U2F PAM authentication source", + "tags": [ + "settings" + ] }, { "term": "Apply Flatpak updates alongside system updates when running 'Update All'.", "context": "Apply Flatpak updates alongside system updates when running 'Update All'.", "reference": "Modules/Settings/SystemUpdaterTab.qml:168", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2900", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2898", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:2934", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2932", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply compositor blur behind the frame border", "context": "Apply compositor blur behind the frame border", "reference": "Modules/Settings/FrameTab.qml:190", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply inverse concave corner cutouts to the bar", "context": "Apply inverse concave corner cutouts to the bar", - "reference": "Modules/Settings/DankBarTab.qml:1212", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1210", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply to Hardware", "context": "Apply to Hardware", - "reference": "Modules/Settings/BatteryTab.qml:196", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:198", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.", "context": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.", "reference": "Modules/Settings/GammaControlTab.qml:77", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Applying authentication changes...", "context": "Applying authentication changes...", - "reference": "Common/settings/Processes.qml:629", - "comment": "" + "reference": "Common/settings/Processes.qml:630", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Applying auto-login on startup...", "context": "Applying auto-login on startup...", - "reference": "Common/settings/Processes.qml:573", - "comment": "" + "reference": "Common/settings/Processes.qml:574", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Apps", "context": "Apps", "reference": "Modals/DankLauncherV2/SpotlightLauncherContent.qml:464, Modals/DankLauncherV2/LauncherContent.qml:339", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Apps Dock", "context": "Apps Dock", "reference": "Modules/Settings/WidgetsTab.qml:91", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apps Dock Settings", "context": "Apps Dock Settings", "reference": "Modules/Settings/WidgetsTabSection.qml:3956", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apps Icon", "context": "Apps Icon", - "reference": "Modules/Settings/DockTab.qml:280, Modules/Settings/LauncherTab.qml:303", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:279, Modules/Settings/LauncherTab.qml:302", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", "context": "Apps are ordered by usage frequency, then last used, then alphabetically.", - "reference": "Modules/Settings/LauncherTab.qml:1458", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1457", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", "context": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", - "reference": "Modules/Settings/LauncherTab.qml:1335", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1334", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Apps with notification popups muted. Unmute or delete to remove.", "context": "Apps with notification popups muted. Unmute or delete to remove.", - "reference": "Modules/Settings/NotificationsTab.qml:686", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:684", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Arc Extender", "context": "Arc Extender", "reference": "Modules/Settings/FrameTab.qml:355", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Architecture", "context": "Architecture", "reference": "Modules/ProcessList/SystemView.qml:72", - "comment": "system info label" + "comment": "system info label", + "tags": [ + "shell" + ] }, { "term": "Are you sure you want to kill session \"%1\"?", "context": "Are you sure you want to kill session \"%1\"?", "reference": "Modals/MuxModal.qml:94", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Arrange displays and configure resolution, refresh rate, and VRR", "context": "Arrange displays and configure resolution, refresh rate, and VRR", "reference": "Modules/Settings/DisplayConfigTab.qml:468", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "At Startup", "context": "At Startup", "reference": "Modals/WindowRuleModal.qml:917, Modules/Settings/WindowRulesTab.qml:53", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "At least one output must remain enabled", "context": "At least one output must remain enabled", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:82, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "At start", "context": "At start", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Attach", "context": "Attach", "reference": "Modals/MuxModal.qml:579", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio", "context": "Audio", "reference": "Modals/Settings/SettingsSidebar.qml:318, Modules/Settings/WidgetsTabSection.qml:2283, Modules/Settings/WidgetsTabSection.qml:2514", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Audio Codec", "context": "Audio Codec", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:682", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio Codec Selection", "context": "Audio Codec Selection", "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:224", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio Devices", "context": "Audio Devices", "reference": "Modules/ControlCenter/Details/AudioOutputDetail.qml:37", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio Input", "context": "Audio Input", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:187", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio Output", "context": "Audio Output", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1779, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, Modules/ControlCenter/Models/WidgetModel.qml:179", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "Audio Output Devices (", "context": "Audio Output Devices (", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:296", - "comment": "" + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:316", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio Output Switch", "context": "Audio Output Switch", - "reference": "Modules/Settings/OSDTab.qml:157", - "comment": "" + "reference": "Modules/Settings/OSDTab.qml:149", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Audio Visualizer", "context": "Audio Visualizer", "reference": "Modules/Settings/MediaPlayerTab.qml:55", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Audio system restarted", "context": "Audio system restarted", "reference": "Services/AudioService.qml:368", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Audio volume control", "context": "Audio volume control", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:196", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auth", "context": "Auth", "reference": "Widgets/VpnProfileDelegate.qml:62, Modules/Settings/NetworkVpnTab.qml:435", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Auth Type", "context": "Auth Type", "reference": "Widgets/VpnProfileDelegate.qml:80, Modules/Settings/NetworkVpnTab.qml:450", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Authenticate", "context": "Authenticate", "reference": "Modals/PolkitAuthContent.qml:353", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authenticated!", "context": "Authenticated!", "reference": "Modules/Greetd/GreeterContent.qml:1992", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authenticating...", "context": "Authenticating...", "reference": "Modules/Greetd/GreeterContent.qml:1249", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authentication", "context": "Authentication", - "reference": "Modals/PolkitAuthModal.qml:29", - "comment": "" + "reference": "Modals/PolkitAuthModal.qml:29, Modules/Settings/GreeterTab.qml:473, Modules/Settings/LockScreenTab.qml:399", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Authentication Required", "context": "Authentication Required", "reference": "Modals/PolkitAuthContent.qml:196", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Authentication Source", + "context": "Authentication Source", + "reference": "Modules/Settings/LockScreenTab.qml:413", + "comment": "lock screen PAM source setting", + "tags": [ + "settings" + ] }, { "term": "Authentication changes applied.", "context": "Authentication changes applied.", - "reference": "Common/settings/Processes.qml:602", - "comment": "" + "reference": "Common/settings/Processes.qml:603, Modules/Settings/LockScreenTab.qml:210, Modules/Settings/LockScreenTab.qml:248", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Authentication changes apply automatically.", "context": "Authentication changes apply automatically.", - "reference": "Modules/Settings/GreeterTab.qml:28, Modules/Settings/GreeterTab.qml:48", - "comment": "greeter auth setting description" + "reference": "Modules/Settings/GreeterTab.qml:28, Modules/Settings/GreeterTab.qml:48, Modules/Settings/LockScreenTab.qml:403", + "comment": "greeter auth setting description", + "tags": [ + "settings" + ] }, { "term": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.", "context": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.", - "reference": "Common/settings/Processes.qml:315", - "comment": "" + "reference": "Common/settings/Processes.qml:316", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authentication error - try again", "context": "Authentication error - try again", "reference": "Modules/Lock/LockScreenContent.qml:77, Modules/Greetd/GreeterContent.qml:259", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authentication failed - attempt %1 of %2", "context": "Authentication failed - attempt %1 of %2", "reference": "Modules/Greetd/GreeterContent.qml:267", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authentication failed - lockout can occur", "context": "Authentication failed - lockout can occur", "reference": "Modules/Greetd/GreeterContent.qml:269", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authentication failed - try again", "context": "Authentication failed - try again", - "reference": "Modules/Greetd/GreeterContent.qml:271", - "comment": "" - }, - { - "term": "Authentication failed, please try again", - "context": "Authentication failed, please try again", - "reference": "Modals/PolkitAuthContent.qml:297", - "comment": "" + "reference": "Modals/PolkitAuthContent.qml:297, Modules/Greetd/GreeterContent.qml:271", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authorize", "context": "Authorize", "reference": "Modals/BluetoothPairingModal.qml:315, Modals/BluetoothPairingModal.qml:318", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authorize pairing with ", "context": "Authorize pairing with ", "reference": "Modals/BluetoothPairingModal.qml:130", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Authorize service for ", "context": "Authorize service for ", "reference": "Modals/BluetoothPairingModal.qml:137", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto", "context": "Auto", - "reference": "Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/WidgetsTabSection.qml:1697, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/TimeWeatherTab.qml:158, Modules/Settings/LockScreenTab.qml:23, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/NetworkWifiTab.qml:239, Modules/Settings/NetworkWifiTab.qml:243, Modules/Settings/NetworkWifiTab.qml:244, Modules/Settings/NetworkWifiTab.qml:247, Modules/Settings/CompositorLayoutTab.qml:283, Modules/Settings/CompositorLayoutTab.qml:412, Modules/Settings/CompositorLayoutTab.qml:564, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:119, Modules/ControlCenter/Details/NetworkDetail.qml:122, Modules/ControlCenter/Details/NetworkDetail.qml:125, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106", - "comment": "automatic PAM authentication source option | calendar backend option | theme category option" + "reference": "Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/WidgetsTabSection.qml:1697, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/TimeWeatherTab.qml:156, Modules/Settings/LockScreenTab.qml:33, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/NetworkWifiTab.qml:239, Modules/Settings/NetworkWifiTab.qml:243, Modules/Settings/NetworkWifiTab.qml:244, Modules/Settings/NetworkWifiTab.qml:247, Modules/Settings/CompositorLayoutTab.qml:283, Modules/Settings/CompositorLayoutTab.qml:412, Modules/Settings/CompositorLayoutTab.qml:563, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:119, Modules/ControlCenter/Details/NetworkDetail.qml:122, Modules/ControlCenter/Details/NetworkDetail.qml:125, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106", + "comment": "automatic PAM authentication source option | calendar backend option | theme category option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Auto (Bar-aware)", "context": "Auto (Bar-aware)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2007, Modules/Settings/ThemeColorsTab.qml:2011, Modules/Settings/ThemeColorsTab.qml:2024, Modules/Settings/DankBarTab.qml:1687, Modules/Settings/DankBarTab.qml:1691, Modules/Settings/DankBarTab.qml:1699", - "comment": "bar shadow direction source option | shadow direction option" + "reference": "Modules/Settings/ThemeColorsTab.qml:2005, Modules/Settings/ThemeColorsTab.qml:2009, Modules/Settings/ThemeColorsTab.qml:2022, Modules/Settings/DankBarTab.qml:1682, Modules/Settings/DankBarTab.qml:1686, Modules/Settings/DankBarTab.qml:1694", + "comment": "bar shadow direction source option | shadow direction option", + "tags": [ + "settings" + ] }, { "term": "Auto (Wide)", "context": "Auto (Wide)", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:152, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:154, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:157, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:168", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto Compositor Gaps", "context": "Auto Compositor Gaps", "reference": "Modules/Notepad/NotepadSettings.qml:449", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto Location", "context": "Auto Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:509", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:507", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto Overflow", "context": "Auto Overflow", "reference": "Modules/Settings/WidgetsTabSection.qml:1629", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto Popup Gaps", "context": "Auto Popup Gaps", - "reference": "Modules/Settings/DankBarTab.qml:1038", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1036", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto Power Saver", "context": "Auto Power Saver", - "reference": "Modules/Settings/BatteryTab.qml:324", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:327", + "comment": "", + "tags": [ + "settings" + ] }, { - "term": "Auto matches bar spacing; Off leaves gaps to your Hyprland config", - "context": "Auto matches bar spacing; Off leaves gaps to your Hyprland config", - "reference": "Modules/Settings/CompositorLayoutTab.qml:411", - "comment": "" - }, - { - "term": "Auto matches bar spacing; Off leaves gaps to your MangoWC config", - "context": "Auto matches bar spacing; Off leaves gaps to your MangoWC config", - "reference": "Modules/Settings/CompositorLayoutTab.qml:563", - "comment": "" - }, - { - "term": "Auto matches bar spacing; Off leaves gaps to your niri config", - "context": "Auto matches bar spacing; Off leaves gaps to your niri config", - "reference": "Modules/Settings/CompositorLayoutTab.qml:282", - "comment": "" + "term": "Auto matches bar spacing; Off leaves gaps to your %1 config", + "context": "Auto matches bar spacing; Off leaves gaps to your %1 config", + "reference": "Modules/Settings/CompositorLayoutTab.qml:282, Modules/Settings/CompositorLayoutTab.qml:411, Modules/Settings/CompositorLayoutTab.qml:562", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto mode is on. Manual profile selection is disabled.", "context": "Auto mode is on. Manual profile selection is disabled.", "reference": "Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:139", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto saved", "context": "Auto saved", "reference": "Modules/Notepad/NotepadTextEditor.qml:1032", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Auto uses an installed or bundled key-only service.", + "context": "Auto uses an installed or bundled key-only service.", + "reference": "Modules/Settings/LockScreenTab.qml:525", + "comment": "lock screen dedicated U2F PAM source setting", + "tags": [ + "settings" + ] }, { "term": "Auto-Clear After", "context": "Auto-Clear After", - "reference": "Modules/Settings/ClipboardTab.qml:373", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:372", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto-Hide Timeout", "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:2340", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2338", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto-close Niri overview when launching apps.", "context": "Auto-close Niri overview when launching apps.", - "reference": "Modules/Settings/LauncherTab.qml:760", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:759", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto-delete notifications older than this", "context": "Auto-delete notifications older than this", - "reference": "Modules/Settings/NotificationsTab.qml:878", - "comment": "notification history setting" + "reference": "Modules/Settings/NotificationsTab.qml:873", + "comment": "notification history setting", + "tags": [ + "settings" + ] }, { "term": "Auto-hide", "context": "Auto-hide", "reference": "Modules/Settings/DankBarTab.qml:654", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto-hide Dock", "context": "Auto-hide Dock", "reference": "Modules/Settings/DockTab.qml:55", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto-login", "context": "Auto-login", "reference": "Modules/Greetd/GreeterUserPicker.qml:223", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto-login change needs a sync", "context": "Auto-login change needs a sync", - "reference": "Common/settings/Processes.qml:365", - "comment": "" + "reference": "Common/settings/Processes.qml:366", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto-login disabled", "context": "Auto-login disabled", - "reference": "Common/settings/Processes.qml:376", - "comment": "" + "reference": "Common/settings/Processes.qml:377", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto-login enabled", "context": "Auto-login enabled", - "reference": "Common/settings/Processes.qml:374", - "comment": "" + "reference": "Common/settings/Processes.qml:375", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Auto-login on startup", "context": "Auto-login on startup", "reference": "Modules/Settings/GreeterTab.qml:637", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Auto-save to disk", "context": "Auto-save to disk", "reference": "Modules/Notepad/NotepadSettings.qml:173", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Autoconnect", "context": "Autoconnect", "reference": "Widgets/VpnProfileDelegate.qml:276, Modules/Settings/NetworkVpnTab.qml:493, Modules/Settings/NetworkWifiTab.qml:820", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Autoconnect disabled", "context": "Autoconnect disabled", "reference": "Services/LegacyNetworkService.qml:506, Services/DMSNetworkService.qml:1023", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Autoconnect enabled", "context": "Autoconnect enabled", "reference": "Services/LegacyNetworkService.qml:506, Services/DMSNetworkService.qml:1023", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Autofill last remembered query when opened", "context": "Autofill last remembered query when opened", - "reference": "Modules/Settings/LauncherTab.qml:1166", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1165", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatic Color Mode", "context": "Automatic Color Mode", "reference": "Modules/Settings/ThemeColorsTab.qml:1151", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatic Control", "context": "Automatic Control", - "reference": "Modules/Settings/ThemeColorsTab.qml:1162, Modules/Settings/GammaControlTab.qml:139", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1162, Modules/Settings/GammaControlTab.qml:138", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatic Cycling", "context": "Automatic Cycling", - "reference": "Modules/Settings/WallpaperTab.qml:894, Modules/Settings/LockScreenTab.qml:585", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:893, Modules/Settings/LockScreenTab.qml:711", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically calculate popup gap based on bar spacing", "context": "Automatically calculate popup gap based on bar spacing", - "reference": "Modules/Settings/DankBarTab.qml:1039", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1037", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically cycle through wallpapers in the same folder", "context": "Automatically cycle through wallpapers in the same folder", - "reference": "Modules/Settings/WallpaperTab.qml:895", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:894", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically delete entries older than this", "context": "Automatically delete entries older than this", - "reference": "Modules/Settings/ClipboardTab.qml:374", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:373", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically detect location based on IP address", "context": "Automatically detect location based on IP address", - "reference": "Modules/Settings/GammaControlTab.qml:346", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:345", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically determine your location using your IP address", "context": "Automatically determine your location using your IP address", - "reference": "Modules/Settings/TimeWeatherTab.qml:510", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:508", + "comment": "", + "tags": [ + "settings" + ] }, { "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:655", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically lock after", "context": "Automatically lock after", "reference": "Modules/Settings/PowerSleepTab.qml:201", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically lock the screen when DMS starts", "context": "Automatically lock the screen when DMS starts", - "reference": "Modules/Settings/LockScreenTab.qml:460", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:633", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically lock the screen when the system prepares to suspend", "context": "Automatically lock the screen when the system prepares to suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:93, Modules/Settings/LockScreenTab.qml:441", - "comment": "" + "reference": "Modules/Settings/PowerSleepTab.qml:93, Modules/Settings/LockScreenTab.qml:614", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automatically save changes to opened files as you type", "context": "Automatically save changes to opened files as you type", "reference": "Modules/Notepad/NotepadSettings.qml:174", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Automatically turn on Power Saver profile when battery is low.", "context": "Automatically turn on Power Saver profile when battery is low.", - "reference": "Modules/Settings/BatteryTab.qml:325", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:328", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Automation", "context": "Automation", "reference": "Modules/Settings/ThemeColorsTab.qml:1488", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Autostart Apps", "context": "Autostart Apps", "reference": "Modals/Settings/SettingsSidebar.qml:296", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Autostart Entries", "context": "Autostart Entries", "reference": "Modules/Settings/AutoStartTab.qml:624", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Available", "context": "Available", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:373, Modules/Settings/PrinterTab.qml:212, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265", - "comment": "" + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:393, Modules/Settings/PrinterTab.qml:212, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Available Layouts", "context": "Available Layouts", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:209", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Available Networks", "context": "Available Networks", "reference": "Modules/Settings/NetworkWifiTab.qml:365", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Available Plugins", "context": "Available Plugins", - "reference": "Modules/Settings/PluginsTab.qml:349", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:350", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Available Screens (%1)", "context": "Available Screens (%1)", "reference": "Modules/Settings/DisplayWidgetsTab.qml:199", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Available Updates (%1)", "context": "Available Updates (%1)", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:122", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:124", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Available in Detailed and Forecast view modes", "context": "Available in Detailed and Forecast view modes", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Awaiting fingerprint authentication", "context": "Awaiting fingerprint authentication", "reference": "Modules/Greetd/GreeterContent.qml:84", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Awaiting fingerprint or security key authentication", "context": "Awaiting fingerprint or security key authentication", "reference": "Modules/Greetd/GreeterContent.qml:82", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Awaiting security key authentication", "context": "Awaiting security key authentication", "reference": "Modules/Greetd/GreeterContent.qml:85", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "BSSID", "context": "BSSID", "reference": "Modules/Settings/NetworkWifiTab.qml:768, Modules/Settings/NetworkWifiTab.qml:1129", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Back", "context": "Back", - "reference": "Modals/Greeter/GreeterModal.qml:288, Modules/DankBar/Widgets/SystemTrayBar.qml:1949", - "comment": "greeter back button" + "reference": "Modals/Greeter/GreeterModal.qml:288, Modules/DankBar/Widgets/SystemTrayBar.qml:1959", + "comment": "greeter back button", + "tags": [ + "shell" + ] }, { "term": "Back to user list", "context": "Back to user list", "reference": "Modules/Greetd/GreeterContent.qml:1405", - "comment": "greeter link to return from manual username entry to user picker" + "comment": "greeter link to return from manual username entry to user picker", + "tags": [ + "shell" + ] }, { "term": "Backend", "context": "Backend", "reference": "Modules/Settings/AboutTab.qml:632, Modules/Settings/NetworkStatusTab.qml:74", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Background", "context": "Background", - "reference": "Modules/Settings/GreeterTab.qml:570, Modules/Settings/LockScreenTab.qml:299", - "comment": "" + "reference": "Modules/Settings/GreeterTab.qml:570, Modules/Settings/LockScreenTab.qml:369", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Background Blur", "context": "Background Blur", - "reference": "Modules/Settings/ThemeColorsTab.qml:1859, Modules/Settings/ThemeColorsTab.qml:1867", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1858, Modules/Settings/ThemeColorsTab.qml:1866", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Background Color", "context": "Background Color", "reference": "Modules/Settings/WallpaperTab.qml:333, Modules/Settings/WallpaperTab.qml:361", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Background Effect", "context": "Background Effect", "reference": "Modals/WindowRuleModal.qml:1243", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Background Opacity", "context": "Background Opacity", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Background authentication sync failed. Trying terminal mode.", "context": "Background authentication sync failed. Trying terminal mode.", - "reference": "Common/settings/Processes.qml:613", - "comment": "" + "reference": "Common/settings/Processes.qml:614", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Background image", "context": "Background image", "reference": "Modals/Greeter/GreeterCompletePage.qml:382", - "comment": "greeter wallpaper description" + "comment": "greeter wallpaper description", + "tags": [ + "shell" + ] }, { "term": "Backlight device", "context": "Backlight device", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:374", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Balance power and performance", "context": "Balance power and performance", "reference": "Common/Theme.qml:1655", - "comment": "power profile description" + "comment": "power profile description", + "tags": [ + "shell" + ] }, { "term": "Balanced", "context": "Balanced", "reference": "Common/Theme.qml:1642", - "comment": "power profile option" + "comment": "power profile option", + "tags": [ + "shell" + ] }, { "term": "Balanced palette with focused accents (default).", "context": "Balanced palette with focused accents (default).", "reference": "Common/Theme.qml:486", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Bar", "context": "Bar", "reference": "Modules/Settings/DankBarTab.qml:44", - "comment": "fallback name for an unnamed bar" + "comment": "fallback name for an unnamed bar", + "tags": [ + "settings" + ] }, { "term": "Bar %1", "context": "Bar %1", "reference": "Modules/Settings/DankBarTab.qml:45, Modules/Settings/DankBarTab.qml:254", - "comment": "numbered name for an unnamed bar, %1 is its position" - }, - { - "term": "Bar Configurations", - "context": "Bar Configurations", - "reference": "Modules/Settings/DankBarTab.qml:269", - "comment": "" + "comment": "numbered name for an unnamed bar, %1 is its position", + "tags": [ + "settings" + ] }, { "term": "Bar Inset Padding", "context": "Bar Inset Padding", - "reference": "Modules/Settings/DankBarTab.qml:994, Modules/Settings/FrameTab.qml:168", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:992, Modules/Settings/FrameTab.qml:168", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bar Opacity", "context": "Bar Opacity", - "reference": "Modules/Settings/DankBarTab.qml:822, Modules/Settings/DankBarTab.qml:869", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:822, Modules/Settings/DankBarTab.qml:867", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bar Shadows", "context": "Bar Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:2099", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2097", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bar Spacing", "context": "Bar Spacing", - "reference": "Modules/Settings/DankBarTab.qml:884", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:882", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bar corners and background", "context": "Bar corners and background", - "reference": "Modules/Settings/DankBarTab.qml:1152", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1150", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bar shadow, border, and corners", "context": "Bar shadow, border, and corners", - "reference": "Modules/Settings/DankBarTab.qml:1608", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1604", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Base color for shadows (opacity is applied automatically)", "context": "Base color for shadows (opacity is applied automatically)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1961", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1959", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Base duration for animations (drag to use Custom)", "context": "Base duration for animations (drag to use Custom)", - "reference": "Modules/Settings/NotificationsTab.qml:404", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:402", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Battery", "context": "Battery", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1581, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:740, Modals/Settings/SettingsSidebar.qml:371, Modules/Settings/WidgetsTabSection.qml:2328, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:194, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", - "comment": "KDE Connect battery label" + "comment": "KDE Connect battery label", + "tags": [ + "plugin-dankkdeconnect", + "settings", + "shell" + ] }, { "term": "Battery %1", "context": "Battery %1", "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:395", - "comment": "" - }, - { - "term": "Battery Alerts", - "context": "Battery Alerts", - "reference": "Modules/Settings/BatteryTab.qml:233", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Battery Charge Limit", "context": "Battery Charge Limit", - "reference": "Modules/Settings/BatteryTab.qml:175", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:177", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Battery Health", "context": "Battery Health", - "reference": "Modules/Settings/BatteryTab.qml:148", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:149", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Battery Power", "context": "Battery Power", - "reference": "Modules/Settings/BatteryTab.qml:71", - "comment": "" - }, - { - "term": "Battery Protection", - "context": "Battery Protection", - "reference": "Modules/Settings/BatteryTab.qml:170", - "comment": "" - }, - { - "term": "Battery Status", - "context": "Battery Status", - "reference": "Modules/Settings/BatteryTab.qml:51", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:72", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Battery and power management", "context": "Battery and power management", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:222", - "comment": "" + "reference": "Modules/Settings/WidgetsTab.qml:195, Modules/ControlCenter/Models/WidgetModel.qml:222", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Battery has charged to your set limit of %1%", "context": "Battery has charged to your set limit of %1%", "reference": "Services/BatteryService.qml:138", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Battery is at %1% - Connect charger immediately!", "context": "Battery is at %1% - Connect charger immediately!", "reference": "Services/BatteryService.qml:154", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Battery is at %1% - Consider charging soon", "context": "Battery is at %1% - Consider charging soon", "reference": "Services/BatteryService.qml:167", - "comment": "" - }, - { - "term": "Battery level and power management", - "context": "Battery level and power management", - "reference": "Modules/Settings/WidgetsTab.qml:195", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Battery percentage to trigger a critical alert.", "context": "Battery percentage to trigger a critical alert.", - "reference": "Modules/Settings/BatteryTab.qml:284", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:287", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Behavior", "context": "Behavior", - "reference": "Modules/Settings/DockTab.qml:156, Modules/Settings/ClipboardTab.qml:443", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:156, Modules/Settings/GreeterTab.qml:604, Modules/Settings/LockScreenTab.qml:584, Modules/Settings/ClipboardTab.qml:442", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "context": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:427", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:600", + "comment": "", + "tags": [ + "settings" + ] }, { - "term": "Bind the spotlight IPC action in your compositor config.", - "context": "Bind the spotlight IPC action in your compositor config.", - "reference": "Modules/Settings/LauncherTab.qml:142", - "comment": "" - }, - { - "term": "Bind the spotlight-bar IPC action in your compositor config.", - "context": "Bind the spotlight-bar IPC action in your compositor config.", - "reference": "Modules/Settings/LauncherTab.qml:236", - "comment": "" + "term": "Bind the %1 IPC action in your compositor config.", + "context": "Bind the %1 IPC action in your compositor config.", + "reference": "Modules/Settings/LauncherTab.qml:142, Modules/Settings/LauncherTab.qml:235", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Binds include added", "context": "Binds include added", "reference": "Services/KeybindsService.qml:261", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Bit Depth", "context": "Bit Depth", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2100", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Black", "context": "Black", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:274, Modules/Settings/TypographyMotionTab.qml:306, Modules/Settings/WallpaperTab.qml:340", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Blend between Surface High and the selected custom color", "context": "Blend between Surface High and the selected custom color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1646", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1645", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Block Out", "context": "Block Out", "reference": "Modules/Settings/WindowRulesTab.qml:105", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Block Out From", "context": "Block Out From", "reference": "Modals/WindowRuleModal.qml:1156", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Block notifications", "context": "Block notifications", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:146", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Blocked", "context": "Blocked", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:568", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Blue light filter", "context": "Blue light filter", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:129", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Bluetooth", "context": "Bluetooth", "reference": "Modules/Settings/WidgetsTabSection.qml:2273, Modules/Settings/WidgetsTabSection.qml:2514, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:505", - "comment": "bluetooth status" + "comment": "bluetooth status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Bluetooth Settings", "context": "Bluetooth Settings", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:131", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Bluetooth not available", "context": "Bluetooth not available", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:175", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Blur", "context": "Blur", "reference": "Modals/WindowRuleModal.qml:1263, Modules/Settings/WindowRulesTab.qml:132", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Blur Wallpaper Layer", "context": "Blur Wallpaper Layer", - "reference": "Modules/Settings/WallpaperTab.qml:1259", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1258", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Blur on Overview", "context": "Blur on Overview", "reference": "Modules/Settings/WallpaperTab.qml:769", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.", "context": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1868", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1867", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Blur wallpaper when niri overview is open", "context": "Blur wallpaper when niri overview is open", "reference": "Modules/Settings/WallpaperTab.qml:770", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Blurred surfaces show the wallpaper instead of the content beneath", "context": "Blurred surfaces show the wallpaper instead of the content beneath", - "reference": "Modules/Settings/CompositorLayoutTab.qml:382, Modules/Settings/CompositorLayoutTab.qml:534", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:382, Modules/Settings/CompositorLayoutTab.qml:533", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Body", "context": "Body", "reference": "Modules/Settings/NotificationsTab.qml:97", - "comment": "notification rule match field option" + "comment": "notification rule match field option", + "tags": [ + "settings" + ] }, { "term": "Body Font Size", "context": "Body Font Size", - "reference": "Modules/Settings/NotificationsTab.qml:226", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:225", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bold", "context": "Bold", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:270, Modules/Settings/TypographyMotionTab.qml:300", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Border", "context": "Border", - "reference": "Modules/Settings/DockTab.qml:671, Modules/Settings/DockTab.qml:678, Modules/Settings/LauncherTab.qml:691, Modules/Settings/DankBarTab.qml:1419, Modules/Settings/FrameTab.qml:79", - "comment": "launcher border option" + "reference": "Modules/Settings/DockTab.qml:670, Modules/Settings/DockTab.qml:677, Modules/Settings/LauncherTab.qml:690, Modules/Settings/DankBarTab.qml:1417, Modules/Settings/FrameTab.qml:79", + "comment": "launcher border option", + "tags": [ + "settings" + ] }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspaceAppearanceBorderFields.qml:22, Modules/Settings/FrameTab.qml:230, Modules/Settings/WindowRulesTab.qml:139", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:684, Modules/Settings/WorkspaceAppearanceBorderFields.qml:22, Modules/Settings/FrameTab.qml:230, Modules/Settings/WindowRulesTab.qml:139", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border Off", "context": "Border Off", "reference": "Modules/Settings/WindowRulesTab.qml:142", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border Opacity", "context": "Border Opacity", - "reference": "Modules/Settings/DockTab.qml:722", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:720", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border Radius", "context": "Border Radius", "reference": "Modules/Settings/FrameTab.qml:88", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/CompositorLayoutTab.qml:366, Modules/Settings/CompositorLayoutTab.qml:509, Modules/Settings/CompositorLayoutTab.qml:661", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:366, Modules/Settings/CompositorLayoutTab.qml:508, Modules/Settings/CompositorLayoutTab.qml:659", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border Thickness", "context": "Border Thickness", - "reference": "Modules/Settings/DockTab.qml:733", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:731", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border Width", "context": "Border Width", "reference": "Modules/Settings/FrameTab.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border color around popouts, modals, and other shell surfaces", "context": "Border color around popouts, modals, and other shell surfaces", - "reference": "Modules/Settings/ThemeColorsTab.qml:1767", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1766", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border w/ Bg", "context": "Border w/ Bg", "reference": "Modules/Settings/WindowRulesTab.qml:131", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Border with Background", "context": "Border with Background", "reference": "Modals/WindowRuleModal.qml:1142", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Bottom", "context": "Bottom", - "reference": "Modules/Settings/ThemeColorsTab.qml:2007, Modules/Settings/ThemeColorsTab.qml:2017, Modules/Settings/ThemeColorsTab.qml:2030, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:344, Modules/Settings/DankBarTab.qml:493, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1729, Modules/Settings/DankBarTab.qml:1743, Modules/Settings/FrameTab.qml:343", - "comment": "shadow direction option" + "reference": "Modules/Settings/ThemeColorsTab.qml:2005, Modules/Settings/ThemeColorsTab.qml:2015, Modules/Settings/ThemeColorsTab.qml:2028, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:344, Modules/Settings/DankBarTab.qml:493, Modules/Settings/DankBarTab.qml:1716, Modules/Settings/DankBarTab.qml:1724, Modules/Settings/DankBarTab.qml:1738, Modules/Settings/FrameTab.qml:343", + "comment": "screen edge position | shadow direction option", + "tags": [ + "settings" + ] }, { "term": "Bottom Center", "context": "Bottom Center", - "reference": "Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66, Modules/Settings/NotificationsTab.qml:254, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:271", - "comment": "screen position option" + "reference": "Modules/Settings/OSDTab.qml:45, Modules/Settings/OSDTab.qml:51, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:66, Modules/Settings/NotificationsTab.qml:253, Modules/Settings/NotificationsTab.qml:258, Modules/Settings/NotificationsTab.qml:270", + "comment": "screen position option", + "tags": [ + "settings" + ] }, { "term": "Bottom Left", "context": "Bottom Left", - "reference": "Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/NotificationsTab.qml:248, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:277, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", - "comment": "screen position option" + "reference": "Modules/Settings/OSDTab.qml:43, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:64, Modules/Settings/NotificationsTab.qml:247, Modules/Settings/NotificationsTab.qml:258, Modules/Settings/NotificationsTab.qml:276, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "comment": "screen position option", + "tags": [ + "settings" + ] }, { "term": "Bottom Right", "context": "Bottom Right", - "reference": "Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/NotificationsTab.qml:252, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:274, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", - "comment": "screen position option" + "reference": "Modules/Settings/OSDTab.qml:41, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:62, Modules/Settings/NotificationsTab.qml:251, Modules/Settings/NotificationsTab.qml:258, Modules/Settings/NotificationsTab.qml:273, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "comment": "screen position option", + "tags": [ + "settings" + ] }, { "term": "Bottom Section", "context": "Bottom Section", "reference": "Modules/Settings/WidgetsTab.qml:1496", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Bottom dock for pinned and running applications", "context": "Bottom dock for pinned and running applications", "reference": "Modules/Settings/DisplayWidgetsTab.qml:32", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/WidgetsTabSection.qml:2313, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/DockTab.qml:498, Modules/Settings/LauncherTab.qml:523, Modules/Settings/OSDTab.qml:117", - "comment": "" + "reference": "Modules/Settings/WidgetsTabSection.qml:2313, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/DockTab.qml:497, Modules/Settings/LauncherTab.qml:522, Modules/Settings/OSDTab.qml:114", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Brightness Slider", "context": "Brightness Slider", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:203", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Brightness Value", "context": "Brightness Value", "reference": "Modules/Settings/WidgetsTabSection.qml:2318, Modules/Settings/WidgetsTabSection.qml:2514", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Brightness control not available", "context": "Brightness control not available", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:171, Modules/ControlCenter/Models/WidgetModel.qml:208", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Browse", "context": "Browse", - "reference": "Modals/DankLauncherV2/SpotlightResultRow.qml:61, Modals/DankLauncherV2/Controller.qml:220, Modals/DankLauncherV2/Controller.qml:1423, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/AutoStartTab.qml:487, Modules/Settings/PluginsTab.qml:236, Modules/Settings/LockScreenTab.qml:576, Modules/Settings/Widgets/SettingsWallpaperPicker.qml:57", - "comment": "theme category option" + "reference": "Modals/DankLauncherV2/SpotlightResultRow.qml:61, Modals/DankLauncherV2/Controller.qml:220, Modals/DankLauncherV2/Controller.qml:1423, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/AutoStartTab.qml:487, Modules/Settings/PluginsTab.qml:237, Modules/Settings/LockScreenTab.qml:702, Modules/Settings/Widgets/SettingsWallpaperPicker.qml:57", + "comment": "theme category option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Browse Files", "context": "Browse Files", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1502, dms-plugins/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:656", - "comment": "KDE Connect browse tooltip" + "comment": "KDE Connect browse tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Browse Plugins", "context": "Browse Plugins", "reference": "Modules/Settings/PluginBrowser.qml:597, Modules/Settings/PluginBrowser.qml:759, Modules/Settings/DesktopWidgetsTab.qml:197", - "comment": "plugin browser header | plugin browser window title" + "comment": "plugin browser header | plugin browser window title", + "tags": [ + "settings" + ] }, { "term": "Browse Themes", "context": "Browse Themes", "reference": "Modules/Settings/ThemeColorsTab.qml:897, Modules/Settings/ThemeBrowser.qml:147, Modules/Settings/ThemeBrowser.qml:244", - "comment": "browse themes button | theme browser header | theme browser window title" + "comment": "browse themes button | theme browser header | theme browser window title", + "tags": [ + "settings" + ] }, { "term": "Browse and set wallpapers", "context": "Browse and set wallpapers", "reference": "Modules/Settings/DankDashTab.qml:33", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Browse or search plugins", "context": "Browse or search plugins", "reference": "Modals/DankLauncherV2/ResultsList.qml:566", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Button Color", "context": "Button Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1704", - "comment": "" - }, - { - "term": "By %1", - "context": "By %1", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:223", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1703", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CPU", "context": "CPU", "reference": "Modules/ProcessList/SystemView.qml:76, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:86", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "CPU Graph", "context": "CPU Graph", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:97", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CPU Temperature", "context": "CPU Temperature", "reference": "Modules/Settings/WidgetsTab.qml:150, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CPU Usage", "context": "CPU Usage", "reference": "Modules/Settings/WidgetsTab.qml:126", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CPU temperature display", "context": "CPU temperature display", "reference": "Modules/Settings/WidgetsTab.qml:151", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CPU usage indicator", "context": "CPU usage indicator", "reference": "Modules/Settings/WidgetsTab.qml:127", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CPU, memory, network, and disk monitoring", "context": "CPU, memory, network, and disk monitoring", "reference": "Services/DesktopWidgetRegistry.qml:55", - "comment": "System monitor widget description" + "comment": "System monitor widget description", + "tags": [ + "shell" + ] }, { "term": "CUPS Insecure Filter Warning", "context": "CUPS Insecure Filter Warning", "reference": "Services/CupsService.qml:827", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "CUPS Missing Filter Warning", "context": "CUPS Missing Filter Warning", "reference": "Services/CupsService.qml:826", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "CUPS Print Server", "context": "CUPS Print Server", "reference": "Modules/Settings/PrinterTab.qml:173", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "CUPS not available", "context": "CUPS not available", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:262", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Calendar", "context": "Calendar", "reference": "Modules/Settings/DefaultAppsTab.qml:312, Modules/DankDash/Overview/CalendarEventEditor.qml:273", - "comment": "Calendar" + "comment": "Calendar", + "tags": [ + "settings", + "shell" + ] }, { "term": "Calendar Backend", "context": "Calendar Backend", - "reference": "Modules/Settings/TimeWeatherTab.qml:145", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:143", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Camera", "context": "Camera", "reference": "Modules/Settings/WidgetsTabSection.qml:2910", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Cancel", "context": "Cancel", - "reference": "DMSShell.qml:325, Modals/WindowRuleModal.qml:1920, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:163, Modals/BluetoothPairingModal.qml:267, Modals/WifiPasswordModal.qml:677, Widgets/KeybindItem.qml:1863, Modals/DankLauncherV2/AppEditView.qml:283, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:322, Modules/Settings/PluginBrowser.qml:572, Modules/Settings/PluginBrowser.qml:1944, Modules/Settings/GreeterTab.qml:148, Modules/Settings/PluginUpdatesDialog.qml:278, 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/DankDash/Overview/CalendarEventEditor.qml:342, Modules/DankBar/Popouts/SystemUpdatePopout.qml:253", - "comment": "" + "reference": "DMSShell.qml:329, Modals/WindowRuleModal.qml:1920, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:163, Modals/BluetoothPairingModal.qml:267, Modals/WifiPasswordModal.qml:677, Widgets/KeybindItem.qml:1863, Modals/DankLauncherV2/AppEditView.qml:283, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:322, Modules/Settings/PluginBrowser.qml:572, Modules/Settings/PluginBrowser.qml:1944, Modules/Settings/GreeterTab.qml:148, Modules/Settings/PluginUpdatesDialog.qml:282, 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/DankDash/Overview/CalendarEventEditor.qml:342, Modules/DankBar/Popouts/SystemUpdatePopout.qml:253", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Cancel all jobs for \"%1\"?", "context": "Cancel all jobs for \"%1\"?", "reference": "Modules/Settings/PrinterTab.qml:1398", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Canceled", "context": "Canceled", "reference": "Services/CupsService.qml:769", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Cannot delete the only administrator", "context": "Cannot delete the only administrator", "reference": "Services/UsersService.qml:159, Modules/Settings/UsersTab.qml:314", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Cannot disable the only output", "context": "Cannot disable the only output", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:82, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:70", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Cannot open trash: '%1' is not installed", "context": "Cannot open trash: '%1' is not installed", "reference": "Services/TrashService.qml:98", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Cannot open trash: no custom command set", "context": "Cannot open trash: no custom command set", "reference": "Services/TrashService.qml:107", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Cannot pair", "context": "Cannot pair", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:593", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Cannot remove the only administrator", "context": "Cannot remove the only administrator", "reference": "Services/UsersService.qml:173, Modules/Settings/UsersTab.qml:286", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Capabilities", "context": "Capabilities", "reference": "Modules/Settings/AboutTab.qml:732, Modules/Settings/PluginBrowser.qml:1682", - "comment": "plugin detail section" + "comment": "plugin detail section", + "tags": [ + "settings" + ] }, { "term": "Capacity", "context": "Capacity", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:176, Modules/DankBar/Popouts/BatteryPopout.qml:332, Modules/DankBar/Popouts/BatteryPopout.qml:490", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Caps Lock", "context": "Caps Lock", - "reference": "Modules/Settings/OSDTab.qml:141", - "comment": "" + "reference": "Modules/Settings/OSDTab.qml:135", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Caps Lock Indicator", "context": "Caps Lock Indicator", "reference": "Modules/Settings/WidgetsTab.qml:215", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Caps Lock is on", "context": "Caps Lock is on", "reference": "Modules/Lock/LockScreenContent.qml:1367", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Cast Target", "context": "Cast Target", "reference": "Modals/WindowRuleModal.qml:907, Modules/Settings/WindowRulesTab.qml:51", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Category", "context": "Category", "reference": "Modules/Settings/PluginBrowser.qml:66", - "comment": "plugin browser sort option" + "comment": "plugin browser sort option", + "tags": [ + "settings" + ] }, { "term": "Center Section", "context": "Center Section", "reference": "Modules/Settings/WidgetSelectionPopup.qml:30, Modules/Settings/WidgetsTab.qml:1409", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Center Single Column", "context": "Center Single Column", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:367", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Center Tiling", "context": "Center Tiling", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:49", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Certificate Password", "context": "Certificate Password", "reference": "Modals/WifiPasswordModal.qml:188", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Change Song", "context": "Change Song", "reference": "Modules/Settings/MediaPlayerTab.qml:77", - "comment": "media scroll wheel option" + "comment": "media scroll wheel option", + "tags": [ + "settings" + ] }, { "term": "Change Volume", "context": "Change Volume", "reference": "Modules/Settings/MediaPlayerTab.qml:77", - "comment": "media scroll wheel option" + "comment": "media scroll wheel option", + "tags": [ + "settings" + ] }, { "term": "Change the locale used by the DMS interface.", "context": "Change the locale used by the DMS interface.", "reference": "Modules/Settings/LocaleTab.qml:57", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Change the locale used for date and time formatting, independent of the interface language.", "context": "Change the locale used for date and time formatting, independent of the interface language.", "reference": "Modules/Settings/LocaleTab.qml:76", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Channel", "context": "Channel", "reference": "Modules/Settings/NetworkWifiTab.qml:753, Modules/Settings/NetworkWifiTab.qml:1114", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Charge Level", "context": "Charge Level", - "reference": "Modules/Settings/BatteryTab.qml:85", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:86", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Charge Limit Reached", "context": "Charge Limit Reached", "reference": "Services/BatteryService.qml:138", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Charge limit applied successfully", "context": "Charge limit applied successfully", "reference": "Modules/Settings/BatteryTab.qml:29", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Charging", "context": "Charging", "reference": "Services/BatteryService.qml:322, Services/BatteryService.qml:353, Modules/ControlCenter/Widgets/BatteryPill.qml:25", - "comment": "battery status" + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "Check for system updates", "context": "Check for system updates", "reference": "Modules/Settings/WidgetsTab.qml:265", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Check interval", "context": "Check interval", "reference": "Modules/Settings/SystemUpdaterTab.qml:92", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Check on startup", "context": "Check on startup", "reference": "Modules/Settings/SystemUpdaterTab.qml:160", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Check your custom command in Settings → Dock → Trash.", "context": "Check your custom command in Settings → Dock → Trash.", "reference": "Services/TrashService.qml:112", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Checking for updates...", "context": "Checking for updates...", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:352", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Checking whether sudo authentication is needed...", "context": "Checking whether sudo authentication is needed...", "reference": "Modules/Settings/GreeterTab.qml:161", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Checking...", "context": "Checking...", "reference": "Modules/Settings/GreeterTab.qml:426, Modules/DankBar/Popouts/SystemUpdatePopout.qml:164", - "comment": "greeter status loading" + "comment": "greeter status loading", + "tags": [ + "settings", + "shell" + ] }, { "term": "Choose Color", "context": "Choose Color", "reference": "Modals/DankColorPickerModal.qml:15, Modules/Settings/Widgets/SettingsColorPicker.qml:13", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Choose Dark Mode Color", "context": "Choose Dark Mode Color", "reference": "Modules/Settings/WallpaperTab.qml:693", - "comment": "dark mode wallpaper color picker title" - }, - { - "term": "Choose Dock Launcher Logo Color", - "context": "Choose Dock Launcher Logo Color", - "reference": "Modules/Settings/DockTab.qml:464", - "comment": "" + "comment": "dark mode wallpaper color picker title", + "tags": [ + "settings" + ] }, { "term": "Choose Launcher Logo Color", "context": "Choose Launcher Logo Color", - "reference": "Modules/Settings/LauncherTab.qml:489", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:463, Modules/Settings/LauncherTab.qml:488", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose Light Mode Color", "context": "Choose Light Mode Color", "reference": "Modules/Settings/WallpaperTab.qml:514", - "comment": "light mode wallpaper color picker title" + "comment": "light mode wallpaper color picker title", + "tags": [ + "settings" + ] }, { "term": "Choose Wallpaper Color", "context": "Choose Wallpaper Color", "reference": "Modules/Settings/WallpaperTab.qml:169", - "comment": "wallpaper color picker title" + "comment": "wallpaper color picker title", + "tags": [ + "settings" + ] }, { "term": "Choose a color", "context": "Choose a color", "reference": "Modules/ControlCenter/Widgets/ColorPickerPill.qml:16", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Choose a power profile", "context": "Choose a power profile", "reference": "Modals/PowerProfileModal.qml:138", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Choose colors from palette", "context": "Choose colors from palette", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:240", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Choose how the weather widget is displayed", "context": "Choose how the weather widget is displayed", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Choose how this bar resolves shadow direction", "context": "Choose how this bar resolves shadow direction", - "reference": "Modules/Settings/DankBarTab.qml:1685", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1680", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose how to be notified about critical battery alerts.", "context": "Choose how to be notified about critical battery alerts.", - "reference": "Modules/Settings/BatteryTab.qml:303", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:306", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose how to be notified about low battery alerts.", "context": "Choose how to be notified about low battery alerts.", - "reference": "Modules/Settings/BatteryTab.qml:258", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:261", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose how to be notified when charge limit is reached.", "context": "Choose how to be notified when charge limit is reached.", - "reference": "Modules/Settings/BatteryTab.qml:217", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:219", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose icon", "context": "Choose icon", "reference": "Widgets/DankIconPicker.qml:100", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:1323", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1321", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose neutral or accent-colored widget text", "context": "Choose neutral or accent-colored widget text", "reference": "Modules/Settings/ThemeColorsTab.qml:1614", - "comment": "" - }, - { - "term": "Choose the background color for widgets", - "context": "Choose the background color for widgets", - "reference": "Modules/Settings/ThemeColorsTab.qml:1629", - "comment": "" - }, - { - "term": "Choose the border accent color", - "context": "Choose the border accent color", - "reference": "Modules/Settings/DockTab.qml:686", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose the logo displayed on the launcher button in DankBar", "context": "Choose the logo displayed on the launcher button in DankBar", - "reference": "Modules/Settings/LauncherTab.qml:284", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:283", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose wallpaper folder", "context": "Choose wallpaper folder", "reference": "Modules/DankDash/WallpaperTab.qml:722", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Choose where notification popups appear on screen", "context": "Choose where notification popups appear on screen", - "reference": "Modules/Settings/NotificationsTab.qml:240", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:239", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose where on-screen displays appear on screen", "context": "Choose where on-screen displays appear on screen", "reference": "Modules/Settings/OSDTab.qml:31", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose whether to launch a desktop app or a command", "context": "Choose whether to launch a desktop app or a command", "reference": "Modules/Settings/AutoStartTab.qml:385", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose which action buttons appear on clipboard entries", "context": "Choose which action buttons appear on clipboard entries", - "reference": "Modules/Settings/ClipboardTab.qml:492", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:491", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Choose which displays show this widget", "context": "Choose which displays show this widget", "reference": "Modules/Plugins/PluginSettings.qml:248", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Choose which monitors show the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "context": "Choose which monitors show the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", - "reference": "Modules/Settings/LockScreenTab.qml:601", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:727", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Chroma Style", "context": "Chroma Style", "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:74", - "comment": "" + "comment": "", + "tags": [ + "plugin-danknotepadmodule" + ] }, { "term": "Cipher", "context": "Cipher", "reference": "Widgets/VpnProfileDelegate.qml:56, Modules/Settings/NetworkVpnTab.qml:430", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Circle", "context": "Circle", "reference": "Modules/Settings/DockTab.qml:191", - "comment": "dock indicator style option" + "comment": "dock indicator style option", + "tags": [ + "settings" + ] }, { "term": "Class regex", "context": "Class regex", "reference": "Modals/WindowRuleModal.qml:793", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Class regex (e.g. ^firefox$)", "context": "Class regex (e.g. ^firefox$)", "reference": "Modals/WindowRuleModal.qml:726", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Clear", "context": "Clear", "reference": "Modules/Settings/PrinterTab.qml:1399, Modules/Notifications/Center/NotificationHeader.qml:161", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Clear All", "context": "Clear All", "reference": "Modals/Clipboard/ClipboardHeader.qml:70, Modals/Clipboard/ClipboardHistoryPopout.qml:105, Modals/Clipboard/ClipboardHistoryModal.qml:97, Modules/Settings/PrinterTab.qml:1383, Modules/DankBar/Widgets/ClipboardButton.qml:254", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Clear All Jobs", "context": "Clear All Jobs", "reference": "Modules/Settings/PrinterTab.qml:1397", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clear History?", "context": "Clear History?", "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:140, Modules/DankBar/DankBarContent.qml:928", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Clear Sky", "context": "Clear Sky", "reference": "Services/WeatherService.qml:124, Services/WeatherService.qml:125", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Clear all history when server starts", "context": "Clear all history when server starts", - "reference": "Modules/Settings/ClipboardTab.qml:452", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:451", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clear at Startup", "context": "Clear at Startup", - "reference": "Modules/Settings/ClipboardTab.qml:451", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:450", + "comment": "", + "tags": [ + "settings" + ] }, { "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/ThemeColorsTab.qml:2225, Modules/Settings/WindowRulesTab.qml:512, Modules/Settings/KeybindsTab.qml:402, Modules/Settings/CompositorLayoutTab.qml:213", - "comment": "" - }, - { - "term": "Click 'Setup' to create the outputs config and add include to your compositor config.", - "context": "Click 'Setup' to create the outputs config and add include to your compositor config.", - "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:65", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2223, Modules/Settings/WindowRulesTab.qml:512, Modules/Settings/KeybindsTab.qml:402, Modules/Settings/CompositorLayoutTab.qml:213, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:65", + "comment": "", + "tags": [ + "settings" + ] }, { "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/NetworkVpnTab.qml:222", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Click Refresh to check status.", "context": "Click Refresh to check status.", "reference": "Modules/Settings/GreeterTab.qml:426", - "comment": "greeter status placeholder" + "comment": "greeter status placeholder", + "tags": [ + "settings" + ] }, { "term": "Click Through", "context": "Click Through", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:756", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Click an entry to paste directly instead of copying", "context": "Click an entry to paste directly instead of copying", - "reference": "Modules/Settings/ClipboardTab.qml:462", - "comment": "Clipboard behavior setting description" + "reference": "Modules/Settings/ClipboardTab.qml:461", + "comment": "Clipboard behavior setting description", + "tags": [ + "settings" + ] }, { "term": "Click any shortcut to edit. Changes save to %1", "context": "Click any shortcut to edit. Changes save to %1", "reference": "Modules/Settings/KeybindsTab.qml:299", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Click to Paste", "context": "Click to Paste", - "reference": "Modules/Settings/ClipboardTab.qml:461", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:460", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Click to capture", "context": "Click to capture", "reference": "Widgets/KeybindItem.qml:667", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Click to select a custom theme JSON file", "context": "Click to select a custom theme JSON file", "reference": "Modules/Settings/ThemeColorsTab.qml:690", - "comment": "custom theme file hint" + "comment": "custom theme file hint", + "tags": [ + "settings" + ] }, { "term": "Clip", "context": "Clip", "reference": "Modules/Settings/WindowRulesTab.qml:109", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clip to Geometry", "context": "Clip to Geometry", "reference": "Modals/WindowRuleModal.qml:1134", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Clipboard", "context": "Clipboard", "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:67, Modals/DankLauncherV2/Controller.qml:213, Modals/DankLauncherV2/Controller.qml:1271, Modals/Settings/SettingsSidebar.qml:330", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Clipboard History", "context": "Clipboard History", "reference": "Modals/Clipboard/ClipboardHeader.qml:35", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Clipboard Manager", "context": "Clipboard Manager", "reference": "Modules/Settings/WidgetsTab.qml:119", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clipboard Saved", "context": "Clipboard Saved", "reference": "Modals/Clipboard/ClipboardHeader.qml:35", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Clipboard sent", "context": "Clipboard sent", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:612, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:58", - "comment": "Phone Connect clipboard action" + "comment": "Phone Connect clipboard action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Clipboard works but nothing saved to disk", "context": "Clipboard works but nothing saved to disk", - "reference": "Modules/Settings/ClipboardTab.qml:520", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:519", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clock", "context": "Clock", "reference": "Modules/Settings/WidgetsTab.qml:98", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clock Style", "context": "Clock Style", "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:28", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Clock, calendar, system info and profile", "context": "Clock, calendar, system info and profile", "reference": "Modules/Settings/DankDashTab.qml:23", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Close", "context": "Close", "reference": "Modals/NetworkWiredInfoModal.qml:129, Modals/MuxModal.qml:591, Modals/SwitchUserModal.qml:245, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Popouts/SystemUpdatePopout.qml:301, Modules/DankBar/Widgets/RunningApps.qml:876", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Close All Windows", "context": "Close All Windows", "reference": "Modules/Dock/DockContextMenu.qml:353, Modules/DankBar/Widgets/AppsDockContextMenu.qml:462", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Close Overview on Launch", "context": "Close Overview on Launch", - "reference": "Modules/Settings/LauncherTab.qml:759", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:758", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Close Window", "context": "Close Window", "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:169, Modules/Dock/DockContextMenu.qml:353, Modules/DankBar/Widgets/AppsDockContextMenu.qml:464", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankhyprlandwindows", + "shell" + ] }, { "term": "Codec switching is unavailable because pactl was not found", "context": "Codec switching is unavailable because pactl was not found", "reference": "Services/BluetoothService.qml:408, Modules/ControlCenter/Details/BluetoothCodecSelector.qml:68", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Color", "context": "Color", - "reference": "Modules/Settings/LauncherTab.qml:718, Modules/Settings/DankBarTab.qml:1427, Modules/Settings/DankBarTab.qml:1522, Modules/Settings/DankBarTab.qml:1761, Modules/Settings/DankBarTab.qml:1835, Modules/Settings/Widgets/SettingsColorPicker.qml:29", - "comment": "border color" + "reference": "Modules/Settings/LauncherTab.qml:717, Modules/Settings/DankBarTab.qml:1425, Modules/Settings/DankBarTab.qml:1519, Modules/Settings/DankBarTab.qml:1756, Modules/Settings/DankBarTab.qml:1830, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "comment": "border color", + "tags": [ + "settings" + ] }, { "term": "Color %1 copied", "context": "Color %1 copied", "reference": "Modals/DankColorPickerModal.qml:70", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Color Gamut", "context": "Color Gamut", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:146", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color Management", "context": "Color Management", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2102", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color Mode", "context": "Color Mode", "reference": "Modules/Settings/ThemeColorsTab.qml:1584", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color Override", "context": "Color Override", - "reference": "Modules/Settings/DockTab.qml:381, Modules/Settings/LauncherTab.qml:405", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:380, Modules/Settings/LauncherTab.qml:404", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color Picker", "context": "Color Picker", "reference": "Services/AppSearchService.qml:204, Modules/Settings/WidgetsTab.qml:257, Modules/ControlCenter/Models/WidgetModel.qml:239, Modules/ControlCenter/Widgets/ColorPickerPill.qml:15", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Color Temperature", "context": "Color Temperature", "reference": "Modules/Settings/GammaControlTab.qml:105", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color displayed on monitors without the lock screen", "context": "Color displayed on monitors without the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:639", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:765", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color for primary action buttons", "context": "Color for primary action buttons", - "reference": "Modules/Settings/ThemeColorsTab.qml:1705", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1704", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color shown for areas not covered by wallpaper", "context": "Color shown for areas not covered by wallpaper", "reference": "Modules/Settings/WallpaperTab.qml:334", - "comment": "" - }, - { - "term": "Color temperature for day time", - "context": "Color temperature for day time", - "reference": "Modules/Settings/GammaControlTab.qml:125", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color temperature for night mode", "context": "Color temperature for night mode", "reference": "Modules/Settings/GammaControlTab.qml:106", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Color theme for syntax highlighting.", "context": "Color theme for syntax highlighting.", "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:77", - "comment": "" + "comment": "", + "tags": [ + "plugin-danknotepadmodule" + ] }, { "term": "Color theme for syntax highlighting. %1 themes available.", "context": "Color theme for syntax highlighting. %1 themes available.", "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:76", - "comment": "" + "comment": "", + "tags": [ + "plugin-danknotepadmodule" + ] }, { "term": "Color theme from DMS registry", "context": "Color theme from DMS registry", "reference": "Modules/Settings/ThemeColorsTab.qml:363", - "comment": "registry theme description" + "comment": "registry theme description", + "tags": [ + "settings" + ] }, { "term": "Colorful", "context": "Colorful", "reference": "Modules/Settings/ThemeColorsTab.qml:1615", - "comment": "widget style option" + "comment": "widget style option", + "tags": [ + "settings" + ] }, { "term": "Colorful mix of bright contrasting accents.", "context": "Colorful mix of bright contrasting accents.", "reference": "Common/Theme.qml:506", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Colorize Active", "context": "Colorize Active", "reference": "Modules/Settings/WidgetsTabSection.qml:4260", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Colors from wallpaper", "context": "Colors from wallpaper", "reference": "Modals/Greeter/GreeterWelcomePage.qml:90", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "Column", "context": "Column", - "reference": "Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1902", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1856, Modules/Settings/DankBarTab.qml:1897", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Column Display", "context": "Column Display", "reference": "Modals/WindowRuleModal.qml:1178", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Column Width", "context": "Column Width", "reference": "Modals/WindowRuleModal.qml:1045", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", "context": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", - "reference": "Modules/Settings/MuxTab.qml:93", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:92", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Command", "context": "Command", "reference": "Widgets/KeybindItem.qml:1506, Modules/Settings/AutoStartTab.qml:503, Modules/Settings/AutoStartTab.qml:571, Modules/Settings/DesktopWidgetInstanceCard.qml:386", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Command Line", "context": "Command Line", "reference": "Modules/Settings/AutoStartTab.qml:386, Modules/Settings/AutoStartTab.qml:387", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Commands", "context": "Commands", "reference": "Modals/DankLauncherV2/Controller.qml:234", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Communication", "context": "Communication", "reference": "Widgets/DankIconPicker.qml:35", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Community themes", "context": "Community themes", "reference": "Modals/Greeter/GreeterWelcomePage.qml:106", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "Compact", "context": "Compact", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:917, Modules/Settings/WidgetsTabSection.qml:1895, Modules/Settings/NotificationsTab.qml:297", - "comment": "" + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:917, Modules/Settings/WidgetsTabSection.qml:1895, Modules/Settings/NotificationsTab.qml:296", + "comment": "", + "tags": [ + "plugin-dankdesktopweather", + "settings" + ] }, { "term": "Compact Mode", "context": "Compact Mode", "reference": "Modules/Settings/WidgetsTabSection.qml:1060, Modules/Settings/WidgetsTabSection.qml:3710", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Completed", "context": "Completed", "reference": "Services/CupsService.qml:773", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Compositor", "context": "Compositor", - "reference": "Modules/Settings/DockTab.qml:294, Modules/Settings/LauncherTab.qml:317", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:293, Modules/Settings/LauncherTab.qml:316", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Compositor Settings", "context": "Compositor Settings", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:38, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:38", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Config Format", "context": "Config Format", "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2064", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Config action: %1", "context": "Config action: %1", "reference": "Widgets/KeybindItem.qml:516", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Config validation failed", "context": "Config validation failed", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2147, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2155", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:195, Modules/Settings/LockScreenTab.qml:200, Modules/Settings/LockScreenTab.qml:235, Modules/Settings/LockScreenTab.qml:240, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2147, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2155", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Configuration", "context": "Configuration", "reference": "Modals/Settings/SettingsSidebar.qml:225", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Configuration activated", "context": "Configuration activated", "reference": "Services/DMSNetworkService.qml:461", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Configuration will be preserved when this display reconnects", "context": "Configuration will be preserved when this display reconnects", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:165", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] + }, + { + "term": "Configurations", + "context": "Configurations", + "reference": "Modules/Settings/DankBarTab.qml:269", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Configure", "context": "Configure", "reference": "Modals/Greeter/GreeterCompletePage.qml:356", - "comment": "greeter settings section header" + "comment": "greeter settings section header", + "tags": [ + "shell" + ] }, { "term": "Configure Keybinds", "context": "Configure Keybinds", "reference": "Modals/Greeter/GreeterCompletePage.qml:297", - "comment": "greeter configure keybinds link" + "comment": "greeter configure keybinds link", + "tags": [ + "shell" + ] }, { "term": "Configure a new printer", "context": "Configure a new printer", "reference": "Modules/Settings/PrinterTab.qml:286", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:214", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Configure match criteria and actions", "context": "Configure match criteria and actions", "reference": "Modals/WindowRuleModal.qml:666", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Configure one in Settings → Dock → Trash.", "context": "Configure one in Settings → Dock → Trash.", "reference": "Services/TrashService.qml:107", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Configure which displays show \"%1\"", "context": "Configure which displays show \"%1\"", "reference": "Modules/Settings/DankBarTab.qml:548", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Configure which displays show shell components", "context": "Configure which displays show shell components", "reference": "Modules/Settings/DisplayWidgetsTab.qml:176", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Confirm", "context": "Confirm", "reference": "Modals/BluetoothPairingModal.qml:313, Modals/Common/ConfirmModal.qml:14, Modals/Common/ConfirmModal.qml:25, Modals/Common/ConfirmModal.qml:38", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Confirm Delete", "context": "Confirm Delete", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:152", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Confirm Display Changes", "context": "Confirm Display Changes", "reference": "Modals/DisplayConfirmationModal.qml:81", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Confirm passkey for ", "context": "Confirm passkey for ", "reference": "Modals/BluetoothPairingModal.qml:126", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Confirm password", "context": "Confirm password", "reference": "Modules/Settings/UsersTab.qml:425", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Conflicts with: %1", "context": "Conflicts with: %1", "reference": "Widgets/KeybindItem.qml:837", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connect", "context": "Connect", "reference": "Modals/WifiPasswordModal.qml:719, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:654, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:156", - "comment": "Tailscale connect button" + "comment": "Tailscale connect button", + "tags": [ + "settings", + "shell" + ] }, { "term": "Connect to Hidden Network", "context": "Connect to Hidden Network", "reference": "Modals/WifiPasswordModal.qml:330", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connect to VPN", "context": "Connect to VPN", "reference": "Modals/WifiPasswordModal.qml:328", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connect to Wi-Fi", "context": "Connect to Wi-Fi", "reference": "Modals/WifiPasswordModal.qml:331", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connected", "context": "Connected", "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkVpnTab.qml:101, Modules/Settings/NetworkEthernetTab.qml:163, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:59, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:969, Modules/ControlCenter/Details/BluetoothDetail.qml:336, Modules/ControlCenter/Details/BluetoothDetail.qml:337, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:26, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:531, Modules/ControlCenter/Components/DragDropGrid.qml:534, Modules/ControlCenter/Components/DragDropGrid.qml:536, Modules/ControlCenter/Components/DragDropGrid.qml:539", - "comment": "Tailscale connection status: connected | network status" + "comment": "Tailscale connection status: connected | network status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Connected Device", "context": "Connected Device", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:563", - "comment": "bluetooth status" + "comment": "bluetooth status", + "tags": [ + "shell" + ] }, { "term": "Connected Displays", "context": "Connected Displays", "reference": "Modules/Settings/DisplayWidgetsTab.qml:167", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Connected Frame Mode uses the connected launcher for default launcher shortcuts.", "context": "Connected Frame Mode uses the connected launcher for default launcher shortcuts.", "reference": "Modules/Settings/LauncherTab.qml:76", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Connected Options", "context": "Connected Options", "reference": "Modules/Settings/FrameTab.qml:323", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Connected to %1", "context": "Connected to %1", "reference": "Services/LegacyNetworkService.qml:334, Services/DMSNetworkService.qml:408", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connecting to Device", "context": "Connecting to Device", "reference": "Services/CupsService.qml:818", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connecting to clipboard service...", "context": "Connecting to clipboard service...", "reference": "Modals/Clipboard/ClipboardContent.qml:234, Modals/Clipboard/ClipboardContent.qml:296", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Connecting...", "context": "Connecting...", - "reference": "Widgets/VpnProfileDelegate.qml:145, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:968, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:332, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/Components/DragDropGrid.qml:485, Modules/ControlCenter/Components/DragDropGrid.qml:527, Modules/ControlCenter/Components/DragDropGrid.qml:551", - "comment": "bluetooth status | network status" - }, - { - "term": "Connecting…", - "context": "Connecting…", - "reference": "Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21", - "comment": "" + "reference": "Widgets/VpnProfileDelegate.qml:145, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:968, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:332, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:485, Modules/ControlCenter/Components/DragDropGrid.qml:527, Modules/ControlCenter/Components/DragDropGrid.qml:551", + "comment": "bluetooth status | network status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Connection failed", "context": "Connection failed", "reference": "Modules/Settings/PrinterTab.qml:652", - "comment": "Status message when test connection to printer fails" + "comment": "Status message when test connection to printer fails", + "tags": [ + "settings" + ] }, { "term": "Contains", "context": "Contains", "reference": "Modules/Settings/NotificationsTab.qml:104", - "comment": "notification rule match type option" + "comment": "notification rule match type option", + "tags": [ + "settings" + ] }, { "term": "Content", "context": "Content", "reference": "Common/Theme.qml:493", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Content copied", "context": "Content copied", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:262, dms-plugins/DankGifSearch/DankGifSearch.qml:209", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Contrast", "context": "Contrast", - "reference": "Modules/Settings/DockTab.qml:510, Modules/Settings/LauncherTab.qml:535", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:509, Modules/Settings/LauncherTab.qml:534", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Contributor", "context": "Contributor", "reference": "Modules/Settings/PluginBrowser.qml:61", - "comment": "plugin browser sort option" + "comment": "plugin browser sort option", + "tags": [ + "settings" + ] }, { "term": "Control Center", "context": "Control Center", "reference": "Modals/Greeter/GreeterWelcomePage.qml:148, Modules/Settings/WidgetsTab.qml:180", - "comment": "greeter feature card title" + "comment": "greeter feature card title", + "tags": [ + "settings", + "shell" + ] }, { "term": "Control Center Tile Color", "context": "Control Center Tile Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1666", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1665", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Control animation duration for notification popups and history", "context": "Control animation duration for notification popups and history", - "reference": "Modules/Settings/NotificationsTab.qml:369", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:367", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Control currently playing media", "context": "Control currently playing media", "reference": "Modules/Settings/WidgetsTab.qml:113", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Control what notification information is shown on the lock screen", "context": "Control what notification information is shown on the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:263, Modules/Settings/NotificationsTab.qml:773", - "comment": "lock screen notification privacy setting" + "reference": "Modules/Settings/LockScreenTab.qml:333, Modules/Settings/NotificationsTab.qml:771", + "comment": "lock screen notification privacy setting", + "tags": [ + "settings" + ] }, { "term": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", "context": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", - "reference": "Modules/Settings/LauncherTab.qml:949", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:948", + "comment": "", + "tags": [ + "settings" + ] }, { "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:1851", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1846", + "comment": "", + "tags": [ + "settings" + ] }, { "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:1371", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1369", + "comment": "", + "tags": [ + "settings" + ] }, { "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:1394", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1392", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Controls opacity of shell surfaces, popouts, and modals", "context": "Controls opacity of shell surfaces, popouts, and modals", - "reference": "Modules/Settings/ThemeColorsTab.qml:1752", - "comment": "" - }, - { - "term": "Controls opacity of the bar background", - "context": "Controls opacity of the bar background", - "reference": "Modules/Settings/DankBarTab.qml:823", - "comment": "" - }, - { - "term": "Controls opacity of the border", - "context": "Controls opacity of the border", - "reference": "Modules/Settings/DankBarTab.qml:1466", - "comment": "" - }, - { - "term": "Controls opacity of the shadow layer", - "context": "Controls opacity of the shadow layer", - "reference": "Modules/Settings/DankBarTab.qml:1670", - "comment": "" - }, - { - "term": "Controls opacity of the widget outline", - "context": "Controls opacity of the widget outline", - "reference": "Modules/Settings/DankBarTab.qml:1561", - "comment": "" - }, - { - "term": "Controls opacity of widget backgrounds", - "context": "Controls opacity of widget backgrounds", - "reference": "Modules/Settings/DankBarTab.qml:846", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1751", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Controls outlines around foreground cards, pills, and notification cards", "context": "Controls outlines around foreground cards, pills, and notification cards", - "reference": "Modules/Settings/ThemeColorsTab.qml:1825", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1824", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Controls shadow cast direction for elevation layers", "context": "Controls shadow cast direction for elevation layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:2006", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2004", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Controls the base blur radius and offset of shadows", "context": "Controls the base blur radius and offset of shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1931", - "comment": "" - }, - { - "term": "Controls the opacity of the shadow", - "context": "Controls the opacity of the shadow", - "reference": "Modules/Settings/ThemeColorsTab.qml:1946", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1930", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Controls the outline of popouts, modals, and other shell surfaces", "context": "Controls the outline of popouts, modals, and other shell surfaces", - "reference": "Modules/Settings/ThemeColorsTab.qml:1811", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1810", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Convenience options for the login screen. Sync to apply.", "context": "Convenience options for the login screen. Sync to apply.", "reference": "Modules/Settings/GreeterTab.qml:608", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Convert to DMS", "context": "Convert to DMS", "reference": "Modules/Settings/WindowRulesTab.qml:1011", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Cooldown", "context": "Cooldown", "reference": "Widgets/KeybindItem.qml:1699", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copied GIF", "context": "Copied GIF", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:283, dms-plugins/DankGifSearch/DankGifSearch.qml:230", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Copied MP4", "context": "Copied MP4", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:293, dms-plugins/DankGifSearch/DankGifSearch.qml:240", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Copied WebP", "context": "Copied WebP", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:273, dms-plugins/DankGifSearch/DankGifSearch.qml:220", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Copied to clipboard", "context": "Copied to clipboard", "reference": "Services/ClipboardService.qml:212, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:325, Modals/Settings/SettingsModal.qml:342, Modules/Notepad/NotepadTextEditor.qml:328, Modules/Settings/DesktopWidgetInstanceCard.qml:426", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-danklauncherkeys", + "plugin-dankstickersearch", + "settings", + "shell" + ] }, { "term": "Copied!", "context": "Copied!", "reference": "Modules/Toast.qml:16", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copy", "context": "Copy", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170, Modals/DankLauncherV2/Controller.qml:1267, Modals/Clipboard/ClipboardContextMenu.qml:40, Modules/Settings/ClipboardTab.qml:156, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:403", - "comment": "Copy to clipboard" + "comment": "Copy to clipboard", + "tags": [ + "plugin-danklauncherkeys", + "settings", + "shell" + ] }, { "term": "Copy Content", "context": "Copy Content", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:259, dms-plugins/DankGifSearch/DankGifSearch.qml:206", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Copy Full Command", "context": "Copy Full Command", "reference": "Modules/ProcessList/ProcessContextMenu.qml:46", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copy HTML", "context": "Copy HTML", "reference": "Modules/Notepad/NotepadTextEditor.qml:785", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copy Name", "context": "Copy Name", "reference": "Modules/ProcessList/ProcessContextMenu.qml:40", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copy PID", "context": "Copy PID", "reference": "Modules/ProcessList/ProcessContextMenu.qml:34", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copy Text", "context": "Copy Text", "reference": "Modules/Notepad/NotepadTextEditor.qml:763", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Copy path", "context": "Copy path", "reference": "Modals/DankLauncherV2/Controller.qml:1263, Modals/FileBrowser/FileBrowserItemContextMenu.qml:28", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modals/WindowRuleModal.qml:1226, Modules/Settings/ThemeColorsTab.qml:1838", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:1226, Modules/Settings/ThemeColorsTab.qml:1837", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Corner Radius Override", "context": "Corner Radius Override", - "reference": "Modules/Settings/DankBarTab.qml:1221", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1219", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Corners & Background", "context": "Corners & Background", - "reference": "Modules/Settings/DankBarTab.qml:1143", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1141", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Count Only", "context": "Count Only", - "reference": "Modules/Settings/LockScreenTab.qml:264, Modules/Settings/NotificationsTab.qml:774", - "comment": "lock screen notification mode option" + "reference": "Modules/Settings/LockScreenTab.qml:334, Modules/Settings/NotificationsTab.qml:772", + "comment": "lock screen notification mode option", + "tags": [ + "settings" + ] }, { "term": "Cover Open", "context": "Cover Open", "reference": "Services/CupsService.qml:807", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Create", "context": "Create", "reference": "Modals/WindowRuleModal.qml:1944, Modules/Settings/DisplayConfigTab.qml:277", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Create Dir", "context": "Create Dir", - "reference": "Modules/Settings/PluginsTab.qml:258", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:259", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Create Printer", "context": "Create Printer", "reference": "Modules/Settings/PrinterTab.qml:833", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Create User", "context": "Create User", "reference": "Modules/Settings/UsersTab.qml:349, Modules/Settings/UsersTab.qml:477", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Create Window Rule", "context": "Create Window Rule", "reference": "Modals/WindowRuleModal.qml:29", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Create a new %1 session (^N)", "context": "Create a new %1 session (^N)", "reference": "Modals/MuxModal.qml:374", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Create rule for:", "context": "Create rule for:", "reference": "Modules/Settings/WindowRulesTab.qml:438", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", "context": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", - "reference": "Modules/Settings/NotificationsTab.qml:483", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:481", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Created plugin directory: %1", "context": "Created plugin directory: %1", - "reference": "Modules/Settings/PluginsTab.qml:265", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:266", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Creating...", "context": "Creating...", "reference": "Modules/Settings/PrinterTab.qml:833", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Credentials", "context": "Credentials", "reference": "Widgets/VpnProfileDelegate.qml:292", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Critical Battery", "context": "Critical Battery", "reference": "Services/BatteryService.qml:154", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Critical Battery Alert", "context": "Critical Battery Alert", - "reference": "Modules/Settings/BatteryTab.qml:272", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:275", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Critical Battery Notifications", "context": "Critical Battery Notifications", - "reference": "Modules/Settings/BatteryTab.qml:294", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:297", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Critical Priority", "context": "Critical Priority", - "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:830, Modules/Settings/NotificationsTab.qml:937, Modules/Notifications/Center/NotificationSettings.qml:218, Modules/Notifications/Center/NotificationSettings.qml:439", - "comment": "notification rule urgency option" + "reference": "Modules/Settings/NotificationsTab.qml:154, Modules/Settings/NotificationsTab.qml:826, Modules/Settings/NotificationsTab.qml:932, Modules/Notifications/Center/NotificationSettings.qml:216, Modules/Notifications/Center/NotificationSettings.qml:436", + "comment": "notification rule urgency option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Critical Threshold", "context": "Critical Threshold", - "reference": "Modules/Settings/BatteryTab.qml:283", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:286", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ctrl+A: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close", "context": "Ctrl+A: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close", "reference": "Modules/Notepad/NotepadSettings.qml:553", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ctrl+S: Save • Ctrl+O: Open • Ctrl+N: New • Ctrl+F: Find", "context": "Ctrl+S: Save • Ctrl+O: Open • Ctrl+N: New • Ctrl+F: Find", "reference": "Modules/Notepad/NotepadSettings.qml:544", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close", "context": "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close", "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:12", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close", "context": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close", "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:13", - "comment": "Keyboard hints when enter-to-paste is enabled" + "comment": "Keyboard hints when enter-to-paste is enabled", + "tags": [ + "shell" + ] }, { "term": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close", "context": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close", "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:13", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Current", "context": "Current", "reference": "Modules/Notifications/Center/NotificationHeader.qml:202", - "comment": "notification center tab" + "comment": "notification center tab", + "tags": [ + "shell" + ] }, { "term": "Current Items", "context": "Current Items", "reference": "Modules/Plugins/ListSettingWithInput.qml:162", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Current Locale", "context": "Current Locale", "reference": "Modules/Settings/LocaleTab.qml:56", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current Monitor", "context": "Current Monitor", "reference": "Modules/Settings/WidgetsTabSection.qml:3884", - "comment": "Running apps filter: only show apps from the same monitor" + "comment": "Running apps filter: only show apps from the same monitor", + "tags": [ + "settings" + ] }, { "term": "Current Period", "context": "Current Period", - "reference": "Modules/Settings/GammaControlTab.qml:532", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:531", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current Status", "context": "Current Status", - "reference": "Modules/Settings/GammaControlTab.qml:458", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:457", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current Temp", "context": "Current Temp", - "reference": "Modules/Settings/GammaControlTab.qml:497", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:496", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current Theme: %1", "context": "Current Theme: %1", "reference": "Modules/Settings/ThemeColorsTab.qml:347, Modules/Settings/ThemeColorsTab.qml:349, Modules/Settings/ThemeColorsTab.qml:350", - "comment": "current theme label" + "comment": "current theme label", + "tags": [ + "settings" + ] }, { "term": "Current Weather", "context": "Current Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:686", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:684", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current Workspace", "context": "Current Workspace", "reference": "Modules/Settings/WidgetsTabSection.qml:3826", - "comment": "Running apps filter: only show apps from the active workspace" + "comment": "Running apps filter: only show apps from the active workspace", + "tags": [ + "settings" + ] }, { "term": "Current time and date display", "context": "Current time and date display", "reference": "Modules/Settings/WidgetsTab.qml:99", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current weather conditions and temperature", "context": "Current weather conditions and temperature", "reference": "Modules/Settings/WidgetsTab.qml:106", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Current: %1", "context": "Current: %1", "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:243", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Cursor Size", "context": "Cursor Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:2269", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2267", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Cursor Theme", "context": "Cursor Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2164, Modules/Settings/ThemeColorsTab.qml:2253", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2162, Modules/Settings/ThemeColorsTab.qml:2251", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Curve", "context": "Curve", "reference": "Modules/Settings/TypographyMotionTab.qml:350", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Curve: curve rasterizer.", "context": "Curve: curve rasterizer.", "reference": "Modules/Settings/TypographyMotionTab.qml:421", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom", "context": "Custom", - "reference": "Widgets/KeybindItem.qml:1441, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:62, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:1768, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1785, Modules/Settings/ThemeColorsTab.qml:1797, Modules/Settings/ThemeColorsTab.qml:1962, Modules/Settings/ThemeColorsTab.qml:1968, Modules/Settings/ThemeColorsTab.qml:1979, Modules/Settings/ThemeColorsTab.qml:1990, 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/WallpaperTab.qml:356, Modules/Settings/LauncherTab.qml:319, Modules/Settings/LauncherTab.qml:428, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:52, Modules/Settings/WorkspaceAppearanceCard.qml:90, Modules/Settings/WorkspaceAppearanceCard.qml:122, Modules/Settings/WorkspaceAppearanceCard.qml:157, Modules/Settings/WorkspaceAppearanceCard.qml:183, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:382, Modules/Settings/CompositorLayoutTab.qml:283, Modules/Settings/CompositorLayoutTab.qml:412, Modules/Settings/CompositorLayoutTab.qml:564, Modules/Settings/SystemUpdaterTab.qml:33, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", - "comment": "shadow color option | surface border color | theme category option | widget background color option | workspace color option" + "reference": "Widgets/KeybindItem.qml:1441, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:62, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1773, Modules/Settings/ThemeColorsTab.qml:1784, Modules/Settings/ThemeColorsTab.qml:1796, Modules/Settings/ThemeColorsTab.qml:1960, Modules/Settings/ThemeColorsTab.qml:1966, Modules/Settings/ThemeColorsTab.qml:1977, Modules/Settings/ThemeColorsTab.qml:1988, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:675, Modules/Settings/DockTab.qml:295, Modules/Settings/DockTab.qml:402, Modules/Settings/GreeterTab.qml:561, Modules/Settings/WallpaperTab.qml:356, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:427, Modules/Settings/TimeWeatherTab.qml:219, Modules/Settings/TimeWeatherTab.qml:306, Modules/Settings/DankBarTab.qml:1774, Modules/Settings/WorkspaceAppearanceCard.qml:52, Modules/Settings/WorkspaceAppearanceCard.qml:90, Modules/Settings/WorkspaceAppearanceCard.qml:122, Modules/Settings/WorkspaceAppearanceCard.qml:157, Modules/Settings/WorkspaceAppearanceCard.qml:183, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:380, Modules/Settings/CompositorLayoutTab.qml:283, Modules/Settings/CompositorLayoutTab.qml:412, Modules/Settings/CompositorLayoutTab.qml:563, Modules/Settings/SystemUpdaterTab.qml:33, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", + "comment": "shadow color option | surface border color | theme category option | widget background color option | workspace color option", + "tags": [ + "plugin-dankdesktopweather", + "settings", + "shell" + ] }, { "term": "Custom Blend", "context": "Custom Blend", - "reference": "Modules/Settings/ThemeColorsTab.qml:1645", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1644", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Color", "context": "Custom Color", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:56, Modules/Settings/ColorDropdownRow.qml:152, Modules/Settings/FrameTab.qml:288", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather", + "settings" + ] }, { "term": "Custom Duration", "context": "Custom Duration", - "reference": "Modules/Settings/TypographyMotionTab.qml:624, Modules/Settings/TypographyMotionTab.qml:708", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:624, Modules/Settings/TypographyMotionTab.qml:707", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Hibernate Command", "context": "Custom Hibernate Command", "reference": "Modules/Settings/PowerSleepTab.qml:560", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Location", "context": "Custom Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:538", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:536", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Lock Command", "context": "Custom Lock Command", "reference": "Modules/Settings/PowerSleepTab.qml:545", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Logout Command", "context": "Custom Logout Command", "reference": "Modules/Settings/PowerSleepTab.qml:550", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Name", "context": "Custom Name", "reference": "Modules/Settings/AudioTab.qml:617", - "comment": "Audio device rename dialog field label" + "comment": "Audio device rename dialog field label", + "tags": [ + "settings" + ] }, { "term": "Custom Power Actions", "context": "Custom Power Actions", "reference": "Modules/Settings/PowerSleepTab.qml:537", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Power Off Command", "context": "Custom Power Off Command", "reference": "Modules/Settings/PowerSleepTab.qml:570", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Reboot Command", "context": "Custom Reboot Command", "reference": "Modules/Settings/PowerSleepTab.qml:565", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Shadow Color", "context": "Custom Shadow Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:2050", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2048", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Shadow Override", "context": "Custom Shadow Override", - "reference": "Modules/Settings/DankBarTab.qml:1636", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1632", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom Suspend Command", "context": "Custom Suspend Command", "reference": "Modules/Settings/PowerSleepTab.qml:555", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom command and terminal params are split on whitespace; paths with spaces will break.", "context": "Custom command and terminal params are split on whitespace; paths with spaces will break.", "reference": "Modules/Settings/SystemUpdaterTab.qml:358", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom interval in minutes (minimum 5)", "context": "Custom interval in minutes (minimum 5)", "reference": "Modules/Settings/SystemUpdaterTab.qml:121", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom open-trash command", "context": "Custom open-trash command", - "reference": "Modules/Settings/DockTab.qml:563", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:562", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom power profile", "context": "Custom power profile", "reference": "Common/Theme.qml:1659", - "comment": "power profile description" + "comment": "power profile description", + "tags": [ + "shell" + ] }, { "term": "Custom theme loaded from JSON file", "context": "Custom theme loaded from JSON file", "reference": "Modules/Settings/ThemeColorsTab.qml:365", - "comment": "custom theme description" + "comment": "custom theme description", + "tags": [ + "settings" + ] }, { "term": "Custom update command", "context": "Custom update command", "reference": "Modules/Settings/SystemUpdaterTab.qml:378", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Custom...", "context": "Custom...", - "reference": "Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:234, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:321, Modules/Settings/LockScreenTab.qml:24, Modules/Settings/DisplayConfig/OutputCard.qml:215, Modules/Settings/DisplayConfig/OutputCard.qml:250", - "comment": "custom PAM authentication source option | date format option" - }, - { - "term": "Custom: ", - "context": "Custom: ", - "reference": "Modules/Settings/GreeterTab.qml:561, Modules/Settings/TimeWeatherTab.qml:221, Modules/Settings/TimeWeatherTab.qml:308", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:232, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:319, Modules/Settings/LockScreenTab.qml:34, Modules/Settings/DisplayConfig/OutputCard.qml:215, Modules/Settings/DisplayConfig/OutputCard.qml:250", + "comment": "custom PAM authentication source option | date format option", + "tags": [ + "settings" + ] }, { "term": "Customizable empty space", "context": "Customizable empty space", "reference": "Modules/Settings/WidgetsTab.qml:223", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Customize the font and background of the lock screen, or leave empty to use your theme font and desktop wallpaper. Changes apply instantly.", "context": "Customize the font and background of the lock screen, or leave empty to use your theme font and desktop wallpaper. Changes apply instantly.", - "reference": "Modules/Settings/LockScreenTab.qml:282", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:352", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Customize which actions appear in the power menu", "context": "Customize which actions appear in the power menu", "reference": "Modules/Settings/PowerSleepTab.qml:382", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "DDC/CI monitor", "context": "DDC/CI monitor", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:376", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DEMO MODE - Click anywhere to exit", "context": "DEMO MODE - Click anywhere to exit", "reference": "Modules/Lock/LockScreenContent.qml:1385", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DMS Chooser", "context": "DMS Chooser", "reference": "Modules/Settings/DefaultAppsTab.qml:89", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "DMS Plugin Manager Unavailable", "context": "DMS Plugin Manager Unavailable", - "reference": "Modules/Settings/PluginsTab.qml:142", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:143", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "DMS Settings", "context": "DMS Settings", "reference": "Services/AppSearchService.qml:217", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:546", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DMS Shortcuts", "context": "DMS Shortcuts", "reference": "Modals/Greeter/GreeterCompletePage.qml:136", - "comment": "greeter keybinds section header" + "comment": "greeter keybinds section header", + "tags": [ + "shell" + ] }, { "term": "DMS out of date", "context": "DMS out of date", "reference": "Services/DMSService.qml:323", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it", + "context": "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it", + "reference": "Modules/Settings/GreeterTab.qml:489", + "comment": "greeter system PAM toggle description", + "tags": [ + "settings" + ] }, { "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:345", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DMS service is not connected. Clipboard settings are unavailable.", "context": "DMS service is not connected. Clipboard settings are unavailable.", "reference": "Modules/Settings/ClipboardTab.qml:293", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "DMS shell actions (launcher, clipboard, etc.)", "context": "DMS shell actions (launcher, clipboard, etc.)", "reference": "Widgets/KeybindItem.qml:871", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DMS_SOCKET not available", "context": "DMS_SOCKET not available", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:460", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Daily", "context": "Daily", "reference": "Modules/DankDash/WeatherTab.qml:848", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Daily at:", "context": "Daily at:", - "reference": "Modules/Settings/WallpaperTab.qml:1048", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1047", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dank", "context": "Dank", - "reference": "Modules/Settings/DockTab.qml:280, Modules/Settings/LauncherTab.qml:303", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:279, Modules/Settings/LauncherTab.qml:302", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dank Bar", "context": "Dank Bar", "reference": "Modals/Settings/SettingsSidebar.qml:117, Modules/Settings/DankBarTab.qml:248", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dank Bar Xray", "context": "Dank Bar Xray", - "reference": "Modules/Settings/CompositorLayoutTab.qml:392, Modules/Settings/CompositorLayoutTab.qml:544", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:392, Modules/Settings/CompositorLayoutTab.qml:543", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dank Dash", "context": "Dank Dash", "reference": "Modals/Settings/SettingsSidebar.qml:160, Modules/Settings/DankDashTab.qml:214", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "DankBar", "context": "DankBar", "reference": "Modals/Greeter/GreeterWelcomePage.qml:113, Modals/Greeter/GreeterCompletePage.qml:405", - "comment": "greeter feature card title | greeter settings link" + "comment": "greeter feature card title | greeter settings link", + "tags": [ + "shell" + ] }, { "term": "DankCalendar", "context": "DankCalendar", - "reference": "Modules/Settings/TimeWeatherTab.qml:158", - "comment": "calendar backend option" + "reference": "Modules/Settings/TimeWeatherTab.qml:156", + "comment": "calendar backend option", + "tags": [ + "settings" + ] }, { "term": "DankCalendar isn't installed", "context": "DankCalendar isn't installed", "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:253", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DankCalendar isn't running", "context": "DankCalendar isn't running", "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:253", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "DankMaterialShell is ready to use", "context": "DankMaterialShell is ready to use", "reference": "Modals/Greeter/GreeterCompletePage.qml:112", - "comment": "greeter completion page subtitle" + "comment": "greeter completion page subtitle", + "tags": [ + "shell" + ] }, { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2398, Modules/Settings/ThemeColorsTab.qml:2416, Modules/Settings/ThemeColorsTab.qml:2434", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2396, Modules/Settings/ThemeColorsTab.qml:2414, Modules/Settings/ThemeColorsTab.qml:2432", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dark Mode", "context": "Dark Mode", "reference": "Modules/Settings/ThemeColorsTab.qml:1522, Modules/Settings/WallpaperTab.qml:580, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:751", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Dark Mode Icon Theme", "context": "Dark Mode Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2415", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2413", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dark mode base", "context": "Dark mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2676", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2674", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dark mode harmony", "context": "Dark mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2710", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2708", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2117, Modules/Settings/ThemeColorsTab.qml:2125", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2115, Modules/Settings/ThemeColorsTab.qml:2123", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Date Format", "context": "Date Format", - "reference": "Modules/Settings/GreeterTab.qml:555, Modules/Settings/TimeWeatherTab.qml:107", - "comment": "" + "reference": "Modules/Settings/GreeterTab.qml:555, Modules/Settings/TimeWeatherTab.qml:106", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Date format on greeter", "context": "Date format on greeter", "reference": "Modules/Settings/GreeterTab.qml:543", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dawn (Astronomical Twilight)", "context": "Dawn (Astronomical Twilight)", "reference": "Services/WeatherService.qml:232", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dawn (Civil Twilight)", "context": "Dawn (Civil Twilight)", "reference": "Services/WeatherService.qml:242", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dawn (Nautical Twilight)", "context": "Dawn (Nautical Twilight)", "reference": "Services/WeatherService.qml:237", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Day Date", "context": "Day Date", - "reference": "Modules/Settings/GreeterTab.qml:351, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:189, Modules/Settings/TimeWeatherTab.qml:226, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:276, Modules/Settings/TimeWeatherTab.qml:313", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:351, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:187, Modules/Settings/TimeWeatherTab.qml:224, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:274, Modules/Settings/TimeWeatherTab.qml:311", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Day Month Date", "context": "Day Month Date", - "reference": "Modules/Settings/GreeterTab.qml:355, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:193, Modules/Settings/TimeWeatherTab.qml:227, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:280, Modules/Settings/TimeWeatherTab.qml:314", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:355, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:191, Modules/Settings/TimeWeatherTab.qml:225, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:278, Modules/Settings/TimeWeatherTab.qml:312", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Day Temperature", "context": "Day Temperature", "reference": "Modules/Settings/GammaControlTab.qml:124", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Daytime", "context": "Daytime", - "reference": "Modules/Settings/GammaControlTab.qml:524", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:523", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Deck", "context": "Deck", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:51", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Default", "context": "Default", - "reference": "Modals/WindowRuleModal.qml:574, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:428, Modules/Settings/WorkspaceAppearanceCard.qml:95, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", - "comment": "notification rule action option | notification rule urgency option | widget style option | workspace color option" + "reference": "Modals/WindowRuleModal.qml:574, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DockTab.qml:402, Modules/Settings/WallpaperTab.qml:845, Modules/Settings/WallpaperTab.qml:860, Modules/Settings/WallpaperTab.qml:867, Modules/Settings/LauncherTab.qml:427, Modules/Settings/WorkspaceAppearanceCard.qml:95, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", + "comment": "notification rule action option | notification rule urgency option | widget style option | workspace color option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Default (Black)", "context": "Default (Black)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1962, Modules/Settings/ThemeColorsTab.qml:1964, Modules/Settings/ThemeColorsTab.qml:1981, Modules/Settings/DankBarTab.qml:1779", - "comment": "shadow color option" + "reference": "Modules/Settings/ThemeColorsTab.qml:1960, Modules/Settings/ThemeColorsTab.qml:1962, Modules/Settings/ThemeColorsTab.qml:1979, Modules/Settings/DankBarTab.qml:1774", + "comment": "shadow color option", + "tags": [ + "settings" + ] }, { "term": "Default (Global)", "context": "Default (Global)", "reference": "Modules/Notepad/NotepadSettings.qml:246", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Default Apps", "context": "Default Apps", "reference": "Modals/Settings/SettingsSidebar.qml:283", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default Launcher", "context": "Default Launcher", "reference": "Modules/Settings/LauncherTab.qml:69, Modules/Settings/LauncherTab.qml:75", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default Launcher Shortcut", "context": "Default Launcher Shortcut", "reference": "Modules/Settings/LauncherTab.qml:133", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default Mode", "context": "Default Mode", "reference": "Modules/Notepad/NotepadSettings.qml:403", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Default Opens", "context": "Default Opens", - "reference": "Modules/Settings/LauncherTab.qml:92, Modules/Settings/LauncherTab.qml:778", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:92, Modules/Settings/LauncherTab.qml:777", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default Width (%)", "context": "Default Width (%)", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:265", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.", "context": "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.", "reference": "Modules/Settings/LauncherTab.qml:82", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.", "context": "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.", "reference": "Modules/Settings/LauncherTab.qml:82", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Default selected action", "context": "Default selected action", "reference": "Modules/Settings/PowerSleepTab.qml:402", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Defaults", "context": "Defaults", "reference": "Modules/ControlCenter/Components/EditControls.qml:272", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Define rules for window behavior. Saves to %1", "context": "Define rules for window behavior. Saves to %1", "reference": "Modules/Settings/WindowRulesTab.qml:409", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close", "context": "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close", "reference": "Modules/Notifications/Center/NotificationKeyboardHints.qml:35", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Delete", "context": "Delete", "reference": "Widgets/VpnDetailContent.qml:223, Modals/Clipboard/ClipboardContextMenu.qml:63, Modules/Settings/NetworkVpnTab.qml:374, Modules/Settings/DesktopWidgetInstanceCard.qml:152, Modules/Settings/PrinterTab.qml:1107, Modules/Settings/PrinterTab.qml:1693, Modules/Settings/UsersTab.qml:322, Modules/Settings/DisplayConfigTab.qml:322, Modules/Settings/ClipboardTab.qml:156, Modules/DankDash/Overview/CalendarEventDetail.qml:368", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Delete \"%1\" and remove the home directory? This cannot be undone.", "context": "Delete \"%1\" and remove the home directory? This cannot be undone.", "reference": "Modules/Settings/UsersTab.qml:321", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Delete \"%1\"?", "context": "Delete \"%1\"?", "reference": "Widgets/VpnDetailContent.qml:222, Modules/Settings/NetworkVpnTab.qml:373, Modules/Settings/PrinterTab.qml:1106", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Delete Class", "context": "Delete Class", "reference": "Modules/Settings/PrinterTab.qml:1691", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Delete Printer", "context": "Delete Printer", "reference": "Modules/Settings/PrinterTab.qml:1105", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Delete Rule", "context": "Delete Rule", "reference": "Modules/Settings/WindowRulesTab.qml:745", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Delete Saved Item?", "context": "Delete Saved Item?", "reference": "Services/ClipboardService.qml:280", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Delete VPN", "context": "Delete VPN", "reference": "Widgets/VpnDetailContent.qml:221, Modules/Settings/NetworkVpnTab.qml:372", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Delete class \"%1\"?", "context": "Delete class \"%1\"?", "reference": "Modules/Settings/PrinterTab.qml:1692", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Delete profile \"%1\"?", "context": "Delete profile \"%1\"?", "reference": "Modules/Settings/DisplayConfigTab.qml:309", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Delete user", "context": "Delete user", - "reference": "Modules/Settings/UsersTab.qml:314", - "comment": "" - }, - { - "term": "Delete user?", - "context": "Delete user?", - "reference": "Modules/Settings/UsersTab.qml:320", - "comment": "" + "reference": "Modules/Settings/UsersTab.qml:314, Modules/Settings/UsersTab.qml:320", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Demi Bold", "context": "Demi Bold", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:268, Modules/Settings/TypographyMotionTab.qml:297", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Dependencies & documentation", "context": "Dependencies & documentation", "reference": "Modules/Settings/GreeterTab.qml:648", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Depth", "context": "Depth", "reference": "Modules/Settings/TypographyMotionTab.qml:145", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.", "context": "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.", "reference": "Modules/Settings/TypographyMotionTab.qml:187", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Derives colors that closely match the underlying image.", "context": "Derives colors that closely match the underlying image.", "reference": "Common/Theme.qml:494", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Description", "context": "Description", "reference": "Modals/DankLauncherV2/AppEditView.qml:182, Modules/Settings/PrinterTab.qml:809", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Desktop", "context": "Desktop", "reference": "Modals/FileBrowser/FileBrowserContent.qml:293", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Desktop Application", "context": "Desktop Application", "reference": "Modules/Settings/AutoStartTab.qml:386, Modules/Settings/AutoStartTab.qml:387, Modules/Settings/AutoStartTab.qml:389", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Desktop Clock", "context": "Desktop Clock", "reference": "Services/DesktopWidgetRegistry.qml:38", - "comment": "Desktop clock widget name" + "comment": "Desktop clock widget name", + "tags": [ + "shell" + ] }, { "term": "Desktop Entry", "context": "Desktop Entry", "reference": "Modules/Settings/NotificationsTab.qml:89", - "comment": "notification rule match field option" + "comment": "notification rule match field option", + "tags": [ + "settings" + ] }, { "term": "Desktop Widget", "context": "Desktop Widget", "reference": "Modules/Settings/PluginListItem.qml:161", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Desktop Widgets", "context": "Desktop Widgets", "reference": "Modals/Settings/SettingsSidebar.qml:184, Modules/Settings/DesktopWidgetsTab.qml:171", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Desktop background images", "context": "Desktop background images", "reference": "Modules/Settings/DisplayWidgetsTab.qml:44", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Detailed", "context": "Detailed", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:23", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Details for \"%1\"", "context": "Details for \"%1\"", "reference": "Modals/NetworkWiredInfoModal.qml:69, Modals/NetworkInfoModal.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Detected backends: %1", "context": "Detected backends: %1", "reference": "Modules/Settings/SystemUpdaterTab.qml:84", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Development", "context": "Development", "reference": "Services/AppSearchService.qml:669, Services/AppSearchService.qml:670, Services/AppSearchService.qml:671, Widgets/DankIconPicker.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Device", "context": "Device", "reference": "Widgets/KeybindItem.qml:1064, Modules/Settings/PrinterTab.qml:433", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Device connections", "context": "Device connections", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:171", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Device list scroll volume", "context": "Device list scroll volume", "reference": "Modules/Settings/MediaPlayerTab.qml:139", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Device names updated", "context": "Device names updated", "reference": "Services/AudioService.qml:368", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Device paired", "context": "Device paired", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:686, Modules/ControlCenter/Details/BluetoothDetail.qml:89", - "comment": "Phone Connect pairing action" + "comment": "Phone Connect pairing action", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "Device unpaired", "context": "Device unpaired", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:701", - "comment": "Phone Connect unpair action" + "comment": "Phone Connect unpair action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Diff", "context": "Diff", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:238", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:242", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Digital", "context": "Digital", "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:37", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Direction Source", "context": "Direction Source", - "reference": "Modules/Settings/DankBarTab.qml:1684", - "comment": "bar shadow direction source" + "reference": "Modules/Settings/DankBarTab.qml:1679", + "comment": "bar shadow direction source", + "tags": [ + "settings" + ] }, { "term": "Directional", "context": "Directional", "reference": "Modules/Settings/TypographyMotionTab.qml:145", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.", "context": "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.", "reference": "Modules/Settings/TypographyMotionTab.qml:185", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Disable Autoconnect", "context": "Disable Autoconnect", "reference": "Modules/Settings/NetworkWifiTab.qml:1218, Modules/ControlCenter/Details/NetworkDetail.qml:852", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Disable Built-in Wallpapers", "context": "Disable Built-in Wallpapers", - "reference": "Modules/Settings/WallpaperTab.qml:1237", - "comment": "wallpaper settings disable toggle" + "reference": "Modules/Settings/WallpaperTab.qml:1236", + "comment": "wallpaper settings disable toggle", + "tags": [ + "settings" + ] }, { "term": "Disable History Persistence", "context": "Disable History Persistence", - "reference": "Modules/Settings/ClipboardTab.qml:519", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:518", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Disable Output", "context": "Disable Output", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:80, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:68", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Disabled", "context": "Disabled", - "reference": "Modules/Settings/ThemeColorsTab.qml:1496, Modules/Settings/AutoStartTab.qml:721, Modules/Settings/LockScreenTab.qml:264, Modules/Settings/DankBarTab.qml:413, Modules/Settings/NotificationsTab.qml:774, Modules/Settings/NetworkWifiTab.qml:179, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2078, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2084, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2086, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2098, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2112, Modules/ControlCenter/Components/DragDropGrid.qml:509", - "comment": "bluetooth status | lock screen notification mode option" + "reference": "Modules/Settings/ThemeColorsTab.qml:1496, Modules/Settings/AutoStartTab.qml:721, Modules/Settings/LockScreenTab.qml:334, Modules/Settings/DankBarTab.qml:413, Modules/Settings/NotificationsTab.qml:772, Modules/Settings/NetworkWifiTab.qml:179, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2078, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2084, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2086, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2098, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2112, Modules/ControlCenter/Components/DragDropGrid.qml:509", + "comment": "bluetooth status | lock screen notification mode option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Disabled by Frame Mode", "context": "Disabled by Frame Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:2118", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2116", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Disabling WiFi...", "context": "Disabling WiFi...", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:194, Modules/ControlCenter/Components/DragDropGrid.qml:483", - "comment": "network status" + "comment": "network status", + "tags": [ + "shell" + ] }, { "term": "Disabling auto-login on startup...", "context": "Disabling auto-login on startup...", - "reference": "Common/settings/Processes.qml:573", - "comment": "" + "reference": "Common/settings/Processes.qml:574", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Disc", "context": "Disc", - "reference": "Modules/Settings/WallpaperTab.qml:1154", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1153", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Discard", "context": "Discard", "reference": "Modules/Settings/DisplayConfigTab.qml:615", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Discharging", "context": "Discharging", "reference": "Services/BatteryService.qml:324, Services/BatteryService.qml:353", - "comment": "battery status" + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "Disconnect", "context": "Disconnect", "reference": "Widgets/VpnDetailContent.qml:126, Modules/Settings/NetworkVpnTab.qml:172, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:654, Modules/ControlCenter/Details/NetworkDetail.qml:429, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:156", - "comment": "Tailscale disconnect button" + "comment": "Tailscale disconnect button", + "tags": [ + "settings", + "shell" + ] }, { "term": "Disconnected", "context": "Disconnected", "reference": "Modules/Settings/NetworkVpnTab.qml:98, Modules/Settings/NetworkStatusTab.qml:119, Modules/Settings/NetworkEthernetTab.qml:165, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/DisplayConfig/OutputCard.qml:85, Modules/Settings/DisplayConfig/MonitorRect.qml:95, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:23, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:22, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:113", - "comment": "Tailscale connection status: disconnected | Tailscale disconnected status" + "comment": "Tailscale connection status: disconnected | Tailscale disconnected status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Disconnected from WiFi", "context": "Disconnected from WiFi", "reference": "Services/LegacyNetworkService.qml:390, Services/DMSNetworkService.qml:557", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Discover Devices", "context": "Discover Devices", "reference": "Modules/Settings/PrinterTab.qml:362", - "comment": "Toggle button to scan for printers via mDNS/Avahi" + "comment": "Toggle button to scan for printers via mDNS/Avahi", + "tags": [ + "settings" + ] }, { "term": "Disk", "context": "Disk", "reference": "Modules/ProcessList/PerformanceView.qml:128, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:248", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Disk I/O", "context": "Disk I/O", "reference": "Modules/ProcessList/DisksView.qml:58", - "comment": "disk io header in system monitor" + "comment": "disk io header in system monitor", + "tags": [ + "shell" + ] }, { "term": "Disk Usage", "context": "Disk Usage", "reference": "Modules/Settings/WidgetsTab.qml:142, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:36, Modules/ControlCenter/Widgets/DiskUsagePill.qml:42", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Disk Usage Display", "context": "Disk Usage Display", "reference": "Modules/Settings/WidgetsTabSection.qml:2125", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Disks", "context": "Disks", "reference": "Modals/ProcessListModal.qml:321", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dismiss", "context": "Dismiss", "reference": "Modules/Notifications/NotificationContextMenu.qml:134, Modules/Notifications/Popup/NotificationPopup.qml:101, Modules/Notifications/Center/NotificationCard.qml:852, Modules/Notifications/Center/NotificationCard.qml:992, Modules/Notifications/Center/NotificationCard.qml:1144", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Display", "context": "Display", "reference": "Modules/Settings/WindowRulesTab.qml:106, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:38", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Display Assignment", "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:540, Modules/Settings/FrameTab.qml:393", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:723, Modules/Settings/DankBarTab.qml:540, Modules/Settings/FrameTab.qml:393", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display Control", "context": "Display Control", "reference": "Modals/Greeter/GreeterWelcomePage.qml:140", - "comment": "greeter feature card title" + "comment": "greeter feature card title", + "tags": [ + "shell" + ] }, { "term": "Display Name Format", "context": "Display Name Format", "reference": "Modules/Settings/DisplayWidgetsTab.qml:217", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display Profiles", "context": "Display Profiles", "reference": "Modules/Settings/DisplayConfigTab.qml:134, Modules/ControlCenter/Models/WidgetModel.qml:277, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:81", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Display Settings", "context": "Display Settings", "reference": "Modules/Plugins/PluginSettings.qml:241", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Display a dock with pinned and running applications", "context": "Display a dock with pinned and running applications", "reference": "Modules/Settings/DockTab.qml:47", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display all priorities over fullscreen apps", "context": "Display all priorities over fullscreen apps", - "reference": "Modules/Settings/NotificationsTab.qml:289, Modules/Notifications/Center/NotificationSettings.qml:272", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:269", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Display and switch MangoWC layouts", "context": "Display and switch MangoWC layouts", "reference": "Modules/Settings/WidgetsTab.qml:56", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display application icons in workspace indicators", "context": "Display application icons in workspace indicators", "reference": "Modules/Settings/WorkspacesTab.qml:62", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display brightness control", "context": "Display brightness control", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:204", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Display configuration is not available. WLR output management protocol not supported.", "context": "Display configuration is not available. WLR output management protocol not supported.", "reference": "Modules/Settings/DisplayConfig/NoBackendMessage.qml:50", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display currently focused application title", "context": "Display currently focused application title", "reference": "Modules/Settings/WidgetsTab.qml:78", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display hourly weather predictions", "context": "Display hourly weather predictions", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:136", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Display line numbers in editor", "context": "Display line numbers in editor", "reference": "Modules/Notepad/NotepadSettings.qml:162", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Display name for this entry", "context": "Display name for this entry", "reference": "Modules/Settings/AutoStartTab.qml:547", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display only workspaces that contain windows", "context": "Display only workspaces that contain windows", "reference": "Modules/Settings/WorkspacesTab.qml:164", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display power menu actions in a grid instead of a list", "context": "Display power menu actions in a grid instead of a list", "reference": "Modules/Settings/PowerSleepTab.qml:393", - "comment": "" - }, - { - "term": "Display seconds in the clock", - "context": "Display seconds in the clock", - "reference": "Modules/Settings/TimeWeatherTab.qml:87", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display setup failed", "context": "Display setup failed", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1507", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display the power system menu", "context": "Display the power system menu", "reference": "Modules/Settings/WidgetsTab.qml:273", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Display volume and brightness percentage values in OSD popups", "context": "Display volume and brightness percentage values in OSD popups", "reference": "Modules/Settings/OSDTab.qml:79", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Displays", "context": "Displays", "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:219, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", - "comment": "greeter settings link" - }, - { - "term": "Displays count when overflow is active", - "context": "Displays count when overflow is active", - "reference": "Modules/Settings/DockTab.qml:231", - "comment": "" + "comment": "greeter settings link", + "tags": [ + "settings", + "shell" + ] }, { "term": "Displays the active keyboard layout and allows switching", "context": "Displays the active keyboard layout and allows switching", "reference": "Modules/Settings/WidgetsTab.qml:245", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Distribution", "context": "Distribution", "reference": "Modules/ProcessList/SystemView.qml:64", - "comment": "system info label" + "comment": "system info label", + "tags": [ + "shell" + ] }, { "term": "Diverse palette spanning the full spectrum.", "context": "Diverse palette spanning the full spectrum.", "reference": "Common/Theme.qml:518", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Do Not Disturb", "context": "Do Not Disturb", - "reference": "Modules/Settings/WidgetsTabSection.qml:2368, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/NotificationsTab.qml:431, Modules/ControlCenter/Models/WidgetModel.qml:145, Modules/ControlCenter/Widgets/DndPill.qml:10, Modules/Notifications/Center/NotificationHeader.qml:90, Modules/Notifications/Center/NotificationSettings.qml:152, Modules/Notifications/Center/DndDurationMenu.qml:140", - "comment": "" + "reference": "Modules/Settings/WidgetsTabSection.qml:2368, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/NotificationsTab.qml:429, Modules/ControlCenter/Models/WidgetModel.qml:145, Modules/ControlCenter/Widgets/DndPill.qml:10, Modules/Notifications/Center/NotificationHeader.qml:90, Modules/Notifications/Center/NotificationSettings.qml:152, Modules/Notifications/Center/DndDurationMenu.qml:140", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Dock", "context": "Dock", "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:198", - "comment": "greeter settings link" + "comment": "greeter settings link", + "tags": [ + "settings", + "shell" + ] }, { "term": "Dock & Launcher", "context": "Dock & Launcher", "reference": "Modals/Settings/SettingsSidebar.qml:192, Modals/Settings/SettingsSidebar.qml:670", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dock Opacity", "context": "Dock Opacity", - "reference": "Modules/Settings/DockTab.qml:658", - "comment": "" - }, - { - "term": "Dock Visibility", - "context": "Dock Visibility", - "reference": "Modules/Settings/DockTab.qml:40", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:657", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dock margin, opacity, and border", "context": "Dock margin, opacity, and border", - "reference": "Modules/Settings/DockTab.qml:646", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:645", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dock window", "context": "Dock window", "reference": "Modals/KeybindsModalWindow.qml:103, Modals/KeybindsContent.qml:85", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Docs", "context": "Docs", "reference": "Modals/Greeter/GreeterCompletePage.qml:468, Modules/Settings/AboutTab.qml:274, Modules/Settings/AboutTab.qml:282", - "comment": "greeter documentation link" + "comment": "greeter documentation link", + "tags": [ + "settings", + "shell" + ] }, { "term": "Documents", "context": "Documents", - "reference": "Modals/FileBrowser/FileBrowserContent.qml:268, Modules/Settings/DefaultAppsTab.qml:320", - "comment": "Documents" + "reference": "Modals/FileBrowser/FileBrowserContent.qml:268, Modules/Settings/DefaultAppsTab.qml:319", + "comment": "Documents", + "tags": [ + "settings", + "shell" + ] }, { "term": "Domain (optional)", "context": "Domain (optional)", "reference": "Modals/WifiPasswordModal.qml:607", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Don't Change", "context": "Don't Change", - "reference": "Modules/Settings/PowerSleepTab.qml:154, Modules/Settings/BatteryTab.qml:336, Modules/Settings/BatteryTab.qml:354", - "comment": "" + "reference": "Modules/Settings/PowerSleepTab.qml:154, Modules/Settings/BatteryTab.qml:338, Modules/Settings/BatteryTab.qml:355", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Don't Save", "context": "Don't Save", "reference": "Modules/Notepad/Notepad.qml:729", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Door Open", "context": "Door Open", "reference": "Services/CupsService.qml:808", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Downloads", "context": "Downloads", "reference": "Modals/FileBrowser/FileBrowserContent.qml:273", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Drag a widget by its handle here to reorder it or drop it into another group", "context": "Drag a widget by its handle here to reorder it or drop it into another group", "reference": "Modules/Settings/DesktopWidgetsTab.qml:554", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Drag to Reorder", "context": "Drag to Reorder", "reference": "Modules/Settings/WorkspacesTab.qml:183", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", "context": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", "reference": "Modules/Settings/DankDashTab.qml:280", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:1299", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Drag workspace indicators to reorder them", "context": "Drag workspace indicators to reorder them", "reference": "Modules/Settings/WorkspacesTab.qml:184", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Draw a connected picture-frame border around the entire display", "context": "Draw a connected picture-frame border around the entire display", "reference": "Modules/Settings/FrameTab.qml:41", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Driver", "context": "Driver", "reference": "Modules/Settings/PrinterTab.qml:704, Modules/Settings/NetworkEthernetTab.qml:312", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Drizzle", "context": "Drizzle", "reference": "Services/WeatherService.qml:130, Services/WeatherService.qml:131, Services/WeatherService.qml:132", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Drop here", "context": "Drop here", "reference": "Modules/Settings/DesktopWidgetGroupSection.qml:237", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Drop your override for %1 so the DMS default action re-applies?", "context": "Drop your override for %1 so the DMS default action re-applies?", "reference": "Modules/Settings/KeybindsTab.qml:121", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Duplicate", "context": "Duplicate", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:115", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Duplicate Wallpaper with Blur", "context": "Duplicate Wallpaper with Blur", - "reference": "Modules/Settings/WallpaperTab.qml:1268", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1267", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Duration", "context": "Duration", - "reference": "Modules/Settings/NotificationsTab.qml:403", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:401", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dusk (Astronomical Twilight)", "context": "Dusk (Astronomical Twilight)", "reference": "Services/WeatherService.qml:287", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dusk (Civil Twighlight)", "context": "Dusk (Civil Twighlight)", "reference": "Services/WeatherService.qml:277", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dusk (Nautical Twilight)", "context": "Dusk (Nautical Twilight)", "reference": "Services/WeatherService.qml:282", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dynamic", "context": "Dynamic", "reference": "Modules/Settings/ThemeColorsTab.qml:347, Modules/Settings/TypographyMotionTab.qml:76", - "comment": "dynamic theme name" + "comment": "dynamic theme name", + "tags": [ + "settings" + ] }, { "term": "Dynamic Properties", "context": "Dynamic Properties", "reference": "Modals/WindowRuleModal.qml:1096", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dynamic Theming", "context": "Dynamic Theming", "reference": "Modals/Greeter/GreeterWelcomePage.qml:89", - "comment": "greeter feature card title" + "comment": "greeter feature card title", + "tags": [ + "shell" + ] }, { "term": "Dynamic Width", "context": "Dynamic Width", "reference": "Modules/Settings/WidgetsTabSection.qml:635", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Dynamic colors from wallpaper", "context": "Dynamic colors from wallpaper", "reference": "Modules/Settings/ThemeColorsTab.qml:594", - "comment": "dynamic colors description" + "comment": "dynamic colors description", + "tags": [ + "settings" + ] }, { "term": "Dynamic colors parse error: %1", "context": "Dynamic colors parse error: %1", "reference": "Common/Theme.qml:2240", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Dynamic colors, presets", "context": "Dynamic colors, presets", "reference": "Modals/Greeter/GreeterCompletePage.qml:390", - "comment": "greeter theme description" + "comment": "greeter theme description", + "tags": [ + "shell" + ] }, { "term": "Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.", "context": "Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.", "reference": "Modules/Settings/TypographyMotionTab.qml:118", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Edge Hover Reveal", "context": "Edge Hover Reveal", "reference": "Modules/Settings/FrameTab.qml:364", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Edge Spacing", "context": "Edge Spacing", - "reference": "Modules/Settings/DankBarTab.qml:891", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:889", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Edge spacing, exclusive zone, and popup gaps are managed by Frame", "context": "Edge spacing, exclusive zone, and popup gaps are managed by Frame", - "reference": "Modules/Settings/DankBarTab.qml:885", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:883", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Edge the launcher slides from", "context": "Edge the launcher slides from", "reference": "Modules/Settings/FrameTab.qml:342", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Edit", "context": "Edit", "reference": "Modals/Clipboard/ClipboardContextMenu.qml:55, Modules/Settings/ClipboardTab.qml:156, Modules/DankDash/Overview/CalendarEventDetail.qml:361", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Edit App", "context": "Edit App", "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:193, Modals/DankLauncherV2/AppEditView.qml:105", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Edit Clipboard", "context": "Edit Clipboard", "reference": "Modals/Clipboard/ClipboardEditor.qml:217", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Edit Rule", "context": "Edit Rule", "reference": "Modules/Settings/WindowRulesTab.qml:730", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Edit Window Rule", "context": "Edit Window Rule", "reference": "Modals/WindowRuleModal.qml:29, Modals/WindowRuleModal.qml:657", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Edit clipboard text", "context": "Edit clipboard text", "reference": "Modals/Clipboard/ClipboardEditor.qml:297", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Edit event", "context": "Edit event", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:186", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Editing changes on %1", "context": "Editing changes on %1", "reference": "Modules/Settings/DankBarTab.qml:253", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Education", "context": "Education", "reference": "Services/AppSearchService.qml:672", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Empty", "context": "Empty", - "reference": "DMSShell.qml:324, Services/BatteryService.qml:326, Modules/Notepad/NotepadTextEditor.qml:1004", - "comment": "battery status" + "reference": "DMSShell.qml:328, Services/BatteryService.qml:326, Modules/Notepad/NotepadTextEditor.qml:1004", + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "Empty Trash", "context": "Empty Trash", - "reference": "Modules/Dock/DockTrashContextMenu.qml:32", - "comment": "" + "reference": "DMSShell.qml:326, Modules/Dock/DockTrashContextMenu.qml:32", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Empty Trash (%1)", "context": "Empty Trash (%1)", "reference": "Modules/Dock/DockTrashContextMenu.qml:32", - "comment": "" - }, - { - "term": "Empty Trash?", - "context": "Empty Trash?", - "reference": "DMSShell.qml:322", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enable 10-bit color depth for wider color gamut and HDR support", "context": "Enable 10-bit color depth for wider color gamut and HDR support", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:119", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable Autoconnect", "context": "Enable Autoconnect", "reference": "Modules/Settings/NetworkWifiTab.qml:1218, Modules/ControlCenter/Details/NetworkDetail.qml:852", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Enable Bar", "context": "Enable Bar", "reference": "Modules/Settings/DankBarTab.qml:467", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable Do Not Disturb", "context": "Enable Do Not Disturb", - "reference": "Modules/Settings/NotificationsTab.qml:437", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:435", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable Frame", "context": "Enable Frame", "reference": "Modules/Settings/FrameTab.qml:40", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable History", "context": "Enable History", - "reference": "Modules/Settings/NotificationsTab.qml:854", - "comment": "notification history toggle label" + "reference": "Modules/Settings/NotificationsTab.qml:849", + "comment": "notification history toggle label", + "tags": [ + "settings" + ] }, { "term": "Enable Overview Overlay", "context": "Enable Overview Overlay", - "reference": "Modules/Settings/LauncherTab.qml:768", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:767", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable Ripple Effects", "context": "Enable Ripple Effects", - "reference": "Modules/Settings/TypographyMotionTab.qml:753", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:751", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable System Sounds", "context": "Enable System Sounds", "reference": "Modules/Settings/SoundsTab.qml:73", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable Video Screensaver", "context": "Enable Video Screensaver", - "reference": "Modules/Settings/LockScreenTab.qml:531", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:657", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable Weather", "context": "Enable Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:451", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:449", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable WiFi", "context": "Enable WiFi", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:246", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:1628", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1624", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", "context": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", - "reference": "Modules/Settings/WallpaperTab.qml:1269", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1268", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable fingerprint at login", "context": "Enable fingerprint at login", "reference": "Modules/Settings/GreeterTab.qml:497", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable fingerprint authentication", "context": "Enable fingerprint authentication", - "reference": "Modules/Settings/LockScreenTab.qml:477", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:486", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.", "context": "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.", "reference": "Modules/Settings/GreeterTab.qml:477", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable loginctl lock integration", "context": "Enable loginctl lock integration", - "reference": "Modules/Settings/LockScreenTab.qml:426", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:599", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable security key at login", "context": "Enable security key at login", "reference": "Modules/Settings/GreeterTab.qml:508", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enable security key authentication", "context": "Enable security key authentication", - "reference": "Modules/Settings/LockScreenTab.qml:488", - "comment": "Enable FIDO2/U2F hardware security key for lock screen" + "reference": "Modules/Settings/LockScreenTab.qml:497", + "comment": "Enable FIDO2/U2F hardware security key for lock screen", + "tags": [ + "settings" + ] }, { "term": "Enabled", "context": "Enabled", "reference": "Modules/Settings/ThemeColorsTab.qml:1496, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2078, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2086, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2112, Modules/ControlCenter/Components/DragDropGrid.qml:510", - "comment": "bluetooth status" + "comment": "bluetooth status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Enabling WiFi...", "context": "Enabling WiFi...", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:194, Modules/ControlCenter/Components/DragDropGrid.qml:483", - "comment": "network status" + "comment": "network status", + "tags": [ + "shell" + ] }, { "term": "End", "context": "End", - "reference": "Modules/Settings/ThemeColorsTab.qml:1311, Modules/Settings/GammaControlTab.qml:295, Modules/DankDash/Overview/CalendarEventEditor.qml:264", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1311, Modules/Settings/GammaControlTab.qml:294, Modules/DankDash/Overview/CalendarEventEditor.qml:264", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "End must be after start", "context": "End must be after start", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:95", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enlarge on Hover", "context": "Enlarge on Hover", "reference": "Modules/Settings/WidgetsTabSection.qml:4367", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enlargement %", "context": "Enlargement %", "reference": "Modules/Settings/WidgetsTabSection.qml:4409", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enter 6-digit passkey", "context": "Enter 6-digit passkey", "reference": "Modals/BluetoothPairingModal.qml:206", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter PIN", "context": "Enter PIN", "reference": "Modals/BluetoothPairingModal.qml:171", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter PIN for ", "context": "Enter PIN for ", "reference": "Modals/BluetoothPairingModal.qml:132, Modals/WifiPasswordModal.qml:345", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter URI or text to share", "context": "Enter URI or text to share", "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:327", - "comment": "KDE Connect share input placeholder" + "comment": "KDE Connect share input placeholder", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Enter a new name for session \"%1\"", "context": "Enter a new name for session \"%1\"", "reference": "Modals/MuxModal.qml:83", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter a new name for this workspace", "context": "Enter a new name for this workspace", "reference": "Modals/WorkspaceRenameModal.qml:88", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter command or script path", "context": "Enter command or script path", - "reference": "Modules/Settings/MuxTab.qml:75", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:74", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enter credentials for ", "context": "Enter credentials for ", "reference": "Modals/WifiPasswordModal.qml:347, Modals/WifiPasswordModal.qml:352", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter custom lock screen format (e.g., dddd, MMMM d)", "context": "Enter custom lock screen format (e.g., dddd, MMMM d)", - "reference": "Modules/Settings/TimeWeatherTab.qml:335", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:333", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enter custom top bar format (e.g., ddd MMM d)", "context": "Enter custom top bar format (e.g., ddd MMM d)", - "reference": "Modules/Settings/TimeWeatherTab.qml:248", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:246", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enter device name...", "context": "Enter device name...", "reference": "Modules/Settings/AudioTab.qml:628", - "comment": "Audio device rename dialog placeholder" + "comment": "Audio device rename dialog placeholder", + "tags": [ + "settings" + ] }, { "term": "Enter filename...", "context": "Enter filename...", "reference": "Modals/FileBrowser/FileBrowserSaveRow.qml:25", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter launch prefix (e.g., 'uwsm-app')", "context": "Enter launch prefix (e.g., 'uwsm-app')", - "reference": "Modules/Settings/LauncherTab.qml:572", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:571", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enter network name and password", "context": "Enter network name and password", "reference": "Modals/WifiPasswordModal.qml:351", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter passkey for ", "context": "Enter passkey for ", "reference": "Modals/BluetoothPairingModal.qml:134", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter password for ", "context": "Enter password for ", "reference": "Modals/WifiPasswordModal.qml:349, Modals/WifiPasswordModal.qml:352", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter this passkey on ", "context": "Enter this passkey on ", "reference": "Modals/BluetoothPairingModal.qml:128", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Enter to Paste", "context": "Enter to Paste", - "reference": "Modules/Settings/ClipboardTab.qml:471", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:470", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Enterprise", "context": "Enterprise", "reference": "Modules/Settings/NetworkWifiTab.qml:773, Modules/Settings/NetworkWifiTab.qml:1134", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Entry Type", "context": "Entry Type", "reference": "Modules/Settings/AutoStartTab.qml:384", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Entry pinned", "context": "Entry pinned", "reference": "Services/ClipboardService.qml:315", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Entry unpinned", "context": "Entry unpinned", "reference": "Services/ClipboardService.qml:329", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Environment Variables", "context": "Environment Variables", "reference": "Modals/DankLauncherV2/AppEditView.qml:202", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Error", "context": "Error", "reference": "Services/CupsService.qml:836, Modules/Settings/WorkspaceAppearanceCard.qml:127, Modules/DankBar/Popouts/SystemUpdatePopout.qml:166", - "comment": "workspace color option" + "comment": "workspace color option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Errors", "context": "Errors", "reference": "Modals/Greeter/GreeterDoctorPage.qml:240", - "comment": "greeter doctor page status card" + "comment": "greeter doctor page status card", + "tags": [ + "shell" + ] }, { "term": "Estimated Time", "context": "Estimated Time", - "reference": "Modules/Settings/BatteryTab.qml:127", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:128", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ethernet", "context": "Ethernet", "reference": "Modals/Settings/SettingsSidebar.qml:257, Modules/Settings/NetworkStatusTab.qml:115, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/NetworkEthernetTab.qml:42, Modules/ControlCenter/Details/NetworkDetail.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:489, Modules/ControlCenter/Components/DragDropGrid.qml:492", - "comment": "network status" + "comment": "network status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Event title", "context": "Event title", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:198", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Every 15 minutes", "context": "Every 15 minutes", "reference": "Modules/Settings/SystemUpdaterTab.qml:12", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Every 30 minutes", "context": "Every 30 minutes", "reference": "Modules/Settings/SystemUpdaterTab.qml:16", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Every 4 hours", "context": "Every 4 hours", "reference": "Modules/Settings/SystemUpdaterTab.qml:24", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Every hour", "context": "Every hour", "reference": "Modules/Settings/SystemUpdaterTab.qml:20", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Exact", "context": "Exact", "reference": "Modules/Settings/NotificationsTab.qml:108", - "comment": "notification rule match type option" + "comment": "notification rule match type option", + "tags": [ + "settings" + ] }, { - "term": "Excluded Media Players", - "context": "Excluded Media Players", + "term": "Excluded Players", + "context": "Excluded Players", "reference": "Modules/Settings/MediaPlayerTab.qml:149", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:621, Modules/Settings/DankBarTab.qml:914", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:620, Modules/Settings/DankBarTab.qml:912", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Existing Users", "context": "Existing Users", "reference": "Modules/Settings/UsersTab.qml:93", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Exit node", "context": "Exit node", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:191", - "comment": "Tailscale exit node selector label" + "comment": "Tailscale exit node selector label", + "tags": [ + "shell" + ] }, { "term": "Experimental Feature", "context": "Experimental Feature", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:209", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Explore", "context": "Explore", "reference": "Modals/Greeter/GreeterCompletePage.qml:453", - "comment": "greeter explore section header" + "comment": "greeter explore section header", + "tags": [ + "shell" + ] }, { "term": "Exponential", "context": "Exponential", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:515", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Expose the Arcs", "context": "Expose the Arcs", "reference": "Modules/Settings/FrameTab.qml:332", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Expressive", "context": "Expressive", "reference": "Common/Theme.qml:497", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Extend battery life", "context": "Extend battery life", "reference": "Common/Theme.qml:1653", - "comment": "power profile description" + "comment": "power profile description", + "tags": [ + "shell" + ] }, { "term": "Extensible architecture", "context": "Extensible architecture", "reference": "Modals/Greeter/GreeterWelcomePage.qml:122", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "External Wallpaper Management", "context": "External Wallpaper Management", - "reference": "Modules/Settings/WallpaperTab.qml:1229", - "comment": "wallpaper settings external management" + "reference": "Modules/Settings/WallpaperTab.qml:1228", + "comment": "wallpaper settings external management", + "tags": [ + "settings" + ] }, { "term": "Extra Arguments", "context": "Extra Arguments", "reference": "Modals/DankLauncherV2/AppEditView.qml:228", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Extra Bold", "context": "Extra Bold", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:272, Modules/Settings/TypographyMotionTab.qml:303", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Extra Light", "context": "Extra Light", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:260, Modules/Settings/TypographyMotionTab.qml:285", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "F1/I: Toggle • F10: Help", "context": "F1/I: Toggle • F10: Help", "reference": "Modals/FileBrowser/FileInfo.qml:199", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Fade", "context": "Fade", - "reference": "Modules/Settings/WallpaperTab.qml:1150", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1149", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Fade to lock screen", "context": "Fade to lock screen", "reference": "Modules/Settings/PowerSleepTab.qml:74", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fade to monitor off", "context": "Fade to monitor off", "reference": "Modules/Settings/PowerSleepTab.qml:83", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to accept pairing", "context": "Failed to accept pairing", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:683", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to activate configuration", "context": "Failed to activate configuration", "reference": "Services/DMSNetworkService.qml:457", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to add binds include", "context": "Failed to add binds include", "reference": "Services/KeybindsService.qml:247", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to add printer to class", "context": "Failed to add printer to class", "reference": "Services/CupsService.qml:712", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { - "term": "Failed to apply GTK colors", - "context": "Failed to apply GTK colors", - "reference": "Common/Theme.qml:1972", - "comment": "" - }, - { - "term": "Failed to apply Qt colors", - "context": "Failed to apply Qt colors", - "reference": "Common/Theme.qml:1993", - "comment": "" + "term": "Failed to apply %1 colors", + "context": "Failed to apply %1 colors", + "reference": "Common/Theme.qml:1972, Common/Theme.qml:1993", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to apply charge limit to system", "context": "Failed to apply charge limit to system", "reference": "Modules/Settings/BatteryTab.qml:27", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to apply profile", "context": "Failed to apply profile", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:541", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to browse device", "context": "Failed to browse device", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:665", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to cancel all jobs", "context": "Failed to cancel all jobs", "reference": "Services/CupsService.qml:441", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to cancel selected job", "context": "Failed to cancel selected job", "reference": "Services/CupsService.qml:425", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to check pin limit", "context": "Failed to check pin limit", "reference": "Services/ClipboardService.qml:298", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to connect VPN", "context": "Failed to connect VPN", "reference": "Services/DMSNetworkService.qml:914", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to connect to %1", "context": "Failed to connect to %1", "reference": "Services/LegacyNetworkService.qml:318, Services/DMSNetworkService.qml:428", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to copy entry", "context": "Failed to copy entry", "reference": "Services/ClipboardService.qml:209, Services/ClipboardService.qml:238", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to create printer", "context": "Failed to create printer", "reference": "Services/CupsService.qml:522", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to delete VPN", "context": "Failed to delete VPN", "reference": "Services/VPNService.qml:182", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to delete class", "context": "Failed to delete class", "reference": "Services/CupsService.qml:745", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to delete printer", "context": "Failed to delete printer", "reference": "Services/CupsService.qml:539", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to disable job acceptance", "context": "Failed to disable job acceptance", "reference": "Services/CupsService.qml:575", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to disable night mode", "context": "Failed to disable night mode", "reference": "Services/DisplayService.qml:496", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to disable plugin: %1", "context": "Failed to disable plugin: %1", "reference": "Modules/Settings/PluginListItem.qml:331", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to disconnect VPN", "context": "Failed to disconnect VPN", "reference": "Services/DMSNetworkService.qml:938", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to disconnect VPNs", "context": "Failed to disconnect VPNs", "reference": "Services/DMSNetworkService.qml:956", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to disconnect WiFi", "context": "Failed to disconnect WiFi", "reference": "Services/DMSNetworkService.qml:555", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to empty trash", "context": "Failed to empty trash", "reference": "Services/TrashService.qml:126", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to enable IP location", "context": "Failed to enable IP location", "reference": "Services/DisplayService.qml:636", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to enable WiFi", "context": "Failed to enable WiFi", "reference": "Services/DMSNetworkService.qml:665", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to enable job acceptance", "context": "Failed to enable job acceptance", "reference": "Services/CupsService.qml:559", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to enable night mode", "context": "Failed to enable night mode", "reference": "Services/DisplayService.qml:468", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to fetch network QR code: %1", "context": "Failed to fetch network QR code: %1", "reference": "Modals/WifiQRCodeModal.qml:55", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to generate systemd override", "context": "Failed to generate systemd override", "reference": "Modules/Settings/AutoStartTab.qml:311, Modules/Settings/AutoStartTab.qml:325", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to hold job", "context": "Failed to hold job", "reference": "Services/CupsService.qml:695", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to import VPN", "context": "Failed to import VPN", "reference": "Services/VPNService.qml:87, Services/VPNService.qml:101", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to launch SMS app", "context": "Failed to launch SMS app", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1669, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:809", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to load VPN config", "context": "Failed to load VPN config", "reference": "Services/VPNService.qml:117", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to load clipboard configuration.", "context": "Failed to load clipboard configuration.", "reference": "Modules/Settings/ClipboardTab.qml:293", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to move job", "context": "Failed to move job", "reference": "Services/CupsService.qml:660", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to move to trash", "context": "Failed to move to trash", "reference": "Services/TrashService.qml:80", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { - "term": "Failed to parse plugin_settings.json", - "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1892", - "comment": "" - }, - { - "term": "Failed to parse session.json", - "context": "Failed to parse session.json", - "reference": "Common/SessionData.qml:294, Common/SessionData.qml:374", - "comment": "" - }, - { - "term": "Failed to parse settings.json", - "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1794, Common/SettingsData.qml:3654", - "comment": "" + "term": "Failed to parse %1", + "context": "Failed to parse %1", + "reference": "Common/SessionData.qml:294, Common/SessionData.qml:374, Common/SettingsData.qml:1796, Common/SettingsData.qml:1894, Common/SettingsData.qml:3656", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to pause printer", "context": "Failed to pause printer", "reference": "Services/CupsService.qml:392", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to pin entry", "context": "Failed to pin entry", "reference": "Services/ClipboardService.qml:312", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to print test page", "context": "Failed to print test page", "reference": "Services/CupsService.qml:642", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to read theme file: %1", "context": "Failed to read theme file: %1", "reference": "Common/Theme.qml:2195", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to reject pairing", "context": "Failed to reject pairing", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:692", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to reload plugin: %1", "context": "Failed to reload plugin: %1", "reference": "Modules/Settings/PluginListItem.qml:296", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to remove QR code at %1: %2", "context": "Failed to remove QR code at %1: %2", "reference": "Modals/WifiQRCodeModal.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to remove device", "context": "Failed to remove device", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:763", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to remove keybind", "context": "Failed to remove keybind", "reference": "Services/KeybindsService.qml:222", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to remove printer from class", "context": "Failed to remove printer from class", "reference": "Services/CupsService.qml:729", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to restart audio system", "context": "Failed to restart audio system", "reference": "Services/AudioService.qml:372", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to restart job", "context": "Failed to restart job", "reference": "Services/CupsService.qml:676", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to resume printer", "context": "Failed to resume printer", "reference": "Services/CupsService.qml:408", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to ring device", "context": "Failed to ring device", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:623", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "context": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "reference": "Modules/Settings/GreeterTab.qml:224", - "comment": "greeter status error" + "comment": "greeter status error", + "tags": [ + "settings" + ] }, { "term": "Failed to save VPN credentials", "context": "Failed to save VPN credentials", "reference": "Services/VPNService.qml:167", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to save audio config", "context": "Failed to save audio config", "reference": "Services/AudioService.qml:257", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to save clipboard setting", "context": "Failed to save clipboard setting", "reference": "Modules/Settings/ClipboardTab.qml:236", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to save keybind", "context": "Failed to save keybind", "reference": "Services/KeybindsService.qml:194", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to save profile", "context": "Failed to save profile", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:623", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to send SMS", "context": "Failed to send SMS", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1659, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:799", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to send clipboard", "context": "Failed to send clipboard", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:609, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:55", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to send file", "context": "Failed to send file", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1640", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to send ping", "context": "Failed to send ping", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:632", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to set brightness", "context": "Failed to set brightness", "reference": "Services/DisplayService.qml:325", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to set night mode location", "context": "Failed to set night mode location", "reference": "Services/DisplayService.qml:656", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to set night mode schedule", "context": "Failed to set night mode schedule", "reference": "Services/DisplayService.qml:598", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to set night mode temperature", "context": "Failed to set night mode temperature", "reference": "Services/DisplayService.qml:537, Services/DisplayService.qml:588, Services/DisplayService.qml:626", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to set power profile", "context": "Failed to set power profile", "reference": "Modals/PowerProfileModal.qml:111, Modules/ControlCenter/Details/BatteryDetail.qml:33, Modules/DankBar/Popouts/BatteryPopout.qml:30", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to set profile image", "context": "Failed to set profile image", "reference": "Services/PortalService.qml:186", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to set profile image: %1", "context": "Failed to set profile image: %1", "reference": "Services/PortalService.qml:195", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to share", "context": "Failed to share", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1621, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1629", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Failed to start connection to %1", "context": "Failed to start connection to %1", "reference": "Services/DMSNetworkService.qml:542", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to unpin entry", "context": "Failed to unpin entry", "reference": "Services/ClipboardService.qml:326", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to update %1: %2", "context": "Failed to update %1: %2", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:57, Modules/Settings/PluginUpdatesDialog.qml:91", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:58, Modules/Settings/PluginUpdatesDialog.qml:93", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to update VPN", "context": "Failed to update VPN", "reference": "Services/VPNService.qml:143", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to update autoconnect", "context": "Failed to update autoconnect", "reference": "Services/DMSNetworkService.qml:1021", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to update clipboard", "context": "Failed to update clipboard", "reference": "Modals/Clipboard/ClipboardEditor.qml:136", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to update description", "context": "Failed to update description", "reference": "Services/CupsService.qml:626", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to update location", "context": "Failed to update location", "reference": "Services/CupsService.qml:609", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to update sharing", "context": "Failed to update sharing", "reference": "Services/CupsService.qml:592", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Failed to write autostart entry", "context": "Failed to write autostart entry", "reference": "Modules/Settings/AutoStartTab.qml:188", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to write outputs config.", "context": "Failed to write outputs config.", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1507", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed to write temp file for validation", "context": "Failed to write temp file for validation", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2146", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Failed: %1", "context": "Failed: %1", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:347", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Features", "context": "Features", "reference": "Modals/Greeter/GreeterWelcomePage.qml:74", - "comment": "greeter welcome page section header" + "comment": "greeter welcome page section header", + "tags": [ + "shell" + ] }, { "term": "Feels", "context": "Feels", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:401", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Feels Like", "context": "Feels Like", - "reference": "Modules/Settings/TimeWeatherTab.qml:943", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:941", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Feels Like %1°", "context": "Feels Like %1°", - "reference": "Modules/DankDash/WeatherTab.qml:302, Modules/Settings/TimeWeatherTab.qml:830", - "comment": "weather feels like temperature" + "reference": "Modules/DankDash/WeatherTab.qml:302, Modules/Settings/TimeWeatherTab.qml:828", + "comment": "weather feels like temperature", + "tags": [ + "settings", + "shell" + ] }, { "term": "Fidelity", "context": "Fidelity", "reference": "Common/Theme.qml:501", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Field", "context": "Field", - "reference": "Modules/Settings/NotificationsTab.qml:590", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:588", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "File", "context": "File", "reference": "Services/CupsService.qml:139, dms-plugins/DankKDEConnect/components/ShareDialog.qml:361, Modals/DankLauncherV2/ResultItem.qml:230, Modals/DankLauncherV2/SpotlightResultRow.qml:69", - "comment": "KDE Connect send file button" + "comment": "KDE Connect send file button", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "File Already Exists", "context": "File Already Exists", "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:53", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "File Information", "context": "File Information", "reference": "Modals/FileBrowser/FileInfo.qml:136", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "File Manager", "context": "File Manager", "reference": "Modules/Settings/DefaultAppsTab.qml:300", - "comment": "File Manager" + "comment": "File Manager", + "tags": [ + "settings" + ] }, { "term": "File changed on disk", "context": "File changed on disk", "reference": "Modules/Notepad/Notepad.qml:328", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "File manager used to open the trash. Pick \"custom\" to enter your own command.", "context": "File manager used to open the trash. Pick \"custom\" to enter your own command.", - "reference": "Modules/Settings/DockTab.qml:543", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:542", + "comment": "", + "tags": [ + "settings" + ] }, { - "term": "File received from", - "context": "File received from", + "term": "File received from %1", + "context": "File received from %1", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:596", - "comment": "Phone Connect file share notification" + "comment": "Phone Connect file share notification", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "context": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "reference": "Modals/DankLauncherV2/ResultsList.qml:551", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "File search unavailable", "context": "File search unavailable", "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:161", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Files", "context": "Files", - "reference": "Modals/DankLauncherV2/Controller.qml:227, Modals/DankLauncherV2/Controller.qml:1167, Modals/DankLauncherV2/Controller.qml:1188, Modals/DankLauncherV2/SpotlightLauncherContent.qml:468, Modals/DankLauncherV2/LauncherContent.qml:344, Modals/DankLauncherV2/LauncherContent.qml:628, Modules/Settings/LauncherTab.qml:916", - "comment": "" + "reference": "Modals/DankLauncherV2/Controller.qml:227, Modals/DankLauncherV2/Controller.qml:1167, Modals/DankLauncherV2/Controller.qml:1188, Modals/DankLauncherV2/SpotlightLauncherContent.qml:468, Modals/DankLauncherV2/LauncherContent.qml:344, Modals/DankLauncherV2/LauncherContent.qml:628, Modules/Settings/LauncherTab.qml:915", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Filesystem usage monitoring", "context": "Filesystem usage monitoring", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:230", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Fill", "context": "Fill", "reference": "Modules/Settings/WallpaperTab.qml:296, Modules/Settings/Widgets/SettingsWallpaperPicker.qml:72", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "term": "Fill Mode", "context": "Fill Mode", "reference": "Modules/Settings/WallpaperTab.qml:301", - "comment": "wallpaper fill mode setting" + "comment": "wallpaper fill mode setting", + "tags": [ + "settings" + ] }, { "term": "Filter", "context": "Filter", "reference": "Modules/Settings/PluginBrowser.qml:981", - "comment": "plugin browser category filter label" + "comment": "plugin browser category filter label", + "tags": [ + "settings" + ] }, { "term": "Filter by type", "context": "Filter by type", "reference": "Modals/Clipboard/ClipboardContent.qml:153", - "comment": "Clipboard history type filter button tooltip" + "comment": "Clipboard history type filter button tooltip", + "tags": [ + "shell" + ] }, { "term": "Find in Text", "context": "Find in Text", "reference": "Modules/Notepad/NotepadSettings.qml:216", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Find in note...", "context": "Find in note...", "reference": "Modules/Notepad/NotepadTextEditor.qml:450", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:915", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:913", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fingerprint availability could not be confirmed.", "context": "Fingerprint availability could not be confirmed.", - "reference": "Modules/Settings/GreeterTab.qml:36, Modules/Settings/LockScreenTab.qml:76", - "comment": "fingerprint setting status" + "reference": "Modules/Settings/GreeterTab.qml:36, Modules/Settings/LockScreenTab.qml:107", + "comment": "fingerprint setting status", + "tags": [ + "settings" + ] }, { "term": "Fingerprint error", "context": "Fingerprint error", "reference": "Modules/Lock/LockScreenContent.qml:83", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Fingerprint not recognized (%1/%2). Please try again or use password.", "context": "Fingerprint not recognized (%1/%2). Please try again or use password.", "reference": "Modules/Lock/LockScreenContent.qml:87", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", - "reference": "Modules/Settings/LockScreenTab.qml:70", - "comment": "lock screen fingerprint setting" + "reference": "Modules/Settings/LockScreenTab.qml:101", + "comment": "lock screen fingerprint setting", + "tags": [ + "settings" + ] }, { "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", "reference": "Modules/Settings/GreeterTab.qml:30", - "comment": "greeter fingerprint login setting" + "comment": "greeter fingerprint login setting", + "tags": [ + "settings" + ] }, { "term": "Finish", "context": "Finish", "reference": "Modals/Greeter/GreeterModal.qml:307", - "comment": "greeter finish button" + "comment": "greeter finish button", + "tags": [ + "shell" + ] }, { "term": "First Day of Week", "context": "First Day of Week", - "reference": "Modules/Settings/TimeWeatherTab.qml:125", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:123", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "First Time Setup", "context": "First Time Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2210, Modules/Settings/WindowRulesTab.qml:503, Modules/Settings/KeybindsTab.qml:385, Modules/Settings/CompositorLayoutTab.qml:198, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:50", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2208, Modules/Settings/WindowRulesTab.qml:503, Modules/Settings/KeybindsTab.qml:385, Modules/Settings/CompositorLayoutTab.qml:198, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:50", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fit", "context": "Fit", "reference": "Modules/Settings/WallpaperTab.qml:296", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "term": "Flags", "context": "Flags", "reference": "Widgets/KeybindItem.qml:1592", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Flatpak", "context": "Flatpak", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:217", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Flipped", "context": "Flipped", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2650, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2671", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Flipped 180°", "context": "Flipped 180°", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2654, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2675", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Flipped 270°", "context": "Flipped 270°", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2656, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2677", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Flipped 90°", "context": "Flipped 90°", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2652, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2673", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Float", "context": "Float", "reference": "Modals/WindowRuleModal.qml:952, Modules/Settings/WindowRulesTab.qml:95", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Float Anchor", "context": "Float Anchor", "reference": "Modules/Settings/WindowRulesTab.qml:138", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Float X", "context": "Float X", "reference": "Modules/Settings/WindowRulesTab.qml:136", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Float Y", "context": "Float Y", "reference": "Modules/Settings/WindowRulesTab.qml:137", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Floating", "context": "Floating", "reference": "Modals/WindowRuleModal.qml:888, Modules/Settings/WindowRulesTab.qml:47", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Floating Position", "context": "Floating Position", "reference": "Modals/WindowRuleModal.qml:1325", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Fluent", "context": "Fluent", "reference": "Modules/Settings/TypographyMotionTab.qml:76", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.", "context": "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.", "reference": "Modules/Settings/TypographyMotionTab.qml:116", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focus", "context": "Focus", "reference": "Modals/WindowRuleModal.qml:970, Modules/Settings/WindowRulesTab.qml:99", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Focus Ring Color", "context": "Focus Ring Color", "reference": "Modules/Settings/WindowRulesTab.qml:140", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focus Ring Off", "context": "Focus Ring Off", "reference": "Modules/Settings/WindowRulesTab.qml:141", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focus at Startup", "context": "Focus at Startup", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2088", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focused", "context": "Focused", "reference": "Modals/WindowRuleModal.qml:897, Modules/Settings/WindowRulesTab.qml:49", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Focused Border", "context": "Focused Border", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:267, Modules/Settings/WorkspaceAppearanceCard.qml:351", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focused Color", "context": "Focused Color", "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:32", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focused Display", "context": "Focused Display", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:203", - "comment": "workspace appearance tab" + "comment": "workspace appearance tab", + "tags": [ + "settings" + ] }, { "term": "Focused Monitor Only", "context": "Focused Monitor Only", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:422, Modules/Settings/NotificationsTab.qml:342", - "comment": "" + "reference": "Modules/Settings/DisplayWidgetsTab.qml:421, Modules/Settings/NotificationsTab.qml:341", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Focused Window", "context": "Focused Window", "reference": "Modules/Settings/WidgetsTab.qml:77", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fog", "context": "Fog", "reference": "Services/WeatherService.qml:128, Services/WeatherService.qml:129", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Folder", "context": "Folder", "reference": "Modals/DankLauncherV2/ResultItem.qml:230, Modals/DankLauncherV2/SpotlightResultRow.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Folders", "context": "Folders", - "reference": "Modals/DankLauncherV2/Controller.qml:1178, Modals/DankLauncherV2/Controller.qml:1188, Modals/DankLauncherV2/LauncherContent.qml:633, Modules/Settings/LauncherTab.qml:927", - "comment": "" + "reference": "Modals/DankLauncherV2/Controller.qml:1178, Modals/DankLauncherV2/Controller.qml:1188, Modals/DankLauncherV2/LauncherContent.qml:633, Modules/Settings/LauncherTab.qml:926", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Follow DMS background color", "context": "Follow DMS background color", - "reference": "Modules/Settings/ThemeColorsTab.qml:2744", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2742", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Follow Monitor Focus", "context": "Follow Monitor Focus", "reference": "Modules/Settings/WorkspacesTab.qml:153", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Follow focus", "context": "Follow focus", "reference": "Widgets/KeybindItem.qml:1349", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Follows the default launcher choice selected above.", "context": "Follows the default launcher choice selected above.", "reference": "Modules/Settings/LauncherTab.qml:142", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Font", "context": "Font", "reference": "Modules/Settings/GreeterTab.qml:524", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Font Family", "context": "Font Family", "reference": "Modules/Notepad/NotepadSettings.qml:242", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:321, Modules/Settings/DankBarTab.qml:1091", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:321, Modules/Settings/DankBarTab.qml:1089", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Font Size", "context": "Font Size", "reference": "Modules/Notepad/NotepadSettings.qml:276", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Font Weight", "context": "Font Weight", "reference": "Modules/Settings/TypographyMotionTab.qml:252", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Font used for the clock and date on the lock screen", "context": "Font used for the clock and date on the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:293", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:363", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Font used on the login screen", "context": "Font used on the login screen", "reference": "Modules/Settings/GreeterTab.qml:537", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "For 1 hour", "context": "For 1 hour", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:73", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "For 15 minutes", "context": "For 15 minutes", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:65", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "For 3 hours", "context": "For 3 hours", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:77", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "For 30 minutes", "context": "For 30 minutes", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "For 8 hours", "context": "For 8 hours", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:81", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "For editing plain text files", "context": "For editing plain text files", - "reference": "Modules/Settings/DefaultAppsTab.qml:327", - "comment": "For editing plain text files" - }, - { - "term": "For reading PDF files", - "context": "For reading PDF files", - "reference": "Modules/Settings/DefaultAppsTab.qml:333", - "comment": "For reading PDF files" + "reference": "Modules/Settings/DefaultAppsTab.qml:326", + "comment": "For editing plain text files", + "tags": [ + "settings" + ] }, { "term": "Force HDR", "context": "Force HDR", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Force Kill (SIGKILL)", "context": "Force Kill (SIGKILL)", "reference": "Modules/ProcessList/ProcessContextMenu.qml:62", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Force Padding", "context": "Force Padding", "reference": "Modules/Settings/WidgetsTabSection.qml:635", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Force RGBX", "context": "Force RGBX", "reference": "Modules/Settings/WindowRulesTab.qml:143", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Force Wide Color", "context": "Force Wide Color", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2110", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:2155", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2153", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Forecast", "context": "Forecast", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:27", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Forecast Days", "context": "Forecast Days", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:127", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Forecast Not Available", "context": "Forecast Not Available", "reference": "Modules/DankDash/WeatherForecastCard.qml:115", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Forecast and conditions", "context": "Forecast and conditions", "reference": "Modules/Settings/DankDashTab.qml:38", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Foreground Layers", "context": "Foreground Layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:1741", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1740", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Forever", "context": "Forever", - "reference": "Modules/Settings/NotificationsTab.qml:882, Modules/Settings/NotificationsTab.qml:897, Modules/Settings/NotificationsTab.qml:900", - "comment": "notification history retention option" + "reference": "Modules/Settings/NotificationsTab.qml:877, Modules/Settings/NotificationsTab.qml:892, Modules/Settings/NotificationsTab.qml:895", + "comment": "notification history retention option", + "tags": [ + "settings" + ] }, { "term": "Forget", "context": "Forget", "reference": "Modules/Settings/NetworkWifiTab.qml:158", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Forget \"%1\"?", "context": "Forget \"%1\"?", "reference": "Modules/Settings/NetworkWifiTab.qml:157", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Forget Device", "context": "Forget Device", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:735", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Forget Network", "context": "Forget Network", "reference": "Modules/Settings/NetworkWifiTab.qml:156, Modules/Settings/NetworkWifiTab.qml:1241, Modules/ControlCenter/Details/NetworkDetail.qml:875", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Forgot network %1", "context": "Forgot network %1", "reference": "Services/LegacyNetworkService.qml:398, Services/DMSNetworkService.qml:621", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Format Legend", "context": "Format Legend", - "reference": "Modules/Settings/TimeWeatherTab.qml:364", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:362", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Forward 10s", "context": "Forward 10s", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2058, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1610", - "comment": "Media forward tooltip" + "comment": "Media forward tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Frame", "context": "Frame", - "reference": "Modals/Settings/SettingsSidebar.qml:146, Modules/Settings/FrameTab.qml:34", - "comment": "" + "reference": "Modals/Settings/SettingsSidebar.qml:146", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Frame Blur", "context": "Frame Blur", "reference": "Modules/Settings/FrameTab.qml:189", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Frame Blur follows Background Blur in Theme & Colors", "context": "Frame Blur follows Background Blur in Theme & Colors", "reference": "Modules/Settings/FrameTab.qml:218", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Frame Border Color", "context": "Frame Border Color", "reference": "Modules/Settings/FrameTab.qml:308", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Frame Xray", "context": "Frame Xray", - "reference": "Modules/Settings/CompositorLayoutTab.qml:392, Modules/Settings/CompositorLayoutTab.qml:544", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:392, Modules/Settings/CompositorLayoutTab.qml:543", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.", "context": "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.", - "reference": "Modules/Settings/LauncherTab.qml:674", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:673", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Freezing Drizzle", "context": "Freezing Drizzle", "reference": "Services/WeatherService.qml:133, Services/WeatherService.qml:134", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Frequency", "context": "Frequency", "reference": "Modules/Settings/NetworkWifiTab.qml:748, Modules/Settings/NetworkWifiTab.qml:1109", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fruit Salad", "context": "Fruit Salad", "reference": "Common/Theme.qml:505", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Full", "context": "Full", - "reference": "Modules/Settings/LauncherTab.qml:93, Modules/Settings/LauncherTab.qml:779", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:93, Modules/Settings/LauncherTab.qml:778", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Full Command:", "context": "Full Command:", "reference": "Modules/ProcessList/ProcessesView.qml:676", - "comment": "process detail label" + "comment": "process detail label", + "tags": [ + "shell" + ] }, { "term": "Full Content", "context": "Full Content", - "reference": "Modules/Settings/LockScreenTab.qml:264, Modules/Settings/NotificationsTab.qml:774", - "comment": "lock screen notification mode option" + "reference": "Modules/Settings/LockScreenTab.qml:334, Modules/Settings/NotificationsTab.qml:772", + "comment": "lock screen notification mode option", + "tags": [ + "settings" + ] }, { "term": "Full Day & Month", "context": "Full Day & Month", - "reference": "Modules/Settings/GreeterTab.qml:379, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:217, Modules/Settings/TimeWeatherTab.qml:233, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:304, Modules/Settings/TimeWeatherTab.qml:320", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:379, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:215, Modules/Settings/TimeWeatherTab.qml:231, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:302, Modules/Settings/TimeWeatherTab.qml:318", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Full Size", "context": "Full Size", "reference": "Modules/Settings/WidgetsTabSection.qml:917", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Full command to execute", "context": "Full command to execute", "reference": "Modules/Settings/AutoStartTab.qml:578", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Full with Year", "context": "Full with Year", - "reference": "Modules/Settings/GreeterTab.qml:371, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:209, Modules/Settings/TimeWeatherTab.qml:231, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:296, Modules/Settings/TimeWeatherTab.qml:318", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:371, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:207, Modules/Settings/TimeWeatherTab.qml:229, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:294, Modules/Settings/TimeWeatherTab.qml:316", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Fullscreen", "context": "Fullscreen", "reference": "Modals/WindowRuleModal.qml:927, Modals/WindowRuleModal.qml:961, Modules/Settings/WindowRulesTab.qml:55, Modules/Settings/WindowRulesTab.qml:98", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Fullscreen Only", "context": "Fullscreen Only", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:338, Modules/Settings/DisplayConfig/OutputCard.qml:347", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Fully Charged", "context": "Fully Charged", "reference": "Services/BatteryService.qml:328", - "comment": "battery status" + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "Fun", "context": "Fun", "reference": "Widgets/DankIconPicker.qml:59", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "G: grid • Z/X: size", "context": "G: grid • Z/X: size", "reference": "Modules/Plugins/DesktopPluginWrapper.qml:767", - "comment": "Widget grid keyboard hints" + "comment": "Widget grid keyboard hints", + "tags": [ + "shell" + ] }, { "term": "GPU", "context": "GPU", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:138", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "GPU Monitoring", "context": "GPU Monitoring", "reference": "Modules/ProcessList/SystemView.qml:117", - "comment": "gpu section header in system monitor" + "comment": "gpu section header in system monitor", + "tags": [ + "shell" + ] }, { "term": "GPU Temperature", "context": "GPU Temperature", "reference": "Modules/Settings/WidgetsTab.qml:158, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "GPU temperature display", "context": "GPU temperature display", "reference": "Modules/Settings/WidgetsTab.qml:159", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "GTK colors applied successfully", "context": "GTK colors applied successfully", "reference": "Common/Theme.qml:1968", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "GTK, Qt, IDEs, more", "context": "GTK, Qt, IDEs, more", "reference": "Modals/Greeter/GreeterWelcomePage.qml:98", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "Games", "context": "Games", "reference": "Services/AppSearchService.qml:673", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Gamma Control", "context": "Gamma Control", "reference": "Modals/Settings/SettingsSidebar.qml:231, Modules/Settings/GammaControlTab.qml:64", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Gamma control not available. Requires DMS API v6+.", "context": "Gamma control not available. Requires DMS API v6+.", "reference": "Modules/Settings/GammaControlTab.qml:77", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Gap between the end widgets and the bar ends (0 = edge-to-edge)", "context": "Gap between the end widgets and the bar ends (0 = edge-to-edge)", - "reference": "Modules/Settings/DankBarTab.qml:995, Modules/Settings/FrameTab.qml:169", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:993, Modules/Settings/FrameTab.qml:169", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Gaps", "context": "Gaps", - "reference": "Modules/Settings/CompositorLayoutTab.qml:281, Modules/Settings/CompositorLayoutTab.qml:410, Modules/Settings/CompositorLayoutTab.qml:562", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:281, Modules/Settings/CompositorLayoutTab.qml:410, Modules/Settings/CompositorLayoutTab.qml:561", + "comment": "", + "tags": [ + "settings" + ] + }, + { + "term": "General", + "context": "General", + "reference": "Modules/Settings/MediaPlayerTab.qml:37, Modules/Settings/WorkspacesTab.qml:28, Modules/Settings/LocaleTab.qml:48, Modules/Settings/FrameTab.qml:34, Modules/Settings/MuxTab.qml:28", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Generate Override", "context": "Generate Override", "reference": "Modules/Settings/AutoStartTab.qml:786", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:2952", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2950", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Generic", "context": "Generic", "reference": "Modules/Settings/ThemeColorsTab.qml:406, Modules/Settings/ThemeColorsTab.qml:406", - "comment": "theme category option" + "comment": "theme category option", + "tags": [ + "settings" + ] }, { "term": "Geometric Centering", "context": "Geometric Centering", "reference": "Modules/Settings/WidgetsTabSection.qml:246", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Get Started", "context": "Get Started", "reference": "Modals/Greeter/GreeterModal.qml:298", - "comment": "greeter first page button" + "comment": "greeter first page button", + "tags": [ + "shell" + ] }, { "term": "GitHub", "context": "GitHub", "reference": "Modules/Settings/AboutTab.qml:306", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Global fonts can be configured in Settings → Personalization", "context": "Global fonts can be configured in Settings → Personalization", "reference": "Modules/Notepad/NotepadSettings.qml:486", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Globally scale all animation durations", "context": "Globally scale all animation durations", "reference": "Modules/Settings/TypographyMotionTab.qml:526", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Golden Hour", "context": "Golden Hour", "reference": "Services/WeatherService.qml:252, Services/WeatherService.qml:267", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Good", "context": "Good", - "reference": "Modules/Settings/TimeWeatherTab.qml:1188", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:1186", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Goth Corner Radius", "context": "Goth Corner Radius", - "reference": "Modules/Settings/DankBarTab.qml:1239", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1237", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Goth Corners", "context": "Goth Corners", - "reference": "Modules/Settings/DankBarTab.qml:1211", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1209", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Gradually fade the screen before locking with a configurable grace period", "context": "Gradually fade the screen before locking with a configurable grace period", "reference": "Modules/Settings/PowerSleepTab.qml:75", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Gradually fade the screen before turning off monitors with a configurable grace period", "context": "Gradually fade the screen before turning off monitors with a configurable grace period", "reference": "Modules/Settings/PowerSleepTab.qml:84", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Grant", "context": "Grant", "reference": "Modules/Settings/UsersTab.qml:295", - "comment": "" - }, - { - "term": "Grant admin?", - "context": "Grant admin?", - "reference": "Modules/Settings/UsersTab.qml:293", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Grant administrator privileges", "context": "Grant administrator privileges", "reference": "Modules/Settings/UsersTab.qml:457", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Granted administrator privileges", "context": "Granted administrator privileges", "reference": "Services/UsersService.qml:409", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Granted greeter login access", "context": "Granted greeter login access", "reference": "Services/UsersService.qml:379", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Graph Time Range", "context": "Graph Time Range", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:48", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Graphics", "context": "Graphics", "reference": "Services/AppSearchService.qml:674, Services/AppSearchService.qml:675", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Greeter", "context": "Greeter", "reference": "Modals/Settings/SettingsSidebar.qml:383, Modules/Settings/UsersTab.qml:228", - "comment": "" - }, - { - "term": "Greeter Appearance", - "context": "Greeter Appearance", - "reference": "Modules/Settings/GreeterTab.qml:520", - "comment": "" - }, - { - "term": "Greeter Behavior", - "context": "Greeter Behavior", - "reference": "Modules/Settings/GreeterTab.qml:604", - "comment": "" - }, - { - "term": "Greeter Status", - "context": "Greeter Status", - "reference": "Modules/Settings/GreeterTab.qml:399", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Greeter activated. greetd is now enabled.", "context": "Greeter activated. greetd is now enabled.", "reference": "Modules/Settings/GreeterTab.qml:334", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Greeter font", "context": "Greeter font", "reference": "Modules/Settings/GreeterTab.qml:536", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.", "context": "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.", "reference": "Modules/Settings/UsersTab.qml:151", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Greeter group:", "context": "Greeter group:", "reference": "Modules/Settings/UsersTab.qml:122", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Greeter only — format for the date on the login screen", "context": "Greeter only — format for the date on the login screen", "reference": "Modules/Settings/GreeterTab.qml:556", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Greeter sync complete", "context": "Greeter sync complete", "reference": "Modules/Settings/GreeterTab.qml:258", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:50", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Grid Columns", "context": "Grid Columns", - "reference": "Modules/Settings/LauncherTab.qml:597", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:596", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Grid: OFF", "context": "Grid: OFF", "reference": "Modules/Plugins/DesktopPluginWrapper.qml:737", - "comment": "Widget grid snap status" + "comment": "Widget grid snap status", + "tags": [ + "shell" + ] }, { "term": "Grid: ON", "context": "Grid: ON", "reference": "Modules/Plugins/DesktopPluginWrapper.qml:737", - "comment": "Widget grid snap status" + "comment": "Widget grid snap status", + "tags": [ + "shell" + ] }, { "term": "Group", "context": "Group", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:240", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Group Active Workspace", "context": "Group Active Workspace", "reference": "Modules/Settings/WorkspacesTab.qml:133", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Group Workspace Apps", "context": "Group Workspace Apps", "reference": "Modules/Settings/WorkspacesTab.qml:123", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Group by App", "context": "Group by App", "reference": "Modules/Settings/WidgetsTabSection.qml:3768, Modules/Settings/DockTab.qml:171", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Group multiple windows of the same app together with a window count indicator", "context": "Group multiple windows of the same app together with a window count indicator", "reference": "Modules/Settings/DockTab.qml:172", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Group removed", "context": "Group removed", "reference": "Modules/Settings/DesktopWidgetsTab.qml:335", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Group repeated application icons in unfocused workspaces", "context": "Group repeated application icons in unfocused workspaces", "reference": "Modules/Settings/WorkspacesTab.qml:124", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Groups", "context": "Groups", "reference": "Modules/Settings/DesktopWidgetsTab.qml:208", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "H", "context": "H", "reference": "Modals/WindowRuleModal.qml:1681, Modules/Settings/WindowRulesTab.qml:126", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "HDR (EDID)", "context": "HDR (EDID)", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:154, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:164, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:175", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "HDR Tone Mapping", "context": "HDR Tone Mapping", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:238", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "HDR mode is experimental. Verify your monitor supports HDR before enabling.", "context": "HDR mode is experimental. Verify your monitor supports HDR before enabling.", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:217", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "HSV", "context": "HSV", "reference": "Modals/DankColorPickerModal.qml:687", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "HSV %1 copied", "context": "HSV %1 copied", "reference": "Modals/DankColorPickerModal.qml:741", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "HTML copied to clipboard", "context": "HTML copied to clipboard", "reference": "Modules/Notepad/NotepadTextEditor.qml:343", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Handles geo: location links", "context": "Handles geo: location links", "reference": "Modules/Settings/DefaultAppsTab.qml:291", - "comment": "Handles geo: location links" + "comment": "Handles geo: location links", + "tags": [ + "settings" + ] }, { "term": "Handles links and opens HTML files", "context": "Handles links and opens HTML files", "reference": "Modules/Settings/DefaultAppsTab.qml:277", - "comment": "Handles links and opens HTML files" + "comment": "Handles links and opens HTML files", + "tags": [ + "settings" + ] }, { "term": "Handles mailto links", "context": "Handles mailto links", "reference": "Modules/Settings/DefaultAppsTab.qml:284", - "comment": "Handles mailto links" + "comment": "Handles mailto links", + "tags": [ + "settings" + ] }, { "term": "Health", "context": "Health", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:140, Modules/DankBar/Popouts/BatteryPopout.qml:297, Modules/DankBar/Popouts/BatteryPopout.qml:453", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Heavy Rain", "context": "Heavy Rain", "reference": "Services/WeatherService.qml:137, Services/WeatherService.qml:139, Services/WeatherService.qml:146", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Heavy Snow", "context": "Heavy Snow", "reference": "Services/WeatherService.qml:142", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Heavy Snow Showers", "context": "Heavy Snow Showers", "reference": "Services/WeatherService.qml:148", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Height", "context": "Height", "reference": "Modules/Settings/WindowRulesTab.qml:103", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Held", "context": "Held", "reference": "Services/CupsService.qml:763", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Help", "context": "Help", "reference": "Modules/Settings/DesktopWidgetsTab.qml:430", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hex", "context": "Hex", "reference": "Modals/DankColorPickerModal.qml:562", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hibernate", "context": "Hibernate", "reference": "Modals/PowerMenuModal.qml:223, Modules/Lock/LockPowerMenu.qml:130, Modules/Settings/PowerSleepTab.qml:344, Modules/Settings/PowerSleepTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Hibernate failed", "context": "Hibernate failed", "reference": "Services/SessionService.qml:141", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hidden", "context": "Hidden", "reference": "Modules/Settings/NetworkWifiTab.qml:593, Modules/Settings/NetworkWifiTab.qml:972, Modules/Settings/DankDashTab.qml:347", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hidden (%1)", "context": "Hidden (%1)", "reference": "Modules/Settings/AudioTab.qml:265, Modules/Settings/AudioTab.qml:409", - "comment": "count of hidden audio devices" + "comment": "count of hidden audio devices", + "tags": [ + "settings" + ] }, { "term": "Hidden Apps", "context": "Hidden Apps", - "reference": "Modules/Settings/LauncherTab.qml:1194", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1193", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", "context": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", - "reference": "Modules/Settings/LauncherTab.qml:1224", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1223", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hidden until weather is enabled", "context": "Hidden until weather is enabled", "reference": "Modules/Settings/DankDashTab.qml:38", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide", "context": "Hide", "reference": "Modules/Settings/WidgetsTabSection.qml:1166, Modules/Settings/DisplayConfigTab.qml:569, Modules/Settings/DankDashTab.qml:530", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide 3rd Party", "context": "Hide 3rd Party", "reference": "Modules/Settings/PluginBrowser.qml:790", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide App", "context": "Hide App", "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:186", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hide Delay", "context": "Hide Delay", "reference": "Modules/Settings/DankBarTab.qml:681", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide Indicators", "context": "Hide Indicators", "reference": "Modules/Settings/WidgetsTabSection.qml:4201", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide When Typing", "context": "Hide When Typing", - "reference": "Modules/Settings/ThemeColorsTab.qml:2294", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2292", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide When Windows Open", "context": "Hide When Windows Open", "reference": "Modules/Settings/DankBarTab.qml:718", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide cursor after inactivity (0 = disabled)", "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2341", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2339", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide cursor when pressing keyboard keys", "context": "Hide cursor when pressing keyboard keys", - "reference": "Modules/Settings/ThemeColorsTab.qml:2295", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2293", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide cursor when using touch input", "context": "Hide cursor when using touch input", - "reference": "Modules/Settings/ThemeColorsTab.qml:2324", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2322", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide device", "context": "Hide device", "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide installed", "context": "Hide installed", "reference": "Modules/Settings/PluginBrowser.qml:41", - "comment": "plugin browser filter chip" + "comment": "plugin browser filter chip", + "tags": [ + "settings" + ] }, { "term": "Hide notification content until expanded", "context": "Hide notification content until expanded", - "reference": "Modules/Notifications/Center/NotificationSettings.qml:323", - "comment": "" + "reference": "Modules/Notifications/Center/NotificationSettings.qml:320", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hide notification content until expanded; popups show collapsed by default", "context": "Hide notification content until expanded; popups show collapsed by default", - "reference": "Modules/Settings/NotificationsTab.qml:334", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:333", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide on Touch", "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:2323", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2321", + "comment": "", + "tags": [ + "settings" + ] }, { "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:705", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide when no updates: OFF", "context": "Hide when no updates: OFF", "reference": "Modules/Settings/WidgetsTabSection.qml:654", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hide when no updates: ON", "context": "Hide when no updates: ON", "reference": "Modules/Settings/WidgetsTabSection.qml:654", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "High", "context": "High", "reference": "Modules/Settings/TypographyMotionTab.qml:458", - "comment": "" + "comment": "quality level option", + "tags": [ + "settings" + ] }, { "term": "High-fidelity palette that preserves source hues.", "context": "High-fidelity palette that preserves source hues.", "reference": "Common/Theme.qml:502", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Highlight Active Workspace App", "context": "Highlight Active Workspace App", "reference": "Modules/Settings/WorkspacesTab.qml:143", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Highlight the currently focused app inside workspace indicators", "context": "Highlight the currently focused app inside workspace indicators", "reference": "Modules/Settings/WorkspacesTab.qml:144", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "History", "context": "History", "reference": "Modules/Notifications/Center/NotificationHeader.qml:202", - "comment": "notification center tab" + "comment": "notification center tab", + "tags": [ + "shell" + ] }, { "term": "History Retention", "context": "History Retention", - "reference": "Modules/Settings/NotificationsTab.qml:877", - "comment": "notification history retention settings label" + "reference": "Modules/Settings/NotificationsTab.qml:872", + "comment": "notification history retention settings label", + "tags": [ + "settings" + ] }, { "term": "History Settings", "context": "History Settings", - "reference": "Modules/Settings/NotificationsTab.qml:848, Modules/Settings/ClipboardTab.qml:304, Modules/Notifications/Center/NotificationSettings.qml:347", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:843, Modules/Settings/ClipboardTab.qml:304, Modules/Notifications/Center/NotificationSettings.qml:344", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "History cleared. %1 pinned entries kept.", "context": "History cleared. %1 pinned entries kept.", "reference": "Services/ClipboardService.qml:345", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hold Duration", "context": "Hold Duration", "reference": "Modules/Settings/PowerSleepTab.qml:515", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hold longer to confirm", "context": "Hold longer to confirm", "reference": "Modals/PowerMenuModal.qml:840, Modules/Lock/LockPowerMenu.qml:807", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hold to Confirm Power Actions", "context": "Hold to Confirm Power Actions", "reference": "Modules/Settings/PowerSleepTab.qml:502", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hold to confirm (%1 ms)", "context": "Hold to confirm (%1 ms)", "reference": "Modals/PowerMenuModal.qml:843, Modals/PowerMenuModal.qml:847, Modules/Lock/LockPowerMenu.qml:810, Modules/Lock/LockPowerMenu.qml:814", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hold to confirm (%1s)", "context": "Hold to confirm (%1s)", "reference": "Modals/PowerMenuModal.qml:844, Modals/PowerMenuModal.qml:848, Modules/Lock/LockPowerMenu.qml:811, Modules/Lock/LockPowerMenu.qml:815", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Home", "context": "Home", "reference": "Modals/FileBrowser/FileBrowserContent.qml:263", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Horizontal and vertical bar thickness", "context": "Horizontal and vertical bar thickness", "reference": "Modules/Settings/FrameTab.qml:129", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Host", "context": "Host", "reference": "Modules/Settings/PrinterTab.qml:511", - "comment": "Label for printer IP address or hostname input field" + "comment": "Label for printer IP address or hostname input field", + "tags": [ + "settings" + ] }, { "term": "Hostname", "context": "Hostname", "reference": "Modules/ProcessList/SystemView.qml:60", - "comment": "system info label" + "comment": "system info label", + "tags": [ + "shell" + ] }, { "term": "Hot Corners", "context": "Hot Corners", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2090", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hotkey overlay title (optional)", "context": "Hotkey overlay title (optional)", "reference": "Widgets/KeybindItem.qml:1578", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hour", "context": "Hour", - "reference": "Modules/Settings/ThemeColorsTab.qml:1249, Modules/Settings/GammaControlTab.qml:232", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1249, Modules/Settings/GammaControlTab.qml:231", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hourly", "context": "Hourly", "reference": "Modules/DankDash/WeatherTab.qml:848", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hourly Forecast Count", "context": "Hourly Forecast Count", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:142", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Hover Popouts", "context": "Hover Popouts", - "reference": "Modules/Settings/DankBarTab.qml:1262", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1260", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "How often the server polls for new updates.", "context": "How often the server polls for new updates.", "reference": "Modules/Settings/SystemUpdaterTab.qml:93", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "How often to change wallpaper", "context": "How often to change wallpaper", - "reference": "Modules/Settings/WallpaperTab.qml:997", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:996", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "How the background image is scaled", "context": "How the background image is scaled", "reference": "Modules/Settings/Widgets/SettingsWallpaperPicker.qml:67", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "How the wallpaper is scaled to fit the screen", "context": "How the wallpaper is scaled to fit the screen", "reference": "Modules/Settings/WallpaperTab.qml:302", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Humidity", "context": "Humidity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherTab.qml:87, Modules/DankDash/WeatherForecastCard.qml:80, Modules/Settings/TimeWeatherTab.qml:987", - "comment": "" + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherTab.qml:87, Modules/DankDash/WeatherForecastCard.qml:80, Modules/Settings/TimeWeatherTab.qml:985", + "comment": "", + "tags": [ + "plugin-dankdesktopweather", + "settings", + "shell" + ] }, { "term": "Hyprland Discord Server", "context": "Hyprland Discord Server", "reference": "Modules/Settings/AboutTab.qml:98", - "comment": "" - }, - { - "term": "Hyprland Layout Overrides", - "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/CompositorLayoutTab.qml:402", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hyprland Options", "context": "Hyprland Options", "reference": "Modals/WindowRuleModal.qml:1539", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Hyprland Website", "context": "Hyprland Website", "reference": "Modules/Settings/AboutTab.qml:71", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hyprland conf mode", "context": "Hyprland conf mode", - "reference": "Services/KeybindsService.qml:550, Modules/Settings/ThemeColorsTab.qml:146, Modules/Settings/ThemeColorsTab.qml:2208, Modules/Settings/WindowRulesTab.qml:346, Modules/Settings/WindowRulesTab.qml:503, Modules/Settings/KeybindsTab.qml:383, Modules/Settings/CompositorLayoutTab.qml:97, Modules/Settings/CompositorLayoutTab.qml:196, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:48, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1521", - "comment": "" + "reference": "Services/KeybindsService.qml:550, Modules/Settings/ThemeColorsTab.qml:146, Modules/Settings/ThemeColorsTab.qml:2206, Modules/Settings/WindowRulesTab.qml:346, Modules/Settings/WindowRulesTab.qml:503, Modules/Settings/KeybindsTab.qml:383, Modules/Settings/CompositorLayoutTab.qml:97, Modules/Settings/CompositorLayoutTab.qml:196, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:48, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1521", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "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:526", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Hyprland config include missing", "context": "Hyprland config include missing", "reference": "Services/KeybindsService.qml:546", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "I Understand", "context": "I Understand", "reference": "Modules/Settings/PluginBrowser.qml:1950", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "IP", "context": "IP", "reference": "Modules/Settings/NetworkEthernetTab.qml:297", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "IP Address:", "context": "IP Address:", "reference": "Modules/Settings/NetworkWifiTab.qml:301", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "IP address or hostname", "context": "IP address or hostname", "reference": "Modules/Settings/PrinterTab.qml:521", - "comment": "Placeholder text for manual printer address input" + "comment": "Placeholder text for manual printer address input", + "tags": [ + "settings" + ] }, { "term": "ISO Date", "context": "ISO Date", - "reference": "Modules/Settings/GreeterTab.qml:375, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:213, Modules/Settings/TimeWeatherTab.qml:232, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:300, Modules/Settings/TimeWeatherTab.qml:319", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:375, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:211, Modules/Settings/TimeWeatherTab.qml:230, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:298, Modules/Settings/TimeWeatherTab.qml:317", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Icon", "context": "Icon", - "reference": "Modals/DankLauncherV2/AppEditView.qml:162, Modules/Settings/DockTab.qml:261", - "comment": "" + "reference": "Modals/DankLauncherV2/AppEditView.qml:162, Modules/Settings/DockTab.qml:260", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Icon Scale", "context": "Icon Scale", - "reference": "Modules/Settings/DankBarTab.qml:1118", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1116", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/DockTab.qml:592, Modules/Settings/WorkspacesTab.qml:111", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:591, Modules/Settings/WorkspacesTab.qml:111", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Icon Size %", "context": "Icon Size %", "reference": "Modules/Settings/WidgetsTabSection.qml:4462", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2379, Modules/Settings/ThemeColorsTab.qml:2397", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2377, Modules/Settings/ThemeColorsTab.qml:2395", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Icon theme changed outside DMS; switched to System Default", "context": "Icon theme changed outside DMS; switched to System Default", - "reference": "Common/SettingsData.qml:1531", - "comment": "shown when an external tool overrides the icon theme DMS applied" + "reference": "Common/SettingsData.qml:1533", + "comment": "shown when an external tool overrides the icon theme DMS applied", + "tags": [ + "shell" + ] }, { "term": "Identical alerts show as one popup instead of stacking", "context": "Identical alerts show as one popup instead of stacking", - "reference": "Modules/Settings/NotificationsTab.qml:316", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:315", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Identical alerts stack as separate notification cards", "context": "Identical alerts stack as separate notification cards", - "reference": "Modules/Settings/NotificationsTab.qml:316", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:315", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Identify", "context": "Identify", "reference": "Modules/Settings/DisplayConfig/MonitorCanvas.qml:113", - "comment": "button for identifying monitor positions" + "comment": "button for identifying monitor positions", + "tags": [ + "settings" + ] }, { "term": "Idle", "context": "Idle", "reference": "Services/CupsService.qml:780", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Idle Inhibit", "context": "Idle Inhibit", "reference": "Modules/Settings/WindowRulesTab.qml:144", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Idle Inhibitor", "context": "Idle Inhibitor", - "reference": "Modules/Settings/WidgetsTabSection.qml:2358, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/WidgetsTab.qml:208, Modules/Settings/OSDTab.qml:125", - "comment": "" + "reference": "Modules/Settings/WidgetsTabSection.qml:2358, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/WidgetsTab.qml:208, Modules/Settings/OSDTab.qml:121", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Idle Settings", "context": "Idle Settings", "reference": "Modules/Settings/PowerSleepTab.qml:34", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps", "context": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps", "reference": "Modules/Settings/AutoStartTab.qml:778", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "If the field is hidden, it will appear as soon as a key is pressed.", "context": "If the field is hidden, it will appear as soon as a key is pressed.", - "reference": "Modules/Settings/LockScreenTab.qml:246", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:316", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ignore Completely", "context": "Ignore Completely", "reference": "Modules/Settings/NotificationsTab.qml:127", - "comment": "notification rule action option" + "comment": "notification rule action option", + "tags": [ + "settings" + ] }, { "term": "Ignore package", "context": "Ignore package", "reference": "Modules/Settings/SystemUpdaterTab.qml:246", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ignore this package", "context": "Ignore this package", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:471", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ignored (%1)", "context": "Ignored (%1)", "reference": "Modules/Settings/SystemUpdaterTab.qml:262", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ignored Packages", "context": "Ignored Packages", "reference": "Modules/Settings/SystemUpdaterTab.qml:189", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ignored packages are hidden from the updater and skipped by 'Update All'.", "context": "Ignored packages are hidden from the updater and skipped by 'Update All'.", "reference": "Modules/Settings/SystemUpdaterTab.qml:217", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.", "context": "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.", "reference": "Modules/Settings/SystemUpdaterTab.qml:215", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Image", "context": "Image", "reference": "Modals/DankLauncherV2/Controller.qml:1271, Modals/Clipboard/ClipboardEntry.qml:195, Modals/Clipboard/ClipboardContent.qml:16", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Image Viewer", "context": "Image Viewer", - "reference": "Modules/Settings/DefaultAppsTab.qml:341", - "comment": "Image Viewer" + "reference": "Modules/Settings/DefaultAppsTab.qml:339", + "comment": "Image Viewer", + "tags": [ + "settings" + ] }, { "term": "Image copied to clipboard", "context": "Image copied to clipboard", "reference": "Services/ClipboardService.qml:212", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Import", "context": "Import", "reference": "Widgets/VpnDetailContent.qml:89, Modules/Settings/NetworkVpnTab.qml:135", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Import VPN", "context": "Import VPN", "reference": "Widgets/VpnDetailContent.qml:28, Modules/Settings/NetworkVpnTab.qml:60", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Inactive Monitor Color", "context": "Inactive Monitor Color", - "reference": "Modules/Settings/LockScreenTab.qml:633, Modules/Settings/LockScreenTab.qml:664", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:759, Modules/Settings/LockScreenTab.qml:790", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Include AUR updates", "context": "Include AUR updates", "reference": "Modules/Settings/SystemUpdaterTab.qml:175", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Include Files in All Tab", "context": "Include Files in All Tab", - "reference": "Modules/Settings/LauncherTab.qml:1174", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1173", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Include Flatpak updates", "context": "Include Flatpak updates", "reference": "Modules/Settings/SystemUpdaterTab.qml:167", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Include Folders in All Tab", "context": "Include Folders in All Tab", - "reference": "Modules/Settings/LauncherTab.qml:1183", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1182", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Include Transitions", "context": "Include Transitions", - "reference": "Modules/Settings/WallpaperTab.qml:1188", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1187", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Include desktop actions (shortcuts) in search results.", "context": "Include desktop actions (shortcuts) in search results.", - "reference": "Modules/Settings/LauncherTab.qml:1148", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1147", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Incompatible Plugins Loaded", "context": "Incompatible Plugins Loaded", - "reference": "Modules/Settings/PluginsTab.qml:195", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:196", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Incorrect password", "context": "Incorrect password", "reference": "Modals/WifiPasswordModal.qml:363", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Incorrect password - try again", "context": "Incorrect password - try again", "reference": "Modules/Lock/LockScreenContent.qml:81", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Index Centering", "context": "Index Centering", "reference": "Modules/Settings/WidgetsTabSection.qml:229", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Indicator Style", "context": "Indicator Style", "reference": "Modules/Settings/DockTab.qml:190", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Individual Batteries", "context": "Individual Batteries", "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:357", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Individual bar configuration", "context": "Individual bar configuration", "reference": "Modules/Settings/DisplayWidgetsTab.qml:19", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Info", "context": "Info", "reference": "Modals/Greeter/GreeterDoctorPage.qml:262", - "comment": "greeter doctor page status card" + "comment": "greeter doctor page status card", + "tags": [ + "shell" + ] }, { "term": "Inherit", "context": "Inherit", "reference": "Modals/WindowRuleModal.qml:1264, Modals/WindowRuleModal.qml:1273, 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": "" + "comment": "inherit from global setting", + "tags": [ + "settings", + "shell" + ] }, { "term": "Inherit Global (Default)", "context": "Inherit Global (Default)", - "reference": "Modules/Settings/DankBarTab.qml:1687, Modules/Settings/DankBarTab.qml:1695", - "comment": "bar shadow direction source option" + "reference": "Modules/Settings/DankBarTab.qml:1682, Modules/Settings/DankBarTab.qml:1690", + "comment": "bar shadow direction source option", + "tags": [ + "settings" + ] }, { "term": "Inhibitable", "context": "Inhibitable", "reference": "Widgets/KeybindItem.qml:1813", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:1332", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Initialised", "context": "Initialised", "reference": "Modals/WindowRuleModal.qml:937, Modules/Settings/WindowRulesTab.qml:57", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Inner Gaps", "context": "Inner Gaps", - "reference": "Modules/Settings/CompositorLayoutTab.qml:437, Modules/Settings/CompositorLayoutTab.qml:589", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:437, Modules/Settings/CompositorLayoutTab.qml:588", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Inner padding applied to each widget", "context": "Inner padding applied to each widget", - "reference": "Modules/Settings/DankBarTab.qml:961", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:959", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Input Devices", "context": "Input Devices", "reference": "Modules/Settings/AudioTab.qml:319, Modules/ControlCenter/Details/AudioInputDetail.qml:37", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Input Volume Slider", "context": "Input Volume Slider", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:213", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Insert your security key...", "context": "Insert your security key...", "reference": "Modules/Lock/LockScreenContent.qml:71", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Inset the Notepad from screen edges using the compositor's configured gaps", "context": "Inset the Notepad from screen edges using the compositor's configured gaps", "reference": "Modules/Notepad/NotepadSettings.qml:450", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Install", "context": "Install", "reference": "Modules/Settings/PluginBrowser.qml:571, Modules/Settings/PluginBrowser.qml:1506, Modules/Settings/GreeterTab.qml:88, Modules/Settings/GreeterTab.qml:134, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:627", - "comment": "install action button" + "comment": "install action button", + "tags": [ + "settings" + ] }, { "term": "Install Greeter", "context": "Install Greeter", "reference": "Modules/Settings/GreeterTab.qml:132", - "comment": "greeter action confirmation" + "comment": "greeter action confirmation", + "tags": [ + "settings" + ] }, { "term": "Install Plugin", "context": "Install Plugin", "reference": "Modules/Settings/PluginBrowser.qml:569", - "comment": "plugin installation dialog title" + "comment": "plugin installation dialog title", + "tags": [ + "settings" + ] }, { "term": "Install Theme", "context": "Install Theme", "reference": "Modules/Settings/ThemeBrowser.qml:119", - "comment": "theme installation dialog title" + "comment": "theme installation dialog title", + "tags": [ + "settings" + ] }, { "term": "Install color themes from the DMS theme registry", "context": "Install color themes from the DMS theme registry", "reference": "Modules/Settings/ThemeBrowser.qml:291", - "comment": "theme browser description" + "comment": "theme browser description", + "tags": [ + "settings" + ] }, { "term": "Install complete. Greeter has been installed.", "context": "Install complete. Greeter has been installed.", "reference": "Modules/Settings/GreeterTab.qml:332", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Install dsearch to search files.", "context": "Install dsearch to search files.", "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:179", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Install failed: %1", "context": "Install failed: %1", "reference": "Modules/Settings/PluginBrowser.qml:535, Modules/Settings/ThemeBrowser.qml:69", - "comment": "installation error" + "comment": "installation error", + "tags": [ + "settings" + ] }, { "term": "Install matugen package for dynamic theming", "context": "Install matugen package for dynamic theming", "reference": "Modules/Settings/ThemeColorsTab.qml:591", - "comment": "matugen installation hint" + "comment": "matugen installation hint", + "tags": [ + "settings" + ] }, { "term": "Install plugin '%1' from the DMS registry?", "context": "Install plugin '%1' from the DMS registry?", "reference": "Modules/Settings/PluginBrowser.qml:570", - "comment": "plugin installation confirmation" + "comment": "plugin installation confirmation", + "tags": [ + "settings" + ] }, { "term": "Install plugins from the DMS plugin registry", "context": "Install plugins from the DMS plugin registry", "reference": "Modules/Settings/PluginBrowser.qml:770", - "comment": "plugin browser description" + "comment": "plugin browser description", + "tags": [ + "settings" + ] }, { "term": "Install the DMS greeter? A terminal will open for sudo authentication.", "context": "Install the DMS greeter? A terminal will open for sudo authentication.", "reference": "Modules/Settings/GreeterTab.qml:133", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Install theme '%1' from the DMS registry?", "context": "Install theme '%1' from the DMS registry?", "reference": "Modules/Settings/ThemeBrowser.qml:120", - "comment": "theme installation confirmation" + "comment": "theme installation confirmation", + "tags": [ + "settings" + ] }, { "term": "Installation and PAM setup: see the ", "context": "Installation and PAM setup: see the ", "reference": "Modules/Settings/GreeterTab.qml:661", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Installed", "context": "Installed", "reference": "Modules/Settings/PluginBrowser.qml:1502, Modules/Settings/ThemeBrowser.qml:630", - "comment": "installed status" + "comment": "installed status", + "tags": [ + "settings" + ] }, { "term": "Installed first", "context": "Installed first", "reference": "Modules/Settings/PluginBrowser.qml:46", - "comment": "plugin browser filter chip" + "comment": "plugin browser filter chip", + "tags": [ + "settings" + ] }, { "term": "Installed: %1", "context": "Installed: %1", "reference": "Modules/Settings/PluginBrowser.qml:538, Modules/Settings/ThemeBrowser.qml:72", - "comment": "installation success" + "comment": "installation success", + "tags": [ + "settings" + ] }, { "term": "Installing: %1", "context": "Installing: %1", "reference": "Modules/Settings/PluginBrowser.qml:532, Modules/Settings/ThemeBrowser.qml:66", - "comment": "installation progress" + "comment": "installation progress", + "tags": [ + "settings" + ] }, { "term": "Integrations", "context": "Integrations", "reference": "Modules/Settings/FrameTab.qml:374", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Intelligent Auto-hide", "context": "Intelligent Auto-hide", "reference": "Modules/Settings/DockTab.qml:70", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Intensity", "context": "Intensity", - "reference": "Modules/Settings/DankBarTab.qml:1655", - "comment": "shadow intensity slider" + "reference": "Modules/Settings/DankBarTab.qml:1651", + "comment": "shadow intensity slider", + "tags": [ + "settings" + ] }, { "term": "Interface:", "context": "Interface:", "reference": "Modules/Settings/NetworkWifiTab.qml:281", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Interlock Open", "context": "Interlock Open", "reference": "Services/CupsService.qml:809", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Internet", "context": "Internet", "reference": "Services/AppSearchService.qml:676, Services/AppSearchService.qml:677, Services/AppSearchService.qml:678, Modules/Settings/DefaultAppsTab.qml:270", - "comment": "Internet" + "comment": "Internet", + "tags": [ + "settings", + "shell" + ] }, { "term": "Interval", "context": "Interval", - "reference": "Modules/Settings/WallpaperTab.qml:943, Modules/Settings/WallpaperTab.qml:996", - "comment": "wallpaper cycling mode tab" + "reference": "Modules/Settings/WallpaperTab.qml:942, Modules/Settings/WallpaperTab.qml:995", + "comment": "wallpaper cycling mode tab", + "tags": [ + "settings" + ] }, { "term": "Invalid JSON format: %1", "context": "Invalid JSON format: %1", "reference": "Common/Theme.qml:2181", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Invalid configuration", "context": "Invalid configuration", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2154", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Invalid package name — letters, digits and @._+:- only.", "context": "Invalid package name — letters, digits and @._+:- only.", "reference": "Modules/Settings/SystemUpdaterTab.qml:254", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Invalid password for %1", "context": "Invalid password for %1", "reference": "Services/LegacyNetworkService.qml:316", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Invalid username", "context": "Invalid username", "reference": "Services/UsersService.qml:127", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Invert on mode change", "context": "Invert on mode change", - "reference": "Modules/Settings/LauncherTab.qml:547", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:546", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Invert touchpad scroll direction", "context": "Invert touchpad scroll direction", - "reference": "Modules/Settings/ThemeColorsTab.qml:2284", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2282", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Iris Bloom", "context": "Iris Bloom", - "reference": "Modules/Settings/WallpaperTab.qml:1158", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1157", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Isolate Displays", "context": "Isolate Displays", "reference": "Modules/Settings/DockTab.qml:162", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Jobs", "context": "Jobs", - "reference": "Modules/Settings/PrinterTab.qml:1352, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:183", - "comment": "" - }, - { - "term": "Jobs: ", - "context": "Jobs: ", - "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:19", - "comment": "" + "reference": "Modules/Settings/PrinterTab.qml:1352, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:19, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:183", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Join video call", "context": "Join video call", "reference": "Modules/DankDash/Overview/CalendarEventDetail.qml:285", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Jump to page", "context": "Jump to page", "reference": "Modules/DankDash/WallpaperTab.qml:673", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Jump to page (1 - %1)", "context": "Jump to page (1 - %1)", "reference": "Modules/DankDash/WallpaperTab.qml:835", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keep Awake", "context": "Keep Awake", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:753", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keep Changes", "context": "Keep Changes", "reference": "Modals/DisplayConfirmationModal.qml:169", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keep My Edits", "context": "Keep My Edits", "reference": "Modules/Notepad/Notepad.qml:376", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keep in Bar", "context": "Keep in Bar", - "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1878", - "comment": "" + "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1888", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keep the clipboard type filter when reopening history", "context": "Keep the clipboard type filter when reopening history", - "reference": "Modules/Settings/ClipboardTab.qml:482", - "comment": "Clipboard behavior setting description" + "reference": "Modules/Settings/ClipboardTab.qml:481", + "comment": "Clipboard behavior setting description", + "tags": [ + "settings" + ] }, { "term": "Keep typing", "context": "Keep typing", "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:163", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keeping Awake", "context": "Keeping Awake", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:753", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Kernel", "context": "Kernel", "reference": "Modules/ProcessList/SystemView.qml:68", - "comment": "system info label" + "comment": "system info label", + "tags": [ + "shell" + ] }, { "term": "Key", "context": "Key", "reference": "Widgets/KeybindItem.qml:626", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Keybind Sources", "context": "Keybind Sources", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:144", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Keybinds", "context": "Keybinds", "reference": "Modals/KeybindsModalWindow.qml:29, Modals/KeybindsModalWindow.qml:84, Modals/KeybindsContent.qml:72, Modals/Greeter/GreeterCompletePage.qml:413", - "comment": "greeter settings link" + "comment": "greeter settings link", + "tags": [ + "shell" + ] }, { "term": "Keybinds Search Settings", "context": "Keybinds Search Settings", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:70", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Keybinds shown alongside regular search results", "context": "Keybinds shown alongside regular search results", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", "reference": "Modules/Settings/WidgetsTab.qml:244", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Keyboard Shortcuts", "context": "Keyboard Shortcuts", "reference": "Modals/Settings/SettingsSidebar.qml:212, Modals/Settings/SettingsSidebar.qml:658, Modals/Clipboard/ClipboardHeader.qml:62, Modules/Notepad/NotepadSettings.qml:526, Modules/Settings/KeybindsTab.qml:289", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Keys", "context": "Keys", "reference": "Widgets/KeybindItem.qml:539", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Kill", "context": "Kill", "reference": "Modals/MuxModal.qml:95, Modals/MuxModal.qml:587", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Kill Process", "context": "Kill Process", "reference": "Modules/ProcessList/ProcessContextMenu.qml:55", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Kill Session", "context": "Kill Session", "reference": "Modals/MuxModal.qml:93", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ko-fi", "context": "Ko-fi", "reference": "Modules/Settings/AboutTab.qml:322, Modules/Settings/AboutTab.qml:330", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "LED device", "context": "LED device", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:378", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "LabWC IRC Channel", "context": "LabWC IRC Channel", "reference": "Modules/Settings/AboutTab.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "LabWC Website", "context": "LabWC Website", "reference": "Modules/Settings/AboutTab.qml:81", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Large", "context": "Large", "reference": "Modules/Settings/WidgetsTabSection.qml:2004, Modules/Settings/WidgetsTabSection.qml:3558", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Largest", "context": "Largest", "reference": "Modules/Settings/WidgetsTabSection.qml:2009, Modules/Settings/WidgetsTabSection.qml:3563", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last hour", "context": "Last hour", "reference": "Modules/Notifications/Center/HistoryNotificationList.qml:92", - "comment": "notification history filter" + "comment": "notification history filter", + "tags": [ + "shell" + ] }, { "term": "Last launched %1", "context": "Last launched %1", - "reference": "Modules/Settings/LauncherTab.qml:1551", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1550", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched %1 day ago", "context": "Last launched %1 day ago", - "reference": "Modules/Settings/LauncherTab.qml:1550", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1549", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched %1 days ago", "context": "Last launched %1 days ago", - "reference": "Modules/Settings/LauncherTab.qml:1550", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1549", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched %1 hour ago", "context": "Last launched %1 hour ago", - "reference": "Modules/Settings/LauncherTab.qml:1548", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1547", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched %1 hours ago", "context": "Last launched %1 hours ago", - "reference": "Modules/Settings/LauncherTab.qml:1548", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1547", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched %1 minute ago", "context": "Last launched %1 minute ago", - "reference": "Modules/Settings/LauncherTab.qml:1546", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1545", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched %1 minutes ago", "context": "Last launched %1 minutes ago", - "reference": "Modules/Settings/LauncherTab.qml:1546", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1545", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Last launched just now", "context": "Last launched just now", - "reference": "Modules/Settings/LauncherTab.qml:1544", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1543", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Latitude", "context": "Latitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1394, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:553", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1394, Modules/Settings/GammaControlTab.qml:378, Modules/Settings/TimeWeatherTab.qml:551", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Launch", "context": "Launch", "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:230, Modals/DankLauncherV2/Controller.qml:1241, Modals/DankLauncherV2/Controller.qml:1703, Modules/DankDash/Overview/CalendarOverviewCard.qml:264", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Launch Prefix", "context": "Launch Prefix", - "reference": "Modules/Settings/LauncherTab.qml:558", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:557", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Launch on dGPU", "context": "Launch on dGPU", "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:222, Modals/DankLauncherV2/ActionPanel.qml:61, Modules/Dock/DockContextMenu.qml:298, Modules/DankBar/Widgets/AppsDockContextMenu.qml:416", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Launcher", "context": "Launcher", "reference": "Modals/Settings/SettingsSidebar.qml:204", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Launcher Button", "context": "Launcher Button", - "reference": "Modules/Settings/DockTab.qml:240", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:239", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Launcher Button Logo", "context": "Launcher Button Logo", - "reference": "Modules/Settings/LauncherTab.qml:279", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:278", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Launcher Emerge Side", "context": "Launcher Emerge Side", "reference": "Modules/Settings/FrameTab.qml:341", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Layer Outline Opacity", "context": "Layer Outline Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1824", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1823", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Layout", "context": "Layout", - "reference": "Modules/Settings/WidgetsTab.qml:55, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2092, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:169", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:269, Modules/Settings/WidgetsTab.qml:55, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2092, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:169", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Layout Overrides", "context": "Layout Overrides", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:203", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Left", "context": "Left", "reference": "Modules/Notepad/NotepadSettings.qml:434, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:346, Modules/Settings/DankBarTab.qml:493, Modules/DankBar/Popouts/BatteryPopout.qml:519", - "comment": "" + "comment": "screen edge position", + "tags": [ + "settings", + "shell" + ] }, { "term": "Left Center", "context": "Left Center", "reference": "Modules/Settings/OSDTab.qml:47, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:68", - "comment": "screen position option" + "comment": "screen position option", + "tags": [ + "settings" + ] }, { "term": "Left Section", "context": "Left Section", "reference": "Modules/Settings/WidgetSelectionPopup.qml:28, Modules/Settings/WidgetsTab.qml:1322", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Light", "context": "Light", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:262, Modules/Settings/TypographyMotionTab.qml:288", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Light Direction", "context": "Light Direction", - "reference": "Modules/Settings/ThemeColorsTab.qml:2005", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2003", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Light Mode", "context": "Light Mode", "reference": "Modules/Settings/ThemeColorsTab.qml:1522, Modules/Settings/ThemeColorsTab.qml:1592, Modules/Settings/WallpaperTab.qml:401", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Light Mode Icon Theme", "context": "Light Mode Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2433", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2431", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Light Rain", "context": "Light Rain", "reference": "Services/WeatherService.qml:135, Services/WeatherService.qml:138, Services/WeatherService.qml:144", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Light Snow", "context": "Light Snow", "reference": "Services/WeatherService.qml:140", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Light Snow Showers", "context": "Light Snow Showers", "reference": "Services/WeatherService.qml:147", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Light mode base", "context": "Light mode base", - "reference": "Modules/Settings/ThemeColorsTab.qml:2693", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2691", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Light mode harmony", "context": "Light mode harmony", - "reference": "Modules/Settings/ThemeColorsTab.qml:2727", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2725", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Limit set to %1%", "context": "Limit set to %1%", "reference": "Modules/Settings/BatteryTab.qml:29", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Limit the maximum battery charge level to extend lifespan.", "context": "Limit the maximum battery charge level to extend lifespan.", - "reference": "Modules/Settings/BatteryTab.qml:176", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:178", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Line", "context": "Line", "reference": "Modules/Settings/DockTab.qml:191", - "comment": "dock indicator style option" + "comment": "dock indicator style option", + "tags": [ + "settings" + ] }, { "term": "Line: %1", "context": "Line: %1", "reference": "Modules/Notepad/NotepadTextEditor.qml:1012", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Linear", "context": "Linear", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:515", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Lines: %1", "context": "Lines: %1", "reference": "Modules/Notepad/NotepadTextEditor.qml:1012", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "List", "context": "List", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:357, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:367", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Lively palette with saturated accents.", "context": "Lively palette with saturated accents.", "reference": "Common/Theme.qml:490", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Load Average", "context": "Load Average", "reference": "Modules/ProcessList/SystemView.qml:84", - "comment": "system info label" + "comment": "system info label", + "tags": [ + "shell" + ] }, { "term": "Loading codecs...", "context": "Loading codecs...", "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:240", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Loading keybinds...", "context": "Loading keybinds...", "reference": "Modules/Settings/KeybindsTab.qml:630", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Loading trending...", "context": "Loading trending...", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Loading...", "context": "Loading...", "reference": "Modules/Settings/PrinterTab.qml:720", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Local", "context": "Local", "reference": "Services/CupsService.qml:133", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Local Weather", "context": "Local Weather", "reference": "Services/WeatherService.qml:470, Services/WeatherService.qml:554", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Locale", "context": "Locale", "reference": "Modals/Settings/SettingsSidebar.qml:324", - "comment": "" - }, - { - "term": "Locale Settings", - "context": "Locale Settings", - "reference": "Modules/Settings/LocaleTab.qml:48", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Location", "context": "Location", - "reference": "Modules/Settings/ThemeColorsTab.qml:1205, Modules/Settings/GammaControlTab.qml:188, Modules/Settings/PrinterTab.qml:788, Modules/Settings/PrinterTab.qml:1177, Modules/DankDash/Overview/CalendarEventEditor.qml:300", - "comment": "theme auto mode tab" + "reference": "Modules/Settings/ThemeColorsTab.qml:1205, Modules/Settings/GammaControlTab.qml:187, Modules/Settings/PrinterTab.qml:788, Modules/Settings/PrinterTab.qml:1177, Modules/DankDash/Overview/CalendarEventEditor.qml:300", + "comment": "theme auto mode tab", + "tags": [ + "settings", + "shell" + ] }, { "term": "Location Search", "context": "Location Search", - "reference": "Modules/Settings/TimeWeatherTab.qml:655", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:653", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Lock", "context": "Lock", "reference": "Modals/PowerMenuModal.qml:211, Modules/Settings/PowerSleepTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Lock Screen", "context": "Lock Screen", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:156, Modals/Settings/SettingsSidebar.qml:377, Modules/Settings/NotificationsTab.qml:766", - "comment": "greeter feature card title | lock screen notifications settings card" - }, - { - "term": "Lock Screen Appearance", - "context": "Lock Screen Appearance", - "reference": "Modules/Settings/LockScreenTab.qml:278", - "comment": "" - }, - { - "term": "Lock Screen Display", - "context": "Lock Screen Display", - "reference": "Modules/Settings/LockScreenTab.qml:597", - "comment": "" + "reference": "Modals/Greeter/GreeterWelcomePage.qml:156, Modals/Settings/SettingsSidebar.qml:377, Modules/Settings/NotificationsTab.qml:764", + "comment": "greeter feature card title | lock screen notifications settings card", + "tags": [ + "settings", + "shell" + ] }, { "term": "Lock Screen Format", "context": "Lock Screen Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:267", - "comment": "" - }, - { - "term": "Lock Screen behaviour", - "context": "Lock Screen behaviour", - "reference": "Modules/Settings/LockScreenTab.qml:411", - "comment": "" - }, - { - "term": "Lock Screen layout", - "context": "Lock Screen layout", - "reference": "Modules/Settings/LockScreenTab.qml:199", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:265", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Lock at startup", "context": "Lock at startup", - "reference": "Modules/Settings/LockScreenTab.qml:459", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:632", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Lock before suspend", "context": "Lock before suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:92, Modules/Settings/LockScreenTab.qml:440", - "comment": "" + "reference": "Modules/Settings/PowerSleepTab.qml:92, Modules/Settings/LockScreenTab.qml:613", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Lock fade grace period", "context": "Lock fade grace period", "reference": "Modules/Settings/PowerSleepTab.qml:106", - "comment": "" - }, - { - "term": "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.", - "context": "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.", - "reference": "Modules/Settings/LockScreenTab.qml:466", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Lock screen font", "context": "Lock screen font", - "reference": "Modules/Settings/LockScreenTab.qml:292", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:362", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Locked", "context": "Locked", "reference": "Widgets/KeybindItem.qml:1641", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Log Out", "context": "Log Out", "reference": "Modals/PowerMenuModal.qml:199, Modals/SwitchUserModal.qml:253, Modules/Lock/LockPowerMenu.qml:112, Modules/Settings/PowerSleepTab.qml:403, Modules/Settings/PowerSleepTab.qml:409", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Logging in...", "context": "Logging in...", "reference": "Modules/Greetd/GreeterContent.qml:1246", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Login", "context": "Login", - "reference": "Modules/Settings/SoundsTab.qml:135", - "comment": "" - }, - { - "term": "Login Authentication", - "context": "Login Authentication", - "reference": "Modules/Settings/GreeterTab.qml:473", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:133", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Long", "context": "Long", - "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/NotificationsTab.qml:382", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:675, Modules/Settings/NotificationsTab.qml:380", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Long Text", "context": "Long Text", "reference": "Modals/Clipboard/ClipboardEntry.qml:197, Modals/Clipboard/ClipboardContent.qml:16", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Long press", "context": "Long press", "reference": "Widgets/KeybindItem.qml:1685", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Longitude", "context": "Longitude", - "reference": "Modules/Settings/ThemeColorsTab.qml:1417, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:603", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1417, Modules/Settings/GammaControlTab.qml:401, Modules/Settings/TimeWeatherTab.qml:601", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Low", "context": "Low", "reference": "Modules/Settings/TypographyMotionTab.qml:458", - "comment": "" + "comment": "quality level option", + "tags": [ + "settings" + ] }, { "term": "Low Battery", "context": "Low Battery", "reference": "Services/BatteryService.qml:167", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Low Battery Notifications", "context": "Low Battery Notifications", - "reference": "Modules/Settings/BatteryTab.qml:249", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:252", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Low Battery Threshold", "context": "Low Battery Threshold", - "reference": "Modules/Settings/BatteryTab.qml:238", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:241", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Low Priority", "context": "Low Priority", - "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:796, Modules/Settings/NotificationsTab.qml:919, Modules/Notifications/Center/NotificationSettings.qml:184, Modules/Notifications/Center/NotificationSettings.qml:371", - "comment": "notification rule urgency option" + "reference": "Modules/Settings/NotificationsTab.qml:146, Modules/Settings/NotificationsTab.qml:794, Modules/Settings/NotificationsTab.qml:914, Modules/Notifications/Center/NotificationSettings.qml:184, Modules/Notifications/Center/NotificationSettings.qml:368", + "comment": "notification rule urgency option", + "tags": [ + "settings", + "shell" + ] }, { "term": "MAC", "context": "MAC", "reference": "Modules/Settings/NetworkEthernetTab.qml:307", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "MTU", "context": "MTU", "reference": "Widgets/VpnProfileDelegate.qml:74, Modules/Settings/NetworkVpnTab.qml:445", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Mail", "context": "Mail", "reference": "Modules/Settings/DefaultAppsTab.qml:281", - "comment": "Mail" + "comment": "Mail", + "tags": [ + "settings" + ] }, { "term": "Make admin", "context": "Make admin", - "reference": "Modules/Settings/UsersTab.qml:286", - "comment": "" + "reference": "Modules/Settings/UsersTab.qml:286, Modules/Settings/UsersTab.qml:293", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Make sure KDE Connect or Valent is running on your other devices", "context": "Make sure KDE Connect or Valent is running on your other devices", "reference": "dms-plugins/DankKDEConnect/components/EmptyState.qml:18", - "comment": "Phone Connect hint message" + "comment": "Phone Connect hint message", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Make the bar background fully transparent", "context": "Make the bar background fully transparent", - "reference": "Modules/Settings/DankBarTab.qml:1168", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1166", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Manage and configure plugins for extending DMS functionality", "context": "Manage and configure plugins for extending DMS functionality", - "reference": "Modules/Settings/PluginsTab.qml:107", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:108", + "comment": "", + "tags": [ + "settings" + ] }, { "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:278", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Managed by Frame", "context": "Managed by Frame", - "reference": "Modules/Settings/DankBarTab.qml:870, Modules/Settings/DankBarTab.qml:1153", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:868, Modules/Settings/DankBarTab.qml:1151", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Managed by Frame in Connected Mode", "context": "Managed by Frame in Connected Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1852, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1609", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1851, Modules/Settings/DockTab.qml:646, Modules/Settings/DankBarTab.qml:1605", + "comment": "", + "tags": [ + "settings" + ] + }, + { + "term": "Managed by the primary PAM source.", + "context": "Managed by the primary PAM source.", + "reference": "Modules/Settings/GreeterTab.qml:22, Modules/Settings/GreeterTab.qml:42, Modules/Settings/LockScreenTab.qml:487, Modules/Settings/LockScreenTab.qml:498", + "comment": "factor managed by PAM source status", + "tags": [ + "settings" + ] }, { "term": "Management", "context": "Management", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:86", - "comment": "" - }, - { - "term": "Manages calendar events", - "context": "Manages calendar events", - "reference": "Modules/Settings/DefaultAppsTab.qml:315", - "comment": "Manages calendar events" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Manages files and directories", "context": "Manages files and directories", "reference": "Modules/Settings/DefaultAppsTab.qml:303", - "comment": "Manages files and directories" + "comment": "Manages files and directories", + "tags": [ + "settings" + ] }, { "term": "Mango Options", "context": "Mango Options", "reference": "Modals/WindowRuleModal.qml:1765", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Mango service not available", "context": "Mango service not available", "reference": "Modules/Settings/WidgetsTab.qml:59", - "comment": "" - }, - { - "term": "MangoWC Layout Overrides", - "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/CompositorLayoutTab.qml:554", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Manual", "context": "Manual", - "reference": "Modules/Settings/DankBarTab.qml:1687, Modules/Settings/DankBarTab.qml:1693, Modules/Settings/DankBarTab.qml:1703", - "comment": "bar shadow direction source option" + "reference": "Modules/Settings/DankBarTab.qml:1682, Modules/Settings/DankBarTab.qml:1688, Modules/Settings/DankBarTab.qml:1698", + "comment": "bar shadow direction source option", + "tags": [ + "settings" + ] }, { "term": "Manual Coordinates", "context": "Manual Coordinates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1379, Modules/Settings/GammaControlTab.qml:367", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1379, Modules/Settings/GammaControlTab.qml:366", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Manual Direction", "context": "Manual Direction", - "reference": "Modules/Settings/DankBarTab.qml:1718", - "comment": "bar manual shadow direction" + "reference": "Modules/Settings/DankBarTab.qml:1713", + "comment": "bar manual shadow direction", + "tags": [ + "settings" + ] }, { "term": "Manual Gap Size", "context": "Manual Gap Size", - "reference": "Modules/Settings/DankBarTab.qml:1064", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1062", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Manual Gaps", "context": "Manual Gaps", "reference": "Modules/Notepad/NotepadSettings.qml:459", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Manual Show/Hide", "context": "Manual Show/Hide", "reference": "Modules/Settings/DankBarTab.qml:737", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Manual config", "context": "Manual config", "reference": "Modules/Settings/LauncherTab.qml:32", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Map window class names to icon names for proper icon display", "context": "Map window class names to icon names for proper icon display", "reference": "Modules/Settings/RunningAppsTab.qml:54", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maps", "context": "Maps", "reference": "Modules/Settings/DefaultAppsTab.qml:288", - "comment": "Maps" + "comment": "Maps", + "tags": [ + "settings" + ] }, { "term": "Margin", "context": "Margin", - "reference": "Modules/Settings/DockTab.qml:632", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:631", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Marker Supply Empty", "context": "Marker Supply Empty", "reference": "Services/CupsService.qml:794", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Marker Supply Low", "context": "Marker Supply Low", "reference": "Services/CupsService.qml:793", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Marker Waste Almost Full", "context": "Marker Waste Almost Full", "reference": "Services/CupsService.qml:795", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Marker Waste Full", "context": "Marker Waste Full", "reference": "Services/CupsService.qml:796", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Match (%1)", "context": "Match (%1)", "reference": "Modules/Settings/WindowRulesTab.qml:1029", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Match Conditions", "context": "Match Conditions", "reference": "Modals/WindowRuleModal.qml:868", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Match Criteria", "context": "Match Criteria", "reference": "Modals/WindowRuleModal.qml:716", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Material", "context": "Material", "reference": "Modules/Settings/TypographyMotionTab.qml:76", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Material Battery Style", "context": "Material Battery Style", "reference": "Modules/Settings/WidgetsTabSection.qml:3413", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Material Colors", "context": "Material Colors", "reference": "Modals/DankColorPickerModal.qml:412", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Material Design inspired color themes", "context": "Material Design inspired color themes", "reference": "Modules/Settings/ThemeColorsTab.qml:366", - "comment": "generic theme description" + "comment": "generic theme description", + "tags": [ + "settings" + ] }, { "term": "Material colors generated from wallpaper", "context": "Material colors generated from wallpaper", "reference": "Modules/Settings/ThemeColorsTab.qml:361", - "comment": "dynamic theme description" + "comment": "dynamic theme description", + "tags": [ + "settings" + ] }, { "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", "context": "Material inspired shadows and elevation on modals, popouts, and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1921", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1920", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Material: Material Design 3 Expressive bezier curves. The DMS default feel.", "context": "Material: Material Design 3 Expressive bezier curves. The DMS default feel.", "reference": "Modules/Settings/TypographyMotionTab.qml:120", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Matugen Contrast", "context": "Matugen Contrast", "reference": "Modules/Settings/ThemeColorsTab.qml:644", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Matugen Missing", "context": "Matugen Missing", "reference": "Modules/Settings/ThemeColorsTab.qml:574", - "comment": "matugen not found status" + "comment": "matugen not found status", + "tags": [ + "settings" + ] }, { "term": "Matugen Palette", "context": "Matugen Palette", "reference": "Modules/Settings/ThemeColorsTab.qml:610", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Matugen Target Monitor", "context": "Matugen Target Monitor", - "reference": "Modules/Settings/WallpaperTab.qml:841", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:840", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2451", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2449", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max Edges", "context": "Max Edges", "reference": "Modules/Settings/WindowRulesTab.qml:97", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max H", "context": "Max H", "reference": "Modals/WindowRuleModal.qml:1515, Modules/Settings/WindowRulesTab.qml:114", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Max Pinned Apps", "context": "Max Pinned Apps", "reference": "Modules/Settings/WidgetsTabSection.qml:3986", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max Pinned Apps (0 = Unlimited)", "context": "Max Pinned Apps (0 = Unlimited)", "reference": "Modules/Settings/DockTab.qml:206", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max Running Apps", "context": "Max Running Apps", "reference": "Modules/Settings/WidgetsTabSection.qml:4042", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max Running Apps (0 = Unlimited)", "context": "Max Running Apps (0 = Unlimited)", "reference": "Modules/Settings/DockTab.qml:218", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max Visible", "context": "Max Visible", "reference": "Modules/Settings/WidgetsTabSection.qml:1686", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max Volume", "context": "Max Volume", "reference": "Modules/Settings/AudioTab.qml:187", - "comment": "Audio settings: maximum volume limit per device" + "comment": "Audio settings: maximum volume limit per device", + "tags": [ + "settings" + ] }, { "term": "Max W", "context": "Max W", "reference": "Modals/WindowRuleModal.qml:1461, Modules/Settings/WindowRulesTab.qml:112", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Max apps to show", "context": "Max apps to show", "reference": "Modules/Settings/WorkspacesTab.qml:81", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Max to Edges", "context": "Max to Edges", "reference": "Modals/WindowRuleModal.qml:965", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Maximize", "context": "Maximize", "reference": "Modals/WindowRuleModal.qml:956, Modules/Settings/WindowRulesTab.qml:96", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Maximize Detection", "context": "Maximize Detection", - "reference": "Modules/Settings/DankBarTab.qml:1306", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1304", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximize Widget Icons", "context": "Maximize Widget Icons", - "reference": "Modules/Settings/DankBarTab.qml:1177", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1175", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximize Widget Text", "context": "Maximize Widget Text", - "reference": "Modules/Settings/DankBarTab.qml:1186", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1184", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximum Entry Size", "context": "Maximum Entry Size", "reference": "Modules/Settings/ClipboardTab.qml:343", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximum History", "context": "Maximum History", - "reference": "Modules/Settings/NotificationsTab.qml:863, Modules/Settings/ClipboardTab.qml:313", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:858, Modules/Settings/ClipboardTab.qml:313", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximum Pinned Entries", "context": "Maximum Pinned Entries", - "reference": "Modules/Settings/ClipboardTab.qml:403", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:402", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximum fingerprint attempts reached. Please use password.", "context": "Maximum fingerprint attempts reached. Please use password.", "reference": "Modules/Lock/LockScreenContent.qml:85", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Maximum number of clipboard entries to keep", "context": "Maximum number of clipboard entries to keep", "reference": "Modules/Settings/ClipboardTab.qml:314", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximum number of entries that can be saved", "context": "Maximum number of entries that can be saved", - "reference": "Modules/Settings/ClipboardTab.qml:404", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:403", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Maximum number of notifications to keep", "context": "Maximum number of notifications to keep", - "reference": "Modules/Settings/NotificationsTab.qml:864", - "comment": "notification history limit" + "reference": "Modules/Settings/NotificationsTab.qml:859", + "comment": "notification history limit", + "tags": [ + "settings" + ] }, { "term": "Maximum pinned entries reached", "context": "Maximum pinned entries reached", "reference": "Services/ClipboardService.qml:304", - "comment": "" - }, - { - "term": "Maximum size per clipboard entry", - "context": "Maximum size per clipboard entry", - "reference": "Modules/Settings/ClipboardTab.qml:344", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Media", "context": "Media", "reference": "Services/AppSearchService.qml:666, Services/AppSearchService.qml:667, Services/AppSearchService.qml:668, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1127, Widgets/KeybindItem.qml:1136, Widgets/KeybindItem.qml:1142, Modules/DankDash/DankDashPopout.qml:22, Modules/Settings/DankDashTab.qml:27", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Media Controls", "context": "Media Controls", "reference": "Modules/Settings/WidgetsTab.qml:112", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Media Empty", "context": "Media Empty", "reference": "Services/CupsService.qml:801", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Media Jam", "context": "Media Jam", "reference": "Services/CupsService.qml:803", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Media Low", "context": "Media Low", "reference": "Services/CupsService.qml:800", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Media Needed", "context": "Media Needed", "reference": "Services/CupsService.qml:802", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Media Playback", "context": "Media Playback", - "reference": "Modules/Settings/OSDTab.qml:109", - "comment": "" + "reference": "Modules/Settings/OSDTab.qml:107", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Media Player", "context": "Media Player", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1766, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, Modals/Settings/SettingsSidebar.qml:166", - "comment": "" - }, - { - "term": "Media Player Settings", - "context": "Media Player Settings", - "reference": "Modules/Settings/MediaPlayerTab.qml:37", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankkdeconnect", + "settings" + ] }, { "term": "Media Players (", "context": "Media Players (", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:488", - "comment": "" + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:508", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Media Volume", "context": "Media Volume", - "reference": "Modules/Settings/OSDTab.qml:101", - "comment": "" + "reference": "Modules/Settings/OSDTab.qml:100", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Medium", "context": "Medium", - "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:266, Modules/Settings/TypographyMotionTab.qml:294, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WidgetsTabSection.qml:1999, Modules/Settings/WidgetsTabSection.qml:3553, Modules/Settings/NotificationsTab.qml:382", - "comment": "font weight" + "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:266, Modules/Settings/TypographyMotionTab.qml:294, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:675, Modules/Settings/WidgetsTabSection.qml:1999, Modules/Settings/WidgetsTabSection.qml:3553, Modules/Settings/NotificationsTab.qml:380", + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Memory", "context": "Memory", "reference": "Modules/ProcessList/ProcessListPopout.qml:333, Modules/ProcessList/ProcessesView.qml:268, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Memory Graph", "context": "Memory Graph", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:221", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Memory Usage", "context": "Memory Usage", "reference": "Modules/Settings/WidgetsTab.qml:134", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Memory usage indicator", "context": "Memory usage indicator", "reference": "Modules/Settings/WidgetsTab.qml:135", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Merge indexed file results into the All tab (requires dsearch).", "context": "Merge indexed file results into the All tab (requires dsearch).", - "reference": "Modules/Settings/LauncherTab.qml:1175", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1174", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Merge indexed folder results into the All tab (requires dsearch).", "context": "Merge indexed folder results into the All tab (requires dsearch).", - "reference": "Modules/Settings/LauncherTab.qml:1184", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1183", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Message", "context": "Message", "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:222", - "comment": "KDE Connect SMS message input placeholder" + "comment": "KDE Connect SMS message input placeholder", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Message Content", "context": "Message Content", "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1001", - "comment": "notification privacy mode placeholder" + "comment": "notification privacy mode placeholder", + "tags": [ + "shell" + ] }, { "term": "Microphone", "context": "Microphone", "reference": "Modules/Settings/WidgetsTabSection.qml:2298, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/WidgetsTabSection.qml:2852", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Microphone Mute", "context": "Microphone Mute", - "reference": "Modules/Settings/OSDTab.qml:133", - "comment": "" + "reference": "Modules/Settings/OSDTab.qml:128", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Microphone Volume", "context": "Microphone Volume", "reference": "Modules/Settings/WidgetsTabSection.qml:2303, Modules/Settings/WidgetsTabSection.qml:2514", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Microphone settings", "context": "Microphone settings", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:188", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Microphone volume control", "context": "Microphone volume control", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:214", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Middle Section", "context": "Middle Section", "reference": "Modules/Settings/WidgetsTab.qml:1409", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Min H", "context": "Min H", "reference": "Modals/WindowRuleModal.qml:1488, Modules/Settings/WindowRulesTab.qml:113", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Min W", "context": "Min W", "reference": "Modals/WindowRuleModal.qml:1434, Modules/Settings/WindowRulesTab.qml:111", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Minimal palette built around a single hue.", "context": "Minimal palette built around a single hue.", "reference": "Common/Theme.qml:510", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Minute", "context": "Minute", - "reference": "Modules/Settings/ThemeColorsTab.qml:1257, Modules/Settings/GammaControlTab.qml:240", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1257, Modules/Settings/GammaControlTab.qml:239", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Mirror Display", "context": "Mirror Display", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:89", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Missing Environment Variables", "context": "Missing Environment Variables", "reference": "Modules/Settings/ThemeColorsTab.qml:213", - "comment": "qt theme env error title" + "comment": "qt theme env error title", + "tags": [ + "settings" + ] }, { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:2110", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2108", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Modal Shadows", "context": "Modal Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:2077", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2075", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Modals", "context": "Modals", - "reference": "Modules/Settings/TypographyMotionTab.qml:661, Modules/Settings/TypographyMotionTab.qml:709", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:660", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Mode", "context": "Mode", - "reference": "Modules/Settings/DankBarTab.qml:1332, Modules/Settings/FrameTab.qml:50, Modules/Settings/NetworkWifiTab.qml:763, Modules/Settings/NetworkWifiTab.qml:1124, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2072", - "comment": "" - }, - { - "term": "Mode:", - "context": "Mode:", - "reference": "Modules/Settings/WallpaperTab.qml:927", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:926, Modules/Settings/DankBarTab.qml:1330, Modules/Settings/FrameTab.qml:50, Modules/Settings/NetworkWifiTab.qml:763, Modules/Settings/NetworkWifiTab.qml:1124, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2072", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Model", "context": "Model", "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1172, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2063", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Modified", "context": "Modified", "reference": "Modals/DankLauncherV2/LauncherContent.qml:701, Modals/DankLauncherV2/LauncherContent.qml:708, Modals/DankLauncherV2/LauncherContent.qml:714, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2090, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2092", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Modular widget bar", "context": "Modular widget bar", "reference": "Modals/Greeter/GreeterWelcomePage.qml:114", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "Monitor", "context": "Monitor", "reference": "Modals/WindowRuleModal.qml:1714, Modals/WindowRuleModal.qml:1833, Modules/Settings/WindowRulesTab.qml:129", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Monitor Configuration", "context": "Monitor Configuration", "reference": "Modules/Settings/DisplayConfigTab.qml:459, Modules/Settings/DisplayConfig/NoBackendMessage.qml:41", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Monitor fade grace period", "context": "Monitor fade grace period", "reference": "Modules/Settings/PowerSleepTab.qml:132", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Monitor whose wallpaper drives dynamic theming colors", "context": "Monitor whose wallpaper drives dynamic theming colors", - "reference": "Modules/Settings/WallpaperTab.qml:842", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:841", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Monitors in \"%1\":", "context": "Monitors in \"%1\":", "reference": "Modules/Settings/DisplayConfigTab.qml:355", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Monochrome", "context": "Monochrome", - "reference": "Common/Theme.qml:509, Modules/Settings/DankBarTab.qml:1333", - "comment": "matugen color scheme option" + "reference": "Common/Theme.qml:509, Modules/Settings/DankBarTab.qml:1331", + "comment": "matugen color scheme option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Monocle", "context": "Monocle", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:52", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Monospace Font", "context": "Monospace Font", "reference": "Modules/Settings/TypographyMotionTab.qml:226", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Month Date", "context": "Month Date", - "reference": "Modules/Settings/GreeterTab.qml:359, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:197, Modules/Settings/TimeWeatherTab.qml:228, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:284, Modules/Settings/TimeWeatherTab.qml:315", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:359, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:195, Modules/Settings/TimeWeatherTab.qml:226, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:282, Modules/Settings/TimeWeatherTab.qml:313", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Morning", "context": "Morning", "reference": "Services/WeatherService.qml:257", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Motion Effects", "context": "Motion Effects", "reference": "Modules/Settings/TypographyMotionTab.qml:130", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Mount Points", "context": "Mount Points", "reference": "Modules/ProcessList/DisksView.qml:131", - "comment": "mount points header in system monitor" + "comment": "mount points header in system monitor", + "tags": [ + "shell" + ] }, { "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:757", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Mouse pointer appearance", "context": "Mouse pointer appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:2254", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2252", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Mouse pointer size in pixels", "context": "Mouse pointer size in pixels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2270", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2268", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Move Widget", "context": "Move Widget", "reference": "Modules/Settings/DesktopWidgetsTab.qml:461", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Move to Trash", "context": "Move to Trash", "reference": "Modals/FileBrowser/FileBrowserItemContextMenu.qml:21", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Moving to Paused", "context": "Moving to Paused", "reference": "Services/CupsService.qml:832", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Multi-Monitor", "context": "Multi-Monitor", "reference": "Modals/Greeter/GreeterWelcomePage.qml:129", - "comment": "greeter feature card title" + "comment": "greeter feature card title", + "tags": [ + "shell" + ] }, { "term": "Multimedia", "context": "Multimedia", - "reference": "Modules/Settings/DefaultAppsTab.qml:338", - "comment": "Multimedia" - }, - { - "term": "Multiplexer", - "context": "Multiplexer", - "reference": "Modules/Settings/MuxTab.qml:28", - "comment": "" + "reference": "Modules/Settings/DefaultAppsTab.qml:336", + "comment": "Multimedia", + "tags": [ + "settings" + ] }, { "term": "Multiplexer Type", "context": "Multiplexer Type", "reference": "Modules/Settings/MuxTab.qml:35", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Multiplexers", "context": "Multiplexers", "reference": "Modals/Settings/SettingsSidebar.qml:344", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Music", "context": "Music", "reference": "Modals/FileBrowser/FileBrowserContent.qml:283", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Music Player", "context": "Music Player", - "reference": "Modules/Settings/DefaultAppsTab.qml:353", - "comment": "Music Player" + "reference": "Modules/Settings/DefaultAppsTab.qml:349", + "comment": "Music Player", + "tags": [ + "settings" + ] }, { "term": "Mute During Playback", "context": "Mute During Playback", - "reference": "Modules/Settings/SoundsTab.qml:183", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:181", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Mute Popups", "context": "Mute Popups", "reference": "Modules/Settings/NotificationsTab.qml:123", - "comment": "notification rule action option" + "comment": "notification rule action option", + "tags": [ + "settings" + ] }, { "term": "Mute popups for %1", "context": "Mute popups for %1", "reference": "Modules/Notifications/NotificationContextMenu.qml:130, Modules/Notifications/Center/NotificationCard.qml:1116", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Muted", "context": "Muted", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:375, Modules/ControlCenter/Components/DragDropGrid.qml:571, Modules/ControlCenter/Components/DragDropGrid.qml:582", - "comment": "audio status" + "reference": "Modules/DankDash/MediaDropdownOverlay.qml:395, Modules/ControlCenter/Components/DragDropGrid.qml:571, Modules/ControlCenter/Components/DragDropGrid.qml:582", + "comment": "audio status", + "tags": [ + "shell" + ] }, { "term": "Muted Apps", "context": "Muted Apps", - "reference": "Modules/Settings/NotificationsTab.qml:677", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:675", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Muted palette with subdued, calming tones.", "context": "Muted palette with subdued, calming tones.", "reference": "Common/Theme.qml:514", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "My Online", "context": "My Online", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:252", - "comment": "Tailscale filter: my online devices" + "comment": "Tailscale filter: my online devices", + "tags": [ + "shell" + ] }, { "term": "NM not supported", "context": "NM not supported", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:462", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Name", "context": "Name", "reference": "Modals/DankLauncherV2/AppEditView.qml:142, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:708, Modals/DankLauncherV2/LauncherContent.qml:713, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:56, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:540, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:767, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2063, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", - "comment": "plugin browser sort option" + "comment": "plugin browser sort option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Named Workspace Icons", "context": "Named Workspace Icons", "reference": "Modules/Settings/WorkspacesTab.qml:208", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Native", "context": "Native", "reference": "Modules/Settings/TypographyMotionTab.qml:350", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Native: platform renderer (FreeType).", "context": "Native: platform renderer (FreeType).", "reference": "Modules/Settings/TypographyMotionTab.qml:423", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Natural Touchpad Scrolling", "context": "Natural Touchpad Scrolling", - "reference": "Modules/Settings/ThemeColorsTab.qml:2283", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2281", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Navigate", "context": "Navigate", "reference": "Modals/MuxModal.qml:575", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Navigation", "context": "Navigation", "reference": "Widgets/DankIconPicker.qml:47", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Network", "context": "Network", "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:245, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:2253, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:89, Modules/ControlCenter/Models/WidgetModel.qml:161", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Network Graph", "context": "Network Graph", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:240", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Network Info", "context": "Network Info", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:452, Modules/ControlCenter/Details/NetworkDetail.qml:828", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Network Information", "context": "Network Information", "reference": "Modals/NetworkWiredInfoModal.qml:62, Modals/NetworkInfoModal.qml:62", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Network Name (SSID)", "context": "Network Name (SSID)", "reference": "Modals/WifiPasswordModal.qml:406", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Network Speed Monitor", "context": "Network Speed Monitor", "reference": "Modules/Settings/WidgetsTab.qml:236", - "comment": "" - }, - { - "term": "Network Status", - "context": "Network Status", - "reference": "Modules/Settings/NetworkStatusTab.qml:40", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Network Type", "context": "Network Type", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1596, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:755", - "comment": "KDE Connect network type label" + "comment": "KDE Connect network type label", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Network download and upload speed display", "context": "Network download and upload speed display", "reference": "Modules/Settings/WidgetsTab.qml:237", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Network not found", "context": "Network not found", "reference": "Services/LegacyNetworkService.qml:353", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Neutral", "context": "Neutral", "reference": "Common/Theme.qml:513", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Never", "context": "Never", "reference": "Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:33, Modules/Settings/NotificationsTab.qml:166, Modules/Settings/ClipboardTab.qml:99, Modules/Notifications/Center/NotificationSettings.qml:39, Modules/Notifications/Center/NotificationSettings.qml:99", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Never used", "context": "Never used", - "reference": "Modules/Settings/LauncherTab.qml:1536", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1535", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "New", "context": "New", "reference": "Modals/MuxModal.qml:583, Modules/Notepad/NotepadTextEditor.qml:880", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "New Key", "context": "New Key", "reference": "Widgets/KeybindItem.qml:626", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "New Keybind", "context": "New Keybind", "reference": "Modules/Settings/KeybindsTab.qml:537", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "New Notification", "context": "New Notification", - "reference": "Modules/Settings/SoundsTab.qml:145", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:143", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "New Session", "context": "New Session", "reference": "Modals/MuxModal.qml:105, Modals/MuxModal.qml:367", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "New Window Rule", "context": "New Window Rule", "reference": "Modals/WindowRuleModal.qml:657", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "New York, NY", "context": "New York, NY", - "reference": "Modules/Settings/TimeWeatherTab.qml:665", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:663", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "New event", "context": "New event", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:186", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "New group name...", "context": "New group name...", "reference": "Modules/Settings/DesktopWidgetsTab.qml:233", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Next", "context": "Next", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2070, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, Modals/Greeter/GreeterModal.qml:298", - "comment": "Media next tooltip | greeter next button" + "comment": "Media next tooltip | greeter next button", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "Next Transition", "context": "Next Transition", - "reference": "Modules/Settings/ThemeColorsTab.qml:1558, Modules/Settings/GammaControlTab.qml:643", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1558, Modules/Settings/GammaControlTab.qml:642", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Next page", "context": "Next page", "reference": "Modules/DankDash/WallpaperTab.qml:689", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Night", "context": "Night", - "reference": "Services/WeatherService.qml:315, Modules/Settings/GammaControlTab.qml:524", - "comment": "" + "reference": "Services/WeatherService.qml:315, Modules/Settings/GammaControlTab.qml:523", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Night Mode", "context": "Night Mode", "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:749", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Night Temperature", "context": "Night Temperature", "reference": "Modules/Settings/GammaControlTab.qml:105", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Night mode & gamma", "context": "Night mode & gamma", "reference": "Modals/Greeter/GreeterWelcomePage.qml:141", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "Night mode failed: DMS gamma control not available", "context": "Night mode failed: DMS gamma control not available", "reference": "Services/DisplayService.qml:456", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Niri Integration", "context": "Niri Integration", - "reference": "Modules/Settings/LauncherTab.qml:753", - "comment": "" - }, - { - "term": "Niri Layout Overrides", - "context": "Niri Layout Overrides", - "reference": "Modules/Settings/CompositorLayoutTab.qml:273", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:752", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Niri compositor actions (focus, move, etc.)", "context": "Niri compositor actions (focus, move, etc.)", "reference": "Widgets/KeybindItem.qml:872", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No", "context": "No", "reference": "Modules/Settings/PrinterTab.qml:1182, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2084, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2088, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2098, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2108, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2110", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No Active Players", "context": "No Active Players", - "reference": "Modules/DankDash/MediaPlayerTab.qml:426", - "comment": "" + "reference": "Modules/DankDash/MediaPlayerTab.qml:424", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No Anim", "context": "No Anim", "reference": "Modals/WindowRuleModal.qml:1574, Modals/WindowRuleModal.qml:1792, Modules/Settings/WindowRulesTab.qml:121", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No Background", "context": "No Background", - "reference": "Modules/Settings/DankBarTab.qml:1167", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1165", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No Bluetooth adapter found", "context": "No Bluetooth adapter found", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:625", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No Blur", "context": "No Blur", "reference": "Modals/WindowRuleModal.qml:1570, Modals/WindowRuleModal.qml:1776, Modules/Settings/WindowRulesTab.qml:120", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No Border", "context": "No Border", "reference": "Modals/WindowRuleModal.qml:1558, Modals/WindowRuleModal.qml:1780, Modules/Settings/WindowRulesTab.qml:117", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No DMS shortcuts configured", "context": "No DMS shortcuts configured", "reference": "Modals/Greeter/GreeterCompletePage.qml:265", - "comment": "greeter no keybinds message" + "comment": "greeter no keybinds message", + "tags": [ + "shell" + ] }, { "term": "No Dim", "context": "No Dim", "reference": "Modals/WindowRuleModal.qml:1566, Modules/Settings/WindowRulesTab.qml:119", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No Focus", "context": "No Focus", "reference": "Modals/WindowRuleModal.qml:1554, Modules/Settings/WindowRulesTab.qml:116", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No GPU detected", "context": "No GPU detected", "reference": "Modules/Settings/WidgetsTabSection.qml:439", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No GPUs detected", "context": "No GPUs detected", "reference": "Modules/ProcessList/SystemView.qml:350", - "comment": "empty state in gpu list" + "comment": "empty state in gpu list", + "tags": [ + "shell" + ] }, { "term": "No History", "context": "No History", "reference": "Modules/Settings/NotificationsTab.qml:135", - "comment": "notification rule action option" + "comment": "notification rule action option", + "tags": [ + "settings" + ] }, { "term": "No Media", "context": "No Media", "reference": "Modules/DankDash/Overview/MediaOverviewCard.qml:56", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No Round", "context": "No Round", "reference": "Modules/Settings/WindowRulesTab.qml:122", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No Rounding", "context": "No Rounding", "reference": "Modals/WindowRuleModal.qml:1578, Modals/WindowRuleModal.qml:1788", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No Shadow", "context": "No Shadow", "reference": "Modals/WindowRuleModal.qml:1562, Modals/WindowRuleModal.qml:1784, Modules/Settings/WindowRulesTab.qml:118", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No VPN profiles", "context": "No VPN profiles", "reference": "Widgets/VpnDetailContent.qml:179, Modules/Settings/NetworkVpnTab.qml:215", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No Weather", "context": "No Weather", "reference": "Modules/DankDash/Overview/WeatherOverviewCard.qml:38", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No Weather Data", "context": "No Weather Data", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:166", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "No Weather Data Available", "context": "No Weather Data Available", - "reference": "Modules/DankDash/WeatherTab.qml:138, Modules/Settings/TimeWeatherTab.qml:704", - "comment": "" + "reference": "Modules/DankDash/WeatherTab.qml:138, Modules/Settings/TimeWeatherTab.qml:702", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No action", "context": "No action", "reference": "Widgets/KeybindItem.qml:376, Widgets/KeybindItem.qml:376", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No active %1 sessions", "context": "No active %1 sessions", "reference": "Modals/MuxModal.qml:545", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No active session found for %1", "context": "No active session found for %1", "reference": "Services/SessionsService.qml:129", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No adapter", "context": "No adapter", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:507", - "comment": "bluetooth status" + "comment": "bluetooth status", + "tags": [ + "shell" + ] }, { "term": "No adapters", "context": "No adapters", "reference": "Modules/Settings/NetworkEthernetTab.qml:60, Modules/ControlCenter/Components/DragDropGrid.qml:547", - "comment": "bluetooth status" + "comment": "bluetooth status", + "tags": [ + "settings", + "shell" + ] }, { "term": "No app customizations.", "context": "No app customizations.", - "reference": "Modules/Settings/LauncherTab.qml:1409", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1408", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No application selected", "context": "No application selected", "reference": "Modules/Settings/AutoStartTab.qml:478", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No apps found", "context": "No apps found", "reference": "Modals/DankLauncherV2/ResultsList.qml:568", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No apps have been launched yet.", "context": "No apps have been launched yet.", - "reference": "Modules/Settings/LauncherTab.qml:1579", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1578", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", "context": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", - "reference": "Modules/Settings/NotificationsTab.qml:686", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:684", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No autostart entries", "context": "No autostart entries", "reference": "Modules/Settings/AutoStartTab.qml:757", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No battery", "context": "No battery", "reference": "Services/BatteryService.qml:341, Modules/ControlCenter/Widgets/BatteryPill.qml:15", - "comment": "battery status" + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "No brightness devices available", "context": "No brightness devices available", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:171", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No calendar source available", "context": "No calendar source available", - "reference": "Modules/Settings/TimeWeatherTab.qml:154", - "comment": "calendar backend status" + "reference": "Modules/Settings/TimeWeatherTab.qml:152", + "comment": "calendar backend status", + "tags": [ + "settings" + ] }, { "term": "No changes", "context": "No changes", "reference": "Widgets/KeybindItem.qml:1856", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No checks passed", "context": "No checks passed", "reference": "Modals/Greeter/GreeterDoctorPage.qml:330", - "comment": "greeter doctor page empty state" + "comment": "greeter doctor page empty state", + "tags": [ + "shell" + ] }, { "term": "No codecs found", "context": "No codecs found", "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:71", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No custom theme file", "context": "No custom theme file", "reference": "Modules/Settings/ThemeColorsTab.qml:681", - "comment": "no custom theme file status" + "comment": "no custom theme file status", + "tags": [ + "settings" + ] }, { "term": "No devices", "context": "No devices", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:461, Modules/ControlCenter/Components/DragDropGrid.qml:564", - "comment": "Phone Connect no devices status | bluetooth status" + "comment": "Phone Connect no devices status | bluetooth status", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "No devices found", "context": "No devices found", "reference": "dms-plugins/DankKDEConnect/components/EmptyState.qml:11, Modules/Settings/PrinterTab.qml:446", - "comment": "KDE Connect no devices message" + "comment": "KDE Connect no devices message", + "tags": [ + "plugin-dankkdeconnect", + "settings" + ] }, { "term": "No disk data", "context": "No disk data", "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:39", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No disk data available", "context": "No disk data available", "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:52", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No display profiles found. Create them in Settings > Displays.", "context": "No display profiles found. Create them in Settings > Displays.", "reference": "Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:148", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No drivers found", "context": "No drivers found", "reference": "Modules/Settings/PrinterTab.qml:717", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No errors", "context": "No errors", "reference": "Modals/Greeter/GreeterDoctorPage.qml:324", - "comment": "greeter doctor page empty state" + "comment": "greeter doctor page empty state", + "tags": [ + "shell" + ] }, { "term": "No excluded players configured", "context": "No excluded players configured", "reference": "Modules/Settings/MediaPlayerTab.qml:265", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No features enabled", "context": "No features enabled", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:84", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No files found", "context": "No files found", "reference": "Modals/DankLauncherV2/ResultsList.qml:561", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No fingerprint reader detected.", "context": "No fingerprint reader detected.", - "reference": "Modules/Settings/GreeterTab.qml:32, Modules/Settings/LockScreenTab.qml:72", - "comment": "fingerprint setting status" + "reference": "Modules/Settings/GreeterTab.qml:32, Modules/Settings/LockScreenTab.qml:103", + "comment": "fingerprint setting status", + "tags": [ + "settings" + ] }, { "term": "No folders found", "context": "No folders found", "reference": "Modals/DankLauncherV2/ResultsList.qml:559", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No hidden apps.", "context": "No hidden apps.", - "reference": "Modules/Settings/LauncherTab.qml:1299", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1298", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No human user accounts found.", "context": "No human user accounts found.", "reference": "Modules/Settings/UsersTab.qml:340", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No images found", "context": "No images found", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2199", - "comment": "No recent images found message" + "comment": "No recent images found message", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "No info items", "context": "No info items", "reference": "Modals/Greeter/GreeterDoctorPage.qml:328", - "comment": "greeter doctor page empty state" + "comment": "greeter doctor page empty state", + "tags": [ + "shell" + ] }, { "term": "No information available", "context": "No information available", "reference": "Modals/NetworkWiredInfoModal.qml:105, Modals/NetworkInfoModal.qml:105", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No input device", "context": "No input device", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:515", - "comment": "audio status" + "comment": "audio status", + "tags": [ + "shell" + ] }, { "term": "No input devices found", "context": "No input devices found", "reference": "Modules/Settings/AudioTab.qml:372", - "comment": "Audio settings empty state" + "comment": "Audio settings empty state", + "tags": [ + "settings" + ] }, { "term": "No items added yet", "context": "No items added yet", "reference": "Modules/Plugins/ListSetting.qml:79, Modules/Plugins/ListSettingWithInput.qml:250", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No keybinds found", "context": "No keybinds found", "reference": "Modules/Settings/KeybindsTab.qml:638", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No launcher plugins installed.", "context": "No launcher plugins installed.", - "reference": "Modules/Settings/LauncherTab.qml:1129", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1128", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No match criteria", "context": "No match criteria", "reference": "Modules/Settings/WindowRulesTab.qml:670, Modules/Settings/WindowRulesTab.qml:945", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No matches", "context": "No matches", "reference": "Modals/Settings/SettingsSidebar.qml:903, Modules/Notepad/NotepadTextEditor.qml:460", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No matching devices", "context": "No matching devices", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:323", - "comment": "No Tailscale devices match search" + "comment": "No Tailscale devices match search", + "tags": [ + "shell" + ] }, { "term": "No matching processes", "context": "No matching processes", "reference": "Modules/ProcessList/ProcessesView.qml:356", - "comment": "empty state in process list" + "comment": "empty state in process list", + "tags": [ + "shell" + ] }, { "term": "No monitors", "context": "No monitors", - "reference": "Modules/Settings/WallpaperTab.qml:815, Modules/Settings/WallpaperTab.qml:846", - "comment": "no monitors available label" + "reference": "Modules/Settings/WallpaperTab.qml:814, Modules/Settings/WallpaperTab.qml:845", + "comment": "no monitors available label", + "tags": [ + "settings" + ] }, { "term": "No mount points found", "context": "No mount points found", "reference": "Modules/ProcessList/DisksView.qml:335", - "comment": "empty state in disk mounts list" + "comment": "empty state in disk mounts list", + "tags": [ + "shell" + ] }, { "term": "No other active sessions on this seat", "context": "No other active sessions on this seat", "reference": "Modals/SwitchUserModal.qml:221", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No output device", "context": "No output device", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:513", - "comment": "audio status" + "comment": "audio status", + "tags": [ + "shell" + ] }, { "term": "No output devices found", "context": "No output devices found", "reference": "Modules/Settings/AudioTab.qml:228", - "comment": "Audio settings empty state" + "comment": "Audio settings empty state", + "tags": [ + "settings" + ] }, { "term": "No packages ignored. Add one here or hover an update in the popout and click the hide button.", "context": "No packages ignored. Add one here or hover an update in the popout and click the hide button.", "reference": "Modules/Settings/SystemUpdaterTab.qml:217", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No peers found", "context": "No peers found", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:323", - "comment": "No Tailscale peers found" + "comment": "No Tailscale peers found", + "tags": [ + "shell" + ] }, { "term": "No plugin results", "context": "No plugin results", "reference": "Modals/DankLauncherV2/ResultsList.qml:566", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No plugins found", "context": "No plugins found", - "reference": "Modules/Settings/PluginBrowser.qml:1339", - "comment": "empty plugin list" - }, - { - "term": "No plugins found.", - "context": "No plugins found.", - "reference": "Modules/Settings/PluginsTab.qml:441", - "comment": "" + "reference": "Modules/Settings/PluginBrowser.qml:1339, Modules/Settings/PluginsTab.qml:442", + "comment": "empty plugin list", + "tags": [ + "settings" + ] }, { "term": "No printer found", "context": "No printer found", "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:24, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No printers configured", "context": "No printers configured", "reference": "Modules/Settings/PrinterTab.qml:894", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No printers found", "context": "No printers found", "reference": "Modules/Settings/PrinterTab.qml:936", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No profiles", "context": "No profiles", "reference": "Modules/Settings/DisplayConfigTab.qml:193, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:33", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No recent clipboard entries found", "context": "No recent clipboard entries found", "reference": "Modals/Clipboard/ClipboardContent.qml:234", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No reminder", "context": "No reminder", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No results", "context": "No results", "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:164", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No results found", "context": "No results found", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96, Modals/DankLauncherV2/ResultsList.qml:563, Modals/DankLauncherV2/ResultsList.qml:570", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch", + "shell" + ] }, { "term": "No saved clipboard entries", "context": "No saved clipboard entries", "reference": "Modals/Clipboard/ClipboardContent.qml:296", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No screenshot provided", "context": "No screenshot provided", "reference": "Modules/Settings/PluginBrowser.qml:1603", - "comment": "plugin browser no screenshot" + "comment": "plugin browser no screenshot", + "tags": [ + "settings" + ] }, { "term": "No session selected", "context": "No session selected", "reference": "Services/SessionsService.qml:108", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No sessions found", "context": "No sessions found", "reference": "Modals/MuxModal.qml:545", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No status output.", "context": "No status output.", "reference": "Modules/Settings/GreeterTab.qml:219", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No supported package manager found.", "context": "No supported package manager found.", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:350", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No terminal configured", "context": "No terminal configured", "reference": "Services/SystemUpdateService.qml:205", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No themes found", "context": "No themes found", "reference": "Modules/Settings/ThemeBrowser.qml:663", - "comment": "empty theme list" + "comment": "empty theme list", + "tags": [ + "settings" + ] }, { "term": "No themes installed. Browse themes to install from the registry.", "context": "No themes installed. Browse themes to install from the registry.", "reference": "Modules/Settings/ThemeColorsTab.qml:887", - "comment": "no registry themes installed hint" + "comment": "no registry themes installed hint", + "tags": [ + "settings" + ] }, { "term": "No trigger", "context": "No trigger", - "reference": "Modals/DankLauncherV2/Controller.qml:1425, Modules/Settings/LauncherTab.qml:1042", - "comment": "" + "reference": "Modals/DankLauncherV2/Controller.qml:1425, Modules/Settings/LauncherTab.qml:1041", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "No updates available.", "context": "No updates available.", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:263", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:267", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No user specified", "context": "No user specified", "reference": "Services/SessionsService.qml:122", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No video found in folder", "context": "No video found in folder", "reference": "Modules/Lock/VideoScreensaver.qml:76", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No wallpaper selected", "context": "No wallpaper selected", "reference": "Modules/Settings/ThemeColorsTab.qml:577, Modules/Settings/WallpaperTab.qml:229", - "comment": "no wallpaper status" + "comment": "no wallpaper status", + "tags": [ + "settings" + ] }, { "term": "No wallpapers", "context": "No wallpapers", "reference": "Modules/DankDash/WallpaperTab.qml:657", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No wallpapers found\n\nClick the folder icon below to browse", "context": "No wallpapers found\n\nClick the folder icon below to browse", "reference": "Modules/DankDash/WallpaperTab.qml:612", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "No warnings", "context": "No warnings", "reference": "Modals/Greeter/GreeterDoctorPage.qml:326", - "comment": "greeter doctor page empty state" + "comment": "greeter doctor page empty state", + "tags": [ + "shell" + ] }, { "term": "No widgets added. Click \"Add Widget\" to get started.", "context": "No widgets added. Click \"Add Widget\" to get started.", "reference": "Modules/Settings/DesktopWidgetsTab.qml:419", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No widgets available", "context": "No widgets available", "reference": "Modules/Settings/DesktopWidgetBrowser.qml:462", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No widgets match your search", "context": "No widgets match your search", "reference": "Modules/Settings/DesktopWidgetBrowser.qml:462", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No window rules configured", "context": "No window rules configured", "reference": "Modules/Settings/WindowRulesTab.qml:586", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "No writable calendar available", "context": "No writable calendar available", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:78", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Noise", "context": "Noise", "reference": "Modals/WindowRuleModal.qml:1285, Modules/Settings/WindowRulesTab.qml:134", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "None", "context": "None", - "reference": "Modals/WindowRuleModal.qml:1169, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1148, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1333, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1902, Modules/Settings/WorkspaceAppearanceCard.qml:49, Modules/Settings/WorkspaceAppearanceCard.qml:57, Modules/Settings/NotificationsTab.qml:382, Modules/Settings/WindowRulesTab.qml:1063, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:187", - "comment": "Tailscale exit node: none selected | wallpaper transition option | workspace color option" + "reference": "Modals/WindowRuleModal.qml:1169, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:675, Modules/Settings/WallpaperTab.qml:1147, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1331, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/DankBarTab.qml:1897, Modules/Settings/WorkspaceAppearanceCard.qml:49, Modules/Settings/WorkspaceAppearanceCard.qml:57, Modules/Settings/NotificationsTab.qml:380, Modules/Settings/WindowRulesTab.qml:1063, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:187", + "comment": "Tailscale exit node: none selected | wallpaper transition option | workspace color option", + "tags": [ + "settings", + "shell" + ] }, { "term": "None active", "context": "None active", "reference": "Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:34", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Normal", "context": "Normal", - "reference": "Modals/WindowRuleModal.qml:1191, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2642, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2658, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2663", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:1191, Modules/Settings/TypographyMotionTab.qml:458", + "comment": "quality level option", + "tags": [ + "settings", + "shell" + ] + }, + { + "term": "Normal", + "context": "display rotation option", + "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2642, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2658, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2663", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Normal Font", "context": "Normal Font", "reference": "Modules/Settings/TypographyMotionTab.qml:207", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Normal Priority", "context": "Normal Priority", - "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:813, Modules/Settings/NotificationsTab.qml:928, Modules/Notifications/Center/NotificationSettings.qml:201, Modules/Notifications/Center/NotificationSettings.qml:405", - "comment": "notification rule urgency option" + "reference": "Modules/Settings/NotificationsTab.qml:150, Modules/Settings/NotificationsTab.qml:810, Modules/Settings/NotificationsTab.qml:923, Modules/Notifications/Center/NotificationSettings.qml:200, Modules/Notifications/Center/NotificationSettings.qml:402", + "comment": "notification rule urgency option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Not available", "context": "Not available", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:20, Modules/ControlCenter/Widgets/BatteryPill.qml:22", - "comment": "Tailscale service not available" + "comment": "Tailscale service not available", + "tags": [ + "shell" + ] }, { "term": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", "context": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", "reference": "Modules/Settings/GreeterTab.qml:34", - "comment": "greeter fingerprint login setting" + "comment": "greeter fingerprint login setting", + "tags": [ + "settings" + ] }, { "term": "Not available — install fprintd and pam_fprintd.", "context": "Not available — install fprintd and pam_fprintd.", - "reference": "Modules/Settings/LockScreenTab.qml:74", - "comment": "lock screen fingerprint setting" + "reference": "Modules/Settings/LockScreenTab.qml:105", + "comment": "lock screen fingerprint setting", + "tags": [ + "settings" + ] }, { "term": "Not available — install or configure pam_u2f, or configure greetd PAM.", "context": "Not available — install or configure pam_u2f, or configure greetd PAM.", "reference": "Modules/Settings/GreeterTab.qml:52", - "comment": "greeter security key login setting" + "comment": "greeter security key login setting", + "tags": [ + "settings" + ] }, { "term": "Not available — install or configure pam_u2f.", "context": "Not available — install or configure pam_u2f.", - "reference": "Modules/Settings/LockScreenTab.qml:87", - "comment": "lock screen security key setting" + "reference": "Modules/Settings/LockScreenTab.qml:118", + "comment": "lock screen security key setting", + "tags": [ + "settings" + ] }, { "term": "Not bound", "context": "Not bound", "reference": "Modules/Settings/LauncherTab.qml:35", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Not connected", "context": "Not connected", "reference": "Modules/Settings/NetworkWifiTab.qml:182, Modules/ControlCenter/Components/DragDropGrid.qml:499", - "comment": "network status" + "comment": "network status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Not detected", "context": "Not detected", "reference": "Modules/Settings/ThemeColorsTab.qml:182, Modules/Settings/ThemeColorsTab.qml:183", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Not listed?", "context": "Not listed?", "reference": "Modules/Greetd/GreeterUserPicker.qml:184", - "comment": "greeter link to switch to manual username entry" + "comment": "greeter link to switch to manual username entry", + "tags": [ + "shell" + ] }, { "term": "Not paired", "context": "Not paired", "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:304", - "comment": "KDE Connect not paired status" + "comment": "KDE Connect not paired status", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Not set", "context": "Not set", "reference": "Modules/Settings/WallpaperTab.qml:565, Modules/Settings/WallpaperTab.qml:744", - "comment": "wallpaper not set label" + "comment": "wallpaper not set label", + "tags": [ + "settings" + ] }, { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:893, Services/AppSearchService.qml:182, Modules/Notepad/NotepadPopoutWindow.qml:26, Modules/Notepad/NotepadPopoutWindow.qml:81, Modules/Settings/WidgetsTab.qml:250", - "comment": "Notepad" + "reference": "DMSShell.qml:896, Services/AppSearchService.qml:182, Modules/Notepad/NotepadPopoutWindow.qml:26, Modules/Notepad/NotepadPopoutWindow.qml:81, Modules/Settings/WidgetsTab.qml:250", + "comment": "Notepad", + "tags": [ + "settings", + "shell" + ] }, { "term": "Notepad Settings", "context": "Notepad Settings", "reference": "Modules/Notepad/NotepadSettings.qml:132", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Notepad Slideout", "context": "Notepad Slideout", "reference": "Modules/Settings/DisplayWidgetsTab.qml:61", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Notes", "context": "Notes", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:310", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Nothing", "context": "Nothing", "reference": "Modules/Settings/MediaPlayerTab.qml:77", - "comment": "media scroll wheel option" + "comment": "media scroll wheel option", + "tags": [ + "settings" + ] }, { "term": "Nothing to see here", "context": "Nothing to see here", "reference": "Modules/Notifications/Center/NotificationEmptyState.qml:27", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Notification", "context": "Notification", - "reference": "Modules/Settings/BatteryTab.qml:218, Modules/Settings/BatteryTab.qml:259, Modules/Settings/BatteryTab.qml:304", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:220, Modules/Settings/BatteryTab.qml:262, Modules/Settings/BatteryTab.qml:307", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Notification Center", "context": "Notification Center", "reference": "Modules/Settings/WidgetsTab.qml:187", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Notification Display", "context": "Notification Display", - "reference": "Modules/Settings/LockScreenTab.qml:262, Modules/Settings/NotificationsTab.qml:772", - "comment": "lock screen notification privacy setting" + "reference": "Modules/Settings/LockScreenTab.qml:332, Modules/Settings/NotificationsTab.qml:770", + "comment": "lock screen notification privacy setting", + "tags": [ + "settings" + ] }, { "term": "Notification Overlay", "context": "Notification Overlay", - "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Notifications/Center/NotificationSettings.qml:264", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:287, Modules/Notifications/Center/NotificationSettings.qml:261", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Notification Popups", "context": "Notification Popups", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:37, Modules/Settings/NotificationsTab.qml:206", - "comment": "" - }, - { - "term": "Notification Rules", - "context": "Notification Rules", - "reference": "Modules/Settings/NotificationsTab.qml:448", - "comment": "" + "reference": "Modules/Settings/DisplayWidgetsTab.qml:37", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Notification Settings", "context": "Notification Settings", "reference": "Modules/Notifications/Center/NotificationSettings.qml:128", - "comment": "" - }, - { - "term": "Notification Timeouts", - "context": "Notification Timeouts", - "reference": "Modules/Settings/NotificationsTab.qml:788, Modules/Notifications/Center/NotificationSettings.qml:175", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Notification Type", "context": "Notification Type", - "reference": "Modules/Settings/BatteryTab.qml:216, Modules/Settings/BatteryTab.qml:257, Modules/Settings/BatteryTab.qml:302", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:218, Modules/Settings/BatteryTab.qml:260, Modules/Settings/BatteryTab.qml:305", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Notification toast popups", "context": "Notification toast popups", "reference": "Modules/Settings/DisplayWidgetsTab.qml:38", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Notifications", "context": "Notifications", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1602, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:761, Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:172, Modules/Notifications/Center/NotificationHeader.qml:68", - "comment": "KDE Connect notifications label | greeter settings link" + "comment": "KDE Connect notifications label | greeter settings link", + "tags": [ + "plugin-dankkdeconnect", + "settings", + "shell" + ] }, { "term": "Notify when limit is reached", "context": "Notify when limit is reached", - "reference": "Modules/Settings/BatteryTab.qml:208", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:210", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Now playing and media controls", "context": "Now playing and media controls", "reference": "Modules/Settings/DankDashTab.qml:28", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Numbers", "context": "Numbers", "reference": "Widgets/DankIconPicker.qml:23", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Numeric (D/M)", "context": "Numeric (D/M)", - "reference": "Modules/Settings/GreeterTab.qml:367, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:205, Modules/Settings/TimeWeatherTab.qml:230, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:292, Modules/Settings/TimeWeatherTab.qml:317", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:367, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:203, Modules/Settings/TimeWeatherTab.qml:228, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:290, Modules/Settings/TimeWeatherTab.qml:315", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "Numeric (M/D)", "context": "Numeric (M/D)", - "reference": "Modules/Settings/GreeterTab.qml:363, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:201, Modules/Settings/TimeWeatherTab.qml:229, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:288, Modules/Settings/TimeWeatherTab.qml:316", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:363, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:199, Modules/Settings/TimeWeatherTab.qml:227, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:286, Modules/Settings/TimeWeatherTab.qml:314", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "OK", "context": "OK", "reference": "Modals/Greeter/GreeterDoctorPage.qml:273", - "comment": "greeter doctor page status card" + "comment": "greeter doctor page status card", + "tags": [ + "shell" + ] }, { "term": "OS Logo", "context": "OS Logo", - "reference": "Modules/Settings/DockTab.qml:280, Modules/Settings/LauncherTab.qml:303", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:279, Modules/Settings/LauncherTab.qml:302", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "OSD Position", "context": "OSD Position", "reference": "Modules/Settings/OSDTab.qml:30", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Occupied Color", "context": "Occupied Color", "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:50", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Off", "context": "Off", - "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:694, Modules/Settings/WindowRulesTab.qml:971, Modules/Settings/CompositorLayoutTab.qml:283, Modules/Settings/CompositorLayoutTab.qml:412, Modules/Settings/CompositorLayoutTab.qml:564, 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:549, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31", - "comment": "bluetooth status" + "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:694, Modules/Settings/WindowRulesTab.qml:971, Modules/Settings/CompositorLayoutTab.qml:283, Modules/Settings/CompositorLayoutTab.qml:412, Modules/Settings/CompositorLayoutTab.qml:563, 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:549, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31", + "comment": "bluetooth status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Office", "context": "Office", "reference": "Services/AppSearchService.qml:679, Services/AppSearchService.qml:680, Services/AppSearchService.qml:681, Services/AppSearchService.qml:682", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Offline", "context": "Offline", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:468, dms-plugins/DankKDEConnect/components/DeviceCard.qml:306", - "comment": "KDE Connect offline status | Phone Connect offline status" + "comment": "KDE Connect offline status | Phone Connect offline status", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Offline Report", "context": "Offline Report", "reference": "Services/CupsService.qml:831", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Older", "context": "Older", "reference": "Modules/Notifications/Center/HistoryNotificationList.qml:117", - "comment": "notification history filter for content older than other filters" + "comment": "notification history filter for content older than other filters", + "tags": [ + "shell" + ] }, { "term": "On", "context": "On", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:342, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:366, Modules/ControlCenter/Widgets/DndPill.qml:17", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "On indefinitely", "context": "On indefinitely", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:126, Modules/Notifications/Center/DndDurationMenu.qml:154", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "On-Demand", "context": "On-Demand", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:361, Modules/Settings/DisplayConfig/OutputCard.qml:370", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "On-screen Displays", "context": "On-screen Displays", "reference": "Modals/Settings/SettingsSidebar.qml:178, Modules/Settings/DisplayWidgetsTab.qml:49, Modules/Settings/OSDTab.qml:25", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Once a day", "context": "Once a day", "reference": "Modules/Settings/SystemUpdaterTab.qml:28", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Online", "context": "Online", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:256", - "comment": "Tailscale filter: all online devices" + "comment": "Tailscale filter: all online devices", + "tags": [ + "shell" + ] }, { "term": "Only adjust gamma based on time or location rules.", "context": "Only adjust gamma based on time or location rules.", - "reference": "Modules/Settings/GammaControlTab.qml:140", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:139", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Only on Battery", "context": "Only on Battery", "reference": "Modules/Settings/WidgetsTabSection.qml:3231, Modules/Settings/WidgetsTabSection.qml:3352", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Only show windows from the current monitor on each dock", "context": "Only show windows from the current monitor on each dock", "reference": "Modules/Settings/DockTab.qml:163", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Only visible if hibernate is supported by your system", "context": "Only visible if hibernate is supported by your system", "reference": "Modules/Settings/PowerSleepTab.qml:466", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Opacity", "context": "Opacity", - "reference": "Modals/WindowRuleModal.qml:1107, Modals/DankColorPickerModal.qml:516, Modules/Settings/DockTab.qml:653, Modules/Settings/DankBarTab.qml:815, Modules/Settings/DankBarTab.qml:1465, Modules/Settings/DankBarTab.qml:1560, Modules/Settings/DankBarTab.qml:1669, Modules/Settings/WindowRulesTab.qml:94", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:1107, Modals/DankColorPickerModal.qml:516, Modules/Settings/DockTab.qml:652, Modules/Settings/DankBarTab.qml:815, Modules/Settings/DankBarTab.qml:1463, Modules/Settings/DankBarTab.qml:1557, Modules/Settings/DankBarTab.qml:1665, Modules/Settings/WindowRulesTab.qml:94", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Opaque", "context": "Opaque", "reference": "Modals/WindowRuleModal.qml:1586, Modules/Settings/WindowRulesTab.qml:124", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Open", "context": "Open", - "reference": "Modals/DankLauncherV2/Controller.qml:1245, Modals/DankLauncherV2/Controller.qml:1249, Modals/DankLauncherV2/Controller.qml:1263, Modules/Notepad/NotepadTextEditor.qml:864, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:773, Modules/Settings/NetworkWifiTab.qml:969, Modules/Settings/NetworkWifiTab.qml:1134, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/Notifications/Center/NotificationCard.qml:804, Modules/Notifications/Center/NotificationCard.qml:943", - "comment": "" + "reference": "Modals/DankLauncherV2/Controller.qml:1245, Modals/DankLauncherV2/Controller.qml:1249, Modals/DankLauncherV2/Controller.qml:1263, Modals/DankLauncherV2/LauncherContent.qml:411, Modules/Notepad/NotepadTextEditor.qml:864, Modules/Notifications/Center/NotificationCard.qml:804, Modules/Notifications/Center/NotificationCard.qml:943", + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Open", + "context": "network security type", + "reference": "Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:773, Modules/Settings/NetworkWifiTab.qml:969, Modules/Settings/NetworkWifiTab.qml:1134, Modules/ControlCenter/Details/NetworkDetail.qml:627", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Open App", "context": "Open App", "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:368", - "comment": "KDE Connect open SMS app button" + "comment": "KDE Connect open SMS app button", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Open Delay", "context": "Open Delay", - "reference": "Modules/Settings/DankBarTab.qml:1281", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1279", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open Dir", "context": "Open Dir", - "reference": "Modules/Settings/PluginsTab.qml:258", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:259", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open Frame", "context": "Open Frame", "reference": "Modules/Settings/Widgets/SettingsControlledByFrame.qml:67", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open From", "context": "Open From", "reference": "Modules/Notepad/NotepadSettings.qml:427", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open Notepad File", "context": "Open Notepad File", "reference": "Modules/Notepad/Notepad.qml:631", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open Trash", "context": "Open Trash", "reference": "Modules/Dock/DockTrashContextMenu.qml:20", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open Trash With", "context": "Open Trash With", - "reference": "Modules/Settings/DockTab.qml:542", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:541", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open a new note", "context": "Open a new note", "reference": "Modules/DankBar/Widgets/NotepadButton.qml:375", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open a terminal and run a custom command instead of the in-shell upgrade flow.", "context": "Open a terminal and run a custom command instead of the in-shell upgrade flow.", "reference": "Modules/Settings/SystemUpdaterTab.qml:332", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open as window", "context": "Open as window", "reference": "Modals/KeybindsContent.qml:85", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open folder", "context": "Open folder", "reference": "Modals/DankLauncherV2/Controller.qml:1263", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open in Browser", "context": "Open in Browser", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:301, dms-plugins/DankGifSearch/DankGifSearch.qml:248", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch" + ] }, { "term": "Open in terminal", "context": "Open in terminal", "reference": "Modals/DankLauncherV2/Controller.qml:1263", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open search bar to find text", "context": "Open search bar to find text", "reference": "Modules/Notepad/NotepadSettings.qml:223", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Open the launcher by hovering the emerge edge (when free of bar and dock)", "context": "Open the launcher by hovering the emerge edge (when free of bar and dock)", "reference": "Modules/Settings/FrameTab.qml:365", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", "context": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", - "reference": "Modules/Settings/DankBarTab.qml:1263", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1261", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:701, Modals/BrowserPickerModal.qml:13", - "comment": "" + "reference": "DMSShell.qml:705, Modals/BrowserPickerModal.qml:13", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Opening SMS app", "context": "Opening SMS app", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1672, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:812", - "comment": "Phone Connect SMS action" + "comment": "Phone Connect SMS action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Opening file browser", "context": "Opening file browser", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:668", - "comment": "Phone Connect browse action" + "comment": "Phone Connect browse action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Opening terminal: ", "context": "Opening terminal: ", "reference": "Modules/Settings/GreeterTab.qml:124", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Opens a picker of other active sessions on this seat", "context": "Opens a picker of other active sessions on this seat", "reference": "Modules/Settings/PowerSleepTab.qml:461", - "comment": "" - }, - { - "term": "Opens image files", - "context": "Opens image files", - "reference": "Modules/Settings/DefaultAppsTab.qml:344", - "comment": "Opens image files" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Opens the connected launcher in Connected Frame Mode.", "context": "Opens the connected launcher in Connected Frame Mode.", "reference": "Modules/Settings/LauncherTab.qml:142", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Optional description", "context": "Optional description", "reference": "Modules/Settings/PrinterTab.qml:819", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Optional location", "context": "Optional location", "reference": "Modules/Settings/PrinterTab.qml:798", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Optional state-based conditions applied to the first match.", "context": "Optional state-based conditions applied to the first match.", "reference": "Modals/WindowRuleModal.qml:875", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Options", "context": "Options", "reference": "Widgets/KeybindItem.qml:1258, Widgets/KeybindItem.qml:1751, Modules/Settings/WidgetsTabSection.qml:467, Modules/Settings/WidgetsTabSection.qml:539, Modules/Settings/WidgetsTabSection.qml:670, Modules/Settings/WidgetsTabSection.qml:710, Modules/Settings/WidgetsTabSection.qml:749, Modules/Settings/WidgetsTabSection.qml:788, Modules/Settings/WidgetsTabSection.qml:827, Modules/Settings/WidgetsTabSection.qml:934, Modules/Settings/WidgetsTabSection.qml:973, Modules/Settings/WidgetsTabSection.qml:1012, Modules/Settings/WidgetsTabSection.qml:1082, Modules/Settings/WidgetsTabSection.qml:1123", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Organize widgets into collapsible groups", "context": "Organize widgets into collapsible groups", "reference": "Modules/Settings/DesktopWidgetsTab.qml:219", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Original: %1", "context": "Original: %1", "reference": "Modules/Settings/AudioTab.qml:601, Modules/Settings/Widgets/DeviceAliasRow.qml:103", - "comment": "Shows the original device name before renaming" + "comment": "Shows the original device name before renaming", + "tags": [ + "settings" + ] }, { "term": "Other", "context": "Other", "reference": "Services/CupsService.qml:787", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Outer Gaps", "context": "Outer Gaps", - "reference": "Modules/Settings/CompositorLayoutTab.qml:451, Modules/Settings/CompositorLayoutTab.qml:603", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:451, Modules/Settings/CompositorLayoutTab.qml:602", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Outline", "context": "Outline", - "reference": "Modules/Settings/ThemeColorsTab.qml:1768, Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1787, Modules/Settings/LauncherTab.qml:737", - "comment": "outline color | surface border color" + "reference": "Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1769, Modules/Settings/ThemeColorsTab.qml:1786, Modules/Settings/LauncherTab.qml:736", + "comment": "outline color | surface border color", + "tags": [ + "settings" + ] }, { "term": "Output", "context": "Output", "reference": "Modals/WindowRuleModal.qml:985, Modules/Settings/WindowRulesTab.qml:100", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Output Area Almost Full", "context": "Output Area Almost Full", "reference": "Services/CupsService.qml:811", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Output Area Full", "context": "Output Area Full", "reference": "Services/CupsService.qml:812", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Output Devices", "context": "Output Devices", "reference": "Modules/Settings/AudioTab.qml:128", - "comment": "Audio settings: speaker/headphone devices" + "comment": "Audio settings: speaker/headphone devices", + "tags": [ + "settings" + ] }, { "term": "Output Tray Missing", "context": "Output Tray Missing", "reference": "Services/CupsService.qml:810", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Overcast", "context": "Overcast", "reference": "Services/WeatherService.qml:127", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Overflow", "context": "Overflow", "reference": "Modules/Settings/WidgetsTabSection.qml:3967", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Overlay", "context": "Overlay", "reference": "Modules/Settings/ThemeColorsTab.qml:40", - "comment": "widget background color option" + "comment": "widget background color option", + "tags": [ + "settings" + ] }, { "term": "Overridden by config", "context": "Overridden by config", "reference": "Widgets/KeybindItem.qml:418", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Override", "context": "Override", "reference": "Widgets/KeybindItem.qml:404", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/CompositorLayoutTab.qml:351, Modules/Settings/CompositorLayoutTab.qml:494, Modules/Settings/CompositorLayoutTab.qml:646", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:351, Modules/Settings/CompositorLayoutTab.qml:494, Modules/Settings/CompositorLayoutTab.qml:645", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/CompositorLayoutTab.qml:322, Modules/Settings/CompositorLayoutTab.qml:465, Modules/Settings/CompositorLayoutTab.qml:617", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:322, Modules/Settings/CompositorLayoutTab.qml:465, Modules/Settings/CompositorLayoutTab.qml:616", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Override global layout settings for this output", "context": "Override global layout settings for this output", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:210", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Override global transparency for Notepad", "context": "Override global transparency for Notepad", "reference": "Modules/Notepad/NotepadSettings.qml:356", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Override terminal with a custom command or script", "context": "Override terminal with a custom command or script", - "reference": "Modules/Settings/MuxTab.qml:54", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:53", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Override the global shadow with per-bar settings", "context": "Override the global shadow with per-bar settings", - "reference": "Modules/Settings/DankBarTab.qml:1637", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1633", + "comment": "", + "tags": [ + "settings" + ] }, { "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:1065", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1063", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Overrides", "context": "Overrides", "reference": "Modules/Settings/KeybindsTab.qml:78", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Overview", "context": "Overview", "reference": "Widgets/KeybindItem.qml:1133, Widgets/KeybindItem.qml:1136, Modules/DankDash/DankDashPopout.qml:18, Modules/Settings/DankDashTab.qml:22, Modules/DankBar/Widgets/WorkspaceSwitcher.qml:1078", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Overview of your network connections", "context": "Overview of your network connections", "reference": "Modules/Settings/NetworkStatusTab.qml:54", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Overwrite", "context": "Overwrite", "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:108", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Owner: %1", "context": "Owner: %1", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:464", - "comment": "Tailscale device owner" + "comment": "Tailscale device owner", + "tags": [ + "shell" + ] }, { "term": "PAM already provides fingerprint auth. Enable this to show it at login.", "context": "PAM already provides fingerprint auth. Enable this to show it at login.", "reference": "Modules/Settings/GreeterTab.qml:24", - "comment": "greeter fingerprint login setting" + "comment": "greeter fingerprint login setting", + "tags": [ + "settings" + ] }, { "term": "PAM already provides security-key auth. Enable this to show it at login.", "context": "PAM already provides security-key auth. Enable this to show it at login.", "reference": "Modules/Settings/GreeterTab.qml:44", - "comment": "greeter security key login setting" + "comment": "greeter security key login setting", + "tags": [ + "settings" + ] }, { "term": "PDF Reader", "context": "PDF Reader", - "reference": "Modules/Settings/DefaultAppsTab.qml:330", - "comment": "PDF Reader" + "reference": "Modules/Settings/DefaultAppsTab.qml:329", + "comment": "PDF Reader", + "tags": [ + "settings" + ] }, { "term": "PIN", "context": "PIN", "reference": "Modals/WifiPasswordModal.qml:193", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Package name (e.g., docker)", "context": "Package name (e.g., docker)", "reference": "Modules/Settings/SystemUpdaterTab.qml:233", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pad", "context": "Pad", "reference": "Modules/Settings/WallpaperTab.qml:296", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "term": "Pad Hours", "context": "Pad Hours", - "reference": "Modules/Settings/TimeWeatherTab.qml:96", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:95", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Padding", "context": "Padding", - "reference": "Modules/Settings/DockTab.qml:611, Modules/Settings/DankBarTab.qml:960", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:610, Modules/Settings/DankBarTab.qml:958", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pair", "context": "Pair", "reference": "Modals/BluetoothPairingModal.qml:319, Modules/ControlCenter/Details/BluetoothDetail.qml:594", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pair Bluetooth Device", "context": "Pair Bluetooth Device", "reference": "Modals/BluetoothPairingModal.qml:116", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Paired", "context": "Paired", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:334", - "comment": "" - }, - { - "term": "Pairing", - "context": "Pairing", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:302", - "comment": "KDE Connect pairing in progress status" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pairing failed", "context": "Pairing failed", "reference": "Modals/BluetoothPairingModal.qml:395, dms-plugins/DankKDEConnect/DankKDEConnect.qml:674, Modules/ControlCenter/Details/BluetoothDetail.qml:85", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { - "term": "Pairing request from", - "context": "Pairing request from", + "term": "Pairing request from %1", + "context": "Pairing request from %1", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:588", - "comment": "Phone Connect pairing request notification" + "comment": "Phone Connect pairing request notification", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Pairing request sent", "context": "Pairing request sent", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:677", - "comment": "Phone Connect pairing action" + "comment": "Phone Connect pairing action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Pairing requested", "context": "Pairing requested", "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:300", - "comment": "KDE Connect pairing requested status" + "comment": "KDE Connect pairing requested status", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Pairing...", "context": "Pairing...", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:566, Modules/ControlCenter/Details/BluetoothDetail.qml:591", - "comment": "" + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:302, Modules/ControlCenter/Details/BluetoothDetail.qml:566, Modules/ControlCenter/Details/BluetoothDetail.qml:591", + "comment": "KDE Connect pairing in progress status", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "Partly Cloudy", "context": "Partly Cloudy", "reference": "Services/WeatherService.qml:126", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Passkey:", "context": "Passkey:", "reference": "Modals/BluetoothPairingModal.qml:230", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Password", "context": "Password", "reference": "Modals/WifiPasswordModal.qml:185, Modals/WifiPasswordModal.qml:195, Modals/WifiPasswordModal.qml:539, Widgets/VpnProfileDelegate.qml:307, Modules/Settings/UsersTab.qml:402", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Password cannot be empty", "context": "Password cannot be empty", "reference": "Services/UsersService.qml:131, Services/UsersService.qml:147", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Password change failed (exit %1)", "context": "Password change failed (exit %1)", "reference": "Services/UsersService.qml:307", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Password set", "context": "Password set", "reference": "Services/UsersService.qml:318", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Password updated", "context": "Password updated", "reference": "Services/UsersService.qml:320", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Password...", "context": "Password...", "reference": "Modules/Greetd/GreeterContent.qml:1252", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Passwords do not match.", "context": "Passwords do not match.", "reference": "Modules/Settings/UsersTab.qml:448", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Paste", "context": "Paste", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:248, dms-plugins/DankGifSearch/DankGifSearch.qml:195, Modals/DankLauncherV2/Controller.qml:1268, Modals/Clipboard/ClipboardContextMenu.qml:70, Modules/Settings/ClipboardTab.qml:156", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch", + "settings", + "shell" + ] }, { "term": "Paste failed: %1", "context": "Paste failed: %1", "reference": "Services/ClipboardService.qml:81", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Path copied to clipboard", "context": "Path copied to clipboard", "reference": "Modules/Notepad/NotepadTextEditor.qml:986", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Path to a video file or folder containing videos", "context": "Path to a video file or folder containing videos", - "reference": "Modules/Settings/LockScreenTab.qml:550", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:676", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pattern", "context": "Pattern", - "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:567, Modules/Settings/NotificationsTab.qml:576", - "comment": "" + "reference": "Modules/Settings/RunningAppsTab.qml:87, Modules/Settings/NotificationsTab.qml:565, Modules/Settings/NotificationsTab.qml:574", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pause", "context": "Pause", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1858, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, Modules/Settings/PrinterTab.qml:1245, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:138", - "comment": "Media pause tooltip" + "comment": "Media pause tooltip", + "tags": [ + "plugin-dankkdeconnect", + "settings", + "shell" + ] }, { "term": "Paused", "context": "Paused", "reference": "Services/CupsService.qml:816", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pending", "context": "Pending", "reference": "Services/CupsService.qml:761", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pending Charge", "context": "Pending Charge", "reference": "Services/BatteryService.qml:330", - "comment": "battery status" + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "Pending Discharge", "context": "Pending Discharge", "reference": "Services/BatteryService.qml:332", - "comment": "battery status" + "comment": "battery status", + "tags": [ + "shell" + ] }, { "term": "Per-Mode Wallpapers", "context": "Per-Mode Wallpapers", "reference": "Modules/Settings/WallpaperTab.qml:379", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Per-Monitor Wallpapers", "context": "Per-Monitor Wallpapers", "reference": "Modules/Settings/WallpaperTab.qml:788", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Per-screen config", "context": "Per-screen config", "reference": "Modals/Greeter/GreeterWelcomePage.qml:130", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "Percentage", "context": "Percentage", "reference": "Modules/Settings/WidgetsTabSection.qml:2135, Modules/Settings/WidgetsTab.qml:143", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Performance", "context": "Performance", "reference": "Modals/ProcessListModal.qml:317, Common/Theme.qml:1644", - "comment": "power profile option" + "comment": "power profile option", + "tags": [ + "shell" + ] }, { "term": "Permanently delete %1 item(s)? This cannot be undone.", "context": "Permanently delete %1 item(s)? This cannot be undone.", - "reference": "DMSShell.qml:323", - "comment": "" + "reference": "DMSShell.qml:327", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Permission denied to set profile image.", "context": "Permission denied to set profile image.", "reference": "Services/PortalService.qml:191", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Personalization", "context": "Personalization", "reference": "Modals/Settings/SettingsSidebar.qml:72, Modals/Settings/SettingsSidebar.qml:676", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Phone Connect Not Available", "context": "Phone Connect Not Available", "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:30", - "comment": "Phone Connect unavailable error title" + "comment": "Phone Connect unavailable error title", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Phone number", "context": "Phone number", "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:209", - "comment": "KDE Connect SMS phone input placeholder" + "comment": "KDE Connect SMS phone input placeholder", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Pick a different file manager in Settings → Dock → Trash.", "context": "Pick a different file manager in Settings → Dock → Trash.", "reference": "Services/TrashService.qml:98", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pick a different random video each time from the same folder", "context": "Pick a different random video each time from the same folder", - "reference": "Modules/Settings/LockScreenTab.qml:586", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:712", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pick a terminal in Settings → Launcher (or set $TERMINAL).", "context": "Pick a terminal in Settings → Launcher (or set $TERMINAL).", "reference": "Services/SystemUpdateService.qml:205", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pick how long to pause notifications", "context": "Pick how long to pause notifications", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:124", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pictures", "context": "Pictures", "reference": "Modals/FileBrowser/FileBrowserContent.qml:278", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pin", "context": "Pin", "reference": "Modals/WindowRuleModal.qml:1582, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modals/Clipboard/ClipboardContextMenu.qml:32, Modules/Settings/WindowRulesTab.qml:123, Modules/Settings/ClipboardTab.qml:156, Modules/ControlCenter/Details/BluetoothDetail.qml:392, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:696", - "comment": "" + "comment": "pin item action", + "tags": [ + "plugin-danklauncherkeys", + "settings", + "shell" + ] }, { "term": "Pin to Dock", "context": "Pin to Dock", "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:177, Modules/Dock/DockContextMenu.qml:225, Modules/DankBar/Widgets/AppsDockContextMenu.qml:354", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ping", "context": "Ping", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1483, dms-plugins/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:635", - "comment": "KDE Connect ping tooltip" + "comment": "KDE Connect ping tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { - "term": "Ping sent to", - "context": "Ping sent to", + "term": "Ping sent to %1", + "context": "Ping sent to %1", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:635", - "comment": "Phone Connect ping action" + "comment": "Phone Connect ping action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Pinned", "context": "Pinned", "reference": "Modals/WindowRuleModal.qml:932, Modals/DankLauncherV2/Controller.qml:192, Modals/DankLauncherV2/Controller.qml:1271, Modules/Settings/WindowRulesTab.qml:56, Modules/ControlCenter/Details/BluetoothDetail.qml:392, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:696", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Pinned and running apps with drag-and-drop", "context": "Pinned and running apps with drag-and-drop", "reference": "Modules/Settings/WidgetsTab.qml:92", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pixelate", "context": "Pixelate", - "reference": "Modules/Settings/WallpaperTab.qml:1160", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1159", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Place a trash bin at the end of the dock", "context": "Place a trash bin at the end of the dock", - "reference": "Modules/Settings/DockTab.qml:533", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:532", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Place plugin directories here. Each plugin should have a plugin.json manifest file.", "context": "Place plugin directories here. Each plugin should have a plugin.json manifest file.", - "reference": "Modules/Settings/PluginsTab.qml:320", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:321", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Place plugins in %1", "context": "Place plugins in %1", - "reference": "Modules/Settings/PluginsTab.qml:441", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:442", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Place the bar on the Wayland overlay layer", "context": "Place the bar on the Wayland overlay layer", "reference": "Modules/Settings/DankBarTab.qml:801", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Place the dock on the Wayland overlay layer", "context": "Place the dock on the Wayland overlay layer", "reference": "Modules/Settings/DockTab.qml:96", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Play", "context": "Play", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1858, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410", - "comment": "Media play tooltip" + "comment": "Media play tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Play a video when the screen locks.", "context": "Play a video when the screen locks.", - "reference": "Modules/Settings/LockScreenTab.qml:532", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:658", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Play sound after logging in", "context": "Play sound after logging in", - "reference": "Modules/Settings/SoundsTab.qml:136", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:134", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Play sound when new notification arrives", "context": "Play sound when new notification arrives", - "reference": "Modules/Settings/SoundsTab.qml:146", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:144", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Play sound when power cable is connected", "context": "Play sound when power cable is connected", - "reference": "Modules/Settings/SoundsTab.qml:167", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:165", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Play sound when volume is adjusted", "context": "Play sound when volume is adjusted", - "reference": "Modules/Settings/SoundsTab.qml:156", - "comment": "" - }, - { - "term": "Play sounds for system events", - "context": "Play sounds for system events", - "reference": "Modules/Settings/SoundsTab.qml:74", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:154", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Playback", "context": "Playback", "reference": "Modules/ControlCenter/Details/AudioOutputDetail.qml:377", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Playback error: ", "context": "Playback error: ", "reference": "Modules/Lock/VideoScreensaver.qml:39", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Plays audio files", "context": "Plays audio files", - "reference": "Modules/Settings/DefaultAppsTab.qml:356", - "comment": "Plays audio files" - }, - { - "term": "Plays video files", - "context": "Plays video files", - "reference": "Modules/Settings/DefaultAppsTab.qml:350", - "comment": "Plays video files" + "reference": "Modules/Settings/DefaultAppsTab.qml:352", + "comment": "Plays audio files", + "tags": [ + "settings" + ] }, { "term": "Please wait...", "context": "Please wait...", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:525", - "comment": "network status" + "comment": "network status", + "tags": [ + "shell" + ] }, { "term": "Please write a name for your new %1 session", "context": "Please write a name for your new %1 session", "reference": "Modals/MuxModal.qml:106", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Plugged In", "context": "Plugged In", - "reference": "Services/BatteryService.qml:347, Services/BatteryService.qml:353, Modules/Settings/SoundsTab.qml:166, Modules/ControlCenter/Widgets/BatteryPill.qml:28", - "comment": "battery status" + "reference": "Services/BatteryService.qml:347, Services/BatteryService.qml:353, Modules/Settings/SoundsTab.qml:164, Modules/ControlCenter/Widgets/BatteryPill.qml:28", + "comment": "battery status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Plugin", "context": "Plugin", "reference": "Modals/DankLauncherV2/ResultItem.qml:224, Modals/DankLauncherV2/SpotlightResultRow.qml:63, Modules/Settings/DesktopWidgetBrowser.qml:411, Modules/ControlCenter/Models/WidgetModel.qml:321", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Plugin Directory", "context": "Plugin Directory", - "reference": "Modules/Settings/PluginsTab.qml:302", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:303", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin Management", "context": "Plugin Management", - "reference": "Modules/Settings/PluginsTab.qml:98", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:99", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin Visibility", "context": "Plugin Visibility", - "reference": "Modules/Settings/LauncherTab.qml:877", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:876", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin dependency missing", "context": "Plugin dependency missing", "reference": "Services/PluginService.qml:731", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Plugin disabled: %1", "context": "Plugin disabled: %1", "reference": "Modules/Settings/PluginListItem.qml:326", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin enabled: %1", "context": "Plugin enabled: %1", "reference": "Modules/Settings/PluginListItem.qml:321", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:288", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin reloaded: %1", "context": "Plugin reloaded: %1", "reference": "Modules/Settings/PluginListItem.qml:293", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin uninstalled: %1", "context": "Plugin uninstalled: %1", "reference": "Modules/Settings/PluginListItem.qml:252", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugin updated: %1", "context": "Plugin updated: %1", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:59, Modules/Settings/PluginListItem.qml:209", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:60, Modules/Settings/PluginListItem.qml:209", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Plugins", "context": "Plugins", "reference": "Modals/Greeter/GreeterWelcomePage.qml:121, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:472, Modals/DankLauncherV2/LauncherContent.qml:349, Modals/Settings/SettingsSidebar.qml:397, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298", - "comment": "greeter feature card title | greeter plugins link" + "comment": "greeter feature card title | greeter plugins link", + "tags": [ + "settings", + "shell" + ] }, { "term": "Pointer", "context": "Pointer", "reference": "Widgets/KeybindItem.qml:1378", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Polkit integration is disabled. User management requires Polkit to elevate privileges.", "context": "Polkit integration is disabled. User management requires Polkit to elevate privileges.", "reference": "Modules/Settings/UsersTab.qml:84", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Popout", "context": "Popout", "reference": "Modules/Notepad/NotepadSettings.qml:410", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Popout Shadows", "context": "Popout Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:2088", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2086", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Popouts", "context": "Popouts", - "reference": "Modules/Settings/TypographyMotionTab.qml:577, Modules/Settings/TypographyMotionTab.qml:625", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:577", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Popouts and Modals follow global Animation Speed (disable to customize independently)", "context": "Popouts and Modals follow global Animation Speed (disable to customize independently)", "reference": "Modules/Settings/TypographyMotionTab.qml:568", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Popup Only", "context": "Popup Only", "reference": "Modules/Settings/NotificationsTab.qml:131", - "comment": "notification rule action option" + "comment": "notification rule action option", + "tags": [ + "settings" + ] }, { "term": "Popup Position", "context": "Popup Position", - "reference": "Modules/Settings/NotificationsTab.qml:239", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:238", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Popup Shadow", "context": "Popup Shadow", - "reference": "Modules/Settings/NotificationsTab.qml:324", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:323", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Popup behavior, position", "context": "Popup behavior, position", "reference": "Modals/Greeter/GreeterCompletePage.qml:398", - "comment": "greeter notifications description" + "comment": "greeter notifications description", + "tags": [ + "shell" + ] + }, + { + "term": "Popups", + "context": "Popups", + "reference": "Modules/Settings/NotificationsTab.qml:206", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Port", "context": "Port", "reference": "Modules/Settings/PrinterTab.qml:536", - "comment": "Label for printer port number input field" + "comment": "Label for printer port number input field", + "tags": [ + "settings" + ] }, { "term": "Portal", "context": "Portal", - "reference": "Modules/Settings/WallpaperTab.qml:1162", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1161", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Position", "context": "Position", "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:482, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2070", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Position, pinned apps", "context": "Position, pinned apps", "reference": "Modals/Greeter/GreeterCompletePage.qml:423", - "comment": "greeter dock description" + "comment": "greeter dock description", + "tags": [ + "shell" + ] }, { "term": "Possible Override Conflicts", "context": "Possible Override Conflicts", "reference": "Modules/Settings/KeybindsTab.qml:387", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power", "context": "Power", "reference": "Modules/Settings/WidgetsTab.qml:272, Modules/ControlCenter/Details/BatteryDetail.qml:71, Modules/DankBar/Popouts/BatteryPopout.qml:190", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Power & Security", "context": "Power & Security", "reference": "Modals/Settings/SettingsSidebar.qml:365, Modals/Settings/SettingsSidebar.qml:664", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power & Sleep", "context": "Power & Sleep", "reference": "Modals/Settings/SettingsSidebar.qml:389", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power Action Confirmation", "context": "Power Action Confirmation", "reference": "Modules/Settings/PowerSleepTab.qml:496", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power Menu Customization", "context": "Power Menu Customization", "reference": "Modules/Settings/PowerSleepTab.qml:378", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power Mode", "context": "Power Mode", "reference": "Modals/PowerProfileModal.qml:131", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Power Off", "context": "Power Off", "reference": "Modals/PowerMenuModal.qml:205, Modules/Lock/LockPowerMenu.qml:118, Modules/Settings/PowerSleepTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Power Options", "context": "Power Options", "reference": "Modules/Lock/LockPowerMenu.qml:513", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Power Profile", "context": "Power Profile", - "reference": "Modules/Settings/OSDTab.qml:149", - "comment": "" + "reference": "Modules/Settings/OSDTab.qml:142", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power Profile Degradation", "context": "Power Profile Degradation", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:247, Modules/DankBar/Popouts/BatteryPopout.qml:612", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Power Profiles & Saving", "context": "Power Profiles & Saving", - "reference": "Modules/Settings/BatteryTab.qml:319", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:322", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power Saver", "context": "Power Saver", "reference": "Common/Theme.qml:1640", - "comment": "power profile option" + "comment": "power profile option", + "tags": [ + "shell" + ] }, { "term": "Power off monitors on lock", "context": "Power off monitors on lock", - "reference": "Modules/Settings/LockScreenTab.qml:450", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:623", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Power profile management available", "context": "Power profile management available", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:105, Modules/DankBar/Popouts/BatteryPopout.qml:175", - "comment": "" - }, - { - "term": "Power profile to use when AC power is connected.", - "context": "Power profile to use when AC power is connected.", - "reference": "Modules/Settings/BatteryTab.qml:335", - "comment": "" - }, - { - "term": "Power profile to use when running on battery power.", - "context": "Power profile to use when running on battery power.", - "reference": "Modules/Settings/BatteryTab.qml:353", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Power source", "context": "Power source", - "reference": "Modules/Settings/PowerSleepTab.qml:42, Modules/Settings/BatteryTab.qml:64", - "comment": "" + "reference": "Modules/Settings/PowerSleepTab.qml:42, Modules/Settings/BatteryTab.qml:65", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pre-fill the last successful username on the greeter", "context": "Pre-fill the last successful username on the greeter", "reference": "Modules/Settings/GreeterTab.qml:629", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Pre-select the last used session on the greeter", "context": "Pre-select the last used session on the greeter", "reference": "Modules/Settings/GreeterTab.qml:620", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Precip", "context": "Precip", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:441", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Precipitation", "context": "Precipitation", "reference": "Modules/DankDash/WeatherTab.qml:102", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Precipitation Chance", "context": "Precipitation Chance", "reference": "Modules/DankDash/WeatherForecastCard.qml:95", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Preference", "context": "Preference", "reference": "Modules/Settings/NetworkStatusTab.qml:151, Modules/Settings/NetworkStatusTab.qml:196", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Preset Widths (%)", "context": "Preset Widths (%)", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:310", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Press Ctrl+N or click 'New Session' to create one", "context": "Press Ctrl+N or click 'New Session' to create one", "reference": "Modals/MuxModal.qml:552", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Press Enter and the audio system will restart to apply the change", "context": "Press Enter and the audio system will restart to apply the change", "reference": "Modules/Settings/AudioTab.qml:658", - "comment": "Audio device rename dialog hint" + "comment": "Audio device rename dialog hint", + "tags": [ + "settings" + ] }, { "term": "Press Enter to paste, Shift+Enter to copy", "context": "Press Enter to paste, Shift+Enter to copy", - "reference": "Modules/Settings/ClipboardTab.qml:472", - "comment": "Clipboard behavior setting description" + "reference": "Modules/Settings/ClipboardTab.qml:471", + "comment": "Clipboard behavior setting description", + "tags": [ + "settings" + ] }, { "term": "Press key...", "context": "Press key...", "reference": "Widgets/KeybindItem.qml:667", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Pressure", "context": "Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:453, Modules/DankDash/WeatherTab.qml:97, Modules/DankDash/WeatherForecastCard.qml:90, Modules/Settings/TimeWeatherTab.qml:1088", - "comment": "" + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:453, Modules/DankDash/WeatherTab.qml:97, Modules/DankDash/WeatherForecastCard.qml:90, Modules/Settings/TimeWeatherTab.qml:1086", + "comment": "", + "tags": [ + "plugin-dankdesktopweather", + "settings", + "shell" + ] }, { "term": "Prevent screen timeout", "context": "Prevent screen timeout", "reference": "Modules/Settings/WidgetsTab.qml:209, Modules/ControlCenter/Models/WidgetModel.qml:154", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", "context": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", "reference": "Modules/Settings/MediaPlayerTab.qml:158", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Preview", "context": "Preview", "reference": "Modules/Notepad/NotepadTextEditor.qml:898", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Preview: %1", "context": "Preview: %1", - "reference": "Modules/Settings/TimeWeatherTab.qml:181, Modules/Settings/TimeWeatherTab.qml:268", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:179, Modules/Settings/TimeWeatherTab.qml:266", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Previous", "context": "Previous", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1881, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1433", - "comment": "Media previous tooltip" + "comment": "Media previous tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Previous page", "context": "Previous page", "reference": "Modules/DankDash/WallpaperTab.qml:645", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Primary", "context": "Primary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/ThemeColorsTab.qml:1670, Modules/Settings/ThemeColorsTab.qml:1684, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1722, Modules/Settings/ThemeColorsTab.qml:1768, Modules/Settings/ThemeColorsTab.qml:1771, Modules/Settings/ThemeColorsTab.qml:1779, Modules/Settings/ThemeColorsTab.qml:1791, Modules/Settings/ThemeColorsTab.qml:1962, Modules/Settings/ThemeColorsTab.qml:1966, Modules/Settings/ThemeColorsTab.qml:1975, Modules/Settings/ThemeColorsTab.qml:1986, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/WallpaperTab.qml:348, Modules/Settings/LauncherTab.qml:428, Modules/Settings/LauncherTab.qml:737, Modules/Settings/NetworkStatusTab.qml:131, Modules/Settings/DankBarTab.qml:1333, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:19, Modules/Settings/WorkspaceAppearanceCard.qml:60, Modules/Settings/WorkspaceAppearanceCard.qml:101, Modules/Settings/WorkspaceAppearanceCard.qml:130, Modules/Settings/WorkspaceAppearanceCard.qml:165, Modules/Settings/FrameTab.qml:231, Modules/Settings/Widgets/SettingsColorPicker.qml:42", - "comment": "button color option | color option | primary color | shadow color option | surface border color | tile color option | workspace color option" + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1667, Modules/Settings/ThemeColorsTab.qml:1669, Modules/Settings/ThemeColorsTab.qml:1683, Modules/Settings/ThemeColorsTab.qml:1705, Modules/Settings/ThemeColorsTab.qml:1707, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1770, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/ThemeColorsTab.qml:1790, Modules/Settings/ThemeColorsTab.qml:1960, Modules/Settings/ThemeColorsTab.qml:1964, Modules/Settings/ThemeColorsTab.qml:1973, Modules/Settings/ThemeColorsTab.qml:1984, Modules/Settings/DockTab.qml:402, Modules/Settings/DockTab.qml:686, Modules/Settings/WallpaperTab.qml:348, Modules/Settings/LauncherTab.qml:427, Modules/Settings/LauncherTab.qml:736, Modules/Settings/DankBarTab.qml:1331, Modules/Settings/DankBarTab.qml:1774, Modules/Settings/WorkspaceAppearanceCard.qml:19, Modules/Settings/WorkspaceAppearanceCard.qml:60, Modules/Settings/WorkspaceAppearanceCard.qml:101, Modules/Settings/WorkspaceAppearanceCard.qml:130, Modules/Settings/WorkspaceAppearanceCard.qml:165, Modules/Settings/FrameTab.qml:231, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "comment": "button color option | color option | primary color | shadow color option | surface border color | tile color option | workspace color option", + "tags": [ + "plugin-dankdesktopweather", + "settings" + ] + }, + { + "term": "Primary", + "context": "primary network connection label", + "reference": "Modules/Settings/NetworkStatusTab.qml:131", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Primary Container", "context": "Primary Container", - "reference": "Modules/Settings/ThemeColorsTab.qml:53, Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/ThemeColorsTab.qml:1671, Modules/Settings/ThemeColorsTab.qml:1678, Modules/Settings/ThemeColorsTab.qml:1688, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/ThemeColorsTab.qml:1709, Modules/Settings/ThemeColorsTab.qml:1716, Modules/Settings/ThemeColorsTab.qml:1726, Modules/Settings/WorkspaceAppearanceCard.qml:22, Modules/Settings/WorkspaceAppearanceCard.qml:63, Modules/Settings/WorkspaceAppearanceCard.qml:133, Modules/Settings/WorkspaceAppearanceCard.qml:168", - "comment": "button color option | tile color option | widget background color option | workspace color option" + "reference": "Modules/Settings/ThemeColorsTab.qml:53, Modules/Settings/ThemeColorsTab.qml:1667, Modules/Settings/ThemeColorsTab.qml:1670, Modules/Settings/ThemeColorsTab.qml:1677, Modules/Settings/ThemeColorsTab.qml:1687, Modules/Settings/ThemeColorsTab.qml:1705, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1715, Modules/Settings/ThemeColorsTab.qml:1725, Modules/Settings/WorkspaceAppearanceCard.qml:22, Modules/Settings/WorkspaceAppearanceCard.qml:63, Modules/Settings/WorkspaceAppearanceCard.qml:133, Modules/Settings/WorkspaceAppearanceCard.qml:168", + "comment": "button color option | tile color option | widget background color option | workspace color option", + "tags": [ + "settings" + ] }, { "term": "Print Server Management", "context": "Print Server Management", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:258", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Print Server not available", "context": "Print Server not available", "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:22, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Printer", "context": "Printer", "reference": "Modules/Settings/WidgetsTabSection.qml:2338, Modules/Settings/WidgetsTabSection.qml:2514", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Printer Classes", "context": "Printer Classes", "reference": "Modules/Settings/PrinterTab.qml:1583", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Printer created successfully", "context": "Printer created successfully", "reference": "Services/CupsService.qml:524", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Printer deleted", "context": "Printer deleted", "reference": "Services/CupsService.qml:541", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Printer name (no spaces)", "context": "Printer name (no spaces)", "reference": "Modules/Settings/PrinterTab.qml:777", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Printer reachable", "context": "Printer reachable", "reference": "Modules/Settings/PrinterTab.qml:652", - "comment": "Status message when test connection to printer succeeds" + "comment": "Status message when test connection to printer succeeds", + "tags": [ + "settings" + ] }, { "term": "Printers", "context": "Printers", - "reference": "Modals/Settings/SettingsSidebar.qml:337, Modules/Settings/PrinterTab.qml:220, Modules/Settings/PrinterTab.qml:882, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16", - "comment": "" - }, - { - "term": "Printers: ", - "context": "Printers: ", - "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:19", - "comment": "" + "reference": "Modals/Settings/SettingsSidebar.qml:337, Modules/Settings/PrinterTab.qml:220, Modules/Settings/PrinterTab.qml:882, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:19", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Prioritize performance", "context": "Prioritize performance", "reference": "Common/Theme.qml:1657", - "comment": "power profile description" + "comment": "power profile description", + "tags": [ + "shell" + ] }, { "term": "Priority", "context": "Priority", - "reference": "Modules/Settings/NotificationsTab.qml:652", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:650", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Privacy Indicator", "context": "Privacy Indicator", "reference": "Modules/Settings/WidgetsTab.qml:173", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Privacy Mode", "context": "Privacy Mode", - "reference": "Modules/Settings/NotificationsTab.qml:333, Modules/Notifications/Center/NotificationSettings.qml:315", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:332, Modules/Notifications/Center/NotificationSettings.qml:312", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Private Key Password", "context": "Private Key Password", "reference": "Modals/WifiPasswordModal.qml:190", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Process Count", "context": "Process Count", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:283", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Process exited with code %1", "context": "Process exited with code %1", "reference": "Modules/Settings/BatteryTab.qml:27", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Processes", "context": "Processes", - "reference": "Modals/ProcessListModal.qml:313, Modules/ProcessList/ProcessListPopout.qml:154, Modules/ProcessList/SystemView.qml:88", - "comment": "" - }, - { - "term": "Processes:", - "context": "Processes:", - "reference": "Modals/ProcessListModal.qml:497", - "comment": "process count label in footer" + "reference": "Modals/ProcessListModal.qml:313, Modals/ProcessListModal.qml:497, Modules/ProcessList/ProcessListPopout.qml:154, Modules/ProcessList/SystemView.qml:88", + "comment": "process count label in footer", + "tags": [ + "shell" + ] }, { "term": "Processing", "context": "Processing", "reference": "Services/CupsService.qml:765, Services/CupsService.qml:781", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Profile Image Error", "context": "Profile Image Error", "reference": "Services/PortalService.qml:198", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Profile activated: %1", "context": "Profile activated: %1", "reference": "Modules/Settings/DisplayConfigTab.qml:71", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile deleted", "context": "Profile deleted", "reference": "Modules/Settings/DisplayConfigTab.qml:77", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile error", "context": "Profile error", "reference": "Modules/Settings/DisplayConfigTab.qml:80", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile image is too large. Please use a smaller image.", "context": "Profile image is too large. Please use a smaller image.", "reference": "Services/PortalService.qml:189", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Profile name", "context": "Profile name", "reference": "Modules/Settings/DisplayConfigTab.qml:264", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile not found", "context": "Profile not found", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:333, Modules/Settings/DisplayConfig/DisplayConfigState.qml:645", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile not found in monitors.json", "context": "Profile not found in monitors.json", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:694", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile saved: %1", "context": "Profile saved: %1", "reference": "Modules/Settings/DisplayConfigTab.qml:74", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile when Plugged In (AC)", "context": "Profile when Plugged In (AC)", - "reference": "Modules/Settings/BatteryTab.qml:334", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:337", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Profile when on Battery", "context": "Profile when on Battery", - "reference": "Modules/Settings/BatteryTab.qml:352", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:354", + "comment": "", + "tags": [ + "settings" + ] + }, + { + "term": "Protection", + "context": "Protection", + "reference": "Modules/Settings/BatteryTab.qml:171", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Protocol", "context": "Protocol", "reference": "Widgets/VpnProfileDelegate.qml:68, Modules/Settings/NetworkVpnTab.qml:440, Modules/Settings/PrinterTab.qml:561", - "comment": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket" + "comment": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket", + "tags": [ + "settings", + "shell" + ] }, { "term": "Qt", "context": "Qt", "reference": "Modules/Settings/TypographyMotionTab.qml:350", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Qt colors applied successfully", "context": "Qt colors applied successfully", "reference": "Common/Theme.qml:1989", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Qt: distance-field renderer.", "context": "Qt: distance-field renderer.", "reference": "Modules/Settings/TypographyMotionTab.qml:419", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "QtMultimedia is not available", "context": "QtMultimedia is not available", "reference": "Modules/Lock/VideoScreensaver.qml:108", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "QtMultimedia is not available - video screensaver requires qt multimedia services", "context": "QtMultimedia is not available - video screensaver requires qt multimedia services", - "reference": "Modules/Settings/LockScreenTab.qml:521", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:647", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Quality", "context": "Quality", "reference": "Modules/Settings/TypographyMotionTab.qml:444", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Quick Access", "context": "Quick Access", "reference": "Modals/FileBrowser/FileBrowserSidebar.qml:22", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Quick access to application launcher", "context": "Quick access to application launcher", "reference": "Modules/Settings/WidgetsTab.qml:64", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Quick access to color picker", "context": "Quick access to color picker", "reference": "Modules/Settings/WidgetsTab.qml:258", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Quick access to notepad", "context": "Quick access to notepad", "reference": "Modules/Settings/WidgetsTab.qml:251", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Quick note-taking slideout panel", "context": "Quick note-taking slideout panel", "reference": "Modules/Settings/DisplayWidgetsTab.qml:62", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Quick system toggles", "context": "Quick system toggles", "reference": "Modals/Greeter/GreeterWelcomePage.qml:149", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] }, { "term": "RGB", "context": "RGB", "reference": "Modals/DankColorPickerModal.qml:622", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Radius", "context": "Radius", "reference": "Modules/Settings/WindowRulesTab.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Rain", "context": "Rain", "reference": "Services/WeatherService.qml:136, Services/WeatherService.qml:145", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Rain Chance", "context": "Rain Chance", - "reference": "Modules/Settings/TimeWeatherTab.qml:1138", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:1136", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Rainbow", "context": "Rainbow", "reference": "Common/Theme.qml:517", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Random", "context": "Random", - "reference": "Modules/Settings/WallpaperTab.qml:1146, Modules/Settings/WallpaperTab.qml:1169, Modules/Settings/WallpaperTab.qml:1172", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1145, Modules/Settings/WallpaperTab.qml:1168, Modules/Settings/WallpaperTab.qml:1171", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Rate", "context": "Rate", "reference": "Modules/Settings/NetworkWifiTab.qml:758, Modules/Settings/NetworkWifiTab.qml:1119", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Re-enter password", "context": "Re-enter password", "reference": "Modules/Settings/UsersTab.qml:433", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Reach local network devices while using an exit node", "context": "Reach local network devices while using an exit node", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:213", - "comment": "Tailscale allow LAN access description" + "comment": "Tailscale allow LAN access description", + "tags": [ + "shell" + ] }, { "term": "Read-only legacy config", "context": "Read-only legacy config", "reference": "Widgets/KeybindItem.qml:1856", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Read:", "context": "Read:", "reference": "Modules/ProcessList/DisksView.qml:73", - "comment": "disk read label" + "comment": "disk read label", + "tags": [ + "shell" + ] }, { "term": "Reason", "context": "Reason", "reference": "Services/CupsService.qml:357, Modules/Settings/PrinterTab.qml:1167", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Reboot", "context": "Reboot", "reference": "Modals/PowerMenuModal.qml:193, Modules/Lock/LockPowerMenu.qml:106, Modules/Settings/PowerSleepTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Recent", "context": "Recent", "reference": "Modals/Clipboard/ClipboardHeader.qml:54", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Recent Colors", "context": "Recent Colors", "reference": "Modals/DankColorPickerModal.qml:463", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Recent Images", "context": "Recent Images", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2118, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:870", - "comment": "Recent Images title" + "comment": "Recent Images title", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Recently Used Apps", "context": "Recently Used Apps", - "reference": "Modules/Settings/LauncherTab.qml:1422", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1421", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Recommended available", "context": "Recommended available", "reference": "Modules/Settings/PrinterTab.qml:729", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Refresh", "context": "Refresh", "reference": "Modules/Settings/GreeterTab.qml:453, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:239, Modules/DankDash/Overview/WeatherOverviewCard.qml:46", - "comment": "Refresh Tailscale device status" + "comment": "Refresh Tailscale device status", + "tags": [ + "settings", + "shell" + ] }, { "term": "Refresh Weather", "context": "Refresh Weather", "reference": "Modules/DankDash/WeatherTab.qml:168, Modules/DankDash/WeatherTab.qml:891", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Refreshing...", "context": "Refreshing...", "reference": "Modules/Settings/UsersTab.qml:142", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Regex", "context": "Regex", "reference": "Modules/Settings/NotificationsTab.qml:112", - "comment": "notification rule match type option" + "comment": "notification rule match type option", + "tags": [ + "settings" + ] }, { "term": "Regular", "context": "Regular", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:264, Modules/Settings/TypographyMotionTab.qml:276, Modules/Settings/TypographyMotionTab.qml:291", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Reject", "context": "Reject", "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:278", - "comment": "KDE Connect reject pairing button" + "comment": "KDE Connect reject pairing button", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Reject Jobs", "context": "Reject Jobs", "reference": "Modules/Settings/PrinterTab.qml:1319", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Related: %1", "context": "Related: %1", "reference": "Modules/Settings/PluginBrowser.qml:1764", - "comment": "related plugins" + "comment": "related plugins", + "tags": [ + "settings" + ] }, { "term": "Release", "context": "Release", "reference": "Widgets/KeybindItem.qml:1663", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Reload From Disk", "context": "Reload From Disk", "reference": "Modules/Notepad/Notepad.qml:401", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Reload Plugin", "context": "Reload Plugin", "reference": "Modules/Settings/PluginListItem.qml:301", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remaining", "context": "Remaining", "reference": "Modules/Settings/WidgetsTabSection.qml:2145", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remaining / Total", "context": "Remaining / Total", "reference": "Modules/Settings/WidgetsTabSection.qml:2150", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remember Last Mode", "context": "Remember Last Mode", - "reference": "Modules/Settings/LauncherTab.qml:1156", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1155", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remember Last Query", "context": "Remember Last Query", - "reference": "Modules/Settings/LauncherTab.qml:1165", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1164", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remember Type Filter", "context": "Remember Type Filter", - "reference": "Modules/Settings/ClipboardTab.qml:481", - "comment": "Clipboard behavior setting title" + "reference": "Modules/Settings/ClipboardTab.qml:480", + "comment": "Clipboard behavior setting title", + "tags": [ + "settings" + ] }, { "term": "Remember last session", "context": "Remember last session", "reference": "Modules/Settings/GreeterTab.qml:619", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remember last user", "context": "Remember last user", "reference": "Modules/Settings/GreeterTab.qml:628", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Reminder", "context": "Reminder", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:288", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Remove", "context": "Remove", "reference": "Modules/Plugins/ListSetting.qml:114, Modules/Plugins/ListSettingWithInput.qml:230, Modules/Settings/WidgetsTabSection.qml:1221, Modules/Settings/UsersTab.qml:267, Modules/Settings/UsersTab.qml:295, Modules/Settings/KeybindsTab.qml:109", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Remove \"%1\" from the %2 group?", "context": "Remove \"%1\" from the %2 group?", "reference": "Modules/Settings/UsersTab.qml:266, Modules/Settings/UsersTab.qml:294", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove Shortcut?", "context": "Remove Shortcut?", "reference": "Modules/Settings/KeybindsTab.qml:107", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove Widget Padding", "context": "Remove Widget Padding", - "reference": "Modules/Settings/DankBarTab.qml:1195", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1193", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove admin", "context": "Remove admin", - "reference": "Modules/Settings/UsersTab.qml:286", - "comment": "" - }, - { - "term": "Remove admin?", - "context": "Remove admin?", - "reference": "Modules/Settings/UsersTab.qml:293", - "comment": "" + "reference": "Modules/Settings/UsersTab.qml:286, Modules/Settings/UsersTab.qml:293", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove corner rounding from the bar", "context": "Remove corner rounding from the bar", - "reference": "Modules/Settings/DankBarTab.qml:1158", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1156", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove gaps and border when windows are maximized", "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:1307", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1305", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove greeter access?", "context": "Remove greeter access?", "reference": "Modules/Settings/UsersTab.qml:265", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove greeter login access", "context": "Remove greeter login access", "reference": "Modules/Settings/UsersTab.qml:258", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove inner padding from all widgets", "context": "Remove inner padding from all widgets", - "reference": "Modules/Settings/DankBarTab.qml:1196", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1194", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove match", "context": "Remove match", "reference": "Modals/WindowRuleModal.qml:825", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Remove the shortcut %1?", "context": "Remove the shortcut %1?", "reference": "Modules/Settings/KeybindsTab.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.", "context": "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.", "reference": "Modules/Settings/KeybindsTab.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Removed administrator privileges", "context": "Removed administrator privileges", "reference": "Services/UsersService.qml:409", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Removed greeter login access", "context": "Removed greeter login access", "reference": "Services/UsersService.qml:379", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Rename", "context": "Rename", "reference": "Modals/MuxModal.qml:597, Modals/WorkspaceRenameModal.qml:187", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Rename Session", "context": "Rename Session", "reference": "Modals/MuxModal.qml:82", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Rename Workspace", "context": "Rename Workspace", "reference": "Modals/WorkspaceRenameModal.qml:15", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Reorder & Group", "context": "Reorder & Group", "reference": "Modules/Settings/DesktopWidgetsTab.qml:545", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Repeat", "context": "Repeat", "reference": "Widgets/KeybindItem.qml:1619, Widgets/KeybindItem.qml:1775", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Replacement", "context": "Replacement", "reference": "Modules/Settings/RunningAppsTab.qml:106", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Report", "context": "Report", "reference": "Services/CupsService.qml:838", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Request Pairing", "context": "Request Pairing", "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:289", - "comment": "KDE Connect request pairing button" + "comment": "KDE Connect request pairing button", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "context": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "reference": "Modules/Settings/PowerSleepTab.qml:503", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Required plugin: ", "context": "Required plugin: ", - "reference": "Modules/Settings/ThemeColorsTab.qml:2668", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2666", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Requires %1", "context": "Requires %1", "reference": "Modules/Settings/PluginBrowser.qml:1504", - "comment": "version requirement" + "comment": "version requirement", + "tags": [ + "settings" + ] }, { "term": "Requires 'dgop' tool", "context": "Requires 'dgop' tool", "reference": "Modules/Settings/WidgetsTab.qml:130, Modules/Settings/WidgetsTab.qml:138, Modules/Settings/WidgetsTab.qml:146, Modules/Settings/WidgetsTab.qml:154, Modules/Settings/WidgetsTab.qml:161, Modules/Settings/WidgetsTab.qml:239, Modules/ControlCenter/Models/WidgetModel.qml:234", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Requires DMS %1", "context": "Requires DMS %1", "reference": "Modules/Settings/PluginListItem.qml:133", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Requires DMS server with sysupdate capability", "context": "Requires DMS server with sysupdate capability", "reference": "Modules/Settings/WidgetsTab.qml:268", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Requires MangoWC compositor", "context": "Requires MangoWC compositor", "reference": "Modules/Settings/WidgetsTab.qml:59", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Requires a newer version of Quickshell", "context": "Requires a newer version of Quickshell", "reference": "Modules/Settings/FrameTab.qml:190", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Requires greetd, dms-greeter, and your user in the greeter group (plus fprintd/pam_fprintd for fingerprint, pam_u2f for security keys). Auth changes apply automatically and may open a terminal for sudo.", "context": "Requires greetd, dms-greeter, and your user in the greeter group (plus fprintd/pam_fprintd for fingerprint, pam_u2f for security keys). Auth changes apply automatically and may open a terminal for sudo.", "reference": "Modules/Settings/GreeterTab.qml:652", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Requires night mode support", "context": "Requires night mode support", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:133", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Requires remembering the last user and session. Enable those options first.", "context": "Requires remembering the last user and session. Enable those options first.", "reference": "Modules/Settings/GreeterTab.qml:638", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Reset", "context": "Reset", "reference": "Modals/DankLauncherV2/AppEditView.qml:259, Modules/Settings/WidgetsTab.qml:1268, Modules/Settings/KeybindsTab.qml:122, Modules/Settings/DankDashTab.qml:248, Modules/Settings/DankDashTab.qml:263, Modules/Settings/Widgets/SettingsSliderRow.qml:144, Modules/Settings/Widgets/SettingsSliderCard.qml:130, Modules/ControlCenter/Components/EditControls.qml:306", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Reset Position", "context": "Reset Position", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:135, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Reset Size", "context": "Reset Size", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:149, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122", - "comment": "" - }, - { - "term": "Reset to Default?", - "context": "Reset to Default?", - "reference": "Modules/Settings/KeybindsTab.qml:120", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Reset to default", "context": "Reset to default", - "reference": "Widgets/KeybindItem.qml:1843", - "comment": "" + "reference": "Widgets/KeybindItem.qml:1843, Modules/Settings/KeybindsTab.qml:120", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Reset to default name", "context": "Reset to default name", "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:127", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Resize Widget", "context": "Resize Widget", "reference": "Modules/Settings/DesktopWidgetsTab.qml:503", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Resize on Border", "context": "Resize on Border", - "reference": "Modules/Settings/CompositorLayoutTab.qml:523", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:522", + "comment": "", + "tags": [ + "settings" + ] }, { "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:524", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:523", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Resolution & Refresh", "context": "Resolution & Refresh", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:138", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Resolution, position, scale", "context": "Resolution, position, scale", "reference": "Modals/Greeter/GreeterCompletePage.qml:374", - "comment": "greeter displays description" + "comment": "greeter displays description", + "tags": [ + "shell" + ] }, { "term": "Restart DMS", "context": "Restart DMS", "reference": "Modals/PowerMenuModal.qml:229, Modules/Settings/PowerSleepTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Restart the DankMaterialShell", "context": "Restart the DankMaterialShell", "reference": "Modules/Settings/PowerSleepTab.qml:456", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Restarting audio system...", "context": "Restarting audio system...", "reference": "Modules/Settings/AudioTab.qml:504", - "comment": "Loading overlay while WirePlumber restarts" + "comment": "Loading overlay while WirePlumber restarts", + "tags": [ + "settings" + ] }, { "term": "Restore Special Workspace Windows", "context": "Restore Special Workspace Windows", "reference": "Modules/Settings/DockTab.qml:180", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Restore the last selected mode (tab) when the launcher is opened", "context": "Restore the last selected mode (tab) when the launcher is opened", - "reference": "Modules/Settings/LauncherTab.qml:1157", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1156", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Resume", "context": "Resume", "reference": "Modules/Settings/PrinterTab.qml:1245, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:138", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Reveal the arcs where surfaces meet the frame", "context": "Reveal the arcs where surfaces meet the frame", "reference": "Modules/Settings/FrameTab.qml:333", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Reverse Scrolling Direction", "context": "Reverse Scrolling Direction", "reference": "Modules/Settings/WorkspacesTab.qml:173", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:174", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Revert", "context": "Revert", "reference": "Modals/DisplayConfirmationModal.qml:140", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Rewind 10s", "context": "Rewind 10s", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1889, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1441", - "comment": "Media rewind tooltip" + "comment": "Media rewind tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Right", "context": "Right", "reference": "Modules/Notepad/NotepadSettings.qml:434, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:348, Modules/Settings/DankBarTab.qml:493", - "comment": "" + "comment": "screen edge position", + "tags": [ + "settings", + "shell" + ] }, { "term": "Right Center", "context": "Right Center", "reference": "Modules/Settings/OSDTab.qml:49, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:70", - "comment": "screen position option" + "comment": "screen position option", + "tags": [ + "settings" + ] }, { "term": "Right Section", "context": "Right Section", "reference": "Modules/Settings/WidgetSelectionPopup.qml:32, Modules/Settings/WidgetsTab.qml:1496", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Right Tiling", "context": "Right Tiling", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:53", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Right-click and drag anywhere on the widget", "context": "Right-click and drag anywhere on the widget", "reference": "Modules/Settings/DesktopWidgetsTab.qml:470", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Right-click and drag the bottom-right corner", "context": "Right-click and drag the bottom-right corner", "reference": "Modules/Settings/DesktopWidgetsTab.qml:512", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Right-click bar widget to cycle", "context": "Right-click bar widget to cycle", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:294", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Ring", "context": "Ring", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1463, dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:613", - "comment": "KDE Connect ring tooltip" + "comment": "KDE Connect ring tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { - "term": "Ringing", - "context": "Ringing", + "term": "Ringing %1...", + "context": "Ringing %1...", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:626", - "comment": "Phone Connect ring action" + "comment": "Phone Connect ring action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Ripple Effects", "context": "Ripple Effects", - "reference": "Modules/Settings/TypographyMotionTab.qml:745", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:743", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Root Filesystem", "context": "Root Filesystem", "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:128", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/CompositorLayoutTab.qml:338, Modules/Settings/CompositorLayoutTab.qml:481, Modules/Settings/CompositorLayoutTab.qml:633", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:338, Modules/Settings/CompositorLayoutTab.qml:481, Modules/Settings/CompositorLayoutTab.qml:632", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Rule", "context": "Rule", - "reference": "Modals/WindowRuleModal.qml:445, Modules/Settings/NotificationsTab.qml:513", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:445", + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Rule %1", + "context": "Rule %1", + "reference": "Modules/Settings/NotificationsTab.qml:511", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Rule Name", "context": "Rule Name", "reference": "Modals/WindowRuleModal.qml:709", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Rules", + "context": "Rules", + "reference": "Modules/Settings/NotificationsTab.qml:446", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Rules (%1)", "context": "Rules (%1)", "reference": "Modules/Settings/WindowRulesTab.qml:559", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:847", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Run Again", "context": "Run Again", "reference": "Modals/Greeter/GreeterDoctorPage.qml:372", - "comment": "greeter doctor page button" + "comment": "greeter doctor page button", + "tags": [ + "shell" + ] }, { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2472", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2470", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:2462", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2460", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Run a program (e.g., firefox, kitty)", "context": "Run a program (e.g., firefox, kitty)", "reference": "Widgets/KeybindItem.qml:873", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Run a shell command (e.g., notify-send)", "context": "Run a shell command (e.g., notify-send)", "reference": "Widgets/KeybindItem.qml:874", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Run paru/yay with AUR enabled when 'Update All' is clicked.", "context": "Run paru/yay with AUR enabled when 'Update All' is clicked.", "reference": "Modules/Settings/SystemUpdaterTab.qml:176", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Running Apps", "context": "Running Apps", "reference": "Modals/Settings/SettingsSidebar.qml:289, Modules/Settings/WidgetsTab.qml:84", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Running Apps Settings", "context": "Running Apps Settings", "reference": "Modules/Settings/WidgetsTabSection.qml:3680", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Running greeter sync...", "context": "Running greeter sync...", "reference": "Modules/Settings/GreeterTab.qml:284", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Running in terminal", "context": "Running in terminal", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:492", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "SDR Brightness", "context": "SDR Brightness", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2104", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "SDR Saturation", "context": "SDR Saturation", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2106", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "SMS", "context": "SMS", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1560, dms-plugins/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:718", - "comment": "KDE Connect SMS tooltip" + "comment": "KDE Connect SMS tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "SMS sent successfully", "context": "SMS sent successfully", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1662, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:802", - "comment": "Phone Connect SMS action" + "comment": "Phone Connect SMS action", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Saturation", "context": "Saturation", "reference": "Modals/WindowRuleModal.qml:1308, Modules/Settings/WindowRulesTab.qml:135", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Save", "context": "Save", "reference": "Modals/DankColorPickerModal.qml:752, Widgets/KeybindItem.qml:1403, Widgets/KeybindItem.qml:1879, Modals/DankLauncherV2/AppEditView.qml:307, Modals/FileBrowser/FileBrowserSaveRow.qml:56, Modals/Clipboard/ClipboardEditor.qml:352, Modals/Clipboard/ClipboardEditor.qml:438, Modules/Notepad/NotepadTextEditor.qml:848, Modules/Notepad/Notepad.qml:771, Modules/Settings/DisplayConfigTab.qml:406, Modules/Settings/AudioTab.qml:694, Modules/DankDash/Overview/CalendarEventEditor.qml:332", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Save Notepad File", "context": "Save Notepad File", "reference": "Modules/Notepad/Notepad.qml:564", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Save QR Code", "context": "Save QR Code", "reference": "Modals/WifiQRCodeModal.qml:81", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Save and close", "context": "Save and close", "reference": "Modals/Clipboard/ClipboardEditor.qml:476", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Save and paste", "context": "Save and paste", "reference": "Modals/Clipboard/ClipboardEditor.qml:515", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Save and switch between display configurations", "context": "Save and switch between display configurations", "reference": "Modules/Settings/DisplayConfigTab.qml:143", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Save credentials", "context": "Save credentials", "reference": "Widgets/VpnProfileDelegate.qml:314", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Save critical priority notifications to history", "context": "Save critical priority notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:938", - "comment": "notification history setting" + "reference": "Modules/Settings/NotificationsTab.qml:933", + "comment": "notification history setting", + "tags": [ + "settings" + ] }, { "term": "Save dismissed notifications to history", "context": "Save dismissed notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:855", - "comment": "notification history toggle description" + "reference": "Modules/Settings/NotificationsTab.qml:850", + "comment": "notification history toggle description", + "tags": [ + "settings" + ] }, { "term": "Save low priority notifications to history", "context": "Save low priority notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:920", - "comment": "notification history setting" + "reference": "Modules/Settings/NotificationsTab.qml:915", + "comment": "notification history setting", + "tags": [ + "settings" + ] }, { "term": "Save normal priority notifications to history", "context": "Save normal priority notifications to history", - "reference": "Modules/Settings/NotificationsTab.qml:929", - "comment": "notification history setting" + "reference": "Modules/Settings/NotificationsTab.qml:924", + "comment": "notification history setting", + "tags": [ + "settings" + ] }, { "term": "Save password", "context": "Save password", "reference": "Modals/WifiPasswordModal.qml:650", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Saved", "context": "Saved", "reference": "Modals/Clipboard/ClipboardHeader.qml:54, Modules/Notepad/NotepadTextEditor.qml:1035, Modules/Settings/NetworkWifiTab.qml:579, Modules/ControlCenter/Details/NetworkDetail.qml:633", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Saved Configurations", "context": "Saved Configurations", "reference": "Modules/Settings/NetworkEthernetTab.qml:388", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Saved Networks", "context": "Saved Networks", "reference": "Modules/Settings/NetworkWifiTab.qml:843", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Saved Note", "context": "Saved Note", "reference": "Modules/DankBar/Widgets/NotepadButton.qml:333", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Saved item deleted", "context": "Saved item deleted", "reference": "Services/ClipboardService.qml:290", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Saving...", "context": "Saving...", - "reference": "Modals/WindowRuleModal.qml:1944, Modules/Notepad/NotepadTextEditor.qml:1028", - "comment": "" - }, - { - "term": "Saving…", - "context": "Saving…", - "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:332", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:1944, Modules/Notepad/NotepadTextEditor.qml:1028, Modules/DankDash/Overview/CalendarEventEditor.qml:332", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Scale", "context": "Scale", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2074", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scale DankBar font sizes independently", "context": "Scale DankBar font sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1092", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1090", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scale DankBar icon sizes independently", "context": "Scale DankBar icon sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1119", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1117", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scale all font sizes throughout the shell", "context": "Scale all font sizes throughout the shell", "reference": "Modules/Settings/TypographyMotionTab.qml:322", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scan", "context": "Scan", - "reference": "Modules/Settings/PluginsTab.qml:245, Modules/ControlCenter/Details/BluetoothDetail.qml:169", - "comment": "" - }, - { - "term": "Scanning", - "context": "Scanning", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:169", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:246, Modules/ControlCenter/Details/BluetoothDetail.qml:169", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Scanning...", "context": "Scanning...", - "reference": "Modules/Settings/PrinterTab.qml:449, Modules/Settings/NetworkWifiTab.qml:423", - "comment": "" + "reference": "Modules/Settings/PrinterTab.qml:449, Modules/Settings/NetworkWifiTab.qml:423, Modules/ControlCenter/Details/BluetoothDetail.qml:169", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Science", "context": "Science", "reference": "Services/AppSearchService.qml:683", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Score", "context": "Score", "reference": "Modals/DankLauncherV2/LauncherContent.qml:697, Modals/DankLauncherV2/LauncherContent.qml:705, Modals/DankLauncherV2/LauncherContent.qml:708, Modals/DankLauncherV2/LauncherContent.qml:712", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Screen sharing", "context": "Screen sharing", "reference": "Modules/Settings/WidgetsTabSection.qml:2348, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/WidgetsTabSection.qml:2968", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Screenshot unavailable", "context": "Screenshot unavailable", "reference": "Modules/Settings/PluginBrowser.qml:1603", - "comment": "plugin browser screenshot error" + "comment": "plugin browser screenshot error", + "tags": [ + "settings" + ] }, { "term": "Scroll", "context": "Scroll", "reference": "Modules/Settings/WallpaperTab.qml:296, Modules/Settings/WindowRulesTab.qml:107", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "term": "Scroll Factor", "context": "Scroll Factor", "reference": "Modals/WindowRuleModal.qml:1203", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Scroll GitHub", "context": "Scroll GitHub", "reference": "Modules/Settings/AboutTab.qml:75, Modules/Settings/AboutTab.qml:77", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scroll Wheel", "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:79, Modules/Settings/DankBarTab.qml:1850", - "comment": "" + "reference": "Modules/Settings/MediaPlayerTab.qml:79, Modules/Settings/DankBarTab.qml:1845", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scroll song title", "context": "Scroll song title", "reference": "Modules/Settings/MediaPlayerTab.qml:48", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scroll title if it doesn't fit in widget", "context": "Scroll title if it doesn't fit in widget", "reference": "Modules/Settings/MediaPlayerTab.qml:49", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scroll wheel behavior on media widget", "context": "Scroll wheel behavior on media widget", "reference": "Modules/Settings/MediaPlayerTab.qml:80", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Scrolling", "context": "Scrolling", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:54", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Search App Actions", "context": "Search App Actions", - "reference": "Modules/Settings/LauncherTab.qml:1147", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1146", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Search Options", "context": "Search Options", - "reference": "Modules/Settings/LauncherTab.qml:1141", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1140", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Search applications...", "context": "Search applications...", "reference": "Modules/Settings/Widgets/AppBrowserPopup.qml:157", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "context": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:217", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Search devices...", "context": "Search devices...", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:227", - "comment": "Tailscale device search placeholder" + "comment": "Tailscale device search placeholder", + "tags": [ + "shell" + ] }, { "term": "Search for a location...", "context": "Search for a location...", "reference": "Widgets/DankLocationSearch.qml:20", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Search installed plugins...", "context": "Search installed plugins...", - "reference": "Modules/Settings/PluginsTab.qml:387", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:388", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Search keybinds...", "context": "Search keybinds...", "reference": "Modules/Settings/KeybindsTab.qml:316", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Search keyboard shortcuts from your compositor and applications", "context": "Search keyboard shortcuts from your compositor and applications", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:78", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Search plugins...", "context": "Search plugins...", "reference": "Modules/Settings/PluginBrowser.qml:852", - "comment": "plugin search placeholder" + "comment": "plugin search placeholder", + "tags": [ + "settings" + ] }, { "term": "Search processes...", "context": "Search processes...", "reference": "Modals/ProcessListModal.qml:415", - "comment": "process search placeholder" + "comment": "process search placeholder", + "tags": [ + "shell" + ] }, { "term": "Search sessions...", "context": "Search sessions...", "reference": "Modals/MuxModal.qml:326", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Search themes...", "context": "Search themes...", "reference": "Modules/Settings/ThemeBrowser.qml:315", - "comment": "theme search placeholder" + "comment": "theme search placeholder", + "tags": [ + "settings" + ] }, { "term": "Search widgets...", "context": "Search widgets...", "reference": "Modules/Settings/WidgetSelectionPopup.qml:308, Modules/Settings/DesktopWidgetBrowser.qml:290", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Search...", "context": "Search...", "reference": "Widgets/DankDropdown.qml:402, Modals/Settings/SettingsSidebar.qml:733, Modules/ProcessList/ProcessListPopout.qml:199", - "comment": "" - }, - { - "term": "Searching", - "context": "Searching", - "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:159", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Searching...", "context": "Searching...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/DankGifSearch/DankGifSearch.qml:83", - "comment": "" + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/DankGifSearch/DankGifSearch.qml:83, Modals/DankLauncherV2/SpotlightResultsList.qml:159", + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch", + "shell" + ] }, { "term": "Second Factor (AND)", "context": "Second Factor (AND)", - "reference": "Modules/Settings/LockScreenTab.qml:502, Modules/Settings/LockScreenTab.qml:503, Modules/Settings/LockScreenTab.qml:505", - "comment": "U2F mode option: key required after password or fingerprint" + "reference": "Modules/Settings/LockScreenTab.qml:511, Modules/Settings/LockScreenTab.qml:512, Modules/Settings/LockScreenTab.qml:514", + "comment": "U2F mode option: key required after password or fingerprint", + "tags": [ + "settings" + ] }, { "term": "Secondary", "context": "Secondary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/ThemeColorsTab.qml:1672, Modules/Settings/ThemeColorsTab.qml:1680, Modules/Settings/ThemeColorsTab.qml:1690, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/ThemeColorsTab.qml:1718, Modules/Settings/ThemeColorsTab.qml:1728, Modules/Settings/ThemeColorsTab.qml:1768, Modules/Settings/ThemeColorsTab.qml:1772, Modules/Settings/ThemeColorsTab.qml:1781, Modules/Settings/ThemeColorsTab.qml:1793, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:737, Modules/Settings/DankBarTab.qml:1333, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:25, Modules/Settings/WorkspaceAppearanceCard.qml:66, Modules/Settings/WorkspaceAppearanceCard.qml:104, Modules/Settings/WorkspaceAppearanceCard.qml:136, Modules/Settings/WorkspaceAppearanceCard.qml:171, Modules/Settings/Widgets/SettingsColorPicker.qml:47", - "comment": "button color option | color option | secondary color | surface border color | tile color option | workspace color option" + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1667, Modules/Settings/ThemeColorsTab.qml:1671, Modules/Settings/ThemeColorsTab.qml:1679, Modules/Settings/ThemeColorsTab.qml:1689, Modules/Settings/ThemeColorsTab.qml:1705, Modules/Settings/ThemeColorsTab.qml:1709, Modules/Settings/ThemeColorsTab.qml:1717, Modules/Settings/ThemeColorsTab.qml:1727, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1771, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/ThemeColorsTab.qml:1792, Modules/Settings/DockTab.qml:686, Modules/Settings/LauncherTab.qml:736, Modules/Settings/DankBarTab.qml:1331, Modules/Settings/DankBarTab.qml:1774, Modules/Settings/WorkspaceAppearanceCard.qml:25, Modules/Settings/WorkspaceAppearanceCard.qml:66, Modules/Settings/WorkspaceAppearanceCard.qml:104, Modules/Settings/WorkspaceAppearanceCard.qml:136, Modules/Settings/WorkspaceAppearanceCard.qml:171, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "comment": "button color option | color option | secondary color | surface border color | tile color option | workspace color option", + "tags": [ + "plugin-dankdesktopweather", + "settings" + ] }, { "term": "Secondary Container", "context": "Secondary Container", "reference": "Modules/Settings/ThemeColorsTab.qml:56, Modules/Settings/WorkspaceAppearanceCard.qml:28, Modules/Settings/WorkspaceAppearanceCard.qml:69, Modules/Settings/WorkspaceAppearanceCard.qml:139, Modules/Settings/WorkspaceAppearanceCard.qml:174", - "comment": "widget background color option | workspace color option" + "comment": "widget background color option | workspace color option", + "tags": [ + "settings" + ] }, { "term": "Secured", "context": "Secured", "reference": "Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:969, Modules/ControlCenter/Details/NetworkDetail.qml:627", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Security", "context": "Security", "reference": "Modules/Settings/NetworkWifiTab.qml:772, Modules/Settings/NetworkWifiTab.qml:1133", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Security & privacy", "context": "Security & privacy", "reference": "Modals/Greeter/GreeterWelcomePage.qml:157", - "comment": "greeter feature card description" + "comment": "greeter feature card description", + "tags": [ + "shell" + ] + }, + { + "term": "Security Key PAM Source", + "context": "Security Key PAM Source", + "reference": "Modules/Settings/LockScreenTab.qml:524", + "comment": "lock screen dedicated U2F PAM source setting", + "tags": [ + "settings" + ] }, { "term": "Security key mode", "context": "Security key mode", - "reference": "Modules/Settings/LockScreenTab.qml:499", - "comment": "lock screen U2F security key mode setting" + "reference": "Modules/Settings/LockScreenTab.qml:508", + "comment": "lock screen U2F security key mode setting", + "tags": [ + "settings" + ] }, { "term": "Security-key availability could not be confirmed.", "context": "Security-key availability could not be confirmed.", - "reference": "Modules/Settings/GreeterTab.qml:54, Modules/Settings/LockScreenTab.qml:89", - "comment": "security key setting status" + "reference": "Modules/Settings/GreeterTab.qml:54, Modules/Settings/LockScreenTab.qml:120", + "comment": "security key setting status", + "tags": [ + "settings" + ] }, { "term": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", "context": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", - "reference": "Modules/Settings/GreeterTab.qml:50, Modules/Settings/LockScreenTab.qml:85", - "comment": "security key setting status" + "reference": "Modules/Settings/GreeterTab.qml:50, Modules/Settings/LockScreenTab.qml:116", + "comment": "security key setting status", + "tags": [ + "settings" + ] }, { "term": "Select", "context": "Select", "reference": "Modals/DankLauncherV2/Controller.qml:1576", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Select Application", "context": "Select Application", "reference": "Modals/AppPickerModal.qml:12, Modules/Settings/Widgets/AppBrowserPopup.qml:22, Modules/Settings/Widgets/AppBrowserPopup.qml:110", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Select Bar", "context": "Select Bar", "reference": "Modules/Settings/WidgetsTab.qml:1183", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select Custom Theme", "context": "Select Custom Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2975", - "comment": "custom theme file browser title" + "reference": "Modules/Settings/ThemeColorsTab.qml:2973", + "comment": "custom theme file browser title", + "tags": [ + "settings" + ] }, { "term": "Select Dock Launcher Logo", "context": "Select Dock Launcher Logo", "reference": "Modules/Settings/DockTab.qml:17", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select File to Send", "context": "Select File to Send", "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:373", - "comment": "KDE Connect file browser title" + "comment": "KDE Connect file browser title", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Select Launcher Logo", "context": "Select Launcher Logo", "reference": "Modules/Settings/LauncherTab.qml:46", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select Profile Image", "context": "Select Profile Image", "reference": "Modals/Settings/SettingsModal.qml:135", - "comment": "profile image file browser title" + "comment": "profile image file browser title", + "tags": [ + "settings" + ] }, { "term": "Select Video or Folder", "context": "Select Video or Folder", - "reference": "Modules/Settings/LockScreenTab.qml:110", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:141", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select Wallpaper", "context": "Select Wallpaper", - "reference": "Modals/Settings/SettingsModal.qml:159, Modules/Settings/WallpaperTab.qml:1301, Modules/Settings/WallpaperTab.qml:1323, Modules/Settings/WallpaperTab.qml:1343", - "comment": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title" + "reference": "Modals/Settings/SettingsModal.qml:159, Modules/Settings/WallpaperTab.qml:1300, Modules/Settings/WallpaperTab.qml:1322, Modules/Settings/WallpaperTab.qml:1342", + "comment": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", + "tags": [ + "settings" + ] }, { "term": "Select Wallpaper Directory", "context": "Select Wallpaper Directory", "reference": "Modules/DankDash/WallpaperTab.qml:403", - "comment": "wallpaper directory file browser title" + "comment": "wallpaper directory file browser title", + "tags": [ + "shell" + ] }, { "term": "Select a color from the palette or use custom sliders", "context": "Select a color from the palette or use custom sliders", "reference": "Modals/DankColorPickerModal.qml:218", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Select a desktop application", "context": "Select a desktop application", "reference": "Modules/Settings/AutoStartTab.qml:415", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.", "context": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.", "reference": "Modules/Settings/DesktopWidgetBrowser.qml:268", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select a widget to add. You can add multiple instances of the same widget if needed.", "context": "Select a widget to add. You can add multiple instances of the same widget if needed.", "reference": "Modules/Settings/WidgetSelectionPopup.qml:286", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select a window...", "context": "Select a window...", "reference": "Modules/Settings/WindowRulesTab.qml:449", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select an active session to switch to. The current session stays running in the background.", "context": "Select an active session to switch to. The current session stays running in the background.", "reference": "Modals/SwitchUserModal.qml:107", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Select an image file...", "context": "Select an image file...", - "reference": "Modules/Settings/DockTab.qml:354, Modules/Settings/LauncherTab.qml:376", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:353, Modules/Settings/LauncherTab.qml:375", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select at least one provider", "context": "Select at least one provider", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:178", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Select background image", "context": "Select background image", "reference": "Modules/Settings/Widgets/SettingsWallpaperPicker.qml:14", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select device", "context": "Select device", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:569, Modules/ControlCenter/Components/DragDropGrid.qml:580", - "comment": "audio status" + "comment": "audio status", + "tags": [ + "shell" + ] }, { "term": "Select device...", "context": "Select device...", "reference": "Modules/Settings/PrinterTab.qml:452", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select driver...", "context": "Select driver...", "reference": "Modules/Settings/PrinterTab.qml:729", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select font weight for UI text", "context": "Select font weight for UI text", "reference": "Modules/Settings/TypographyMotionTab.qml:253", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select greeter background image", "context": "Select greeter background image", "reference": "Modules/Settings/GreeterTab.qml:593", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select lock screen background image", "context": "Select lock screen background image", - "reference": "Modules/Settings/LockScreenTab.qml:318", - "comment": "" - }, - { - "term": "Select monitor to configure wallpaper", - "context": "Select monitor to configure wallpaper", - "reference": "Modules/Settings/WallpaperTab.qml:807", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:388", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select monospace font for process list and technical displays", "context": "Select monospace font for process list and technical displays", "reference": "Modules/Settings/TypographyMotionTab.qml:227", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select network", "context": "Select network", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:541", - "comment": "network status" - }, - { - "term": "Select system sound theme", - "context": "Select system sound theme", - "reference": "Modules/Settings/SoundsTab.qml:109", - "comment": "" + "comment": "network status", + "tags": [ + "shell" + ] }, { "term": "Select the font family for UI text", "context": "Select the font family for UI text", "reference": "Modules/Settings/TypographyMotionTab.qml:208", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select the palette algorithm used for wallpaper-based colors", "context": "Select the palette algorithm used for wallpaper-based colors", "reference": "Modules/Settings/ThemeColorsTab.qml:611", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select user...", "context": "Select user...", "reference": "Modules/Greetd/GreeterUserPicker.qml:73", - "comment": "greeter user picker placeholder" + "comment": "greeter user picker placeholder", + "tags": [ + "shell" + ] }, { "term": "Select which keybind providers to include", "context": "Select which keybind providers to include", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:151", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Select which transitions to include in randomization", "context": "Select which transitions to include in randomization", - "reference": "Modules/Settings/WallpaperTab.qml:1195", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1194", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Select...", "context": "Select...", "reference": "Widgets/KeybindItem.qml:976, Widgets/KeybindItem.qml:1197, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:123", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Selected image file not found.", "context": "Selected image file not found.", "reference": "Services/PortalService.qml:193", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Send", "context": "Send", "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:278", - "comment": "KDE Connect SMS send button" + "comment": "KDE Connect SMS send button", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Send Clipboard", "context": "Send Clipboard", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1522, dms-plugins/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:679", - "comment": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip" + "comment": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Send SMS", "context": "Send SMS", "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:137", - "comment": "KDE Connect SMS dialog title" + "comment": "KDE Connect SMS dialog title", + "tags": [ + "plugin-dankkdeconnect" + ] }, { - "term": "Sending", - "context": "Sending", + "term": "Sending %1...", + "context": "Sending %1...", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1644", - "comment": "Phone Connect file send" + "comment": "Phone Connect file send", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Separate", "context": "Separate", "reference": "Modules/Settings/FrameTab.qml:59", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Separate Appearance for Unfocused Display(s)", "context": "Separate Appearance for Unfocused Display(s)", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:301", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Separate Light & Dark Themes", "context": "Separate Light & Dark Themes", - "reference": "Modules/Settings/ThemeColorsTab.qml:2387", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2385", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Separate appearance for unfocused displays is not supported on this compositor.", "context": "Separate appearance for unfocused displays is not supported on this compositor.", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:291", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Separator", "context": "Separator", "reference": "Modules/Settings/WidgetsTab.qml:229", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Server", "context": "Server", "reference": "Widgets/VpnProfileDelegate.qml:44, Modules/Settings/NetworkVpnTab.qml:420", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Session Filter", "context": "Session Filter", - "reference": "Modules/Settings/MuxTab.qml:84", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:83", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Set Custom Device Name", "context": "Set Custom Device Name", "reference": "Modules/Settings/AudioTab.qml:581", - "comment": "Audio device rename dialog title" + "comment": "Audio device rename dialog title", + "tags": [ + "settings" + ] }, { "term": "Set custom name", "context": "Set custom name", "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:156", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Set custom names for your audio input devices", "context": "Set custom names for your audio input devices", "reference": "Modules/Settings/AudioTab.qml:329", - "comment": "Audio settings description" + "comment": "Audio settings description", + "tags": [ + "settings" + ] }, { "term": "Set custom names for your audio output devices", "context": "Set custom names for your audio output devices", "reference": "Modules/Settings/AudioTab.qml:138", - "comment": "Audio settings description" + "comment": "Audio settings description", + "tags": [ + "settings" + ] }, { "term": "Set different wallpapers for each connected monitor", "context": "Set different wallpapers for each connected monitor", "reference": "Modules/Settings/WallpaperTab.qml:789", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Set different wallpapers for light and dark mode", "context": "Set different wallpapers for light and dark mode", "reference": "Modules/Settings/WallpaperTab.qml:380", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Set initial password", "context": "Set initial password", "reference": "Modules/Settings/UsersTab.qml:410", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Set key and action to save", "context": "Set key and action to save", "reference": "Widgets/KeybindItem.qml:1856", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Set notification rules", "context": "Set notification rules", "reference": "Modules/Notifications/NotificationContextMenu.qml:126, Modules/Notifications/Center/NotificationCard.qml:1090", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Set the font size for notification body text (htmlBody)", "context": "Set the font size for notification body text (htmlBody)", - "reference": "Modules/Settings/NotificationsTab.qml:227", - "comment": "" - }, - { - "term": "Set the font size for notification summary text", - "context": "Set the font size for notification summary text", - "reference": "Modules/Settings/NotificationsTab.qml:214", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:226", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Set the percentage at which the battery is considered low.", "context": "Set the percentage at which the battery is considered low.", - "reference": "Modules/Settings/BatteryTab.qml:239", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:242", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Setting", "context": "Setting", "reference": "Services/AppSearchService.qml:329, Modals/DankLauncherV2/ResultItem.qml:226, Modals/DankLauncherV2/SpotlightResultRow.qml:65", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Setting up...", "context": "Setting up...", - "reference": "Modules/Settings/ThemeColorsTab.qml:2239, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/CompositorLayoutTab.qml:227, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:79", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2237, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/CompositorLayoutTab.qml:227, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:79", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Settings", "context": "Settings", "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:328, Services/AppSearchService.qml:684, Services/PopoutService.qml:458, Services/PopoutService.qml:475, Modals/DankLauncherV2/Controller.qml:206, Modals/Settings/SettingsSidebar.qml:128, Modals/Settings/SettingsModal.qml:88, Modals/Settings/SettingsModal.qml:232, Modules/DankDash/DankDashPopout.qml:34, Modules/Settings/DankDashTab.qml:42, Modules/Dock/DockTrashContextMenu.qml:48", - "comment": "settings window title" + "comment": "settings window title", + "tags": [ + "settings", + "shell" + ] }, { "term": "Settings Search", "context": "Settings Search", "reference": "Services/AppSearchService.qml:215", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Settings are read-only. Changes will not persist.", "context": "Settings are read-only. Changes will not persist.", "reference": "Modals/Settings/SettingsModal.qml:304", - "comment": "read-only settings warning for NixOS home-manager users" + "comment": "read-only settings warning for NixOS home-manager users", + "tags": [ + "settings" + ] }, { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:2239, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/CompositorLayoutTab.qml:227, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:79", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2237, Modules/Settings/WindowRulesTab.qml:524, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/CompositorLayoutTab.qml:227, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:79", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow Color", "context": "Shadow Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:203, Modules/Settings/ThemeColorsTab.qml:1960", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:203, Modules/Settings/ThemeColorsTab.qml:1958", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow Intensity", "context": "Shadow Intensity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1930", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1929", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow Opacity", "context": "Shadow Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1945", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1944", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow Override", "context": "Shadow Override", - "reference": "Modules/Settings/DankBarTab.qml:1616", - "comment": "bar shadow settings card" + "reference": "Modules/Settings/DankBarTab.qml:1612", + "comment": "bar shadow settings card", + "tags": [ + "settings" + ] }, { "term": "Shadow blur radius in pixels", "context": "Shadow blur radius in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1656", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1652", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow elevation on bars and panels", "context": "Shadow elevation on bars and panels", - "reference": "Modules/Settings/ThemeColorsTab.qml:2100", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2098", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow elevation on modals and dialogs", "context": "Shadow elevation on modals and dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:2078", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2076", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadow elevation on popouts, OSDs, and dropdowns", "context": "Shadow elevation on popouts, OSDs, and dropdowns", - "reference": "Modules/Settings/ThemeColorsTab.qml:2089", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2087", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shadows", "context": "Shadows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1912, Modules/Settings/ThemeColorsTab.qml:1920", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1919", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Share", "context": "Share", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1541, dms-plugins/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:698", - "comment": "KDE Connect share dialog title | KDE Connect share tooltip" + "comment": "KDE Connect share dialog title | KDE Connect share tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Share Gamma Control Settings", "context": "Share Gamma Control Settings", "reference": "Modules/Settings/ThemeColorsTab.qml:1183", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shared", "context": "Shared", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1624, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1632", - "comment": "Phone Connect share success" + "comment": "Phone Connect share success", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Shell", "context": "Shell", "reference": "Widgets/KeybindItem.qml:1538", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Shift+Enter to copy", "context": "Shift+Enter to copy", "reference": "Modals/DankLauncherV2/Controller.qml:1270", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Shift+Enter to paste", "context": "Shift+Enter to paste", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:176, dms-plugins/DankGifSearch/DankGifSearch.qml:119, Modals/DankLauncherV2/Controller.qml:1270", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch", + "shell" + ] }, { "term": "Short", "context": "Short", - "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/NotificationsTab.qml:382", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:675, Modules/Settings/NotificationsTab.qml:380", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shortcut (%1)", "context": "Shortcut (%1)", "reference": "Modules/Settings/KeybindsTab.qml:598", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shortcut that opens this settings window", "context": "Shortcut that opens this settings window", "reference": "Modules/Settings/DankDashTab.qml:43", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shortcuts", "context": "Shortcuts", "reference": "Modules/Settings/KeybindsTab.qml:596", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shortcuts (%1)", "context": "Shortcuts (%1)", "reference": "Modules/Settings/KeybindsTab.qml:598", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show", "context": "Show", "reference": "Modules/Settings/WidgetsTabSection.qml:1166, Modules/Settings/DisplayConfigTab.qml:569, Modules/Settings/DankDashTab.qml:530", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show 3rd Party", "context": "Show 3rd Party", "reference": "Modules/Settings/PluginBrowser.qml:790", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show All Tags", "context": "Show All Tags", "reference": "Modules/Settings/WorkspacesTab.qml:193", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.", "context": "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.", - "reference": "Modules/Settings/LauncherTab.qml:270", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:269", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Badge", "context": "Show Badge", "reference": "Modules/Settings/WidgetsTabSection.qml:4123", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show CPU", "context": "Show CPU", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:177", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show CPU Graph", "context": "Show CPU Graph", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:185", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show CPU Temp", "context": "Show CPU Temp", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:194", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Date", "context": "Show Date", "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:90", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Disk", "context": "Show Disk", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:252", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Dock", "context": "Show Dock", "reference": "Modules/Settings/DockTab.qml:46", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Feels Like Temperature", "context": "Show Feels Like Temperature", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:84", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.", "context": "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.", - "reference": "Modules/Settings/LauncherTab.qml:683", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:682", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Footer", "context": "Show Footer", - "reference": "Modules/Settings/LauncherTab.qml:663", - "comment": "launcher footer visibility" + "reference": "Modules/Settings/LauncherTab.qml:662", + "comment": "launcher footer visibility", + "tags": [ + "settings" + ] }, { "term": "Show Forecast", "context": "Show Forecast", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:120", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show GPU Temperature", "context": "Show GPU Temperature", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:262", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Header", "context": "Show Header", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:29, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:167", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Hibernate", "context": "Show Hibernate", "reference": "Modules/Settings/PowerSleepTab.qml:465", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Hour Numbers", "context": "Show Hour Numbers", "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:60", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Hourly Forecast", "context": "Show Hourly Forecast", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:135", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Humidity", "context": "Show Humidity", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Icon", "context": "Show Icon", "reference": "Modules/Settings/WidgetsTabSection.qml:1802, Modules/Settings/WidgetsTabSection.qml:1954", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Launcher Button", "context": "Show Launcher Button", - "reference": "Modules/Settings/DockTab.qml:246", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:245", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Line Numbers", "context": "Show Line Numbers", "reference": "Modules/Notepad/NotepadSettings.qml:161", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Show Location", "context": "Show Location", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:72", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Lock", "context": "Show Lock", "reference": "Modules/Settings/PowerSleepTab.qml:447", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Log Out", "context": "Show Log Out", "reference": "Modules/Settings/PowerSleepTab.qml:439", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Material Design ripple animations on interactive elements", "context": "Show Material Design ripple animations on interactive elements", - "reference": "Modules/Settings/TypographyMotionTab.qml:754", - "comment": "" + "reference": "Modules/Settings/TypographyMotionTab.qml:752", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Media Player", "context": "Show Media Player", - "reference": "Modules/Settings/LockScreenTab.qml:254", - "comment": "Enable media player controls on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:324", + "comment": "Enable media player controls on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show Memory", "context": "Show Memory", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:205", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Memory Graph", "context": "Show Memory Graph", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:213", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Memory in GB", "context": "Show Memory in GB", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:222", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Mode Chips", "context": "Show Mode Chips", - "reference": "Modules/Settings/LauncherTab.qml:269", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:268", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Network", "context": "Show Network", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:233", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Network Graph", "context": "Show Network Graph", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:241", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Occupied Workspaces Only", "context": "Show Occupied Workspaces Only", "reference": "Modules/Settings/WorkspacesTab.qml:163", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Overflow Badge Count", "context": "Show Overflow Badge Count", "reference": "Modules/Settings/DockTab.qml:230", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Package Source Badges", "context": "Show Package Source Badges", - "reference": "Modules/Settings/LauncherTab.qml:682", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:681", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Password Field", "context": "Show Password Field", - "reference": "Modules/Settings/LockScreenTab.qml:245", - "comment": "Enable password field display on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:315", + "comment": "Enable password field display on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show Percentage", "context": "Show Percentage", "reference": "Modules/Settings/WidgetsTabSection.qml:3171, Modules/Settings/WidgetsTabSection.qml:3473", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Power Actions", "context": "Show Power Actions", - "reference": "Modules/Settings/LockScreenTab.qml:205", - "comment": "Enable power action icon on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:275", + "comment": "Enable power action icon on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show Power Off", "context": "Show Power Off", "reference": "Modules/Settings/PowerSleepTab.qml:443", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Precipitation Probability", "context": "Show Precipitation Probability", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:108", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Pressure", "context": "Show Pressure", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:102", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Profile Image", "context": "Show Profile Image", - "reference": "Modules/Settings/LockScreenTab.qml:237", - "comment": "Enable profile image display on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:307", + "comment": "Enable profile image display on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show Reboot", "context": "Show Reboot", "reference": "Modules/Settings/PowerSleepTab.qml:435", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Remaining Time", "context": "Show Remaining Time", "reference": "Modules/Settings/WidgetsTabSection.qml:3292", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Restart DMS", "context": "Show Restart DMS", "reference": "Modules/Settings/PowerSleepTab.qml:455", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Saved Items", "context": "Show Saved Items", "reference": "Modules/DankBar/Widgets/ClipboardButton.qml:294", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Show Seconds", "context": "Show Seconds", "reference": "Modules/Settings/TimeWeatherTab.qml:86, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Sunrise/Sunset", "context": "Show Sunrise/Sunset", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:114", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Suspend", "context": "Show Suspend", "reference": "Modules/Settings/PowerSleepTab.qml:451", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Swap", "context": "Show Swap", "reference": "Modules/Settings/WidgetsTabSection.qml:1361", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Switch User", "context": "Show Switch User", "reference": "Modules/Settings/PowerSleepTab.qml:460", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show System Date", "context": "Show System Date", - "reference": "Modules/Settings/LockScreenTab.qml:229", - "comment": "Enable system date display on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:299", + "comment": "Enable system date display on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show System Icons", "context": "Show System Icons", - "reference": "Modules/Settings/LockScreenTab.qml:213", - "comment": "Enable system status icons on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:283", + "comment": "Enable system status icons on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show System Time", "context": "Show System Time", - "reference": "Modules/Settings/LockScreenTab.qml:221", - "comment": "Enable system time display on the lock screen window" + "reference": "Modules/Settings/LockScreenTab.qml:291", + "comment": "Enable system time display on the lock screen window", + "tags": [ + "settings" + ] }, { "term": "Show Top Processes", "context": "Show Top Processes", "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:332", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Trash in Dock", "context": "Show Trash in Dock", - "reference": "Modules/Settings/DockTab.qml:532", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:531", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Weather Condition", "context": "Show Weather Condition", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:78", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Week Number", "context": "Show Week Number", - "reference": "Modules/Settings/TimeWeatherTab.qml:115", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:114", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Welcome", "context": "Show Welcome", "reference": "Modules/Settings/AboutTab.qml:806", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show Wind Speed", "context": "Show Wind Speed", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:96", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Show Workspace Apps", "context": "Show Workspace Apps", "reference": "Modules/Settings/WorkspacesTab.qml:61", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show a bar that drains as the popup's auto-dismiss timer runs", "context": "Show a bar that drains as the popup's auto-dismiss timer runs", - "reference": "Modules/Settings/NotificationsTab.qml:307", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:306", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show a notification when battery reaches the charge limit.", "context": "Show a notification when battery reaches the charge limit.", - "reference": "Modules/Settings/BatteryTab.qml:209", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:211", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show a warning popup when battery is running low.", "context": "Show a warning popup when battery is running low.", - "reference": "Modules/Settings/BatteryTab.qml:250", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:253", + "comment": "", + "tags": [ + "settings" + ] }, { "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": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show an outline ring around the focused workspace indicator", "context": "Show an outline ring around the focused workspace indicator", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:268, Modules/Settings/WorkspaceAppearanceCard.qml:352", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show an urgent alert when battery reaches critical level.", "context": "Show an urgent alert when battery reaches critical level.", - "reference": "Modules/Settings/BatteryTab.qml:295", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:298", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show cava audio visualizer in media widget", "context": "Show cava audio visualizer in media widget", "reference": "Modules/Settings/MediaPlayerTab.qml:56", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:2126", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2124", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show device", "context": "Show device", "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show dock when floating windows don't overlap its area", "context": "Show dock when floating windows don't overlap its area", "reference": "Modules/Settings/DockTab.qml:71", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", "context": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", - "reference": "Modules/Settings/NotificationsTab.qml:325", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:324", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show during Niri overview", "context": "Show during Niri overview", "reference": "Modules/Settings/DankBarTab.qml:777, Modules/Settings/FrameTab.qml:384", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show foreground surfaces on panels for stronger contrast", "context": "Show foreground surfaces on panels for stronger contrast", - "reference": "Modules/Settings/ThemeColorsTab.qml:1742", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1741", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show in GB", "context": "Show in GB", "reference": "Modules/Settings/WidgetsTabSection.qml:1420", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", "context": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", - "reference": "Modules/Settings/LauncherTab.qml:769", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:768", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show mode tabs and keyboard hints at the bottom.", "context": "Show mode tabs and keyboard hints at the bottom.", - "reference": "Modules/Settings/LauncherTab.qml:664", - "comment": "launcher footer description" + "reference": "Modules/Settings/LauncherTab.qml:663", + "comment": "launcher footer description", + "tags": [ + "settings" + ] }, { "term": "Show mount path", "context": "Show mount path", "reference": "Modules/ControlCenter/Components/DiskUsageWidgetConfigMenu.qml:31", - "comment": "toggle in control center disk usage widget to turn mount path display on or off" - }, - { - "term": "Show notification popups only on the currently focused monitor", - "context": "Show notification popups only on the currently focused monitor", - "reference": "Modules/Settings/NotificationsTab.qml:343", - "comment": "" - }, - { - "term": "Show notifications only on the currently focused monitor", - "context": "Show notifications only on the currently focused monitor", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:423", - "comment": "" + "comment": "toggle in control center disk usage widget to turn mount path display on or off", + "tags": [ + "shell" + ] }, { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:431, Modules/Settings/DankBarTab.qml:578", - "comment": "" + "reference": "Modules/Settings/DisplayWidgetsTab.qml:429, Modules/Settings/DankBarTab.qml:578", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show on Overlay", "context": "Show on Overlay", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:295", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show on Overview", "context": "Show on Overview", "reference": "Modules/Settings/DockTab.qml:85, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:776, Modules/Settings/FrameTab.qml:383", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show on Overview Only", "context": "Show on Overview Only", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:329", - "comment": "" - }, - { - "term": "Show on all connected displays", - "context": "Show on all connected displays", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:402", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show on screens:", "context": "Show on screens:", "reference": "Modules/Settings/DisplayWidgetsTab.qml:385", - "comment": "" - }, - { - "term": "Show on-screen display when brightness changes", - "context": "Show on-screen display when brightness changes", - "reference": "Modules/Settings/OSDTab.qml:118", - "comment": "" - }, - { - "term": "Show on-screen display when caps lock state changes", - "context": "Show on-screen display when caps lock state changes", - "reference": "Modules/Settings/OSDTab.qml:142", - "comment": "" - }, - { - "term": "Show on-screen display when cycling audio output devices", - "context": "Show on-screen display when cycling audio output devices", - "reference": "Modules/Settings/OSDTab.qml:158", - "comment": "" - }, - { - "term": "Show on-screen display when idle inhibitor state changes", - "context": "Show on-screen display when idle inhibitor state changes", - "reference": "Modules/Settings/OSDTab.qml:126", - "comment": "" - }, - { - "term": "Show on-screen display when media player status changes", - "context": "Show on-screen display when media player status changes", - "reference": "Modules/Settings/OSDTab.qml:110", - "comment": "" - }, - { - "term": "Show on-screen display when media player volume changes", - "context": "Show on-screen display when media player volume changes", - "reference": "Modules/Settings/OSDTab.qml:102", - "comment": "" - }, - { - "term": "Show on-screen display when microphone is muted/unmuted", - "context": "Show on-screen display when microphone is muted/unmuted", - "reference": "Modules/Settings/OSDTab.qml:134", - "comment": "" - }, - { - "term": "Show on-screen display when power profile changes", - "context": "Show on-screen display when power profile changes", - "reference": "Modules/Settings/OSDTab.qml:150", - "comment": "" - }, - { - "term": "Show on-screen display when volume changes", - "context": "Show on-screen display when volume changes", - "reference": "Modules/Settings/OSDTab.qml:94", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:719", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show the bar when niri overview is active", "context": "Show the bar when niri overview is active", "reference": "Modules/Settings/DankBarTab.qml:777", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show weather information in top bar and control center", "context": "Show weather information in top bar and control center", - "reference": "Modules/Settings/TimeWeatherTab.qml:452", - "comment": "" - }, - { - "term": "Show week number in the calendar", - "context": "Show week number in the calendar", - "reference": "Modules/Settings/TimeWeatherTab.qml:116", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:450", + "comment": "", + "tags": [ + "settings" + ] }, { "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:35", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:44", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Show workspaces of the currently focused monitor", "context": "Show workspaces of the currently focused monitor", "reference": "Modules/Settings/WorkspacesTab.qml:154", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shows all running applications with focus indication", "context": "Shows all running applications with focus indication", "reference": "Modules/Settings/WidgetsTab.qml:85", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shows current workspace and allows switching", "context": "Shows current workspace and allows switching", "reference": "Modules/Settings/WidgetsTab.qml:71", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shows when caps lock is active", "context": "Shows when caps lock is active", "reference": "Modules/Settings/WidgetsTab.qml:216", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:174", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size", "context": "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size", "reference": "Modules/Settings/MediaPlayerTab.qml:63", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Shutdown", "context": "Shutdown", "reference": "Services/CupsService.qml:817", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Signal", "context": "Signal", - "reference": "Modules/Settings/NetworkWifiTab.qml:743, Modules/Settings/NetworkWifiTab.qml:1104", - "comment": "" + "reference": "Modules/Settings/NetworkWifiTab.qml:321, Modules/Settings/NetworkWifiTab.qml:743, Modules/Settings/NetworkWifiTab.qml:1104", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Signal Strength", "context": "Signal Strength", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1589, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:748", - "comment": "KDE Connect signal strength label" - }, - { - "term": "Signal:", - "context": "Signal:", - "reference": "Modules/Settings/NetworkWifiTab.qml:321", - "comment": "" + "comment": "KDE Connect signal strength label", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Silence for a while", "context": "Silence for a while", "reference": "Modules/Notifications/Center/NotificationHeader.qml:105", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Silence notifications", "context": "Silence notifications", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:113", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Silence system sounds while media is playing", "context": "Silence system sounds while media is playing", - "reference": "Modules/Settings/SoundsTab.qml:184", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:182", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Single-Line Popup", "context": "Single-Line Popup", "reference": "Modules/Settings/WidgetsTabSection.qml:1570", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Size", "context": "Size", - "reference": "Modals/WindowRuleModal.qml:1866, Modals/DankLauncherV2/LauncherContent.qml:703, Modals/DankLauncherV2/LauncherContent.qml:708, Modals/DankLauncherV2/LauncherContent.qml:715, Modules/Settings/LauncherTab.qml:618, Modules/Settings/DankBarTab.qml:937, Modules/Settings/FrameTab.qml:128", - "comment": "launcher size option" + "reference": "Modals/WindowRuleModal.qml:1866, Modals/DankLauncherV2/LauncherContent.qml:703, Modals/DankLauncherV2/LauncherContent.qml:708, Modals/DankLauncherV2/LauncherContent.qml:715, Modules/Settings/LauncherTab.qml:617, Modules/Settings/DankBarTab.qml:935, Modules/Settings/FrameTab.qml:128", + "comment": "launcher size option", + "tags": [ + "settings", + "shell" + ] }, { "term": "Size Constraints", "context": "Size Constraints", "reference": "Modals/WindowRuleModal.qml:1420", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Size Offset", "context": "Size Offset", - "reference": "Modules/Settings/DockTab.qml:479, Modules/Settings/LauncherTab.qml:504", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:478, Modules/Settings/LauncherTab.qml:503", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sizing", "context": "Sizing", - "reference": "Modules/Settings/DockTab.qml:586", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:585", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Skip", "context": "Skip", "reference": "Modals/Greeter/GreeterModal.qml:280", - "comment": "greeter skip button" + "comment": "greeter skip button", + "tags": [ + "shell" + ] }, { "term": "Skip confirmation", "context": "Skip confirmation", "reference": "Widgets/KeybindItem.qml:1427", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Skip setup", "context": "Skip setup", "reference": "Modals/Greeter/GreeterModal.qml:234", - "comment": "greeter skip button tooltip" + "comment": "greeter skip button tooltip", + "tags": [ + "shell" + ] }, { "term": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.", "context": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.", "reference": "Modules/Settings/GreeterTab.qml:638", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Slideout", "context": "Slideout", "reference": "Modules/Notepad/NotepadSettings.qml:410", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Small", "context": "Small", "reference": "Modules/Settings/WidgetsTabSection.qml:1994, Modules/Settings/WidgetsTabSection.qml:3548", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Smartcard Authentication", "context": "Smartcard Authentication", "reference": "Modals/WifiPasswordModal.qml:326", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Snap", "context": "Snap", "reference": "Modules/Settings/DisplayConfigTab.qml:484", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Snow", "context": "Snow", "reference": "Services/WeatherService.qml:141, Services/WeatherService.qml:143", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Some plugins require a newer version of DMS:", "context": "Some plugins require a newer version of DMS:", - "reference": "Modules/Settings/PluginsTab.qml:204", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:205", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sort Alphabetically", "context": "Sort Alphabetically", - "reference": "Modules/Settings/LauncherTab.qml:588", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:587", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sort By", "context": "Sort By", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:323", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sort wallpapers", "context": "Sort wallpapers", "reference": "Modules/DankDash/WallpaperTab.qml:707", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Sorting & Layout", "context": "Sorting & Layout", - "reference": "Modules/Settings/LauncherTab.qml:582", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:581", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sound Theme", "context": "Sound Theme", - "reference": "Modules/Settings/SoundsTab.qml:108", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:107", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sounds", "context": "Sounds", "reference": "Modals/Settings/SettingsSidebar.qml:101", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Source: %1", "context": "Source: %1", "reference": "Modules/Settings/WindowRulesTab.qml:1072", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Space between the bar and screen edges", "context": "Space between the bar and screen edges", - "reference": "Modules/Settings/DankBarTab.qml:892", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:890", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/CompositorLayoutTab.qml:309, Modules/Settings/CompositorLayoutTab.qml:438, Modules/Settings/CompositorLayoutTab.qml:590", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:309, Modules/Settings/CompositorLayoutTab.qml:438, Modules/Settings/CompositorLayoutTab.qml:589", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Space between windows and screen edges", "context": "Space between windows and screen edges", - "reference": "Modules/Settings/CompositorLayoutTab.qml:452, Modules/Settings/CompositorLayoutTab.qml:604", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:452, Modules/Settings/CompositorLayoutTab.qml:603", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Spacer", "context": "Spacer", "reference": "Modules/Settings/WidgetsTab.qml:222", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:605, Modules/Settings/DankBarTab.qml:877", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:604, Modules/Settings/DankBarTab.qml:875", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Speaker settings", "context": "Speaker settings", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:180", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Speed", "context": "Speed", "reference": "Modules/Settings/NetworkEthernetTab.qml:302", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Spool Area Full", "context": "Spool Area Full", "reference": "Services/CupsService.qml:825", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Spotlight", "context": "Spotlight", - "reference": "Modules/Settings/LauncherTab.qml:93, Modules/Settings/LauncherTab.qml:779", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:93, Modules/Settings/LauncherTab.qml:778", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Spotlight Bar", "context": "Spotlight Bar", - "reference": "Modules/Settings/LauncherTab.qml:185", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:184", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Spotlight Bar Shortcut", "context": "Spotlight Bar Shortcut", - "reference": "Modules/Settings/LauncherTab.qml:227", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:226", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Spotlight Search", "context": "Spotlight Search", "reference": "Modals/DankLauncherV2/SpotlightLauncherContent.qml:392", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Square Corners", "context": "Square Corners", - "reference": "Modules/Settings/DankBarTab.qml:1157", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1155", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Stacked", "context": "Stacked", "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:35, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:45", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Standard", "context": "Standard", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:19, Modules/Settings/TypographyMotionTab.qml:145", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather", + "settings" + ] }, { "term": "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.", "context": "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.", "reference": "Modules/Settings/TypographyMotionTab.qml:189", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Start", "context": "Start", - "reference": "Modules/Settings/ThemeColorsTab.qml:1269, Modules/Settings/GammaControlTab.qml:252, Modules/DankDash/Overview/CalendarEventEditor.qml:254", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1269, Modules/Settings/GammaControlTab.qml:251, Modules/DankDash/Overview/CalendarEventEditor.qml:254", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Start KDE Connect or Valent to use this plugin", "context": "Start KDE Connect or Valent to use this plugin", "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:39", - "comment": "Phone Connect daemon hint" + "comment": "Phone Connect daemon hint", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Start typing your notes here...", "context": "Start typing your notes here...", "reference": "Modules/Notepad/NotepadTextEditor.qml:707", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "State", "context": "State", "reference": "Modules/Settings/PrinterTab.qml:1162, Modules/Settings/NetworkEthernetTab.qml:316", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:55, Modals/Settings/SettingsSidebar.qml:251, Modules/Settings/AboutTab.qml:698, Modules/Settings/NetworkStatusTab.qml:86, Modules/Settings/PrinterTab.qml:196, Modules/Settings/BatteryTab.qml:106", - "comment": "" + "reference": "Widgets/DankIconPicker.qml:55, Modals/Settings/SettingsSidebar.qml:251, Modules/Settings/AboutTab.qml:698, Modules/Settings/GreeterTab.qml:399, Modules/Settings/NetworkStatusTab.qml:40, Modules/Settings/NetworkStatusTab.qml:86, Modules/Settings/PrinterTab.qml:196, Modules/Settings/BatteryTab.qml:51, Modules/Settings/BatteryTab.qml:107", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Stop ignoring %1", "context": "Stop ignoring %1", "reference": "Modules/Settings/SystemUpdaterTab.qml:311", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Stopped", "context": "Stopped", "reference": "Services/CupsService.qml:767, Services/CupsService.qml:782", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Stopped Partly", "context": "Stopped Partly", "reference": "Services/CupsService.qml:821", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Stopping", "context": "Stopping", "reference": "Services/CupsService.qml:820", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Stretch", "context": "Stretch", "reference": "Modules/Settings/WallpaperTab.qml:296", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "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:1178", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1176", + "comment": "", + "tags": [ + "settings" + ] }, { "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:1187", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1185", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Strict auto-hide", "context": "Strict auto-hide", "reference": "Modules/Settings/DankBarTab.qml:704", - "comment": "Dank bar setting: hide the bar when the pointer leaves even if a menu or bar popover is still open" + "comment": "Dank bar setting: hide the bar when the pointer leaves even if a menu or bar popover is still open", + "tags": [ + "settings" + ] }, { "term": "Stripes", "context": "Stripes", - "reference": "Modules/Settings/WallpaperTab.qml:1156", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1155", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Summary", "context": "Summary", "reference": "Modules/Settings/NotificationsTab.qml:93", - "comment": "notification rule match field option" + "comment": "notification rule match field option", + "tags": [ + "settings" + ] }, { "term": "Summary Font Size", "context": "Summary Font Size", "reference": "Modules/Settings/NotificationsTab.qml:213", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sunrise", "context": "Sunrise", - "reference": "Services/WeatherService.qml:247, Modules/DankDash/WeatherTab.qml:107, Modules/Settings/GammaControlTab.qml:574", - "comment": "" + "reference": "Services/WeatherService.qml:247, Modules/DankDash/WeatherTab.qml:107, Modules/Settings/GammaControlTab.qml:573", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Sunset", "context": "Sunset", - "reference": "Services/WeatherService.qml:272, Modules/DankDash/WeatherTab.qml:112, Modules/Settings/GammaControlTab.qml:610", - "comment": "" + "reference": "Services/WeatherService.qml:272, Modules/DankDash/WeatherTab.qml:112, Modules/Settings/GammaControlTab.qml:609", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Suppress Duplicate Notifications", "context": "Suppress Duplicate Notifications", - "reference": "Modules/Settings/NotificationsTab.qml:315", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:314", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Suppress notification popups while enabled", "context": "Suppress notification popups while enabled", - "reference": "Modules/Settings/NotificationsTab.qml:438", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:436", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Surface", "context": "Surface", - "reference": "Modules/Settings/ThemeColorsTab.qml:44, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:428, Modules/Settings/DankBarTab.qml:1779, Modules/Settings/WorkspaceAppearanceCard.qml:37, Modules/Settings/WorkspaceAppearanceCard.qml:78, Modules/Settings/WorkspaceAppearanceCard.qml:110, Modules/Settings/WorkspaceAppearanceCard.qml:148, Modules/Settings/FrameTab.qml:231", - "comment": "color option | shadow color option | widget background color option | workspace color option" + "reference": "Modules/Settings/ThemeColorsTab.qml:44, Modules/Settings/DockTab.qml:402, Modules/Settings/DockTab.qml:686, Modules/Settings/LauncherTab.qml:427, Modules/Settings/DankBarTab.qml:1774, Modules/Settings/WorkspaceAppearanceCard.qml:37, Modules/Settings/WorkspaceAppearanceCard.qml:78, Modules/Settings/WorkspaceAppearanceCard.qml:110, Modules/Settings/WorkspaceAppearanceCard.qml:148, Modules/Settings/FrameTab.qml:231", + "comment": "color option | shadow color option | widget background color option | workspace color option", + "tags": [ + "settings" + ] }, { "term": "Surface Behavior", "context": "Surface Behavior", "reference": "Modules/Settings/FrameTab.qml:57", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Surface Border Color", "context": "Surface Border Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:194, Modules/Settings/ThemeColorsTab.qml:1766", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:194, Modules/Settings/ThemeColorsTab.qml:1765", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Surface Border Opacity", "context": "Surface Border Opacity", - "reference": "Modules/Settings/ThemeColorsTab.qml:1810", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1809", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Surface Container", "context": "Surface Container", "reference": "Modules/Settings/ThemeColorsTab.qml:47, Modules/Settings/WallpaperTab.qml:352, Modules/Settings/WorkspaceAppearanceCard.qml:40, Modules/Settings/WorkspaceAppearanceCard.qml:81, Modules/Settings/WorkspaceAppearanceCard.qml:113, Modules/Settings/WorkspaceAppearanceCard.qml:151", - "comment": "widget background color option | workspace color option" + "comment": "widget background color option | workspace color option", + "tags": [ + "settings" + ] }, { "term": "Surface High", "context": "Surface High", "reference": "Modules/Settings/ThemeColorsTab.qml:50, Modules/Settings/WorkspaceAppearanceCard.qml:43, Modules/Settings/WorkspaceAppearanceCard.qml:84, Modules/Settings/WorkspaceAppearanceCard.qml:116, Modules/Settings/WorkspaceAppearanceCard.qml:154", - "comment": "widget background color option | workspace color option" + "comment": "widget background color option | workspace color option", + "tags": [ + "settings" + ] }, { "term": "Surface Highest", "context": "Surface Highest", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:46, Modules/Settings/WorkspaceAppearanceCard.qml:87, Modules/Settings/WorkspaceAppearanceCard.qml:119", - "comment": "workspace color option" + "comment": "workspace color option", + "tags": [ + "settings" + ] }, { "term": "Surface Opacity", "context": "Surface Opacity", - "reference": "Modules/Notepad/NotepadSettings.qml:355, Modules/Settings/ThemeColorsTab.qml:1751, Modules/Settings/ThemeColorsTab.qml:1851, Modules/Settings/FrameTab.qml:149", - "comment": "" + "reference": "Modules/Notepad/NotepadSettings.qml:355, Modules/Settings/ThemeColorsTab.qml:1750, Modules/Settings/ThemeColorsTab.qml:1850, Modules/Settings/FrameTab.qml:149", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Surface Text", "context": "Surface Text", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:98, Modules/Settings/WorkspaceAppearanceCard.qml:162", - "comment": "workspace color option" + "comment": "workspace color option", + "tags": [ + "settings" + ] }, { "term": "Surface Variant", "context": "Surface Variant", - "reference": "Modules/Settings/ThemeColorsTab.qml:1668, Modules/Settings/ThemeColorsTab.qml:1673, Modules/Settings/ThemeColorsTab.qml:1682, Modules/Settings/ThemeColorsTab.qml:1692, Modules/Settings/ThemeColorsTab.qml:1706, Modules/Settings/ThemeColorsTab.qml:1711, Modules/Settings/ThemeColorsTab.qml:1720, Modules/Settings/ThemeColorsTab.qml:1730, Modules/Settings/ThemeColorsTab.qml:1962, Modules/Settings/ThemeColorsTab.qml:1967, Modules/Settings/ThemeColorsTab.qml:1977, Modules/Settings/ThemeColorsTab.qml:1988", - "comment": "button color option | shadow color option | tile color option" + "reference": "Modules/Settings/ThemeColorsTab.qml:1667, Modules/Settings/ThemeColorsTab.qml:1672, Modules/Settings/ThemeColorsTab.qml:1681, Modules/Settings/ThemeColorsTab.qml:1691, Modules/Settings/ThemeColorsTab.qml:1705, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/ThemeColorsTab.qml:1719, Modules/Settings/ThemeColorsTab.qml:1729, Modules/Settings/ThemeColorsTab.qml:1960, Modules/Settings/ThemeColorsTab.qml:1965, Modules/Settings/ThemeColorsTab.qml:1975, Modules/Settings/ThemeColorsTab.qml:1986", + "comment": "button color option | shadow color option | tile color option", + "tags": [ + "settings" + ] }, { "term": "Surfaces emerge flush from the bar", "context": "Surfaces emerge flush from the bar", "reference": "Modules/Settings/FrameTab.qml:58", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Surfaces float independently of the frame", "context": "Surfaces float independently of the frame", "reference": "Modules/Settings/FrameTab.qml:58", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Suspend", "context": "Suspend", "reference": "Modals/PowerMenuModal.qml:217, Modules/Lock/LockPowerMenu.qml:124, Modules/Settings/PowerSleepTab.qml:344, Modules/Settings/PowerSleepTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Suspend behavior", "context": "Suspend behavior", "reference": "Modules/Settings/PowerSleepTab.qml:335", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Suspend system after", "context": "Suspend system after", "reference": "Modules/Settings/PowerSleepTab.qml:300", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Suspend then Hibernate", "context": "Suspend then Hibernate", "reference": "Modules/Settings/PowerSleepTab.qml:344", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sway Website", "context": "Sway Website", "reference": "Modules/Settings/AboutTab.qml:73", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Switch User", "context": "Switch User", "reference": "Modals/PowerMenuModal.qml:235, Modals/SwitchUserModal.qml:97, Modules/Lock/LockPowerMenu.qml:136", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Switch between display configurations", "context": "Switch between display configurations", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:278", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Switch to power profile", "context": "Switch to power profile", "reference": "Modules/Settings/PowerSleepTab.qml:159", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync", "context": "Sync", "reference": "Modules/Settings/GreeterTab.qml:461", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync Bar Inset Padding", "context": "Sync Bar Inset Padding", - "reference": "Modules/Settings/DankBarTab.qml:1021", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1019", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:2144", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2142", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync Popouts & Modals", "context": "Sync Popouts & Modals", "reference": "Modules/Settings/TypographyMotionTab.qml:567", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync Position Across Screens", "context": "Sync Position Across Screens", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:358", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync applies your theme and settings to the login screen. Other users should run dms greeter sync --profile instead of a full sync. Authentication changes apply automatically.", "context": "Sync applies your theme and settings to the login screen. Other users should run dms greeter sync --profile instead of a full sync. Authentication changes apply automatically.", "reference": "Modules/Settings/GreeterTab.qml:403", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync completed successfully.", "context": "Sync completed successfully.", "reference": "Modules/Settings/GreeterTab.qml:251", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:2145", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2143", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", "context": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", "reference": "Modules/Settings/GreeterTab.qml:260", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "context": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "reference": "Modules/Settings/GreeterTab.qml:289", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Sync to apply", "context": "Sync to apply", "reference": "Modules/Settings/GreeterTab.qml:748", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Syncing...", "context": "Syncing...", "reference": "Modules/Settings/GreeterTab.qml:748", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System", "context": "System", "reference": "Modals/ProcessListModal.qml:325, Modals/ProcessListModal.qml:383, Services/AppSearchService.qml:685, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:312, Modules/ProcessList/ProcessListPopout.qml:169, Modules/DankBar/Popouts/SystemUpdatePopout.qml:99, Modules/DankBar/Popouts/SystemUpdatePopout.qml:217", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:2873", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2871", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System Check", "context": "System Check", "reference": "Modals/Greeter/GreeterDoctorPage.qml:151, Modals/Greeter/GreeterDoctorPage.qml:215, Modules/Settings/AboutTab.qml:814", - "comment": "greeter doctor page title" + "comment": "greeter doctor page title", + "tags": [ + "settings", + "shell" + ] }, { "term": "System Default", "context": "System Default", - "reference": "Modules/Settings/GreeterTab.qml:347, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:58, Modules/Settings/TimeWeatherTab.qml:66, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:185, Modules/Settings/TimeWeatherTab.qml:225, Modules/Settings/TimeWeatherTab.qml:269, Modules/Settings/TimeWeatherTab.qml:272, Modules/Settings/TimeWeatherTab.qml:312, Modules/Settings/LocaleTab.qml:9", - "comment": "date format option" + "reference": "Modules/Settings/GreeterTab.qml:347, Modules/Settings/TimeWeatherTab.qml:12, Modules/Settings/TimeWeatherTab.qml:58, Modules/Settings/TimeWeatherTab.qml:66, Modules/Settings/TimeWeatherTab.qml:180, Modules/Settings/TimeWeatherTab.qml:183, Modules/Settings/TimeWeatherTab.qml:223, Modules/Settings/TimeWeatherTab.qml:267, Modules/Settings/TimeWeatherTab.qml:270, Modules/Settings/TimeWeatherTab.qml:310, Modules/Settings/LocaleTab.qml:9", + "comment": "date format option", + "tags": [ + "settings" + ] }, { "term": "System Information", "context": "System Information", "reference": "Modules/ProcessList/SystemView.qml:45", - "comment": "system info header in system monitor" + "comment": "system info header in system monitor", + "tags": [ + "shell" + ] }, { "term": "System Monitor", "context": "System Monitor", "reference": "Modals/ProcessListModal.qml:55, Modals/ProcessListModal.qml:89, Modals/ProcessListModal.qml:267, Services/AppSearchService.qml:193, Services/DesktopWidgetRegistry.qml:53", - "comment": "System monitor widget name | sysmon window title" + "comment": "System monitor widget name | sysmon window title", + "tags": [ + "shell" + ] }, { "term": "System Monitor Unavailable", "context": "System Monitor Unavailable", "reference": "Modals/ProcessListModal.qml:220", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "System Sounds", "context": "System Sounds", "reference": "Modules/Settings/SoundsTab.qml:64", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System Tray", "context": "System Tray", "reference": "Modules/Settings/WidgetsTab.qml:166", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System Tray Icon Tint", "context": "System Tray Icon Tint", - "reference": "Modules/Settings/DankBarTab.qml:1318", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1316", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System Update", "context": "System Update", "reference": "Modules/Settings/WidgetsTab.qml:264", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System Updater", "context": "System Updater", "reference": "Modals/Settings/SettingsSidebar.qml:350, Modules/Settings/SystemUpdaterTab.qml:74", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System Updates", "context": "System Updates", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:144", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "System notification area icons", "context": "System notification area icons", "reference": "Modules/Settings/WidgetsTab.qml:167", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System sounds are not available. Install %1 for sound support.", "context": "System sounds are not available. Install %1 for sound support.", - "reference": "Modules/Settings/SoundsTab.qml:213", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:211", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "System theme toggle", "context": "System theme toggle", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:138", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "System toast notifications", "context": "System toast notifications", "reference": "Modules/Settings/DisplayWidgetsTab.qml:56", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Systemd Override generated", "context": "Systemd Override generated", "reference": "Modules/Settings/AutoStartTab.qml:302, Modules/Settings/AutoStartTab.qml:307", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Tab", "context": "Tab", "reference": "Widgets/KeybindItem.qml:1110", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select", "context": "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select", "reference": "Modals/FileBrowser/KeyboardHints.qml:26", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tags", "context": "Tags", "reference": "Modals/WindowRuleModal.qml:1806", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tags: %1", "context": "Tags: %1", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:457", - "comment": "Tailscale device tags" + "comment": "Tailscale device tags", + "tags": [ + "shell" + ] }, { "term": "Tailscale", "context": "Tailscale", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:267, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:17", - "comment": "Tailscale mesh VPN widget title" + "comment": "Tailscale mesh VPN widget title", + "tags": [ + "shell" + ] }, { "term": "Tailscale Network", "context": "Tailscale Network", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:268", - "comment": "Tailscale control center widget description" + "comment": "Tailscale control center widget description", + "tags": [ + "shell" + ] }, { "term": "Tailscale action failed", "context": "Tailscale action failed", "reference": "Services/TailscaleService.qml:178", - "comment": "Toast shown when a Tailscale write action is rejected" + "comment": "Toast shown when a Tailscale write action is rejected", + "tags": [ + "shell" + ] }, { "term": "Tailscale not available", "context": "Tailscale not available", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:272, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:79", - "comment": "Warning when Tailscale service is not running" + "comment": "Warning when Tailscale service is not running", + "tags": [ + "shell" + ] }, { "term": "Terminal", "context": "Terminal", - "reference": "Modules/Settings/DefaultAppsTab.qml:306, Modules/Settings/MuxTab.qml:46, Modules/Settings/Widgets/TerminalPickerRow.qml:9", - "comment": "Terminal" + "reference": "Modules/Settings/DefaultAppsTab.qml:306, Modules/Settings/MuxTab.qml:45, Modules/Settings/Widgets/TerminalPickerRow.qml:9", + "comment": "Terminal", + "tags": [ + "settings" + ] }, { "term": "Terminal additional parameters", "context": "Terminal additional parameters", "reference": "Modules/Settings/SystemUpdaterTab.qml:423", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.", "context": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.", - "reference": "Common/settings/Processes.qml:652", - "comment": "" + "reference": "Common/settings/Processes.qml:653", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "context": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "reference": "Modules/Settings/GreeterTab.qml:313", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { - "term": "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.", - "context": "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.", - "reference": "Common/settings/Processes.qml:648", - "comment": "" + "term": "Terminal fallback opened. Complete authentication there; it will close automatically when done.", + "context": "Terminal fallback opened. Complete authentication there; it will close automatically when done.", + "reference": "Common/settings/Processes.qml:649, Modules/Settings/GreeterTab.qml:308", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { - "term": "Terminal fallback opened. Complete sync there; it will close automatically when done.", - "context": "Terminal fallback opened. Complete sync there; it will close automatically when done.", - "reference": "Modules/Settings/GreeterTab.qml:308", - "comment": "" - }, - { - "term": "Terminal multiplexer backend to use", - "context": "Terminal multiplexer backend to use", - "reference": "Modules/Settings/MuxTab.qml:36", - "comment": "" - }, - { - "term": "Terminal opened. Complete authentication setup there; it will close automatically when done.", - "context": "Terminal opened. Complete authentication setup there; it will close automatically when done.", - "reference": "Common/settings/Processes.qml:648", - "comment": "" - }, - { - "term": "Terminal opened. Complete sync authentication there; it will close automatically when done.", - "context": "Terminal opened. Complete sync authentication there; it will close automatically when done.", - "reference": "Modules/Settings/GreeterTab.qml:308", - "comment": "" + "term": "Terminal opened. Complete authentication there; it will close automatically when done.", + "context": "Terminal opened. Complete authentication there; it will close automatically when done.", + "reference": "Common/settings/Processes.qml:649, Modules/Settings/GreeterTab.qml:308", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:2154", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2152", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Tertiary", "context": "Tertiary", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:31, Modules/Settings/WorkspaceAppearanceCard.qml:72, Modules/Settings/WorkspaceAppearanceCard.qml:107, Modules/Settings/WorkspaceAppearanceCard.qml:142, Modules/Settings/WorkspaceAppearanceCard.qml:177", - "comment": "workspace color option" + "comment": "workspace color option", + "tags": [ + "settings" + ] }, { "term": "Tertiary Container", "context": "Tertiary Container", "reference": "Modules/Settings/ThemeColorsTab.qml:59, Modules/Settings/WorkspaceAppearanceCard.qml:34, Modules/Settings/WorkspaceAppearanceCard.qml:75, Modules/Settings/WorkspaceAppearanceCard.qml:145, Modules/Settings/WorkspaceAppearanceCard.qml:180", - "comment": "widget background color option | workspace color option" + "comment": "widget background color option | workspace color option", + "tags": [ + "settings" + ] }, { "term": "Test Connection", "context": "Test Connection", "reference": "Modules/Settings/PrinterTab.qml:593", - "comment": "Button to test connection to a printer by IP address" + "comment": "Button to test connection to a printer by IP address", + "tags": [ + "settings" + ] }, { "term": "Test Page", "context": "Test Page", "reference": "Modules/Settings/PrinterTab.qml:1285", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Test page sent to printer", "context": "Test page sent to printer", "reference": "Services/CupsService.qml:644", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Testing...", "context": "Testing...", "reference": "Modules/Settings/PrinterTab.qml:593", - "comment": "Button state while testing printer connection" + "comment": "Button state while testing printer connection", + "tags": [ + "settings" + ] }, { "term": "Text", "context": "Text", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:354, Modals/DankLauncherV2/Controller.qml:1271, Modals/Clipboard/ClipboardEntry.qml:199, Modals/Clipboard/ClipboardContent.qml:16, Modules/Settings/LauncherTab.qml:737", - "comment": "KDE Connect share text button | text color" + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:354, Modals/DankLauncherV2/Controller.qml:1271, Modals/Clipboard/ClipboardEntry.qml:199, Modals/Clipboard/ClipboardContent.qml:16, Modules/Settings/LauncherTab.qml:736", + "comment": "KDE Connect share text button | text color", + "tags": [ + "plugin-dankkdeconnect", + "settings", + "shell" + ] }, { "term": "Text Color", "context": "Text Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1768, Modules/Settings/ThemeColorsTab.qml:1773, Modules/Settings/ThemeColorsTab.qml:1783, Modules/Settings/ThemeColorsTab.qml:1795, Modules/Settings/ThemeColorsTab.qml:1962, Modules/Settings/ThemeColorsTab.qml:1965, Modules/Settings/ThemeColorsTab.qml:1973, Modules/Settings/ThemeColorsTab.qml:1993", - "comment": "shadow color option | surface border color" + "reference": "Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1772, Modules/Settings/ThemeColorsTab.qml:1782, Modules/Settings/ThemeColorsTab.qml:1794, Modules/Settings/ThemeColorsTab.qml:1960, Modules/Settings/ThemeColorsTab.qml:1963, Modules/Settings/ThemeColorsTab.qml:1971, Modules/Settings/ThemeColorsTab.qml:1991", + "comment": "shadow color option | surface border color", + "tags": [ + "settings" + ] }, { "term": "Text Editor", "context": "Text Editor", - "reference": "Modules/Settings/DefaultAppsTab.qml:324", - "comment": "Text Editor" + "reference": "Modules/Settings/DefaultAppsTab.qml:323", + "comment": "Text Editor", + "tags": [ + "settings" + ] }, { "term": "Text Rendering", "context": "Text Rendering", "reference": "Modules/Settings/TypographyMotionTab.qml:335", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", "context": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", "reference": "Modals/ProcessListModal.qml:228", - "comment": "dgop unavailable error message" + "comment": "dgop unavailable error message", + "tags": [ + "shell" + ] }, { "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", "context": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", - "reference": "Modules/Settings/PluginsTab.qml:151", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:152", + "comment": "", + "tags": [ + "settings" + ] }, { "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:2862", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2860", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "The custom command used when attaching to sessions (receives the session name as the first argument)", "context": "The custom command used when attaching to sessions (receives the session name as the first argument)", - "reference": "Modules/Settings/MuxTab.qml:66", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:65", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "The job queue of this printer is empty", "context": "The job queue of this printer is empty", "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:240", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:772", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Theme & Colors", "context": "Theme & Colors", "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:83", - "comment": "greeter settings link" + "comment": "greeter settings link", + "tags": [ + "settings", + "shell" + ] }, { "term": "Theme Color", "context": "Theme Color", "reference": "Modules/Settings/ThemeColorsTab.qml:326", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Theme Registry", "context": "Theme Registry", "reference": "Modals/Greeter/GreeterWelcomePage.qml:105", - "comment": "greeter feature card title" + "comment": "greeter feature card title", + "tags": [ + "shell" + ] }, { "term": "Theme color used for the border", "context": "Theme color used for the border", - "reference": "Modules/Settings/DankBarTab.qml:1428", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1426", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Theme color used for the widget outline", "context": "Theme color used for the widget outline", - "reference": "Modules/Settings/DankBarTab.qml:1523", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1520", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Theme worker failed (%1)", "context": "Theme worker failed (%1)", "reference": "Common/Theme.qml:2155", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Themes", "context": "Themes", "reference": "Modals/Greeter/GreeterCompletePage.qml:484", - "comment": "greeter themes link" + "comment": "greeter themes link", + "tags": [ + "shell" + ] }, { "term": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)", "context": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)", "reference": "Modules/Settings/AutoStartTab.qml:595", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Thickness", "context": "Thickness", - "reference": "Modules/Settings/LauncherTab.qml:704, Modules/Settings/WorkspaceAppearanceBorderFields.qml:34, Modules/Settings/DankBarTab.qml:1488, Modules/Settings/DankBarTab.qml:1583", - "comment": "border thickness" + "reference": "Modules/Settings/LauncherTab.qml:703, Modules/Settings/WorkspaceAppearanceBorderFields.qml:34, Modules/Settings/DankBarTab.qml:1485, Modules/Settings/DankBarTab.qml:1579", + "comment": "border thickness", + "tags": [ + "settings" + ] }, { "term": "Thin", "context": "Thin", "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:258, Modules/Settings/TypographyMotionTab.qml:282", - "comment": "font weight" + "comment": "font weight", + "tags": [ + "settings" + ] }, { "term": "Third-Party Plugin Warning", "context": "Third-Party Plugin Warning", "reference": "Modules/Settings/PluginBrowser.qml:1847, Modules/Settings/PluginBrowser.qml:1881", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "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:1905", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "This bind is overridden by config.kdl", "context": "This bind is overridden by config.kdl", "reference": "Widgets/KeybindItem.qml:506", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "This device", "context": "This device", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:380", - "comment": "Label for the user's own device in Tailscale" + "comment": "Label for the user's own device in Tailscale", + "tags": [ + "shell" + ] }, { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.", - "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.", - "reference": "Modules/Settings/ThemeColorsTab.qml:146, Modules/Settings/ThemeColorsTab.qml:2223", - "comment": "" - }, - { - "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:63, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1521", - "comment": "" - }, - { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.", - "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.", - "reference": "Modules/Settings/CompositorLayoutTab.qml:97, Modules/Settings/CompositorLayoutTab.qml:211", - "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:550, Modules/Settings/KeybindsTab.qml:400", - "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:346, Modules/Settings/WindowRulesTab.qml:512", - "comment": "" + "term": "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.", + "context": "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.", + "reference": "Services/KeybindsService.qml:550, Modules/Settings/ThemeColorsTab.qml:146, Modules/Settings/ThemeColorsTab.qml:2221, Modules/Settings/WindowRulesTab.qml:346, Modules/Settings/WindowRulesTab.qml:512, Modules/Settings/KeybindsTab.qml:400, Modules/Settings/CompositorLayoutTab.qml:97, Modules/Settings/CompositorLayoutTab.qml:211, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:63, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1521", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "This may take a few seconds", "context": "This may take a few seconds", "reference": "Modules/Settings/AudioTab.qml:513", - "comment": "Loading overlay subtitle" + "comment": "Loading overlay subtitle", + "tags": [ + "settings" + ] }, { "term": "This output is disabled in the current profile", "context": "This output is disabled in the current profile", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:175", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json", "context": "This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json", "reference": "Modules/Plugins/PluginSettings.qml:207", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:161", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "This will delete all unpinned entries. %1 pinned entries will be kept.", "context": "This will delete all unpinned entries. %1 pinned entries will be kept.", "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:139, Modules/DankBar/DankBarContent.qml:927", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "This will permanently delete all clipboard history.", "context": "This will permanently delete all clipboard history.", "reference": "Modals/Clipboard/ClipboardHistoryContent.qml:139, Modules/DankBar/DankBarContent.qml:927", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "This will permanently remove this saved clipboard item. This action cannot be undone.", "context": "This will permanently remove this saved clipboard item. This action cannot be undone.", "reference": "Services/ClipboardService.qml:280", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Thunderstorm", "context": "Thunderstorm", "reference": "Services/WeatherService.qml:149", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Thunderstorm with Hail", "context": "Thunderstorm with Hail", "reference": "Services/WeatherService.qml:150, Services/WeatherService.qml:151", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tile", "context": "Tile", "reference": "Modals/WindowRuleModal.qml:1550, Modules/Settings/WallpaperTab.qml:296, Modules/Settings/WindowRulesTab.qml:115", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings", + "shell" + ] }, { "term": "Tile Horizontally", "context": "Tile Horizontally", "reference": "Modules/Settings/WallpaperTab.qml:296", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "term": "Tile Vertically", "context": "Tile Vertically", "reference": "Modules/Settings/WallpaperTab.qml:296", - "comment": "wallpaper fill mode" + "comment": "wallpaper fill mode", + "tags": [ + "settings" + ] }, { "term": "Tiled", "context": "Tiled", "reference": "Modules/Settings/WindowRulesTab.qml:110", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Tiled State", "context": "Tiled State", "reference": "Modals/WindowRuleModal.qml:1138", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tiling", "context": "Tiling", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:55", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Time", "context": "Time", - "reference": "Modules/Settings/ThemeColorsTab.qml:1201, Modules/Settings/GammaControlTab.qml:184, Modules/Settings/WallpaperTab.qml:947", - "comment": "theme auto mode tab | wallpaper cycling mode tab" + "reference": "Modules/Settings/ThemeColorsTab.qml:1201, Modules/Settings/GammaControlTab.qml:183, Modules/Settings/WallpaperTab.qml:946", + "comment": "theme auto mode tab | wallpaper cycling mode tab", + "tags": [ + "settings" + ] }, { "term": "Time & Date Locale", "context": "Time & Date Locale", "reference": "Modules/Settings/LocaleTab.qml:75", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Time & Weather", "context": "Time & Weather", "reference": "Modals/Settings/SettingsSidebar.qml:95", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Time Format", "context": "Time Format", "reference": "Modules/Settings/TimeWeatherTab.qml:45, Modules/Settings/TimeWeatherTab.qml:53", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Time remaining: %1", "context": "Time remaining: %1", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:108, Modules/DankBar/Popouts/BatteryPopout.qml:178", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Time to rest on a widget before its popout opens", "context": "Time to rest on a widget before its popout opens", - "reference": "Modules/Settings/DankBarTab.qml:1282", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1280", + "comment": "", + "tags": [ + "settings" + ] }, { "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:682", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Time until full: %1", "context": "Time until full: %1", "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:108, Modules/DankBar/Popouts/BatteryPopout.qml:178", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Timed Out", "context": "Timed Out", "reference": "Services/CupsService.qml:819", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Timeout Progress Bar", "context": "Timeout Progress Bar", - "reference": "Modules/Settings/NotificationsTab.qml:306", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:305", + "comment": "", + "tags": [ + "settings" + ] }, { - "term": "Timeout for critical priority notifications", - "context": "Timeout for critical priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:831, Modules/Notifications/Center/NotificationSettings.qml:219", - "comment": "" - }, - { - "term": "Timeout for low priority notifications", - "context": "Timeout for low priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:797, Modules/Notifications/Center/NotificationSettings.qml:185", - "comment": "" - }, - { - "term": "Timeout for normal priority notifications", - "context": "Timeout for normal priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:814, Modules/Notifications/Center/NotificationSettings.qml:202", - "comment": "" + "term": "Timeouts", + "context": "Timeouts", + "reference": "Modules/Settings/NotificationsTab.qml:786, Modules/Notifications/Center/NotificationSettings.qml:175", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Tint Saturation", "context": "Tint Saturation", - "reference": "Modules/Settings/DankBarTab.qml:1370", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1368", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Tint Strength", "context": "Tint Strength", - "reference": "Modules/Settings/DankBarTab.qml:1393", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1391", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Title", "context": "Title", "reference": "Widgets/KeybindItem.qml:1567, Modules/Settings/WindowRulesTab.qml:46, Modules/DankDash/Overview/CalendarEventEditor.qml:195", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Title (optional)", "context": "Title (optional)", "reference": "Modals/WindowRuleModal.qml:744", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Title is required", "context": "Title is required", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Title regex (optional)", "context": "Title regex (optional)", "reference": "Modals/WindowRuleModal.qml:744, Modals/WindowRuleModal.qml:809", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "To Full", "context": "To Full", "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:519", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "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).", "context": "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).", "reference": "Modals/SwitchUserModal.qml:229", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "To update, run the following command:", "context": "To update, run the following command:", "reference": "Services/DMSService.qml:323", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "To use this DMS bind, remove or change the keybind in your config.kdl", "context": "To use this DMS bind, remove or change the keybind in your config.kdl", "reference": "Widgets/KeybindItem.qml:524", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Toast", "context": "Toast", - "reference": "Modules/Settings/BatteryTab.qml:218, Modules/Settings/BatteryTab.qml:259, Modules/Settings/BatteryTab.qml:304", - "comment": "" + "reference": "Modules/Settings/BatteryTab.qml:220, Modules/Settings/BatteryTab.qml:262, Modules/Settings/BatteryTab.qml:307", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Toast Messages", "context": "Toast Messages", "reference": "Modules/Settings/DisplayWidgetsTab.qml:55", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Today", "context": "Today", "reference": "Services/WeatherService.qml:443, Modules/Notifications/Center/HistoryNotificationList.qml:97", - "comment": "notification history filter" + "comment": "notification history filter", + "tags": [ + "shell" + ] }, { "term": "Toggle bar visibility manually via IPC", "context": "Toggle bar visibility manually via IPC", "reference": "Modules/Settings/DankBarTab.qml:738", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Toggle fonts", "context": "Toggle fonts", "reference": "Modules/Notepad/NotepadSettings.qml:150", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Toggle visibility of this bar configuration", "context": "Toggle visibility of this bar configuration", "reference": "Modules/Settings/DankBarTab.qml:471", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Toggling...", "context": "Toggling...", "reference": "Modules/Settings/NetworkWifiTab.qml:177", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Tomorrow", "context": "Tomorrow", "reference": "Services/WeatherService.qml:445", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tonal Spot", "context": "Tonal Spot", "reference": "Common/Theme.qml:485", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Toner Empty", "context": "Toner Empty", "reference": "Services/CupsService.qml:792", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Toner Low", "context": "Toner Low", "reference": "Services/CupsService.qml:791", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Too many attempts - locked out", "context": "Too many attempts - locked out", "reference": "Modules/Lock/LockScreenContent.qml:79", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Too many failed attempts - account may be locked", "context": "Too many failed attempts - account may be locked", "reference": "Modules/Greetd/GreeterContent.qml:261", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tools", "context": "Tools", "reference": "Modules/Settings/AboutTab.qml:793", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Top", "context": "Top", - "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:342, Modules/Settings/DankBarTab.qml:350, Modules/Settings/DankBarTab.qml:493, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1731, Modules/Settings/FrameTab.qml:343", - "comment": "shadow direction option" + "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:342, Modules/Settings/DankBarTab.qml:350, Modules/Settings/DankBarTab.qml:493, Modules/Settings/DankBarTab.qml:1716, Modules/Settings/DankBarTab.qml:1726, Modules/Settings/FrameTab.qml:343", + "comment": "screen edge position | shadow direction option", + "tags": [ + "settings" + ] }, { "term": "Top (Default)", "context": "Top (Default)", - "reference": "Modules/Settings/ThemeColorsTab.qml:2007, Modules/Settings/ThemeColorsTab.qml:2019", - "comment": "shadow direction option" + "reference": "Modules/Settings/ThemeColorsTab.qml:2005, Modules/Settings/ThemeColorsTab.qml:2017", + "comment": "shadow direction option", + "tags": [ + "settings" + ] }, { "term": "Top Bar Format", "context": "Top Bar Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:180", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:178", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Top Center", "context": "Top Center", - "reference": "Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60, Modules/Settings/NotificationsTab.qml:243, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:268", - "comment": "screen position option" + "reference": "Modules/Settings/OSDTab.qml:39, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:60, Modules/Settings/NotificationsTab.qml:242, Modules/Settings/NotificationsTab.qml:258, Modules/Settings/NotificationsTab.qml:267", + "comment": "screen position option", + "tags": [ + "settings" + ] }, { "term": "Top Left", "context": "Top Left", - "reference": "Modules/Settings/ThemeColorsTab.qml:2007, Modules/Settings/ThemeColorsTab.qml:2013, Modules/Settings/ThemeColorsTab.qml:2026, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1725, Modules/Settings/DankBarTab.qml:1735, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:250, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:265, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", - "comment": "screen position option | shadow direction option" + "reference": "Modules/Settings/ThemeColorsTab.qml:2005, Modules/Settings/ThemeColorsTab.qml:2011, Modules/Settings/ThemeColorsTab.qml:2024, Modules/Settings/DankBarTab.qml:1716, Modules/Settings/DankBarTab.qml:1720, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:249, Modules/Settings/NotificationsTab.qml:258, Modules/Settings/NotificationsTab.qml:264, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "comment": "screen position option | shadow direction option", + "tags": [ + "settings" + ] }, { "term": "Top Processes", "context": "Top Processes", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:256", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Top Right", "context": "Top Right", - "reference": "Modules/Settings/ThemeColorsTab.qml:2007, Modules/Settings/ThemeColorsTab.qml:2015, Modules/Settings/ThemeColorsTab.qml:2028, Modules/Settings/DankBarTab.qml:1721, Modules/Settings/DankBarTab.qml:1727, Modules/Settings/DankBarTab.qml:1739, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:246, Modules/Settings/NotificationsTab.qml:256, Modules/Settings/NotificationsTab.qml:259, Modules/Settings/NotificationsTab.qml:262, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", - "comment": "screen position option | shadow direction option" + "reference": "Modules/Settings/ThemeColorsTab.qml:2005, Modules/Settings/ThemeColorsTab.qml:2013, Modules/Settings/ThemeColorsTab.qml:2026, Modules/Settings/DankBarTab.qml:1716, Modules/Settings/DankBarTab.qml:1722, Modules/Settings/DankBarTab.qml:1734, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:245, Modules/Settings/NotificationsTab.qml:255, Modules/Settings/NotificationsTab.qml:258, Modules/Settings/NotificationsTab.qml:261, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154", + "comment": "screen position option | shadow direction option", + "tags": [ + "settings" + ] }, { "term": "Top Section", "context": "Top Section", "reference": "Modules/Settings/WidgetsTab.qml:1322", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Total", "context": "Total", "reference": "Modules/Settings/WidgetsTabSection.qml:2140", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Total Jobs", "context": "Total Jobs", "reference": "Modules/Settings/PrinterTab.qml:232", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Touch your security key...", "context": "Touch your security key...", "reference": "Modules/Lock/LockScreenContent.qml:73", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Transform", "context": "Transform", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2076", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Transition Effect", "context": "Transition Effect", - "reference": "Modules/Settings/WallpaperTab.qml:1140", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1139", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Transparency", "context": "Transparency", "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:351", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Trash", "context": "Trash", - "reference": "Modules/Settings/DockTab.qml:526, Modules/Dock/DockTrashButton.qml:20, Modules/Dock/DockTrashButton.qml:20", - "comment": "" + "reference": "Modules/Settings/DockTab.qml:525, Modules/Dock/DockTrashButton.qml:20, Modules/Dock/DockTrashButton.qml:20", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Trash command failed (exit %1)", "context": "Trash command failed (exit %1)", "reference": "Services/TrashService.qml:112", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Tray Icon Fix", "context": "Tray Icon Fix", "reference": "Modules/Settings/AutoStartTab.qml:769", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Trending GIFs", "context": "Trending GIFs", "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:85", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch" + ] }, { "term": "Trending Stickers", "context": "Trending Stickers", "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:142", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankstickersearch" + ] }, { "term": "Trigger", "context": "Trigger", - "reference": "Modules/Settings/LauncherTab.qml:856", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:855", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Trigger Prefix", "context": "Trigger Prefix", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:123", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Trigger: %1", "context": "Trigger: %1", - "reference": "Modals/DankLauncherV2/Controller.qml:1424, Modules/Settings/LauncherTab.qml:1042", - "comment": "" + "reference": "Modals/DankLauncherV2/Controller.qml:1424, Modules/Settings/LauncherTab.qml:1041", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Trust", "context": "Trust", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:711", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Try a different search", "context": "Try a different search", "reference": "Modals/MuxModal.qml:552, dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankgifsearch", + "plugin-dankstickersearch", + "shell" + ] }, { "term": "Try a different search or switch filters.", "context": "Try a different search or switch filters.", "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:182", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Turn off", "context": "Turn off", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:241", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Turn off Do Not Disturb", "context": "Turn off Do Not Disturb", "reference": "Modules/Notifications/Center/NotificationHeader.qml:90", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Turn off all displays immediately when the lock screen activates", "context": "Turn off all displays immediately when the lock screen activates", - "reference": "Modules/Settings/LockScreenTab.qml:451", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:624", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Turn off monitors after", "context": "Turn off monitors after", "reference": "Modules/Settings/PowerSleepTab.qml:234", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Turn off monitors after lock", "context": "Turn off monitors after lock", "reference": "Modules/Settings/PowerSleepTab.qml:267", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Turn off now", "context": "Turn off now", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:234", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Type", "context": "Type", - "reference": "Widgets/KeybindItem.qml:851, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:611", - "comment": "" + "reference": "Widgets/KeybindItem.qml:851, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:609", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Type at least 2 characters", "context": "Type at least 2 characters", "reference": "Modals/DankLauncherV2/ResultsList.qml:555", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Type at least 2 characters to search files.", "context": "Type at least 2 characters to search files.", "reference": "Modals/DankLauncherV2/SpotlightResultsList.qml:181", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Type this prefix to search keybinds", "context": "Type this prefix to search keybinds", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:124", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Type to search files", "context": "Type to search files", "reference": "Modals/DankLauncherV2/ResultsList.qml:553", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Typography", "context": "Typography", "reference": "Modules/Settings/TypographyMotionTab.qml:199", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Typography & Motion", "context": "Typography & Motion", "reference": "Modals/Settings/SettingsSidebar.qml:89, Modals/Settings/SettingsSidebar.qml:652", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "URI", "context": "URI", "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:346", - "comment": "KDE Connect share URI button" + "comment": "KDE Connect share URI button", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Unavailable", "context": "Unavailable", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:459, Modules/Settings/NetworkVpnTab.qml:82, Modules/Settings/PrinterTab.qml:212, Modules/Settings/NetworkEthernetTab.qml:167, Modules/Settings/NetworkWifiTab.qml:970", - "comment": "Phone Connect unavailable status" + "comment": "Phone Connect unavailable status", + "tags": [ + "plugin-dankkdeconnect", + "settings" + ] }, { "term": "Uncategorized", "context": "Uncategorized", "reference": "Modules/Settings/PluginBrowser.qml:241", - "comment": "plugin browser category filter" + "comment": "plugin browser category filter", + "tags": [ + "settings" + ] }, { "term": "Unfocused Color", "context": "Unfocused Color", "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:70", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Unfocused Display(s)", "context": "Unfocused Display(s)", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:205", - "comment": "workspace appearance tab" + "comment": "workspace appearance tab", + "tags": [ + "settings" + ] }, { "term": "Ungrouped", "context": "Ungrouped", "reference": "Modules/Settings/DesktopWidgetsTab.qml:397", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uninstall", "context": "Uninstall", "reference": "Modules/Settings/GreeterTab.qml:91, Modules/Settings/GreeterTab.qml:142, Modules/Settings/ThemeBrowser.qml:629", - "comment": "uninstall action button" + "comment": "uninstall action button", + "tags": [ + "settings" + ] }, { "term": "Uninstall Greeter", "context": "Uninstall Greeter", "reference": "Modules/Settings/GreeterTab.qml:140", - "comment": "greeter action confirmation" + "comment": "greeter action confirmation", + "tags": [ + "settings" + ] }, { "term": "Uninstall Plugin", "context": "Uninstall Plugin", "reference": "Modules/Settings/PluginListItem.qml:260", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uninstall complete. Greeter has been removed.", "context": "Uninstall complete. Greeter has been removed.", "reference": "Modules/Settings/GreeterTab.qml:336", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uninstall failed: %1", "context": "Uninstall failed: %1", "reference": "Modules/Settings/ThemeColorsTab.qml:873, Modules/Settings/ThemeBrowser.qml:98, Modules/Settings/PluginListItem.qml:249", - "comment": "uninstallation error" + "comment": "uninstallation error", + "tags": [ + "settings" + ] }, { "term": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "context": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "reference": "Modules/Settings/GreeterTab.qml:141", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uninstalled: %1", "context": "Uninstalled: %1", "reference": "Modules/Settings/ThemeColorsTab.qml:876, Modules/Settings/ThemeBrowser.qml:101", - "comment": "uninstallation success" + "comment": "uninstallation success", + "tags": [ + "settings" + ] }, { "term": "Uninstalling: %1", "context": "Uninstalling: %1", "reference": "Modules/Settings/ThemeColorsTab.qml:870, Modules/Settings/ThemeBrowser.qml:95", - "comment": "uninstallation progress" + "comment": "uninstallation progress", + "tags": [ + "settings" + ] }, { "term": "Unknown", "context": "Unknown", - "reference": "Common/Theme.qml:1646, Services/WeatherService.qml:153, Services/WeatherService.qml:716, Services/WeatherService.qml:717, Services/WeatherService.qml:758, Services/WeatherService.qml:759, Services/WeatherService.qml:794, Services/WeatherService.qml:795, Services/WeatherService.qml:993, Services/WeatherService.qml:994, Services/BatteryService.qml:334, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1582, dms-plugins/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:741, Modules/Lock/LockScreenContent.qml:451, Modules/Lock/LockScreenContent.qml:571, Modules/Lock/LockScreenContent.qml:667, Modules/Settings/PluginBrowser.qml:1268, Modules/Settings/PluginBrowser.qml:1648, Modules/Settings/NetworkStatusTab.qml:79, Modules/Settings/NetworkStatusTab.qml:121, Modules/Settings/PrinterTab.qml:1651, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkEthernetTab.qml:146, Modules/Settings/NetworkEthernetTab.qml:169, Modules/Settings/NetworkEthernetTab.qml:317, Modules/Settings/NetworkEthernetTab.qml:428, Modules/Settings/NotificationsTab.qml:711, Modules/Settings/NetworkWifiTab.qml:537, Modules/Settings/NetworkWifiTab.qml:947, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:517, Modules/ControlCenter/Components/DragDropGrid.qml:755, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", - "comment": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status" + "reference": "Common/Theme.qml:1646, Services/WeatherService.qml:153, Services/WeatherService.qml:716, Services/WeatherService.qml:717, Services/WeatherService.qml:758, Services/WeatherService.qml:759, Services/WeatherService.qml:794, Services/WeatherService.qml:795, Services/WeatherService.qml:993, Services/WeatherService.qml:994, Services/BatteryService.qml:334, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1582, dms-plugins/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:741, Modules/Lock/LockScreenContent.qml:451, Modules/Lock/LockScreenContent.qml:571, Modules/Lock/LockScreenContent.qml:667, Modules/Settings/PluginBrowser.qml:1268, Modules/Settings/PluginBrowser.qml:1648, Modules/Settings/NetworkStatusTab.qml:79, Modules/Settings/NetworkStatusTab.qml:121, Modules/Settings/PrinterTab.qml:1651, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkEthernetTab.qml:146, Modules/Settings/NetworkEthernetTab.qml:169, Modules/Settings/NetworkEthernetTab.qml:317, Modules/Settings/NetworkEthernetTab.qml:428, Modules/Settings/NotificationsTab.qml:709, Modules/Settings/NetworkWifiTab.qml:537, Modules/Settings/NetworkWifiTab.qml:947, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:517, Modules/ControlCenter/Components/DragDropGrid.qml:755, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", + "comment": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status", + "tags": [ + "plugin-dankkdeconnect", + "settings", + "shell" + ] }, { "term": "Unknown App", "context": "Unknown App", - "reference": "Modules/Settings/LauncherTab.qml:1527", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:1526", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Unknown Artist", "context": "Unknown Artist", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1836, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1842, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, Modules/DankDash/MediaDropdownOverlay.qml:556, Modules/DankDash/MediaPlayerTab.qml:484, Modules/OSD/MediaPlaybackOSD.qml:314, Modules/DankDash/Overview/MediaOverviewCard.qml:102", - "comment": "" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1836, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1842, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, Modules/DankDash/MediaDropdownOverlay.qml:576, Modules/DankDash/MediaPlayerTab.qml:482, Modules/OSD/MediaPlaybackOSD.qml:314, Modules/DankDash/Overview/MediaOverviewCard.qml:102", + "comment": "", + "tags": [ + "plugin-dankkdeconnect", + "shell" + ] }, { "term": "Unknown Config", "context": "Unknown Config", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:308", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unknown Device", "context": "Unknown Device", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:262, Modules/ControlCenter/Details/BluetoothDetail.qml:524", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unknown GPU", "context": "Unknown GPU", "reference": "Modules/ProcessList/SystemView.qml:202", - "comment": "fallback gpu name" + "comment": "fallback gpu name", + "tags": [ + "shell" + ] }, { "term": "Unknown Model", "context": "Unknown Model", "reference": "Modules/Settings/Widgets/SettingsDisplayPicker.qml:83", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Unknown Monitor", "context": "Unknown Monitor", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:208", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unknown Network", "context": "Unknown Network", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:570", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unknown Title", "context": "Unknown Title", "reference": "Modules/OSD/MediaPlaybackOSD.qml:303", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unknown Track", "context": "Unknown Track", - "reference": "Modules/DankDash/MediaPlayerTab.qml:472", - "comment": "" + "reference": "Modules/DankDash/MediaPlayerTab.qml:470", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unload on Close", "context": "Unload on Close", - "reference": "Modules/Settings/LauncherTab.qml:673", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:672", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Unmute", "context": "Unmute", - "reference": "Modules/Settings/NotificationsTab.qml:724", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:722", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Unmute popups for %1", "context": "Unmute popups for %1", "reference": "Modules/Notifications/NotificationContextMenu.qml:130, Modules/Notifications/Center/NotificationCard.qml:1116", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unnamed Rule", "context": "Unnamed Rule", "reference": "Modules/Settings/WindowRulesTab.qml:628", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Unpair", "context": "Unpair", "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:261", - "comment": "KDE Connect unpair tooltip" + "comment": "KDE Connect unpair tooltip", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Unpair failed", "context": "Unpair failed", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:698", - "comment": "Phone Connect error" + "comment": "Phone Connect error", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Unpin", "context": "Unpin", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modals/Clipboard/ClipboardContextMenu.qml:32", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys", + "shell" + ] }, { "term": "Unpin from Dock", "context": "Unpin from Dock", "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:177, Modules/Dock/DockContextMenu.qml:225, Modules/DankBar/Widgets/AppsDockContextMenu.qml:354", - "comment": "" - }, - { - "term": "Unsaved Changes", - "context": "Unsaved Changes", - "reference": "Modules/Notepad/Notepad.qml:695", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unsaved changes", "context": "Unsaved changes", - "reference": "Widgets/KeybindItem.qml:1856, Modules/Notepad/NotepadTextEditor.qml:1035", - "comment": "" + "reference": "Widgets/KeybindItem.qml:1856, Modules/Notepad/NotepadTextEditor.qml:1035, Modules/Notepad/Notepad.qml:695", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Unset", "context": "Unset", - "reference": "Modules/Settings/DefaultAppsTab.qml:232, Modules/Settings/NotificationsTab.qml:215, Modules/Settings/NotificationsTab.qml:216, Modules/Settings/NotificationsTab.qml:218, Modules/Settings/NotificationsTab.qml:228, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:231", - "comment": "Unset" + "reference": "Modules/Settings/DefaultAppsTab.qml:232, Modules/Settings/NotificationsTab.qml:214, Modules/Settings/NotificationsTab.qml:215, Modules/Settings/NotificationsTab.qml:217, Modules/Settings/NotificationsTab.qml:227, Modules/Settings/NotificationsTab.qml:228, Modules/Settings/NotificationsTab.qml:230", + "comment": "Unset", + "tags": [ + "settings" + ] }, { "term": "Until %1", "context": "Until %1", "reference": "Modules/ControlCenter/Widgets/DndPill.qml:22, Modules/ControlCenter/Widgets/DndPill.qml:25", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Until 8 AM", "context": "Until 8 AM", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:83", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Until I turn it off", "context": "Until I turn it off", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:203, Modules/Notifications/Center/DndDurationMenu.qml:89", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Until tomorrow, 8:00 AM", "context": "Until tomorrow, 8:00 AM", "reference": "Modules/Notifications/Center/DndDurationMenu.qml:85", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Untitled", "context": "Untitled", "reference": "Services/NotepadStorageService.qml:129, Services/NotepadStorageService.qml:221, Services/NotepadStorageService.qml:289", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Untrust", "context": "Untrust", "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:711", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Up to date", "context": "Up to date", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:168", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Update", "context": "Update", - "reference": "Modals/WindowRuleModal.qml:1944, Modules/Settings/PluginUpdatesDialog.qml:249", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:1944, Modules/Settings/PluginUpdatesDialog.qml:253", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Update All", "context": "Update All", - "reference": "Modules/Settings/PluginsTab.qml:271, Modules/Settings/PluginUpdatesDialog.qml:286, Modules/DankBar/Popouts/SystemUpdatePopout.qml:253", - "comment": "" + "reference": "Modules/Settings/PluginsTab.qml:272, Modules/Settings/PluginUpdatesDialog.qml:290, Modules/DankBar/Popouts/SystemUpdatePopout.qml:253", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Update Plugin", "context": "Update Plugin", "reference": "Modules/Settings/PluginListItem.qml:217", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Update failed: %1", "context": "Update failed: %1", "reference": "Modules/Settings/PluginListItem.qml:206", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Updating %1...", "context": "Updating %1...", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:165", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:169", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Updating plugins...", "context": "Updating plugins...", - "reference": "Modules/Settings/PluginUpdatesDialog.qml:165", - "comment": "" + "reference": "Modules/Settings/PluginUpdatesDialog.qml:169", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Upgrading...", "context": "Upgrading...", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:162", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Uptime", "context": "Uptime", - "reference": "Modules/ProcessList/SystemView.qml:80", - "comment": "" - }, - { - "term": "Uptime:", - "context": "Uptime:", - "reference": "Modals/ProcessListModal.qml:514", - "comment": "uptime label in footer" + "reference": "Modals/ProcessListModal.qml:514, Modules/ProcessList/SystemView.qml:80", + "comment": "uptime label in footer", + "tags": [ + "shell" + ] }, { "term": "Urgent", "context": "Urgent", "reference": "Modals/WindowRuleModal.qml:912, Modules/Settings/WindowRulesTab.qml:52", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Urgent Color", "context": "Urgent Color", "reference": "Modules/Settings/WorkspaceAppearanceColorOptions.qml:90", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Usage Tips", "context": "Usage Tips", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:208", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Use 24-hour time format instead of 12-hour AM/PM", "context": "Use 24-hour time format instead of 12-hour AM/PM", "reference": "Modules/Settings/TimeWeatherTab.qml:54", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use Custom Command", "context": "Use Custom Command", - "reference": "Modules/Settings/MuxTab.qml:53, Modules/Settings/SystemUpdaterTab.qml:331", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:52, Modules/Settings/SystemUpdaterTab.qml:331", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use Grid Layout", "context": "Use Grid Layout", "reference": "Modules/Settings/PowerSleepTab.qml:392", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use HH:MM time format", "context": "Use HH:MM time format", "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:89", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Use IP Location", "context": "Use IP Location", - "reference": "Modules/Settings/ThemeColorsTab.qml:1359, Modules/Settings/GammaControlTab.qml:345", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1359, Modules/Settings/GammaControlTab.qml:344", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use Imperial Units", "context": "Use Imperial Units", - "reference": "Modules/Settings/TimeWeatherTab.qml:473", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:471", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", "context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", - "reference": "Modules/Settings/TimeWeatherTab.qml:474", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:472", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use Inline Expansion", "context": "Use Inline Expansion", "reference": "Modules/Settings/WidgetsTabSection.qml:1513", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use Monospace Font", "context": "Use Monospace Font", "reference": "Modules/Notepad/NotepadSettings.qml:149", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Use Overlay Layer", "context": "Use Overlay Layer", "reference": "Modules/Settings/DockTab.qml:95, Modules/Settings/LauncherTab.qml:175, Modules/Settings/DankBarTab.qml:800", - "comment": "bar layer toggle: use Wayland overlay layer | dock layer toggle: use Wayland overlay layer | launcher layer toggle: use Wayland overlay layer" + "comment": "bar layer toggle: use Wayland overlay layer | dock layer toggle: use Wayland overlay layer | launcher layer toggle: use Wayland overlay layer", + "tags": [ + "settings" + ] }, { "term": "Use System Theme", "context": "Use System Theme", - "reference": "Modules/Settings/SoundsTab.qml:96", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:95", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use a custom image for the lock screen, or leave empty to use your desktop wallpaper.", "context": "Use a custom image for the lock screen, or leave empty to use your desktop wallpaper.", - "reference": "Modules/Settings/LockScreenTab.qml:307", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:377", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "context": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "reference": "Modules/Settings/GreeterTab.qml:580", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use a custom radius for goth corner cutouts", "context": "Use a custom radius for goth corner cutouts", - "reference": "Modules/Settings/DankBarTab.qml:1222", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1220", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use a fixed shadow direction for this bar", "context": "Use a fixed shadow direction for this bar", - "reference": "Modules/Settings/DankBarTab.qml:1719", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1714", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use a security key for lock screen authentication.", "context": "Use a security key for lock screen authentication.", - "reference": "Modules/Settings/LockScreenTab.qml:83", - "comment": "lock screen U2F security key setting" + "reference": "Modules/Settings/LockScreenTab.qml:114", + "comment": "lock screen U2F security key setting", + "tags": [ + "settings" + ] }, { "term": "Use album art accent", "context": "Use album art accent", "reference": "Modules/Settings/MediaPlayerTab.qml:69", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "context": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", - "reference": "Modules/Settings/WallpaperTab.qml:1238", - "comment": "wallpaper settings disable description" + "reference": "Modules/Settings/WallpaperTab.qml:1237", + "comment": "wallpaper settings disable description", + "tags": [ + "settings" + ] }, { "term": "Use animated wave progress bars for media playback", "context": "Use animated wave progress bars for media playback", "reference": "Modules/Settings/MediaPlayerTab.qml:42", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use colors extracted from album art instead of system theme colors", "context": "Use colors extracted from album art instead of system theme colors", "reference": "Modules/Settings/MediaPlayerTab.qml:70", - "comment": "" - }, - { - "term": "Use custom border size", - "context": "Use custom border size", - "reference": "Modules/Settings/CompositorLayoutTab.qml:495, Modules/Settings/CompositorLayoutTab.qml:647", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", "reference": "Modules/Settings/CompositorLayoutTab.qml:352", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/CompositorLayoutTab.qml:323, Modules/Settings/CompositorLayoutTab.qml:466, Modules/Settings/CompositorLayoutTab.qml:618", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:323, Modules/Settings/CompositorLayoutTab.qml:466, Modules/Settings/CompositorLayoutTab.qml:617", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use desktop wallpaper", "context": "Use desktop wallpaper", "reference": "Modules/Settings/Widgets/SettingsWallpaperPicker.qml:15", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use different icon themes for light and dark mode", "context": "Use different icon themes for light and dark mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:2388", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:2386", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use different workspace colors on displays that are not focused", "context": "Use different workspace colors on displays that are not focused", "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:302", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use fingerprint authentication for the lock screen.", "context": "Use fingerprint authentication for the lock screen.", - "reference": "Modules/Settings/LockScreenTab.qml:68", - "comment": "lock screen fingerprint setting" + "reference": "Modules/Settings/LockScreenTab.qml:99", + "comment": "lock screen fingerprint setting", + "tags": [ + "settings" + ] }, { "term": "Use keys 1-3 or arrows, Enter/Space to select", "context": "Use keys 1-3 or arrows, Enter/Space to select", "reference": "Modals/PowerProfileModal.qml:269", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Use light theme instead of dark theme", "context": "Use light theme instead of dark theme", "reference": "Modules/Settings/ThemeColorsTab.qml:1593", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use meters per second instead of km/h for wind speed", "context": "Use meters per second instead of km/h for wind speed", - "reference": "Modules/Settings/TimeWeatherTab.qml:492", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:490", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use one inset value for every bar", "context": "Use one inset value for every bar", - "reference": "Modules/Settings/DankBarTab.qml:1022", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1020", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use smaller notification cards", "context": "Use smaller notification cards", - "reference": "Modules/Settings/NotificationsTab.qml:298", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:297", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use sound theme from system settings", "context": "Use sound theme from system settings", - "reference": "Modules/Settings/SoundsTab.qml:97", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:96", + "comment": "", + "tags": [ + "settings" + ] + }, + { + "term": "Use system PAM authentication", + "context": "Use system PAM authentication", + "reference": "Modules/Settings/GreeterTab.qml:488, Modules/Settings/LockScreenTab.qml:478", + "comment": "system PAM policy toggle", + "tags": [ + "settings" + ] }, { "term": "Use the extended surface for launcher content", "context": "Use the extended surface for launcher content", "reference": "Modules/Settings/FrameTab.qml:356", - "comment": "" - }, - { - "term": "Use the overlay layer when opening the launcher", - "context": "Use the overlay layer when opening the launcher", - "reference": "Modules/Settings/LauncherTab.qml:176", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use the same position and size on all displays", "context": "Use the same position and size on all displays", "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:359", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Use trigger prefix to activate", "context": "Use trigger prefix to activate", "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", - "comment": "" + "comment": "", + "tags": [ + "plugin-danklauncherkeys" + ] }, { "term": "Used for xdg-terminal-exec", "context": "Used for xdg-terminal-exec", "reference": "Modules/Settings/DefaultAppsTab.qml:309", - "comment": "Used for xdg-terminal-exec" + "comment": "Used for xdg-terminal-exec", + "tags": [ + "settings" + ] }, { "term": "Used when accent color is set to Custom", "context": "Used when accent color is set to Custom", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:57", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "User", "context": "User", "reference": "Modals/ProcessListModal.qml:383, Modules/ProcessList/ProcessListPopout.qml:169, Modules/ControlCenter/Components/HeaderPane.qml:57", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User Window Rules (%1)", "context": "User Window Rules (%1)", "reference": "Modules/Settings/WindowRulesTab.qml:839", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "User already exists", "context": "User already exists", "reference": "Services/UsersService.qml:135", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User created", "context": "User created", "reference": "Services/UsersService.qml:213", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User created with administrator and greeter login access", "context": "User created with administrator and greeter login access", "reference": "Services/UsersService.qml:208", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User created with administrator privileges", "context": "User created with administrator privileges", "reference": "Services/UsersService.qml:210", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User created with greeter login access", "context": "User created with greeter login access", "reference": "Services/UsersService.qml:212", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User deleted", "context": "User deleted", "reference": "Services/UsersService.qml:349", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "User not found", "context": "User not found", "reference": "Services/UsersService.qml:143, Services/UsersService.qml:155, Services/UsersService.qml:167, Services/UsersService.qml:182", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Username", "context": "Username", "reference": "Modals/WifiPasswordModal.qml:183, Modals/WifiPasswordModal.qml:506, Widgets/VpnProfileDelegate.qml:50, Widgets/VpnProfileDelegate.qml:300, Modules/Settings/NetworkVpnTab.qml:425, Modules/Settings/UsersTab.qml:358", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.", "context": "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.", "reference": "Modules/Settings/UsersTab.qml:381", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Username...", "context": "Username...", "reference": "Modules/Greetd/GreeterContent.qml:1257", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Users", "context": "Users", "reference": "Modals/Settings/SettingsSidebar.qml:357", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uses sunrise/sunset times based on your location.", "context": "Uses sunrise/sunset times based on your location.", "reference": "Modules/Settings/ThemeColorsTab.qml:1438", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", "context": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", - "reference": "Modules/Settings/GammaControlTab.qml:423", - "comment": "" + "reference": "Modules/Settings/GammaControlTab.qml:422", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Uses the spotlight-bar IPC action and always opens the minimal bar.", "context": "Uses the spotlight-bar IPC action and always opens the minimal bar.", - "reference": "Modules/Settings/LauncherTab.qml:236", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:235", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Using DankCalendar%1", "context": "Using DankCalendar%1", - "reference": "Modules/Settings/TimeWeatherTab.qml:150", - "comment": "calendar backend status" + "reference": "Modules/Settings/TimeWeatherTab.qml:148", + "comment": "calendar backend status", + "tags": [ + "settings" + ] }, { "term": "Using global monospace font from Settings → Personalization", "context": "Using global monospace font from Settings → Personalization", "reference": "Modules/Notepad/NotepadSettings.qml:486", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Using khal", "context": "Using khal", - "reference": "Modules/Settings/TimeWeatherTab.qml:152", - "comment": "calendar backend status" + "reference": "Modules/Settings/TimeWeatherTab.qml:150", + "comment": "calendar backend status", + "tags": [ + "settings" + ] }, { "term": "Using shared settings from Gamma Control", "context": "Using shared settings from Gamma Control", "reference": "Modules/Settings/ThemeColorsTab.qml:1450", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Utilities", "context": "Utilities", "reference": "Services/AppSearchService.qml:686, Services/AppSearchService.qml:687, Services/AppSearchService.qml:688, Services/AppSearchService.qml:689, Modules/Settings/DefaultAppsTab.qml:296", - "comment": "Utilities" + "comment": "Utilities", + "tags": [ + "settings", + "shell" + ] }, { "term": "VPN", "context": "VPN", "reference": "Services/DMSNetworkService.qml:393, Modals/Settings/SettingsSidebar.qml:269, Modules/Settings/WidgetsTabSection.qml:2263, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/NetworkVpnTab.qml:45, Modules/Settings/WidgetsTab.qml:201, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "VPN Connections", "context": "VPN Connections", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:248, Modules/DankBar/Popouts/VpnPopout.qml:64", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "VPN configuration updated", "context": "VPN configuration updated", "reference": "Services/VPNService.qml:146", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "VPN credentials saved", "context": "VPN credentials saved", "reference": "Services/VPNService.qml:170", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "VPN deleted", "context": "VPN deleted", "reference": "Services/VPNService.qml:185", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "VPN imported: %1", "context": "VPN imported: %1", "reference": "Services/VPNService.qml:94", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "VPN not available", "context": "VPN not available", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:252", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "VPN status and quick connect", "context": "VPN status and quick connect", "reference": "Modules/Settings/WidgetsTab.qml:202", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "VRR", "context": "VRR", "reference": "Modules/Settings/WindowRulesTab.qml:104, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2078", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "VRR Fullscreen Only", "context": "VRR Fullscreen Only", "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:2112", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "VRR On-Demand", "context": "VRR On-Demand", "reference": "Modals/WindowRuleModal.qml:1130, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2086", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Variable Refresh Rate", "context": "Variable Refresh Rate", "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:319, Modules/Settings/DisplayConfig/OutputCard.qml:332, Modules/Settings/DisplayConfig/OutputCard.qml:355", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Verification", "context": "Verification", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:587", - "comment": "Phone Connect pairing verification key label" + "comment": "Phone Connect pairing verification key label", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "Version", "context": "Version", "reference": "Modules/Settings/AboutTab.qml:648", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Vertical Deck", "context": "Vertical Deck", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:57", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Vertical Grid", "context": "Vertical Grid", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:56", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Vertical Scrolling", "context": "Vertical Scrolling", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:58", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Vertical Tiling", "context": "Vertical Tiling", "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:59", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Very High", "context": "Very High", "reference": "Modules/Settings/TypographyMotionTab.qml:458", - "comment": "" + "comment": "quality level option", + "tags": [ + "settings" + ] }, { "term": "Vibrant", "context": "Vibrant", "reference": "Common/Theme.qml:489", - "comment": "matugen color scheme option" + "comment": "matugen color scheme option", + "tags": [ + "shell" + ] }, { "term": "Vibrant palette with playful saturation.", "context": "Vibrant palette with playful saturation.", "reference": "Common/Theme.qml:498", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Video Path", "context": "Video Path", - "reference": "Modules/Settings/LockScreenTab.qml:544", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:670", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Video Player", "context": "Video Player", - "reference": "Modules/Settings/DefaultAppsTab.qml:347", - "comment": "Video Player" + "reference": "Modules/Settings/DefaultAppsTab.qml:344", + "comment": "Video Player", + "tags": [ + "settings" + ] }, { "term": "Video Screensaver", "context": "Video Screensaver", - "reference": "Modules/Lock/VideoScreensaver.qml:39, Modules/Lock/VideoScreensaver.qml:76, Modules/Lock/VideoScreensaver.qml:108, Modules/Settings/LockScreenTab.qml:516", - "comment": "" + "reference": "Modules/Lock/VideoScreensaver.qml:39, Modules/Lock/VideoScreensaver.qml:76, Modules/Lock/VideoScreensaver.qml:108, Modules/Settings/LockScreenTab.qml:642", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Videos", "context": "Videos", "reference": "Modals/FileBrowser/FileBrowserContent.qml:288", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "View Mode", "context": "View Mode", "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:11", - "comment": "" + "comment": "", + "tags": [ + "plugin-dankdesktopweather" + ] }, { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/TimeWeatherTab.qml:1182, Modules/Settings/DankBarTab.qml:647", - "comment": "" + "reference": "Modules/DankDash/WeatherForecastCard.qml:100, Modules/Settings/DockTab.qml:40, Modules/Settings/TimeWeatherTab.qml:1180, Modules/Settings/DankBarTab.qml:647", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Visible Entry Actions", "context": "Visible Entry Actions", - "reference": "Modules/Settings/ClipboardTab.qml:491", - "comment": "" + "reference": "Modules/Settings/ClipboardTab.qml:490", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Visual Effects", "context": "Visual Effects", "reference": "Modules/Settings/WidgetsTabSection.qml:4167", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Visual divider between widgets", "context": "Visual divider between widgets", "reference": "Modules/Settings/WidgetsTab.qml:230", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Visual effect used when wallpaper changes", "context": "Visual effect used when wallpaper changes", - "reference": "Modules/Settings/WallpaperTab.qml:1141", - "comment": "" + "reference": "Modules/Settings/WallpaperTab.qml:1140", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Volume", "context": "Volume", "reference": "Modules/Settings/WidgetsTabSection.qml:2288, Modules/Settings/WidgetsTabSection.qml:2514, Modules/Settings/OSDTab.qml:93", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Volume Changed", "context": "Volume Changed", - "reference": "Modules/Settings/SoundsTab.qml:155", - "comment": "" + "reference": "Modules/Settings/SoundsTab.qml:153", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Volume Slider", "context": "Volume Slider", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:195", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Volume, brightness, and other system OSDs", "context": "Volume, brightness, and other system OSDs", "reference": "Modules/Settings/DisplayWidgetsTab.qml:50", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Votes", "context": "Votes", "reference": "Modules/Settings/PluginBrowser.qml:51", - "comment": "plugin browser sort option" + "comment": "plugin browser sort option", + "tags": [ + "settings" + ] }, { "term": "W", "context": "W", "reference": "Modals/WindowRuleModal.qml:1654, Modules/Settings/WindowRulesTab.qml:125", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "WPA/WPA2", "context": "WPA/WPA2", "reference": "Modules/Settings/NetworkWifiTab.qml:773, Modules/Settings/NetworkWifiTab.qml:1134", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wallpaper", "context": "Wallpaper", "reference": "Widgets/KeybindItem.qml:1129, Widgets/KeybindItem.qml:1136, Widgets/KeybindItem.qml:1145, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:77, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63", - "comment": "greeter settings link" + "comment": "greeter settings link", + "tags": [ + "settings", + "shell" + ] }, { "term": "Wallpaper Error", "context": "Wallpaper Error", "reference": "Modules/Settings/ThemeColorsTab.qml:572", - "comment": "wallpaper error status" + "comment": "wallpaper error status", + "tags": [ + "settings" + ] }, { "term": "Wallpaper Monitor", "context": "Wallpaper Monitor", "reference": "Modules/Settings/WallpaperTab.qml:806", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wallpaper fill mode", "context": "Wallpaper fill mode", "reference": "Modules/Settings/Widgets/SettingsWallpaperPicker.qml:66", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wallpaper processing failed", "context": "Wallpaper processing failed", "reference": "Modules/Settings/ThemeColorsTab.qml:589", - "comment": "wallpaper processing error" + "comment": "wallpaper processing error", + "tags": [ + "settings" + ] }, { "term": "Wallpaper processing failed - check wallpaper path", "context": "Wallpaper processing failed - check wallpaper path", "reference": "Modules/Settings/ThemeColorsTab.qml:427", - "comment": "wallpaper error" + "comment": "wallpaper error", + "tags": [ + "settings" + ] }, { "term": "Wallpapers", "context": "Wallpapers", "reference": "Modules/DankDash/DankDashPopout.qml:26, Modules/Settings/DankDashTab.qml:32", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Warm color temperature to apply", "context": "Warm color temperature to apply", "reference": "Modules/Settings/GammaControlTab.qml:106", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Warning", "context": "Warning", "reference": "Services/CupsService.qml:837", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Warnings", "context": "Warnings", "reference": "Modals/Greeter/GreeterDoctorPage.qml:251", - "comment": "greeter doctor page status card" + "comment": "greeter doctor page status card", + "tags": [ + "shell" + ] }, { "term": "Wave Progress Bars", "context": "Wave Progress Bars", "reference": "Modules/Settings/MediaPlayerTab.qml:41", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1131, Widgets/KeybindItem.qml:1136, Widgets/KeybindItem.qml:1148, Modules/DankDash/DankDashPopout.qml:30, Modules/Settings/TimeWeatherTab.qml:443, Modules/Settings/DankDashTab.qml:37", - "comment": "" + "reference": "Widgets/KeybindItem.qml:1131, Widgets/KeybindItem.qml:1136, Widgets/KeybindItem.qml:1148, Modules/DankDash/DankDashPopout.qml:30, Modules/Settings/TimeWeatherTab.qml:441, Modules/Settings/DankDashTab.qml:37", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Weather Widget", "context": "Weather Widget", "reference": "Modules/Settings/WidgetsTab.qml:105", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Web Browser", "context": "Web Browser", "reference": "Modules/Settings/DefaultAppsTab.qml:274", - "comment": "Web Browser" + "comment": "Web Browser", + "tags": [ + "settings" + ] }, { "term": "Welcome", "context": "Welcome", "reference": "Modals/Greeter/GreeterModal.qml:90", - "comment": "greeter modal window title" + "comment": "greeter modal window title", + "tags": [ + "shell" + ] }, { "term": "Welcome to DankMaterialShell", "context": "Welcome to DankMaterialShell", "reference": "Modals/Greeter/GreeterWelcomePage.qml:46", - "comment": "greeter welcome page title" + "comment": "greeter welcome page title", + "tags": [ + "shell" + ] }, { "term": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", "context": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", "reference": "Modules/Settings/DockTab.qml:181", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "context": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", - "reference": "Modules/Settings/LauncherTab.qml:589", - "comment": "" + "reference": "Modules/Settings/LauncherTab.qml:588", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.", "context": "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.", "reference": "Modules/Settings/SystemUpdaterTab.qml:161", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "When locked", "context": "When locked", "reference": "Widgets/KeybindItem.qml:1794", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] + }, + { + "term": "Which PAM service the lock screen uses to authenticate", + "context": "Which PAM service the lock screen uses to authenticate", + "reference": "Modules/Settings/LockScreenTab.qml:414", + "comment": "lock screen PAM source setting", + "tags": [ + "settings" + ] }, { "term": "White", "context": "White", "reference": "Modules/Settings/WallpaperTab.qml:344", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wi-Fi and Ethernet connection", "context": "Wi-Fi and Ethernet connection", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:162", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Wi-Fi not available", "context": "Wi-Fi not available", "reference": "Modules/ControlCenter/Models/WidgetModel.qml:166", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "WiFi", "context": "WiFi", "reference": "Modals/Settings/SettingsSidebar.qml:263, Modules/Settings/NetworkStatusTab.qml:117, Modules/Settings/NetworkStatusTab.qml:164, Modules/Settings/NetworkWifiTab.qml:86, Modules/ControlCenter/Details/NetworkDetail.qml:137", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "WiFi Device", "context": "WiFi Device", "reference": "Modules/Settings/NetworkWifiTab.qml:224, Modules/Settings/NetworkWifiTab.qml:256", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "WiFi QR code for ", "context": "WiFi QR code for ", "reference": "Modals/WifiQRCodeModal.qml:125", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "WiFi disabled", "context": "WiFi disabled", "reference": "Services/LegacyNetworkService.qml:211, Services/DMSNetworkService.qml:655", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "WiFi enabled", "context": "WiFi enabled", "reference": "Services/LegacyNetworkService.qml:211, Services/LegacyNetworkService.qml:416, Services/DMSNetworkService.qml:655, Services/DMSNetworkService.qml:667", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "WiFi is off", "context": "WiFi is off", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:227", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "WiFi off", "context": "WiFi off", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:500", - "comment": "network status" + "comment": "network status", + "tags": [ + "shell" + ] }, { "term": "Wide (BT2020)", "context": "Wide (BT2020)", "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:154, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:158, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:169", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget Background Color", "context": "Widget Background Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:1628, Modules/Settings/ThemeColorsTab.qml:1634", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1628, Modules/Settings/ThemeColorsTab.qml:1633", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget Management", "context": "Widget Management", "reference": "Modules/Settings/WidgetsTab.qml:1235", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget Opacity", "context": "Widget Opacity", - "reference": "Modules/Settings/DankBarTab.qml:845", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:844", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget Outline", "context": "Widget Outline", - "reference": "Modules/Settings/DankBarTab.qml:1514", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1511", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget Styling", "context": "Widget Styling", "reference": "Modules/Settings/ThemeColorsTab.qml:1605", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget Text Style", "context": "Widget Text Style", "reference": "Modules/Settings/ThemeColorsTab.qml:1613", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget added", "context": "Widget added", "reference": "Modules/Settings/DesktopWidgetsTab.qml:140", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widget removed", "context": "Widget removed", "reference": "Modules/Settings/DesktopWidgetsTab.qml:377, Modules/Settings/DesktopWidgetsTab.qml:410", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widgets", "context": "Widgets", "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:237", - "comment": "settings_displays" + "comment": "settings_displays", + "tags": [ + "settings" + ] }, { "term": "Widgets & Notifications", "context": "Widgets & Notifications", "reference": "Modals/Settings/SettingsSidebar.qml:154, Modals/Settings/SettingsSidebar.qml:646", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Widgets, layout, style", "context": "Widgets, layout, style", "reference": "Modals/Greeter/GreeterCompletePage.qml:406", - "comment": "greeter dankbar description" + "comment": "greeter dankbar description", + "tags": [ + "shell" + ] }, { "term": "Width", "context": "Width", "reference": "Modules/Settings/WindowRulesTab.qml:102", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Width of the border in pixels", "context": "Width of the border in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1489", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1486", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Width of the widget outline in pixels", "context": "Width of the widget outline in pixels", - "reference": "Modules/Settings/DankBarTab.qml:1584", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1580", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Width of window border", "context": "Width of window border", - "reference": "Modules/Settings/CompositorLayoutTab.qml:510, Modules/Settings/CompositorLayoutTab.qml:662", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:509, Modules/Settings/CompositorLayoutTab.qml:660", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Width of window border and focus ring", "context": "Width of window border and focus ring", "reference": "Modules/Settings/CompositorLayoutTab.qml:367", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wind", "context": "Wind", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:92, Modules/Settings/TimeWeatherTab.qml:1031", - "comment": "" + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:92, Modules/Settings/TimeWeatherTab.qml:1029", + "comment": "", + "tags": [ + "plugin-dankdesktopweather", + "settings", + "shell" + ] }, { "term": "Wind Speed", "context": "Wind Speed", "reference": "Modules/DankDash/WeatherForecastCard.qml:85", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Wind Speed in m/s", "context": "Wind Speed in m/s", - "reference": "Modules/Settings/TimeWeatherTab.qml:491", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:489", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/CompositorLayoutTab.qml:337, Modules/Settings/CompositorLayoutTab.qml:480, Modules/Settings/CompositorLayoutTab.qml:632", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:337, Modules/Settings/CompositorLayoutTab.qml:480, Modules/Settings/CompositorLayoutTab.qml:631", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Window Gaps", "context": "Window Gaps", "reference": "Modules/Settings/CompositorLayoutTab.qml:308", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Window Gaps (px)", "context": "Window Gaps (px)", "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:227", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Window Height", "context": "Window Height", "reference": "Modals/WindowRuleModal.qml:1072", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Window Opening", "context": "Window Opening", "reference": "Modals/WindowRuleModal.qml:943", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Window Rules", "context": "Window Rules", "reference": "Modals/Settings/SettingsSidebar.qml:303, Modules/Settings/WindowRulesTab.qml:401", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wipe", "context": "Wipe", - "reference": "Modules/Settings/WallpaperTab.qml:1152", - "comment": "wallpaper transition option" + "reference": "Modules/Settings/WallpaperTab.qml:1151", + "comment": "wallpaper transition option", + "tags": [ + "settings" + ] }, { "term": "Working...", "context": "Working...", "reference": "Modules/Settings/UsersTab.qml:477", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Workspace", "context": "Workspace", - "reference": "Modals/WindowRuleModal.qml:1012, Modals/WindowRuleModal.qml:1741, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1861, Modules/Settings/DankBarTab.qml:1902, Modules/Settings/WindowRulesTab.qml:101, Modules/Settings/WindowRulesTab.qml:130", - "comment": "" - }, - { - "term": "Workspace Appearance", - "context": "Workspace Appearance", - "reference": "Modules/Settings/WorkspaceAppearanceCard.qml:11", - "comment": "" + "reference": "Modals/WindowRuleModal.qml:1012, Modals/WindowRuleModal.qml:1741, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/DankBarTab.qml:1897, Modules/Settings/WindowRulesTab.qml:101, Modules/Settings/WindowRulesTab.qml:130", + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Workspace Index Numbers", "context": "Workspace Index Numbers", "reference": "Modules/Settings/WorkspacesTab.qml:34", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Workspace Names", "context": "Workspace Names", "reference": "Modules/Settings/WorkspacesTab.qml:43", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Workspace Padding", "context": "Workspace Padding", "reference": "Modules/Settings/WorkspacesTab.qml:52", - "comment": "" - }, - { - "term": "Workspace Settings", - "context": "Workspace Settings", - "reference": "Modules/Settings/WorkspacesTab.qml:28", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Workspace Switcher", "context": "Workspace Switcher", "reference": "Modules/Settings/WidgetsTab.qml:70", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Workspace name", "context": "Workspace name", "reference": "Modals/WorkspaceRenameModal.qml:136", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Workspaces", "context": "Workspaces", "reference": "Modals/Settings/SettingsSidebar.qml:140", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Wrap the app command. %command% is replaced with the actual executable", "context": "Wrap the app command. %command% is replaced with the actual executable", "reference": "Modules/Settings/AutoStartTab.qml:510", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Write:", "context": "Write:", "reference": "Modules/ProcessList/DisksView.qml:91", - "comment": "disk write label" + "comment": "disk write label", + "tags": [ + "shell" + ] }, { "term": "X", "context": "X", "reference": "Modals/WindowRuleModal.qml:1348, Modals/WindowRuleModal.qml:1600, Modules/Settings/WindowRulesTab.qml:127", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "X Axis", "context": "X Axis", - "reference": "Modules/Settings/DankBarTab.qml:1899", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1894", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "X-Ray", "context": "X-Ray", "reference": "Modals/WindowRuleModal.qml:1272, Modules/Settings/WindowRulesTab.qml:133", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "XWayland", "context": "XWayland", "reference": "Modals/WindowRuleModal.qml:922, Modules/Settings/WindowRulesTab.qml:54", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Xray Blur Effect", "context": "Xray Blur Effect", - "reference": "Modules/Settings/CompositorLayoutTab.qml:381, Modules/Settings/CompositorLayoutTab.qml:533", - "comment": "" + "reference": "Modules/Settings/CompositorLayoutTab.qml:381, Modules/Settings/CompositorLayoutTab.qml:532", + "comment": "", + "tags": [ + "settings" + ] }, { "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:1250", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "Xray options are in Compositor → Layout", "context": "Xray options are in Compositor → Layout", - "reference": "Modules/Settings/ThemeColorsTab.qml:1894", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1893", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Y", "context": "Y", "reference": "Modals/WindowRuleModal.qml:1375, Modals/WindowRuleModal.qml:1627, Modules/Settings/WindowRulesTab.qml:128", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "Y Axis", "context": "Y Axis", - "reference": "Modules/Settings/DankBarTab.qml:1859", - "comment": "" + "reference": "Modules/Settings/DankBarTab.qml:1854", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Yes", "context": "Yes", "reference": "Modules/Settings/PrinterTab.qml:1182, Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2084, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2088, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2098, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2108, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2110", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Yesterday", "context": "Yesterday", "reference": "Modules/Notifications/Center/HistoryNotificationList.qml:102", - "comment": "notification history filter" - }, - { - "term": "You have unsaved changes. Save before closing this tab?", - "context": "You have unsaved changes. Save before closing this tab?", - "reference": "Modules/Notepad/Notepad.qml:702", - "comment": "" + "comment": "notification history filter", + "tags": [ + "shell" + ] }, { "term": "You have unsaved changes. Save before continuing?", "context": "You have unsaved changes. Save before continuing?", "reference": "Modules/Notepad/Notepad.qml:702", - "comment": "" - }, - { - "term": "You have unsaved changes. Save before creating a new file?", - "context": "You have unsaved changes. Save before creating a new file?", - "reference": "Modules/Notepad/Notepad.qml:702", - "comment": "" - }, - { - "term": "You have unsaved changes. Save before opening a file?", - "context": "You have unsaved changes. Save before opening a file?", - "reference": "Modules/Notepad/Notepad.qml:702", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "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:213", - "comment": "qt theme env error body" + "comment": "qt theme env error body", + "tags": [ + "settings" + ] }, { "term": "You'll enter your password at the greeter after the next reboot.", "context": "You'll enter your password at the greeter after the next reboot.", - "reference": "Common/settings/Processes.qml:376", - "comment": "" + "reference": "Common/settings/Processes.qml:377", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.", "context": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.", - "reference": "Common/settings/Processes.qml:374", - "comment": "" + "reference": "Common/settings/Processes.qml:375", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "You're All Set!", "context": "You're All Set!", "reference": "Modals/Greeter/GreeterCompletePage.qml:105", - "comment": "greeter completion page title" + "comment": "greeter completion page title", + "tags": [ + "shell" + ] }, { "term": "Your compositor does not support background blur (ext-background-effect-v1)", "context": "Your compositor does not support background blur (ext-background-effect-v1)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1868", - "comment": "" + "reference": "Modules/Settings/ThemeColorsTab.qml:1867", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "Your system is up to date!", "context": "Your system is up to date!", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:354", - "comment": "" - }, - { - "term": "actions", - "context": "actions", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:418", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "admin", "context": "admin", "reference": "Modules/Settings/UsersTab.qml:210", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "attached", "context": "attached", "reference": "Modals/MuxModal.qml:467", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "brandon", "context": "brandon", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:44", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "broken", "context": "broken", "reference": "Modules/Settings/PluginBrowser.qml:135", - "comment": "plugin status" + "comment": "plugin status", + "tags": [ + "settings" + ] }, { "term": "by %1", "context": "by %1", - "reference": "Modules/Settings/PluginBrowser.qml:1268, Modules/Settings/PluginBrowser.qml:1648, Modules/Settings/ThemeBrowser.qml:506", - "comment": "author attribution" + "reference": "Modules/Settings/PluginBrowser.qml:1268, Modules/Settings/PluginBrowser.qml:1648, Modules/Settings/PluginUpdatesDialog.qml:227, Modules/Settings/ThemeBrowser.qml:506", + "comment": "author attribution", + "tags": [ + "settings" + ] }, { "term": "checked %1d ago", "context": "checked %1d ago", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:117", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "checked %1h ago", "context": "checked %1h ago", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:115", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "checked %1m ago", "context": "checked %1m ago", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:112", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "checked just now", "context": "checked just now", "reference": "Modules/DankBar/Popouts/SystemUpdatePopout.qml:109", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "days", "context": "days", - "reference": "Modules/Settings/NotificationsTab.qml:894, Modules/Settings/ClipboardTab.qml:182", - "comment": "" + "reference": "Modules/Settings/NotificationsTab.qml:889, Modules/Settings/ClipboardTab.qml:182", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "deprecated", "context": "deprecated", "reference": "Modules/Settings/PluginBrowser.qml:139", - "comment": "plugin status" + "comment": "plugin status", + "tags": [ + "settings" + ] }, { "term": "detached", "context": "detached", "reference": "Modals/MuxModal.qml:467", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "device", "context": "device", "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:618", - "comment": "Generic device name fallback" + "comment": "Generic device name fallback", + "tags": [ + "plugin-dankkdeconnect" + ] }, { "term": "dgop not available", "context": "dgop not available", "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:49", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "direct", "context": "direct", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:414", - "comment": "Tailscale direct connection" + "comment": "Tailscale direct connection", + "tags": [ + "shell" + ] }, { "term": "discuss", "context": "discuss", "reference": "Modules/Settings/PluginBrowser.qml:1650", - "comment": "plugin discussion link" + "comment": "plugin discussion link", + "tags": [ + "settings" + ] }, { "term": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", "context": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", "reference": "Modules/Settings/AboutTab.qml:585", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "e.g. /usr/bin/my-script --flag", "context": "e.g. /usr/bin/my-script --flag", "reference": "Modules/Settings/AutoStartTab.qml:587", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "e.g. My Script", "context": "e.g. My Script", "reference": "Modules/Settings/AutoStartTab.qml:556", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "e.g. alice", "context": "e.g. alice", "reference": "Modules/Settings/UsersTab.qml:366", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "e.g., firefox, kitty --title foo", "context": "e.g., firefox, kitty --title foo", "reference": "Widgets/KeybindItem.qml:1517", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "e.g., focus-workspace 3, resize-column -10", "context": "e.g., focus-workspace 3, resize-column -10", "reference": "Widgets/KeybindItem.qml:1452", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "e.g., hl.dsp.focus({ workspace = \"3\" })", "context": "e.g., hl.dsp.focus({ workspace = \"3\" })", "reference": "Widgets/KeybindItem.qml:1452", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "e.g., notify-send 'Hello' && sleep 1", "context": "e.g., notify-send 'Hello' && sleep 1", "reference": "Widgets/KeybindItem.qml:1549", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "e.g., scratch, /^tmp_.*/, build", "context": "e.g., scratch, /^tmp_.*/, build", - "reference": "Modules/Settings/MuxTab.qml:102", - "comment": "" + "reference": "Modules/Settings/MuxTab.qml:101", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "ext", "context": "ext", "reference": "Modals/DankLauncherV2/LauncherContent.qml:725", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "featured", "context": "featured", "reference": "Modules/Settings/PluginBrowser.qml:153, Modules/Settings/DesktopWidgetBrowser.qml:392", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "khal", "context": "khal", - "reference": "Modules/Settings/TimeWeatherTab.qml:158", - "comment": "calendar backend option" + "reference": "Modules/Settings/TimeWeatherTab.qml:156", + "comment": "calendar backend option", + "tags": [ + "settings" + ] }, { "term": "last seen %1", "context": "last seen %1", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:416", - "comment": "Tailscale peer last seen time" + "comment": "Tailscale peer last seen time", + "tags": [ + "shell" + ] }, { "term": "leave empty for default", "context": "leave empty for default", "reference": "Widgets/KeybindItem.qml:1077", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "loginctl activate failed (exit %1)", "context": "loginctl activate failed (exit %1)", "reference": "Services/SessionsService.qml:173", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "loginctl not available - lock integration requires DMS socket connection", "context": "loginctl not available - lock integration requires DMS socket connection", - "reference": "Modules/Settings/LockScreenTab.qml:415", - "comment": "" + "reference": "Modules/Settings/LockScreenTab.qml:588", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "mango: config reloaded", "context": "mango: config reloaded", "reference": "Services/MangoService.qml:492", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "mango: failed to reload config", "context": "mango: failed to reload config", "reference": "Services/MangoService.qml:488", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "mangowc Discord Server", "context": "mangowc Discord Server", "reference": "Modules/Settings/AboutTab.qml:100", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "mangowc GitHub", "context": "mangowc GitHub", "reference": "Modules/Settings/AboutTab.qml:79", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { - "term": "matugen not available or disabled - cannot apply GTK colors", - "context": "matugen not available or disabled - cannot apply GTK colors", - "reference": "Common/Theme.qml:1959", - "comment": "" - }, - { - "term": "matugen not available or disabled - cannot apply Qt colors", - "context": "matugen not available or disabled - cannot apply Qt colors", - "reference": "Common/Theme.qml:1981", - "comment": "" + "term": "matugen not available or disabled - cannot apply %1 colors", + "context": "matugen not available or disabled - cannot apply %1 colors", + "reference": "Common/Theme.qml:1959, Common/Theme.qml:1981", + "comment": "", + "tags": [ + "shell" + ] }, { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen not found - install matugen package for dynamic theming", "reference": "Modules/Settings/ThemeColorsTab.qml:425", - "comment": "matugen error" + "comment": "matugen error", + "tags": [ + "settings" + ] }, { "term": "minutes", "context": "minutes", "reference": "Modules/Settings/NotificationsTab.qml:171, Modules/Notifications/Center/NotificationSettings.qml:107", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "ms", "context": "ms", "reference": "Widgets/KeybindItem.qml:1735", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "nav", "context": "nav", "reference": "Modals/DankLauncherV2/LauncherContent.qml:404", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "niri GitHub", "context": "niri GitHub", "reference": "Modules/Settings/AboutTab.qml:82", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "niri Matrix Chat", "context": "niri Matrix Chat", "reference": "Modules/Settings/AboutTab.qml:399", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "niri shortcuts config", "context": "niri shortcuts config", "reference": "Modals/Greeter/GreeterCompletePage.qml:414", - "comment": "greeter keybinds niri description" + "comment": "greeter keybinds niri description", + "tags": [ + "shell" + ] }, { "term": "niri/dms Discord", "context": "niri/dms Discord", "reference": "Modules/Settings/AboutTab.qml:86", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "niri: config reloaded", "context": "niri: config reloaded", "reference": "Services/NiriService.qml:613", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "niri: failed to load config", "context": "niri: failed to load config", "reference": "Services/NiriService.qml:125", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "now", "context": "now", "reference": "Services/NotificationService.qml:272", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "official", "context": "official", "reference": "Modules/Settings/PluginBrowser.qml:159, Modules/Settings/ThemeBrowser.qml:473", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "on Hyprland", "context": "on Hyprland", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:69", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "on MangoWC", "context": "on MangoWC", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:71", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "on Miracle WM", "context": "on Miracle WM", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:77", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "on Niri", "context": "on Niri", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:67", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "on Scroll", "context": "on Scroll", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:75", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "on Sway", "context": "on Sway", "reference": "Modules/DankDash/Overview/UserInfoCard.qml:73", - "comment": "" - }, - { - "term": "open", - "context": "open", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:411", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "or run ", "context": "or run ", "reference": "Modules/Settings/GreeterTab.qml:661", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "power-profiles-daemon not available", "context": "power-profiles-daemon not available", "reference": "Modals/PowerProfileModal.qml:109, Modules/ControlCenter/Details/BatteryDetail.qml:31, Modules/DankBar/Popouts/BatteryPopout.qml:28, Modules/DankBar/Widgets/Battery.qml:462", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "procs", "context": "procs", "reference": "Modules/ProcessList/ProcessListPopout.qml:302", - "comment": "short for processes" + "comment": "short for processes", + "tags": [ + "shell" + ] }, { "term": "r/niri Subreddit", "context": "r/niri Subreddit", "reference": "Modules/Settings/AboutTab.qml:105", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "relay: %1", "context": "relay: %1", "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:414", - "comment": "Tailscale relay server name" + "comment": "Tailscale relay server name", + "tags": [ + "shell" + ] }, { "term": "remote", "context": "remote", "reference": "Modals/SwitchUserModal.qml:29", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "reviewed", "context": "reviewed", "reference": "Modules/Settings/PluginBrowser.qml:141", - "comment": "plugin status" + "comment": "plugin status", + "tags": [ + "settings" + ] }, { "term": "seconds", "context": "seconds", "reference": "Modules/Settings/NotificationsTab.qml:170, Modules/Notifications/Center/NotificationSettings.qml:105", - "comment": "" + "comment": "", + "tags": [ + "settings", + "shell" + ] }, { "term": "session %1", "context": "session %1", "reference": "Modals/SwitchUserModal.qml:161", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "source", "context": "source", "reference": "Modules/Settings/PluginBrowser.qml:1649", - "comment": "source code link" + "comment": "source code link", + "tags": [ + "settings" + ] }, { "term": "the Qt 6 Multimedia QML module", "context": "the Qt 6 Multimedia QML module", "reference": "Modules/Settings/SoundsTab.qml:43", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "this app", "context": "this app", "reference": "Modules/Notifications/NotificationContextMenu.qml:130, Modules/Notifications/NotificationContextMenu.qml:130, Modules/Notifications/Center/NotificationCard.qml:1116, Modules/Notifications/Center/NotificationCard.qml:1116", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "unmaintained", "context": "unmaintained", "reference": "Modules/Settings/PluginBrowser.qml:137", - "comment": "plugin status" + "comment": "plugin status", + "tags": [ + "settings" + ] }, { "term": "until %1", "context": "until %1", "reference": "Modules/ControlCenter/Details/DoNotDisturbDetail.qml:128, Modules/Notifications/Center/DndDurationMenu.qml:152", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "up", "context": "up", "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'" + "comment": "uptime prefix, e.g. 'up 4h 2m'", + "tags": [ + "shell" + ] }, { "term": "update dms for NM integration.", "context": "update dms for NM integration.", "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:464", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "useradd failed (exit %1)", "context": "useradd failed (exit %1)", "reference": "Services/UsersService.qml:258", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "userdel failed (exit %1)", "context": "userdel failed (exit %1)", "reference": "Services/UsersService.qml:346", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "usermod failed (exit %1)", "context": "usermod failed (exit %1)", "reference": "Services/UsersService.qml:376, Services/UsersService.qml:406", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "v%1 by %2", "context": "v%1 by %2", "reference": "Modules/Settings/PluginListItem.qml:169", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• Install only from trusted sources", "context": "• Install only from trusted sources", "reference": "Modules/Settings/PluginBrowser.qml:1928", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• M - Month (1-12)", "context": "• M - Month (1-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:399", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:397", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• MM - Month (01-12)", "context": "• MM - Month (01-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:410", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:408", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• MMM - Month (Jan)", "context": "• MMM - Month (Jan)", - "reference": "Modules/Settings/TimeWeatherTab.qml:415", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:413", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• MMMM - Month (January)", "context": "• MMMM - Month (January)", - "reference": "Modules/Settings/TimeWeatherTab.qml:420", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:418", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• Plugins may contain bugs or security issues", "context": "• Plugins may contain bugs or security issues", "reference": "Modules/Settings/PluginBrowser.qml:1916", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• Review code before installation when possible", "context": "• Review code before installation when possible", "reference": "Modules/Settings/PluginBrowser.qml:1922", - "comment": "" + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• d - Day (1-31)", "context": "• d - Day (1-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:379", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:377", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• dd - Day (01-31)", "context": "• dd - Day (01-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:384", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:382", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• ddd - Day name (Mon)", "context": "• ddd - Day name (Mon)", - "reference": "Modules/Settings/TimeWeatherTab.qml:389", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:387", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• dddd - Day name (Monday)", "context": "• dddd - Day name (Monday)", - "reference": "Modules/Settings/TimeWeatherTab.qml:394", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:392", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• yy - Year (24)", "context": "• yy - Year (24)", - "reference": "Modules/Settings/TimeWeatherTab.qml:425", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:423", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "• yyyy - Year (2024)", "context": "• yyyy - Year (2024)", - "reference": "Modules/Settings/TimeWeatherTab.qml:430", - "comment": "" + "reference": "Modules/Settings/TimeWeatherTab.qml:428", + "comment": "", + "tags": [ + "settings" + ] }, { "term": "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text", "context": "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text", "reference": "Modules/Notifications/Center/NotificationKeyboardHints.qml:26", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "context": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:30", - "comment": "" + "comment": "", + "tags": [ + "shell" + ] }, { "term": "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "context": "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:30", - "comment": "Keyboard hints when enter-to-paste is enabled" + "comment": "Keyboard hints when enter-to-paste is enabled", + "tags": [ + "shell" + ] } ] diff --git a/quickshell/translations/extract_settings_index.py b/quickshell/translations/extract_settings_index.py index 152146bd0..280ee9aa8 100755 --- a/quickshell/translations/extract_settings_index.py +++ b/quickshell/translations/extract_settings_index.py @@ -435,7 +435,7 @@ def parse_tabs_from_sidebar(sidebar_file): with open(sidebar_file, "r", encoding="utf-8") as f: content = f.read() - pattern = r'"text"\s*:\s*I18n\.tr\("([^"]+)"(?:,\s*"[^"]+")?\).*?"icon"\s*:\s*"([^"]+)".*?"tabIndex"\s*:\s*(\d+)' + pattern = r'"text"\s*:\s*I18n\.tr\("([^"]+)"(?:,\s*"[^"]+"(?:,\s*true)?)?\).*?"icon"\s*:\s*"([^"]+)".*?"tabIndex"\s*:\s*(\d+)' tabs = [] for match in re.finditer(pattern, content, re.DOTALL): diff --git a/quickshell/translations/extract_translations.py b/quickshell/translations/extract_translations.py index 5e7854961..b1cc90612 100755 --- a/quickshell/translations/extract_translations.py +++ b/quickshell/translations/extract_translations.py @@ -18,11 +18,29 @@ def spans_overlap(a, b): def extract_qstr_strings(root_dir): - translations = defaultdict(lambda: {'contexts': set(), 'occurrences': []}) + translations = defaultdict(lambda: { + 'contexts': set(), + 'real_contexts': defaultdict(list), + 'occurrences': [], + 'plain_occurrences': [] + }) qstr_patterns = [ (re.compile(r'qsTr\(\s*"((?:\\.|[^"\\])*)"\s*\)'), '"'), (re.compile(r"qsTr\(\s*'((?:\\.|[^'\\])*)'\s*\)"), "'") ] + # I18n.tr(term, context, true) -- the literal `true` flag uploads the + # context as a real POEditor context, giving (term, context) its own + # translation slot. Must be on one line with a literal `true`. + i18n_real_context_patterns = [ + ( + re.compile(r'I18n\.tr\(\s*"((?:\\.|[^"\\])*)"\s*,\s*"((?:\\.|[^"\\])*)"\s*,\s*true\s*\)'), + '"' + ), + ( + re.compile(r"I18n\.tr\(\s*'((?:\\.|[^'\\])*)'\s*,\s*'((?:\\.|[^'\\])*)'\s*,\s*true\s*\)"), + "'" + ) + ] i18n_context_patterns = [ ( re.compile(r'I18n\.tr\(\s*"((?:\\.|[^"\\])*)"\s*,\s*"((?:\\.|[^"\\])*)"\s*\)'), @@ -46,75 +64,96 @@ def extract_qstr_strings(root_dir): for pattern, quote in qstr_patterns: for match in pattern.finditer(line): term = decode_string_literal(match.group(1), quote) - translations[term]['occurrences'].append({ - 'file': str(relative_path), - 'line': line_num - }) + occ = {'file': str(relative_path), 'line': line_num} + translations[term]['occurrences'].append(occ) + translations[term]['plain_occurrences'].append(occ) + + real_spans = [] + for pattern, quote in i18n_real_context_patterns: + for match in pattern.finditer(line): + term = decode_string_literal(match.group(1), quote) + context = decode_string_literal(match.group(2), quote) + occ = {'file': str(relative_path), 'line': line_num} + translations[term]['real_contexts'][context].append(occ) + translations[term]['occurrences'].append(occ) + real_spans.append(match.span()) context_spans = [] for pattern, quote in i18n_context_patterns: for match in pattern.finditer(line): + if any(spans_overlap(match.span(), span) for span in real_spans): + continue term = decode_string_literal(match.group(1), quote) context = decode_string_literal(match.group(2), quote) + occ = {'file': str(relative_path), 'line': line_num} translations[term]['contexts'].add(context) - translations[term]['occurrences'].append({ - 'file': str(relative_path), - 'line': line_num - }) + translations[term]['occurrences'].append(occ) + translations[term]['plain_occurrences'].append(occ) context_spans.append(match.span()) for pattern, quote in i18n_simple_patterns: for match in pattern.finditer(line): - if any(spans_overlap(match.span(), span) for span in context_spans): + if any(spans_overlap(match.span(), span) for span in real_spans + context_spans): continue term = decode_string_literal(match.group(1), quote) - translations[term]['occurrences'].append({ - 'file': str(relative_path), - 'line': line_num - }) + occ = {'file': str(relative_path), 'line': line_num} + translations[term]['occurrences'].append(occ) + translations[term]['plain_occurrences'].append(occ) return translations +def area_tags(occurrences): + tags = set() + for occ in occurrences: + path = occ['file'] + if path.startswith('dms-plugins/'): + tags.add('plugin-' + path.split('/')[1].lower()) + elif path.startswith(('Modules/Settings/', 'Modals/Settings/')): + tags.add('settings') + else: + tags.add('shell') + return sorted(tags) + def create_poeditor_json(translations): poeditor_data = [] for term, data in sorted(translations.items()): - references = [] + if data['plain_occurrences']: + references = [f"{occ['file']}:{occ['line']}" for occ in data['plain_occurrences']] + contexts = sorted(data['contexts']) if data['contexts'] else [] + comment = " | ".join(contexts) if contexts else "" - for occ in data['occurrences']: - ref = f"{occ['file']}:{occ['line']}" - references.append(ref) + poeditor_data.append({ + "term": term, + "context": term, + "reference": ", ".join(references), + "comment": comment, + "tags": area_tags(data['plain_occurrences']) + }) - contexts = sorted(data['contexts']) if data['contexts'] else [] - comment = " | ".join(contexts) if contexts else "" - - entry = { - "term": term, - "context": term, - "reference": ", ".join(references), - "comment": comment - } - poeditor_data.append(entry) + for context in sorted(data['real_contexts']): + references = [f"{occ['file']}:{occ['line']}" for occ in data['real_contexts'][context]] + poeditor_data.append({ + "term": term, + "context": context, + "reference": ", ".join(references), + "comment": "", + "tags": area_tags(data['real_contexts'][context]) + }) return poeditor_data def create_template_json(translations): - template_data = [] - - for term, data in sorted(translations.items()): - contexts = sorted(data['contexts']) if data['contexts'] else [] - context_str = " | ".join(contexts) if contexts else "" - - entry = { - "term": term, + return [ + { + "term": entry["term"], "translation": "", - "context": context_str, + "context": entry["context"], "reference": "", - "comment": "" + "comment": entry["comment"] } - template_data.append(entry) - - return template_data + for entry in create_poeditor_json(translations) + ] def main(): script_dir = Path(__file__).parent @@ -142,6 +181,8 @@ def main(): print(f" - Unique strings: {len(translations)}") print(f" - Total occurrences: {sum(len(data['occurrences']) for data in translations.values())}") print(f" - Strings with contexts: {sum(1 for data in translations.values() if data['contexts'])}") + print(f" - Real-context entries: {sum(len(data['real_contexts']) for data in translations.values())}") + print(f" - POEditor entries: {len(poeditor_data)}") print(f" - Source file: {en_json_path}") print(f" - Template file: {template_json_path}") diff --git a/quickshell/translations/poexports/ar.json b/quickshell/translations/poexports/ar.json index caccb907d..557f6c238 100644 --- a/quickshell/translations/poexports/ar.json +++ b/quickshell/translations/poexports/ar.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "سرعة الحركة لـ %1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 جلسة" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "تم نسخ %1" }, - "%1 custom animation duration": { - "%1 custom animation duration": "مدة الحركة المخصصة لـ %1" - }, "%1 disconnected": { "%1 disconnected": "%1 غير متصل" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 شاشات" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 موجود ولكنه غير مدرج. لن يتم تطبيق قواعد النافذة." - }, "%1 filtered": { "%1 filtered": "%1 تمت تصفيته" }, @@ -119,9 +116,6 @@ "'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.": "'بديل' يسمح للمفتاح بفتح القفل بمفرده. 'عامل ثانٍ' يتطلب كلمة مرور أو بصمة إصبع أولاً، ثم المفتاح." }, - "(Default)": { - "(Default)": "(افتراضي)" - }, "(Unnamed)": { "(Unnamed)": "(غير مسمى)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "صيغة ٢٤ ساعة" }, - "24-hour clock": { - "24-hour clock": "ساعة 24 ساعة" - }, "25 seconds": { "25 seconds": "25 ثانية" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "بعد الظهر" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "الكل" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "المصادقة مطلوبة" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "تم تطبيق تغييرات المصادقة." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "يتم تطبيق تغييرات المصادقة تلقائياً." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "يتم تطبيق تغييرات المصادقة تلقائياً. قد لا يؤدي تسجيل الدخول ببصمة الإصبع فقط إلى إلغاء قفل سلسلة المفاتيح (Keyring)." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "تتطلب تغييرات المصادقة صلاحيات sudo. جاري فتح المحطة الطرفية حتى تتمكن من استخدام كلمة المرور أو بصمة الإصبع." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "فشل التحقق - يرجى المحاولة مرة أخرى" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "فشل التحقق، أعد المحاولة" - }, "Authorize": { "Authorize": "منح الإذن" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "موفر الطاقة التلقائي" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "مطابقة تلقائية لتباعد الشريط؛ الإيقاف يترك فجوات حسب إعدادات Hyprland الخاصة بك" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "مطابقة تلقائية لتباعد الشريط؛ الإيقاف يترك فجوات حسب إعدادات MangoWC الخاصة بك" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "مطابقة تلقائية لتباعد الشريط؛ الإيقاف يترك فجوات حسب إعدادات niri الخاصة بك" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "الوضع التلقائي مفعل. تم تعطيل اختيار الملف الشخصي اليدوي." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "تم الحفظ تلقائيًا" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "المسح التلقائي بعد" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "متاح في أوضاع العرض التفصيلي والتوقعات" }, - "Available.": { - "Available.": "متاح." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "بانتظار التحقق ببصمة الإصبع" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "النظام الخلفي" }, - "Backends: %1": { - "Backends: %1": "الخلفيات: %1" - }, "Background": { "Background": "الخلفية" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "الشريط %1" }, - "Bar Configurations": { - "Bar Configurations": "إعدادات الأشرطة" - }, "Bar Inset Padding": { "Bar Inset Padding": "حاشية الشريط" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "ظل الشريط، والحدود، والزوايا" }, - "Bar spacing and size": { - "Bar spacing and size": "تباعد الأشرطة وحجمها" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "اللون الأساسي للظلال (يتم تطبيق الشفافية تلقائيًا)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "البطارية %1" }, - "Battery Alerts": { - "Battery Alerts": "تنبيهات البطارية" - }, "Battery Charge Limit": { "Battery Charge Limit": "حد شحن البطارية" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "طاقة البطارية" }, - "Battery Protection": { - "Battery Protection": "حماية البطارية" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "حماية البطارية والشحن" - }, - "Battery Status": { - "Battery Status": "حالة البطارية" - }, "Battery and power management": { "Battery and power management": "إدارة البطارية والطاقة" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "البطارية عند %1% - فكر في الشحن قريباً" }, - "Battery level and power management": { - "Battery level and power management": "مستوى البطارية وادارة الطاقة" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "نسبة البطارية لتفعيل تنبيه حرج." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "ربط شاشة القفل بإشارات dbus القادمة من loginctl. أوقف تشغيله إذا كنت تستخدم شاشة قفل خارجية." }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "قم بربط إجراء IPC الخاص بـ spotlight في تكوين مدير النوافذ الخاص بك." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "قم بربط إجراء IPC الخاص بـ spotlight-bar في تكوين مدير النوافذ الخاص بك." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "تتضمن الروابط المضافة" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "تخبيش" }, - "Blur Border Color": { - "Blur Border Color": "لون حدود التخبيش" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "شفافية حدود التخبيش" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "تخبيش طبقة الخلفية" }, "Blur on Overview": { "Blur on Overview": "تغبيش في النظرة العامة" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "تخبيش الخلفية خلف الأشرطة، والنوافذ المنبثقة، والنوافذ المشروطة، والإشعارات. يتطلب دعم وضبط مدير النوافذ." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "تخبيش الخلفية وراء الأشرطة، والنوافذ المنبثقة، والنوافذ المشروطة (Modals)، والإشعارات. يتطلب دعمًا من مُدير النوافذ. اضبط درجة الشفافية بناءً على ذلك." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "عرض الحدود" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "لون الحدود حول الأسطح المُخبَّشة" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "لون حدود النوافذ المنبثقة، والنوافذ الحوارية، وأسطح الصدفة الأخرى" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "لون الزر" }, - "By %1": { - "By %1": "بواسطة %1" - }, "CPU": { "CPU": "المعالج" }, @@ -1436,9 +1379,6 @@ "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.": "تحقق من حالة المزامنة عند الطلب. المزامنة (الكاملة) مخصصة للمسؤول الرئيسي: فهي تنسخ سماتك إلى شاشة تسجيل الدخول وتعد تكوين شاشة الترحيب للنظام. في الأنظمة متعددة المستخدمين، أضف حسابات أخرى في الإعدادات ← المستخدمون، ثم اجعل كل منهم يقوم بتشغيل dms greeter sync --profile بعد تسجيل الخروج والدخول مرة أخرى - وليس مزامنة كاملة. يتم تطبيق تغييرات المصادقة تلقائيًا." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "تحقق من أمرك المخصص في الإعدادات ← قفص الاتهام (Dock) ← المهملات." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "اختر لون الوضع الداكن" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "اختر لون شعار مشغل التطبيقات في مشغل التطبيقات" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "اختر لون ايقونة مُشغِّل التطبيقات" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "اختر كيفية تحديد هذا الشريط لاتجاه الظل" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "اختر كيفية تلقي إشعارات تنبيهات البطارية." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "اختر كيفية تلقي التنبيهات حول تحذيرات البطارية الحرجة." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "اختر نص عنصر واجهة المستخدم بلون محايد أو بلون التمييز" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "اختر لون خلفية الأدوات" - }, - "Choose the border accent color": { - "Choose the border accent color": "اختر لون ممييز للحد" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "اختر الايقونة المعروضة على زر مُشغِّل التطبيقات في شريط دانك" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "انقر على 'إعداد' لإنشاء %1 وإضافة التضمين إلى ملف تكوين مدير النوافذ الخاص بك." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "انقر على 'إعداد' لإنشاء إعدادات العرض وإضافة التضمين إلى تكوين مدير النوافذ الخاص بك." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "اضغط استيراد لإضافة ملف .ovpn أو .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "اللون المعروض للمناطق التي لا تغطيها خلفية الشاشة" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "اللون المعروض للمناطق غير المغطاة بخلفية الشاشة (مثل أوضاع الملائمة أو الحشو)" - }, - "Color temperature for day time": { - "Color temperature for day time": "درجة حرارة اللون لوقت النهار" - }, "Color temperature for night mode": { "Color temperature for night mode": "درجة حرارة اللون للوضع الليلي" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "سيتم حفظ التكوين عند إعادة اتصال هذه الشاشة" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "ضبط" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "جاري الاتصال..." }, - "Connecting…": { - "Connecting…": "جاري الاتصال…" - }, "Connection failed": { "Connection failed": "فشل الاتصال" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "التحكم في عتامة أسطح الغلاف والنوافذ المنبثقة والمشروطة" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "التحكم في عتامة خلفية الشريط" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "التحكم في عتامة الحدود" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "التحكم في عتامة طبقة الظل" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "التحكم في عتامة مخطط الأداة" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "التحكم في عتامة خلفيات الأداة" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "تتحكم في حدود الأشكال حول البطاقات، والأقراص، وبطاقات الإشعارات الأمامية المُخبَّشة" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "يتحكم في الخطوط الخارجية حول البطاقات الأمامية، والأقراص، وبطاقات الإشعارات" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "يتحكم في نصف قطر التخبيش الأساسي وإزاحة الظلال" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "التحكم في عتامة الظل" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "يتحكم في الحافة الخارجية للنوافذ ذات التخبيش البروتوكولي" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "يتحكم في مخطط النوافذ المنبثقة، والنوافذ الحوارية، وأسطح الصدفة الأخرى" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "يتحكم في شفافية الظل" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "خيارات مريحة لشاشة تسجيل الدخول. قم بالمزامنة للتطبيق." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "الزوايا والخلفية" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "تعذر فتح محطة طرفية لتحديث تسجيل الدخول التلقائي." - }, "Count Only": { "Count Only": "العد فقط" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "إنشاء جلسة %1 جديدة (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "إنشاء جلسة %1 جديدة (n)" - }, "Create rule for:": { "Create rule for:": "إنشاء قاعدة لـ:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "مخصص..." }, - "Custom: ": { - "Custom: ": "مخصص" - }, "Customizable empty space": { "Customizable empty space": "مساحة فارغة قابلة للتخصيص" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "اختصارات DMS" }, - "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 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 إلى صلاحيات المسؤول. ستغلق المحطة الطرفية تلقائياً عند الانتهاء." - }, "DMS out of date": { "DMS out of date": "نسخة DMS غير محدثة" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "خادم DMS قديم (إصدار API %1، المتوقع %2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "حذف المستخدم" }, - "Delete user?": { - "Delete user?": "هل تريد حذف المستخدم؟" - }, "Demi Bold": { "Demi Bold": "نصف غامق" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "عرض إجراءات قائمة الطاقة كشبكة بدلًا من قائمة" }, - "Display seconds in the clock": { - "Display seconds in the clock": "عرض الثواني في الساعة" - }, "Display setup failed": { "Display setup failed": "فشل إعداد العرض" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "الشاشات" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "عدد الشاشات عند تفعيل التجاوز" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "عرض تخطيط لوحة المفاتيح النشط وتبديله" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "شفافية شريط التطبيقات" }, - "Dock Visibility": { - "Dock Visibility": "رؤية شريط التطبيقات" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "هامش شريط التطبيقات والعتامة والحدود" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "هامش لشريط التطبيقات، الشفافية، والحدود" - }, "Dock window": { "Dock window": "نافذة ملتحمة" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "إفراغ المهملات (%1)" }, - "Empty Trash?": { - "Empty Trash?": "هل تريد إفراغ المهملات؟" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "تمكين عمق لون 10 بت للحصول على نطاق ألوان أوسع ودعم HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "مفعّل" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "مفعل، ولكن لم يمكن التأكد من توفر البصمة." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "مفعل، ولكن لم يتم اكتشاف قارئ بصمات." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "تم التمكين، ولكن لم يتم تسجيل أي بصمات بعد. يتم تطبيق تغييرات المصادقة تلقائياً بمجرد تسجيل بصمات الأصابع." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "مفعل، ولكن لا توجد بصمات مسجلة بعد. قم بتسجيل البصمات وقم بتشغيل المزامنة (Sync)." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "تم التمكين، ولكن لم يتم العثور على مفتاح أمان مسجل بعد. يتم تطبيق تغييرات المصادقة تلقائياً بمجرد تسجيل مفتاحك أو تحديث تكوين U2F الخاص بك." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "مفعل، ولكن لم يتم العثور على مفتاح أمان مسجل بعد. قم بتسجيل مفتاح وقم بتشغيل المزامنة (Sync)." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "مفعل، ولكن لم يمكن التأكد من توفر مفتاح الأمان." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "مفعل. نظام PAM يوفر بالفعل المصادقة بالبصمة." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "مفعل. نظام PAM يوفر بالفعل المصادقة بمفتاح الأمان." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "مفعل. نظام PAM يوفر المصادقة بالبصمة، ولكن لا توجد بصمات مسجلة بعد." - }, "Enabling WiFi...": { "Enabling WiFi...": "جاري تمكين الWiFi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "مطابق تماماً" }, - "Excluded Media Players": { - "Excluded Media Players": "مشغلات الوسائط المستبعدة" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "إزاحة النطاق الحصري" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "فشل إضافة الطابعة إلى الفئة" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "فشل تطبيق ألوان GTK" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "فشل تطبيق ألوان Qt" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "فشل تطبيق حد الشحن على النظام" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "فشل في تمكين الوضع الليلي" }, - "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": "فشل جلب رمز QR للشبكة: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "فشل في النقل إلى المهملات" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "فشل تحليل plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "فشل تحليل session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "فشل تحليل settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "تعذر إيقاف الطابعة مؤقتًا" @@ -3368,8 +3188,8 @@ "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.": "مدير الملفات المستخدم لفتح المهملات. اختر \"مخصص\" لإدخال أمرك الخاص." }, - "File received from": { - "File received from": "تم استلام ملف من" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "يتطلب البحث عن الملفات dsearch\nقم بالتثبيت من github.com/AvengeMedia/danksearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "لتحرير ملفات النصوص العادية" }, - "For reading PDF files": { - "For reading PDF files": "لقراءة ملفات PDF" - }, "Force HDR": { "Force HDR": "فرض HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "الفجوات" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "إنشاء تجاوز" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "منح" }, - "Grant admin?": { - "Grant admin?": "هل تريد منح صلاحيات المسؤول؟" - }, "Grant administrator privileges": { "Grant administrator privileges": "منح امتيازات المسؤول" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "شاشة الترحيب (Greeter)" }, - "Greeter Appearance": { - "Greeter Appearance": "مظهر شاشة الترحيب" - }, - "Greeter Behavior": { - "Greeter Behavior": "سلوك شاشة الترحيب" - }, - "Greeter Status": { - "Greeter Status": "حالة شاشة الترحيب" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "تم تفعيل شاشة الترحيب. greetd مفعل الآن." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "مجموعة الترحيب:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "شاشة الترحيب فقط — لا يؤثر على الساعة الرئيسية" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "شاشة الترحيب فقط — تنسيق التاريخ على شاشة تسجيل الدخول" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "خادم ديسكورد الخاص بـ Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "تجاوزات تخطيط Hyprland" - }, "Hyprland Options": { "Hyprland Options": "خيارات Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "كلمة المرور غير صحيحة" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "كلمة مرور غير صحيحة - المحاولة %1 من %2 (قد يتبعها قفل للحساب)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "كلمة مرور غير صحيحة - المحاولات التالية قد تؤدي إلى قفل الحساب" - }, "Incorrect password - try again": { "Incorrect password - try again": "كلمة مرور غير صحيحة - حاول مجدداً" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "المهام" }, - "Jobs: ": { - "Jobs: ": "المهام: " - }, "Join video call": { "Join video call": "انضم إلى مكالمة الفيديو" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "تجاوزات التخطيط" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "يتم مزامنة التخطيط ومواضع الوحدات في شاشة الترحيب من غلافك (على سبيل المثال، إعدادات الشريط). قم بتشغيل 'مزامنة' للتطبيق." - }, "Left": { "Left": "اليسار" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "الإعدادات الإقليمية (Locale)" }, - "Locale Settings": { - "Locale Settings": "إعدادات اللغة والمكان" - }, "Location": { "Location": "الموقع" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "شاشة القفل" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "مظهر شاشة القفل" - }, - "Lock Screen Display": { - "Lock Screen Display": "عرض شاشة القفل" - }, "Lock Screen Format": { "Lock Screen Format": "تنسيق شاشة القفل" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "سلوك شاشة القفل" - }, - "Lock Screen layout": { - "Lock Screen layout": "تخطيط شاشة القفل" - }, "Lock at startup": { "Lock at startup": "قفل عند بدء التشغيل" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "فترة سماح تلاشي القفل" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "يتم تطبيق تغييرات مصادقة شاشة القفل تلقائياً وقد تفتح محطة طرفية عند الحاجة إلى مصادقة sudo." - }, "Lock screen font": { "Lock screen font": "خط شاشة القفل" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "تسجيل الدخول" }, - "Login Authentication": { - "Login Authentication": "مصادقة تسجيل الدخول" - }, "Long": { "Long": "طويل" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "مدار بواسطة الإطار في الوضع المتصل" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "الإدارة" }, - "Manages calendar events": { - "Manages calendar events": "ادارة احداث التقويم" - }, "Manages files and directories": { "Manages files and directories": "يدير الملفات والمجلدات" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "خدمة Mango غير متاحة" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "تجاوزات تخطيط MangoWC" - }, "Manual": { "Manual": "يدوي" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "تم الوصول إلى الحد الأقصى للإدخالات المثبتة" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "الحد الأقصى للحجم لكل إدخال في الحافظة" - }, "Media": { "Media": "الوسائط" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "مشغل الوسائط" }, - "Media Player Settings": { - "Media Player Settings": "إعدادات مشغل الوسائط" - }, "Media Players (": { "Media Players (": "مشغلات الوسائط (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "الوضع" }, - "Mode:": { - "Mode:": "الوضع:" - }, "Model": { "Model": "الطراز" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "حجم مؤشر الفأرة بالبكسل" }, - "Move": { - "Move": "نقل" - }, "Move Widget": { "Move Widget": "تحريك الأداة" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "الوسائط المتعددة" }, - "Multiplexer": { - "Multiplexer": "المضاعف (Multiplexer)" - }, "Multiplexer Type": { "Multiplexer Type": "نوع المضاعف" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "مراقب سرعة الشبكة" }, - "Network Status": { - "Network Status": "حالة الشبكة" - }, "Network Type": { "Network Type": "نوع الشبكة" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "تكامل Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "تجاوزات تخطيط Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "إجراءات Niri (التركيز، التحريك، وغيرها.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "لم يتم العثور على ملحقات" }, - "No plugins found.": { - "No plugins found.": "لم يتم تثبيت أي ملحقات." - }, "No printer found": { "No printer found": "لا توجد طابعة" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "نوافذ الإشعارات المنبثقة" }, - "Notification Rules": { - "Notification Rules": "قواعد الإشعارات" - }, "Notification Settings": { "Notification Settings": "إعدادات الإشعارات " }, - "Notification Timeouts": { - "Notification Timeouts": "مهلة عرض الإشعارات" - }, "Notification Type": { "Notification Type": "نوع الإشعار" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "تعديل حرارة الألوان بناءً على قواعد الوقت أو الموقع فقط." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "يؤثر فقط على PAM المدار بواسطة DMS. إذا كان greetd يتضمن بالفعل pam_fprintd، فستظل البصمة مفعلة." - }, "Only on Battery": { "Only on Battery": "فقط عند استخدام البطارية" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "الشفافية" }, - "Opacity of the bar background": { - "Opacity of the bar background": "شفافية خلفية الشريط" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "شفافية خلفيات الأدوات" - }, "Opaque": { "Opaque": "غير شفاف" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "فتح متصفح الملفات" }, - "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 image files": { - "Opens image files": "يفتح ملفات الصور" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "يفتح المشغل المتصل في وضع الإطار المتصل." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "نظام PAM يوفر بالفعل المصادقة بمفتاح الأمان. فعل هذا لإظهاره عند تسجيل الدخول." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "نظام PAM يوفر المصادقة بالبصمة، ولكن تعذر التأكد من توفرها." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "نظام PAM يوفر المصادقة بالبصمة، ولكن لا توجد بصمات مسجلة بعد." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "نظام PAM يوفر المصادقة بالبصمة، ولكن لم يتم اكتشاف قارئ." - }, "PDF Reader": { "PDF Reader": "قارئ PDF" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "حشو الساعات" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "تعبئة الساعات (02:00 مقابل 2:00)" - }, "Padding": { "Padding": "الهوامش" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "مقترن" }, - "Pairing": { - "Pairing": "الاقتران" - }, "Pairing failed": { "Pairing failed": "فشل الاقتران" }, - "Pairing request from": { - "Pairing request from": "طلب اقتران من" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "تم إرسال طلب الاقتران" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "اتصال الهاتف غير متاح" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "اتصال الهاتف غير متاح" - }, "Phone number": { "Phone number": "رقم الهاتف" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "اختبار الاتصال (Ping)" }, - "Ping sent to": { - "Ping sent to": "تم إرسال اختبار الاتصال إلى" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "مثبت" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "تشغيل صوت عند تغيير مستوى الصوت" }, - "Play sounds for system events": { - "Play sounds for system events": "تشغيل أصوات لأحداث النظام" - }, "Playback": { "Playback": "أجهزة التشغيل" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "يشغل الملفات الصوتية" }, - "Plays video files": { - "Plays video files": "يشغل ملفات الفيديو" - }, "Please wait...": { "Please wait...": "يرجى الانتظار..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "سلوك وموضع النافذة المنبثقة" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "المنفذ" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "ملفات تعريف الطاقة والحفظ" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "التبديل التلقائي لملفات تعريف الطاقة" - }, "Power Saver": { "Power Saver": "موفر الطاقة" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "إدارة وضع الطاقة متاحة" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "ملف تعريف الطاقة المستخدم عند توصيل طاقة التيار المتردد." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "ملف تعريف الطاقة المستخدم عند التشغيل باستخدام طاقة البطارية." - }, "Power source": { "Power source": "مصدر الطاقة" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "أعراض محددة مسبقًا (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "اضغط على 'n' أو انقر على 'جلسة جديدة' لإنشاء واحدة" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "اضغط Ctrl+N أو انقر على 'جلسة جديدة' لإنشاء واحدة" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "حاوية أساسية" }, - "Primary Theme Color": { - "Primary Theme Color": "لون السمة الأساسي" - }, "Print Server Management": { "Print Server Management": "إدارة خادم الطباعة" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "الطابعات" }, - "Printers: ": { - "Printers: ": "الطابعات: " - }, "Prioritize performance": { "Prioritize performance": "تحديد الأداء كأولوية" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "العمليات" }, - "Processes:": { - "Processes:": "العمليات:" - }, "Processing": { "Processing": "جاري المعالجة" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "الملف الشخصي عند استخدام البطارية" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "البروتوكول" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "إزالة المسؤول" }, - "Remove admin?": { - "Remove admin?": "هل تريد إزالة المسؤول؟" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "إزالة استدارة الزوايا من الشريط" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "إعادة تعيين الحجم" }, - "Reset to Default?": { - "Reset to Default?": "إعادة التعيين إلى الافتراضي؟" - }, "Reset to default": { "Reset to default": "إعادة التعيين إلى الافتراضي" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "رنين" }, - "Ringing": { - "Ringing": "يرن" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "تأثيرات التموج" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "قاعدة" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "اسم القاعدة" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "القواعد (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "جارٍ الحفظ..." }, - "Saving…": { - "Saving…": "جاري الحفظ..." - }, "Scale": { "Scale": "مقياس" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "فحص" }, - "Scanning": { - "Scanning": "جاري المسح" - }, "Scanning...": { "Scanning...": "جاري الفحص..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "ابحث هنا..." }, - "Searching": { - "Searching": "جاري البحث" - }, "Searching...": { "Searching...": "جاري البحث..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "الأمان والخصوصية" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "وضع مفتاح الأمان" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "اختر صورة خلفية شاشة القفل" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "اختر الشاشة لتحديد الخلفية" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "اختر خطاً أحادي المسافة لقائمة العمليات والشاشات التقنية" }, "Select network": { "Select network": "تحديد الشبكة" }, - "Select system sound theme": { - "Select system sound theme": "اختر سمة أصوات النظام" - }, "Select the font family for UI text": { "Select the font family for UI text": "اختر عائلة الخط لنصوص واجهة المستخدم" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "إرسال الحافظة" }, - "Send File": { - "Send File": "إرسال ملف" - }, "Send SMS": { "Send SMS": "إرسال رسالة قصيرة" }, - "Sending": { - "Sending": "جارٍ الإرسال" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "منفصل" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "ضبط حجم خط نص جسم الإشعار (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "ضبط حجم خط نص ملخص الإشعار" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "حدد النسبة المئوية التي تعتبر عندها البطارية منخفضة." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "مشاركة إعدادات التحكم في جاما" }, - "Share Text": { - "Share Text": "مشاركة النص" - }, "Shared": { "Shared": "تمت المشاركة" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "إظهار أثناء نظرة عامة على Niri" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "إظهار الأسطح الأمامية على الألواح المُخبَّشة لتباين أقوى" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "إظهار الأسطح الأمامية على اللوحات لتباين أقوى" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "إظهار مسار التثبيت" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "إظهار نوافذ الإشعارات المنبثقة فقط على الشاشة المركّز عليها حاليًا" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "إظهار الإشعارات فقط على الشاشة المركّز عليها حاليًا" - }, "Show on Last Display": { "Show on Last Display": "العرض على آخر شاشة" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "إظهار في النظرة العامة فقط" }, - "Show on all connected displays": { - "Show on all connected displays": "إظهار على جميع شاشات العرض المتصلة" - }, "Show on screens:": { "Show on screens:": "العرض على الشاشات:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "إظهار المبيّن عند تغيير السطوع" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "إظهار المبيّن عند تغيير حالة Caps Lock" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "إظهار العرض على الشاشة عند تدوير أجهزة إخراج الصوت" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "إظهار المبيّن عند تغيير حالة مانع الخمول" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "إظهار العرض على الشاشة عند تغير حالة مشغل الوسائط" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "إظهار مبين الشاشة عند تغيير مستوى صوت مشغل الوسائط" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "إظهار المبيّن عند كتم أو تشغيل الميكروفون" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "إظهار المبيّن عند تغيير وضع الطاقة" - }, - "Show on-screen display when volume changes": { - "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": "إظهار الشريط فقط عند عدم وجود نوافذ مفتوحة" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "إظهار معلومات الطقس في الشريط العلوي ومركز التحكم" }, - "Show week number in the calendar": { - "Show week number in the calendar": "اظهار رقم الاسبوع في التقويم" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "إظهار أرقام أسطح المكتب في مبدل أسطح المكتب بالشريط العلوي" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "قوة الإشارة" }, - "Signal:": { - "Signal:": "الإشارة:" - }, "Silence for a while": { "Silence for a while": "إسكات لفترة" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "ابدأ" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "ابدأ KDE Connect أو Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "ابدأ KDE Connect أو Valent لاستخدام هذه الملحق" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "خطوط" }, - "Subtle Overlay": { - "Subtle Overlay": "تراكب خفي" - }, "Summary": { "Summary": "ملخص" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "فشل الاحتياط للطرفية. قم بتثبيت أحد محاكيات الطرفية المدعومة أو قم بتشغيل 'dms greeter sync' يدوياً." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "تم فتح وضع بديل المحطة الطرفية. أكمل إعداد المصادقة هناك؛ سيتم إغلاقه تلقائياً عند الانتهاء." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "تم فتح الطرفية الاحتياطية. أكمل المزامنة هناك؛ ستغلق تلقائياً عند الانتهاء." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "خلفية تعدد إرسال المحطة الطرفية المراد استخدامها" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "تم فتح المحطة الطرفية. أكمل إعداد المصادقة هناك؛ سيتم إغلاقه تلقائياً عند الانتهاء." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "تم فتح الطرفية. أكمل مصادقة المزامنة هناك؛ ستغلق تلقائياً عند الانتهاء." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "الطرفيات - استخدام المظهر الداكن دائمًا" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "عرض النص" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "أداة 'boregard' غير مثبتة أو ليست في مسار النظام (PATH). قم بتثبيتها من https://danklinux.com، ثم أعد تفعيل هذه الإضافة." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "أداة 'dgop' مطلوبة لمراقبة النظام. يرجى تثبيت dgop لاستخدام هذه الميزة." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "لا يزال هذا التثبيت يستخدم hyprland.conf. قم بتشغيل إعداد dms للترحيل قبل تعديل إعدادات المؤشر." - }, - "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 للترحيل قبل تعديل إعدادات العرض." - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": "هذا التثبيت لا يزال يستخدم hyprland.conf. قم بتشغيل إعداد dms للترحيل قبل تعديل إعدادات التخطيط." - }, - "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 للترحيل قبل تعديل الاختصارات في الإعدادات." - }, - "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 للترحيل قبل تعديل قواعد النوافذ في الإعدادات." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "قد يستغرق هذا بضع ثوانٍ" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "بلاطة" }, - "Tile H": { - "Tile H": "بلاطة أفقية" - }, "Tile Horizontally": { "Tile Horizontally": "تجانب أفقياً" }, - "Tile V": { - "Tile V": "بلاطة رأسية" - }, "Tile Vertically": { "Tile Vertically": "تجانب رأسياً" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "شريط تقدم المهلة" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "مهلة الإشعارات ذات الأولوية الحرجة" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "مهلة الإشعارات ذات الأولوية المنخفضة" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "مهلة الإشعارات ذات الأولوية العادية" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "تشبع التلوين" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "الشفافية" }, - "Transparency of the border": { - "Transparency of the border": "شفافية الحدود" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "شفافية طبقة الظل" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "شفافية مخطط الأداة" - }, "Trash": { "Trash": "المهملات" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "ازالة من الشريط" }, - "Unsaved Changes": { - "Unsaved Changes": "تغييرات غير محفوظة" - }, "Unsaved changes": { "Unsaved changes": "تغييرات غير محفوظة" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "وقت التشغيل" }, - "Uptime:": { - "Uptime:": "وقت التشغيل:" - }, "Urgent": { "Urgent": "عاجل" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "استخدم الألوان المستخرجة من خلفية الألبوم بدلاً من ألوان سمة النظام" }, - "Use custom border size": { - "Use custom border size": "استخدام حجم حدود مخصص" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "استخدام عرض مخصص للحدود/حلقة التركيز" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "استخدام سمة الصوت من إعدادات النظام" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "استخدام نفس الموقع والحجم على جميع الشاشات" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "عند القفل" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "أبيض" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "قواعد النافذة" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "قواعد النافذة تتضمن المفقود" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "قواعد النافذة غير مهيأة" - }, "Wipe": { "Wipe": "مسح" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "سطح المكتب" }, - "Workspace Appearance": { - "Workspace Appearance": "مظهر سطح المكتب" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "أرقام اسطح المكتب" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "هوامش سطح المكتب" }, - "Workspace Settings": { - "Workspace Settings": "إعدادات سطح المكتب" - }, "Workspace Switcher": { "Workspace Switcher": "مبدل سطح المكتب" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "أمس" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "لديك تغييرات غير محفوظة. هل تريد الحفظ قبل إغلاق علامة التبويب هذه؟" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "لديك تغييرات غير محفوظة. هل تريد الحفظ قبل المتابعة؟" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "لديك تغييرات غير محفوظة. هل تريد الحفظ قبل إنشاء ملف جديد؟" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "لديك تغييرات غير محفوظة. هل تريد الحفظ قبل فتح ملف؟" - }, "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.": { "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." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "نظامك محدث!" }, - "actions": { - "actions": "إجراءات" - }, "admin": { "admin": "مسؤول" }, "attached": { "attached": "متصل" }, - "boregard is required": { - "boregard is required": "مطلوب boregard" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "جهاز" }, - "devices connected": { - "devices connected": "أجهزة متصلة" - }, "dgop not available": { "dgop not available": "dgop غير متاح" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "نقاش" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms هو غلاف سطح مكتب حديث قابل للتخصيص بدرجة عالية مع تصميم مستوحى من Material 3.

تم بناؤه باستخدام Quickshell، وهو إطار عمل QT6 لبناء أغلفة سطح المكتب، ولغة Go، وهي لغة برمجة مجمعة ومكتوبة بشكل ثابت." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "مستودع mangowc على GitHub" }, - "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 غير متوفر أو معطل - لا يمكن تطبيق ألوان Qt" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "لم يتم العثور على matugen - قم بتثبيت حزمة matugen للسمات الديناميكية" @@ -9326,6 +8855,9 @@ "nav": { "nav": "تنقل" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "مستودع niri على GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "على Sway" }, - "open": { - "open": "فتح" - }, "or run ": { "or run ": "أو قم بتشغيل " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon غير متاح" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "عمليات" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "الإصدار %1 بواسطة %2" }, - "verified": { - "verified": "تم التحقق" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• التثبيت من المصادر الموثوقة فقط" }, diff --git a/quickshell/translations/poexports/de.json b/quickshell/translations/poexports/de.json index d2632942c..81900d904 100644 --- a/quickshell/translations/poexports/de.json +++ b/quickshell/translations/poexports/de.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 Animationsgeschwindigkeit" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 Sitzungen" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 kopiert" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 benutzerdefinierte Animationsdauer" - }, "%1 disconnected": { "%1 disconnected": "%1 getrennt" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 Anzeigen" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 existiert, ist aber nicht enthalten. Fensterregeln werden nicht angewendet." - }, "%1 filtered": { "%1 filtered": "%1 gefiltert" }, @@ -119,9 +116,6 @@ "'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." }, - "(Default)": { - "(Default)": "(Standard)" - }, "(Unnamed)": { "(Unnamed)": "(Unbenannt)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24-h Format" }, - "24-hour clock": { - "24-hour clock": "24-Stunden-Format" - }, "25 seconds": { "25 seconds": "25 Sekunden" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Nachmittags" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Alle" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Authentifzierung erforderlich" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "Authentifizierungsänderungen angewendet." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "Authentifizierungsänderungen werden automatisch angewendet." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Authentifizierungsänderungen werden automatisch angewendet. Eine Anmeldung nur per Fingerabdruck entsperrt den Schlüsselbund möglicherweise nicht." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Authentifizierungsänderungen erfordern Sudo-Rechte. Ein Terminal wird geöffnet, damit Sie das Passwort oder Ihren Fingerabdruck verwenden können." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "Authentifizierung fehlgeschlagen - erneut versuchen" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Authentifizierung nicht erfolgreich, bitte nochmals probieren" - }, "Authorize": { "Authorize": "Autorisieren" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "Automatischer Energiesparmodus" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "Passt den Leistenabstand automatisch an; 'Aus' lässt Lücken entsprechend Ihrer Hyprland-Konfiguration" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "Passt den Leistenabstand automatisch an; 'Aus' lässt Lücken entsprechend Ihrer MangoWC-Konfiguration" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "Passt den Leistenabstand automatisch an; 'Aus' lässt Lücken entsprechend Ihrer niri-Konfiguration" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Automatischer Modus ist aktiviert. Die manuelle Profilauswahl ist deaktiviert." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Automatisch gespeichert" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Automatisch löschen nach" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Verfügbar in den Ansichtsmodi „Detailliert“ und „Vorhersage“" }, - "Available.": { - "Available.": "Verfügbar." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "Warten auf Fingerabdruck-Authentifizierung" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "Backends: %1" - }, "Background": { "Background": "Hintergrund" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "Leiste %1" }, - "Bar Configurations": { - "Bar Configurations": "Leistenkonfiguration" - }, "Bar Inset Padding": { "Bar Inset Padding": "Leisten-Innenabstand" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Leistenschatten, Rand und Ecken" }, - "Bar spacing and size": { - "Bar spacing and size": "Leistenabstand und -größe" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Basisfarbe für Schatten (Deckkraft wird automatisch angewendet)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Akku %1" }, - "Battery Alerts": { - "Battery Alerts": "Batteriewarnungen" - }, "Battery Charge Limit": { "Battery Charge Limit": "Ladebegrenzung des Akkus" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "Akkubetrieb" }, - "Battery Protection": { - "Battery Protection": "Batterieschutz" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "Akkuschutz & Laden" - }, - "Battery Status": { - "Battery Status": "Akkustatus" - }, "Battery and power management": { "Battery and power management": "Batterie- und Energieverwaltung" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "Akkustand bei %1% - Baldiges Aufladen in Erwägung ziehen" }, - "Battery level and power management": { - "Battery level and power management": "Batteriestand und Energiemanagement" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "Akkuzustand in Prozent für einen kritischen Alarm." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Bildschirmsperrung durch dbus Signal von loginctl. Deaktiviere bei externer Bildschirmsperre" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Binden Sie die Spotlight-IPC-Aktion in Ihrer Compositor-Konfiguration." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Binden Sie die spotlight-bar-IPC-Aktion in Ihrer Compositor-Konfiguration." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Bindings-Include hinzugefügt" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Weichzeichnen" }, - "Blur Border Color": { - "Blur Border Color": "Rahmenfarbe der Unschärfe" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Rahmendeckkraft der Unschärfe" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Hintergrundbild-Ebene weichzeichnen" }, "Blur on Overview": { "Blur on Overview": "Unschärfe auf Übersicht" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Den Hintergrund hinter Leisten, Pop-outs, Modalen und Benachrichtigungen weichzeichnen. Erfordert Compositor-Unterstützung und Konfiguration." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Hintergrund hinter Leisten, Popouts, Modals und Benachrichtigungen weichzeichnen. Erfordert Compositor-Unterstützung. Deckkraft entsprechend anpassen." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Randbreite" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Rahmenfarbe um weichgezeichnete Oberflächen" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "Rahmenfarbe um Popouts, Modalfenster und andere Shell-Oberflächen" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Schaltflächenfarbe" }, - "By %1": { - "By %1": "Von %1" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "Check on startup": { "Check on startup": "Beim Start prüfen" }, - "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.": "Synchronisationsstatus bei Bedarf prüfen. Die (vollständige) Synchronisierung ist für den Hauptadministrator gedacht: Sie kopiert Ihr Design auf den Anmeldebildschirm und richtet die System-Greeter-Konfiguration ein. Fügen Sie auf Mehrbenutzersystemen weitere Konten unter Einstellungen → Benutzer hinzu und lassen Sie jeden von ihnen nach dem Ab- und Anmelden „dms greeter sync --profile“ ausführen – keine vollständige Synchronisierung. Änderungen an der Authentifizierung werden automatisch übernommen." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Überprüfen Sie Ihren benutzerdefinierten Befehl in den Einstellungen → Dock → Papierkorb." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Dunkelmodus-Farbe wählen" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Logo-Farbe des Dock-Launchers wählen" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Launcher Logo auswählen" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Wählen Sie aus, wie diese Leiste die Schattenrichtung bestimmt" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "Wählen Sie aus, wie Sie über Akkuwarnungen informiert werden möchten." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "Wählen Sie aus, wie Sie über kritische Batteriewarnungen benachrichtigt werden möchten." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "Neutralen oder akzentfarbenen Widget-Text wählen" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Hintergrundfarbe für Widgets" - }, - "Choose the border accent color": { - "Choose the border accent color": "Rahmenakzentfarbe auswählen" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Wähle das Logo des Launcher Knopfs in der DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Klicken Sie auf 'Setup', um %1 zu erstellen und das Include zu Ihrer Compositor-Konfiguration hinzuzufügen." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Klicken Sie auf 'Setup', um die Ausgabekonfiguration zu erstellen und 'include' zu Ihrer Compositor-Konfiguration hinzuzufügen." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Klicken Sie auf Importieren, um eine .ovpn oder .conf hinzuzufügen" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "Farbe für Bereiche, die nicht vom Hintergrundbild bedeckt sind" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "Farbe für Bereiche, die nicht vom Hintergrundbild abgedeckt werden (z. B. Einpassen- oder Auffüllen-Modi)" - }, - "Color temperature for day time": { - "Color temperature for day time": "Farbtemperatur für Tageszeit" - }, "Color temperature for night mode": { "Color temperature for night mode": "Farbtemperatur für Nachtmodus" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Konfiguration wird beibehalten wenn der Monitor wieder angeschlossen wird" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Konfigurieren" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Verbinden..." }, - "Connecting…": { - "Connecting…": "Verbinden…" - }, "Connection failed": { "Connection failed": "Verbindung fehlgeschlagen" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "Steuert die Deckkraft von Shell-Oberflächen, Popouts und Modals" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "Steuert die Deckkraft des Leistenhintergrunds" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "Steuert die Deckkraft des Rahmens" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Steuert die Deckkraft der Schattenebene" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "Steuert die Deckkraft des Widget-Umrisses" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "Steuert die Deckkraft von Widget-Hintergründen" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Steuert Umrisse um weichgezeichnete Vordergrundkarten, Pillen und Benachrichtigungskarten" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "Steuert Umrisse um Vordergrundkarten, Pillen und Benachrichtigungskarten" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Steuert den Basis-Unschärferadius und den Versatz von Schatten" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Steuert die Deckkraft des Schattens" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Steuert den äußeren Rand von protokoll-weichgezeichneten Fenstern" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "Steuert den Umriss von Popouts, Modalfenster und anderen Shell-Oberflächen" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Steuert die Transparenz des Schattens" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Komfortoptionen für den Anmeldebildschirm. Synchronisieren zum Anwenden." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Ecken & Hintergrund" }, - "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" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "Eine neue %1-Sitzung erstellen (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Neue %1-Sitzung erstellen (n)" - }, "Create rule for:": { "Create rule for:": "Erzeuge Regel für:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Benutzerdefiniert..." }, - "Custom: ": { - "Custom: ": "Individuell: " - }, "Customizable empty space": { "Customizable empty space": "Spezifischer leerer Platz" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS-Kurzbefehle" }, - "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 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 benötigt Administratorzugriff. Das Terminal schließt sich nach Abschluss automatisch." - }, "DMS out of date": { "DMS out of date": "DMS ist veraltet" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "DMS-Server ist veraltet (API v%1, erwartet v%2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Benutzer löschen" }, - "Delete user?": { - "Delete user?": "Benutzer löschen?" - }, "Demi Bold": { "Demi Bold": "Halbfett" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Zeige Energieoptionen als Raster anstatt von einer Liste" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Sekunden in Uhr anzeigen" - }, "Display setup failed": { "Display setup failed": "Display-Einrichtung fehlgeschlagen" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Bildschirme" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Anzahl der Anzeigen, wenn Überlauf aktiv ist" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Zeigt aktives Tastaturlayout und erlaubt Umschaltung" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Dock-Deckkraft" }, - "Dock Visibility": { - "Dock Visibility": "Dock-Sichtbarkeit" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Dock-Abstand, Deckkraft und Rahmen" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Dock-Rand, Transparenz und Rahmen" - }, "Dock window": { "Dock window": "Fenster andocken" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Papierkorb leeren (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Papierkorb leeren?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "10-Bit-Farbtiefe für einen breiteren Farbraum und HDR-Unterstützung aktivieren" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Aktiviert" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Aktiviert, aber die Verfügbarkeit des Fingerabdrucks konnte nicht bestätigt werden." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Aktiviert, aber es wurde kein Fingerabdruckleser erkannt." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Aktiviert, aber es sind noch keine Abdrücke registriert. Authentifizierungsänderungen werden automatisch angewendet, sobald Sie Fingerabdrücke registrieren." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Aktiviert, aber es sind noch keine Abdrücke registriert. Fingerabdrücke registrieren und Sync ausführen." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Aktiviert, aber es wurde noch kein registrierter Sicherheitsschlüssel gefunden. Authentifizierungsänderungen werden automatisch angewendet, sobald Ihr Schlüssel registriert oder Ihre U2F-Konfiguration aktualisiert wurde." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Aktiviert, aber es wurde noch kein registrierter Sicherheitsschlüssel gefunden. Einen Schlüssel registrieren und Sync ausführen." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Aktiviert, aber die Verfügbarkeit des Sicherheitsschlüssels konnte nicht bestätigt werden." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Aktiviert. PAM bietet bereits Fingerabdruck-Authentifizierung." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Aktiviert. PAM bietet bereits Sicherheitsschlüssel-Authentifizierung." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Aktiviert. PAM bietet Fingerabdruck-Authentifizierung, aber es sind noch keine Abdrücke registriert." - }, "Enabling WiFi...": { "Enabling WiFi...": "aktiviere WLAN..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Exakt" }, - "Excluded Media Players": { - "Excluded Media Players": "Ausgeschlossene Mediaplayer" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Exklusives Zonenoffset" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Drucker konnte der Klasse nicht hinzugefügt werden" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Anwenden der GTK-Farben fehlgeschlagen" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Anwenden der Qt-Farben fehlgeschlagen" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "Ladelimit konnte nicht auf das System angewendet werden" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Nachtmodus konnte nicht aktiviert werden" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "Plugin konnte nicht aktiviert werden: %1" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "Netzwerk-QR-Code konnte nicht abgerufen werden: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Verschieben in den Papierkorb fehlgeschlagen" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "plugin_settings.json konnte nicht geparst werden" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "session.json konnte nicht geparst werden" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "settings.json konnte nicht geparst werden" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Fehler beim Pausieren des Druckers" @@ -3368,8 +3188,8 @@ "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.": "Dateimanager zum Öffnen des Papierkorbs. Wählen Sie „Benutzerdefiniert“, um einen eigenen Befehl einzugeben." }, - "File received from": { - "File received from": "Datei empfangen von" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Dateisuche erfordert dsearch\nVon github.com/AvengeMedia/danksearch installieren" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Zum Bearbeiten von einfachen Textdateien" }, - "For reading PDF files": { - "For reading PDF files": "Zum Lesen von PDF-Dateien" - }, "Force HDR": { "Force HDR": "HDR erzwingen" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "Abstände" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Override generieren" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "Gewähren" }, - "Grant admin?": { - "Grant admin?": "Administratorrechte gewähren?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Administratorrechte gewähren" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Greeter" }, - "Greeter Appearance": { - "Greeter Appearance": "Greeter-Erscheinungsbild" - }, - "Greeter Behavior": { - "Greeter Behavior": "Greeter-Verhalten" - }, - "Greeter Status": { - "Greeter Status": "Greeter-Status" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Greeter aktiviert. greetd ist jetzt aktiviert." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Greeter-Gruppe:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Nur Greeter — betrifft nicht die Hauptuhr" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Nur Greeter — Format für das Datum auf dem Anmeldebildschirm" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord-Server" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland-Layout-Überschreibungen" - }, "Hyprland Options": { "Hyprland Options": "Hyprland-Optionen" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Passwort nicht korrekt" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Falsches Passwort - Versuch %1 von %2 (Sperrung kann folgen)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Falsches Passwort - nächste Fehler können zur Kontosperrung führen" - }, "Incorrect password - try again": { "Incorrect password - try again": "Falsches Passwort – bitte erneut versuchen" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Druckaufträge" }, - "Jobs: ": { - "Jobs: ": "Druckaufträge: " - }, "Join video call": { "Join video call": "Videoanruf beitreten" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Layout-Überschreibungen" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Layout- und Modulpositionen auf dem Greeter werden von Ihrer Shell synchronisiert (z. B. Bar-Konfiguration). Führen Sie Sync zum Anwenden aus." - }, "Left": { "Left": "Links" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Sprachumgebung" }, - "Locale Settings": { - "Locale Settings": "Sprachumgebung-Einstellungen" - }, "Location": { "Location": "Standort" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Sperrbildschirm" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "Erscheinungsbild des Sperrbildschirms" - }, - "Lock Screen Display": { - "Lock Screen Display": "Sperrbildschirm-Anzeige" - }, "Lock Screen Format": { "Lock Screen Format": "Sperrbildschirm-Format" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Verhalten des Sperrbildschirms" - }, - "Lock Screen layout": { - "Lock Screen layout": "Sperrbildschirm Layout" - }, "Lock at startup": { "Lock at startup": "Beim Start sperren" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Schonfrist für Sperrausblendung" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Authentifizierungsänderungen für den Sperrbildschirm werden automatisch angewendet und können ein Terminal öffnen, wenn eine Sudo-Authentifizierung erforderlich ist." - }, "Lock screen font": { "Lock screen font": "Sperrbildschirm-Schriftart" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Login" }, - "Login Authentication": { - "Login Authentication": "Anmelde-Authentifizierung" - }, "Long": { "Long": "Lang" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Vom Rahmen im verbundenen Modus verwaltet" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Verwaltung" }, - "Manages calendar events": { - "Manages calendar events": "Verwaltet Kalenderereignisse" - }, "Manages files and directories": { "Manages files and directories": "Verwaltet Dateien und Verzeichnisse" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Mango-Dienst nicht verfügbar" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC-Layout-Überschreibungen" - }, "Manual": { "Manual": "Manuell" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Maximale Anzahl angehefteter Einträge erreicht" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Maximale Größe eines Eintrages in der Zwischenablage" - }, "Media": { "Media": "Medien" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Mediaplayer" }, - "Media Player Settings": { - "Media Player Settings": "Einstellungen für Media Player " - }, "Media Players (": { "Media Players (": "Media Players (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Modus" }, - "Mode:": { - "Mode:": "Modus:" - }, "Model": { "Model": "Modell" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Mauszeigergröße in Pixeln" }, - "Move": { - "Move": "Verschieben" - }, "Move Widget": { "Move Widget": "Verschiebe Widget" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "Multimedia" }, - "Multiplexer": { - "Multiplexer": "Multiplexer" - }, "Multiplexer Type": { "Multiplexer Type": "Multiplexer-Typ" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Netzwerk-Geschwindigkeitsmonitor" }, - "Network Status": { - "Network Status": "Netzwerkstatus" - }, "Network Type": { "Network Type": "Netzwerktyp" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri-Integration" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri-Layout-Überschreibungen" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri-Compositor-Aktionen (Fokus, Verschieben, etc.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Keine Plugins gefunden" }, - "No plugins found.": { - "No plugins found.": "Keine Plugins gefunden." - }, "No printer found": { "No printer found": "Kein Drucker gefunden" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Benachrichtigungs-Popups" }, - "Notification Rules": { - "Notification Rules": "Benachrichtigungsregeln" - }, "Notification Settings": { "Notification Settings": "Benachrichtigungseinstellungen" }, - "Notification Timeouts": { - "Notification Timeouts": "Benachrichtigungszeitüberschreitungen" - }, "Notification Type": { "Notification Type": "Benachrichtigungstyp" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Nur die Gamma-Einstellung basierend auf Zeit- oder Ortsregeln anpassen." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Betrifft nur von DMS verwaltetes PAM. Wenn greetd bereits pam_fprintd enthält, bleibt der Fingerabdruck aktiviert." - }, "Only on Battery": { "Only on Battery": "Nur im Akkubetrieb" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Deckkraft" }, - "Opacity of the bar background": { - "Opacity of the bar background": "Deckkraft des Leistenhintergrunds" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "Deckkraft der Widget-Hintergründe" - }, "Opaque": { "Opaque": "Deckend" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Dateibrowser wird geöffnet" }, - "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: " }, "Opens a picker of other active sessions on this seat": { "Opens a picker of other active sessions on this seat": "Öffnet eine Auswahl weiterer aktiver Sitzungen auf diesem Seat" }, - "Opens image files": { - "Opens image files": "Öffnet Bilddateien" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Öffnet den verbundenen Launcher im Modus mit verbundenem Frame." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM bietet bereits Sicherheitsschlüssel-Authentifizierung. Aktiviere dies, um sie beim Login anzuzeigen." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM bietet Fingerabdruck-Authentifizierung, aber die Verfügbarkeit konnte nicht bestätigt werden." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM bietet Fingerabdruck-Authentifizierung, aber es wurden noch keine Abdrücke registriert." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM bietet Fingerabdruck-Authentifizierung, aber es wurde kein Lesegerät erkannt." - }, "PDF Reader": { "PDF Reader": "PDF-Reader" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Stunden auffüllen" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Stunden auffüllen (02:00 vs. 2:00)" - }, "Padding": { "Padding": "Innenabstand" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Gekoppelt" }, - "Pairing": { - "Pairing": "Kopplung" - }, "Pairing failed": { "Pairing failed": "Koppeln fehlgeschlagen" }, - "Pairing request from": { - "Pairing request from": "Kopplungsanfrage von" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Kopplungsanfrage gesendet" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Telefonverbindung nicht verfügbar" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Telefonverbindung nicht verfügbar" - }, "Phone number": { "Phone number": "Telefonnummer" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping senden an" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Angeheftet" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Tonausgabe bei ändern der Lautstärke" }, - "Play sounds for system events": { - "Play sounds for system events": "Tonausgabe für System Ereignisse" - }, "Playback": { "Playback": "Wiedergabe" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Spielt Audiodateien ab" }, - "Plays video files": { - "Plays video files": "Spielt Videodateien ab" - }, "Please wait...": { "Please wait...": "Bitte warten..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Popup-Verhalten, Position" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Port" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "Energieprofile & Energiesparen" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "Automatischer Wechsel der Energieprofile" - }, "Power Saver": { "Power Saver": "Energiesparmodus" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Energieprofilverwaltung verfügbar" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "Energieprofil für Netzbetrieb (AC)." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "Energieprofil für Akkubetrieb." - }, "Power source": { "Power source": "Stromquelle" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Voreingestellte Breiten (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Drücke 'n' oder klicke auf 'Neue Sitzung', um eine zu erstellen" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "Drücken Sie Strg+N oder klicken Sie auf 'Neue Sitzung', um eine zu erstellen" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Primärer Container" }, - "Primary Theme Color": { - "Primary Theme Color": "Primäre Theme-Farbe" - }, "Print Server Management": { "Print Server Management": "Druckerserververwaltung" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Drucker" }, - "Printers: ": { - "Printers: ": "Drucker: " - }, "Prioritize performance": { "Prioritize performance": "Leistung priorisieren" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Prozesse" }, - "Processes:": { - "Processes:": "Prozesse:" - }, "Processing": { "Processing": "Verarbeitung" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "Profil bei Akkubetrieb" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protokoll" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Administratorrechte entfernen" }, - "Remove admin?": { - "Remove admin?": "Administratorrechte entfernen?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Eckenabrundung der Leiste entfernen" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Größe zurücksetzen" }, - "Reset to Default?": { - "Reset to Default?": "Auf Standard zurücksetzen?" - }, "Reset to default": { "Reset to default": "Auf Standard zurücksetzen" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Klingeln lassen" }, - "Ringing": { - "Ringing": "Klingeln" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Wellen-Effekte" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Regel" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Regelname" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Regeln (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Speichert..." }, - "Saving…": { - "Saving…": "Speichern…" - }, "Scale": { "Scale": "Skalierung" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Scannen" }, - "Scanning": { - "Scanning": "Scannen" - }, "Scanning...": { "Scanning...": "Scannen..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Suche..." }, - "Searching": { - "Searching": "Suche..." - }, "Searching...": { "Searching...": "Suchen..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Sicherheit & Privatsphäre" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Sicherheitsschlüssel-Modus" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "Hintergrundbild für den Sperrbildschirm auswählen" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "einen Monitor für das Hintergrundbild" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Monospace Schriftart für Prozessliste und technische Details" }, "Select network": { "Select network": "Netzwerk auswählen" }, - "Select system sound theme": { - "Select system sound theme": "Systemklangtöne" - }, "Select the font family for UI text": { "Select the font family for UI text": "Schriftfamilie für UI" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Zwischenablage senden" }, - "Send File": { - "Send File": "Datei senden" - }, "Send SMS": { "Send SMS": "SMS senden" }, - "Sending": { - "Sending": "Senden" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Getrennt" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Schriftgröße für den Textkörper der Benachrichtigung (htmlBody) festlegen" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Schriftgröße für den Zusammenfassungstext der Benachrichtigung festlegen" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "Prozentsatz festlegen, ab dem der Akku als fast leer gilt." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Gamma-Control-Einstellungen teilen" }, - "Share Text": { - "Share Text": "Text teilen" - }, "Shared": { "Shared": "Geteilt" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Während der Niri-Übersicht anzeigen" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Vordergrundflächen auf weichgezeichneten Panels für stärkeren Kontrast anzeigen" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "Vordergrundflächen auf Panels für stärkeren Kontrast anzeigen" }, @@ -7571,12 +7229,6 @@ "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" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Benachrichtigungen nur auf dem aktuell fokussierten Monitor anzeigen" - }, "Show on Last Display": { "Show on Last Display": "Zeigen auf letzten Montior" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Nur in der Übersicht anzeigen" }, - "Show on all connected displays": { - "Show on all connected displays": "Zeige alle verbundenen Monitore" - }, "Show on screens:": { "Show on screens:": "Auf Bildschirmen anzeigen:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Bildschirmanzeige bei Helligkeitsänderung anzeigen" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Bildschirmanzeige bei Statusänderung der Feststelltaste anzeigen" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "On-Screen-Display beim Durchwechseln von Audioausgabegeräten anzeigen" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Bildschirmanzeige bei Statusänderung des Leerlauf-Inhibitors anzeigen" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Bildschirmanzeige einblenden, wenn sich der Status des Mediaplayers ändert" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Bildschirmanzeige bei Lautstärkeänderung des Mediaplayers anzeigen" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Bildschirmanzeige beim Stummschalten/Aktivieren des Mikrofons anzeigen" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Bildschirmanzeige bei Änderung des Energieprofils anzeigen" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Bildschirmanzeige bei Lautstärkeänderung anzeigen" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "Leiste nur anzeigen, wenn keine Fenster geöffnet sind" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Wetter Informationen in Top-Bar und in Einstellungen anzeigen" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Wochennummer im Kalender anzeigen" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Arbeitsbereich-Indexnummern im Wechsler der oberen Leiste anzeigen" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "Signalstärke" }, - "Signal:": { - "Signal:": "Signal:" - }, "Silence for a while": { "Silence for a while": "Für eine Weile stummstellen" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Start" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "KDE Connect oder Valent starten" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Starten Sie KDE Connect oder Valent, um dieses Plugin zu verwenden" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Streifen" }, - "Subtle Overlay": { - "Subtle Overlay": "Dezente Überlagerung" - }, "Summary": { "Summary": "Zusammenfassung" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminal-Fallback fehlgeschlagen. Installieren Sie einen der unterstützten Terminal-Emulatoren oder führen Sie 'dms greeter sync' manuell aus." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Terminal-Fallback geöffnet. Schließen Sie dort die Authentifizierungseinrichtung ab; es wird nach Abschluss automatisch geschlossen." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminal-Fallback geöffnet. Schließen Sie den Sync dort ab; das Fenster wird nach Abschluss automatisch geschlossen." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Zu verwendendes Terminal-Multiplexer-Backend" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Terminal geöffnet. Schließen Sie dort die Authentifizierungseinrichtung ab; es wird nach Abschluss automatisch geschlossen." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminal geöffnet. Schließen Sie die Sync-Authentifizierung dort ab; das Fenster wird nach Abschluss automatisch geschlossen." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminals - Immer dunkles Farbschema wählen" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Text-Rendering" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "Das Tool 'boregard' ist nicht installiert oder befindet sich nicht in Ihrem PATH.\n\nInstallieren Sie es von https://danklinux.com und aktivieren Sie dieses Plugin erneut." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "Das Tool 'dgop' ist für die Systemüberwachung erforderlich.\nBitte installieren Sie dgop, um diese Funktion zu nutzen." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "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.": "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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": "Diese Installation verwendet noch die hyprland.conf. Führen Sie 'dms setup' zur Migration aus, bevor Sie Layouteinstellungen 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.": "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.": "Diese Installation verwendet noch hyprland.conf. Führen Sie „dms setup“ aus, um zu migrieren, bevor Sie die Fensterregeln in den Einstellungen bearbeiten." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Dies kann einige Sekunden dauern" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Kachel" }, - "Tile H": { - "Tile H": "Kachel H" - }, "Tile Horizontally": { "Tile Horizontally": "Horizontal kacheln" }, - "Tile V": { - "Tile V": "Kachel V" - }, "Tile Vertically": { "Tile Vertically": "Vertikal kacheln" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Timeout-Fortschrittsbalken" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Zeitüberschreitung für Benachrichtigungen mit kritischer Priorität" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Zeitüberschreitung für Benachrichtigungen mit niedriger Priorität" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Zeitüberschreitung für Benachrichtigungen mit normaler Priorität" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Sättigung der Tönung" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Transparenz" }, - "Transparency of the border": { - "Transparency of the border": "Transparenz des Randes" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Transparenz der Schattenebene" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "Transparenz des Widget-Umrisses" - }, "Trash": { "Trash": "Papierkorb" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Vom Dock entfernen" }, - "Unsaved Changes": { - "Unsaved Changes": "Ungespeicherte Änderungen" - }, "Unsaved changes": { "Unsaved changes": "Ungespeicherte Änderungen" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Betriebszeit" }, - "Uptime:": { - "Uptime:": "Betriebszeit:" - }, "Urgent": { "Urgent": "Dringend" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "Aus Albumcover extrahierte Farben anstelle von System-Themenfarben verwenden" }, - "Use custom border size": { - "Use custom border size": "Benutzerdefinierte Rahmengröße verwenden" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Benutzerdefinierte Rahmen-/Fokusringbreite verwenden" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Nutze Systemklang Thema von den System Einstellungen" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "Erweiterte Oberfläche für Launcher-Inhalte verwenden" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "Die Overlay-Ebene beim Öffnen des Launchers verwenden" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "Dieselbe Position und Größe auf allen Displays verwenden" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Wenn gesperrt" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "Weiß" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Fensterregeln" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Fensterregeln schließen fehlende ein" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Fensterregeln nicht konfiguriert" - }, "Wipe": { "Wipe": "Wischen" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Arbeitsbereich" }, - "Workspace Appearance": { - "Workspace Appearance": "Arbeitsbereich-Erscheinungsbild" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Arbeitsbereich Nummerierung" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Abstand des Arbeitsbereiches" }, - "Workspace Settings": { - "Workspace Settings": "Einstellungen zum Arbeitsbereich" - }, "Workspace Switcher": { "Workspace Switcher": "Arbeitsbereich-Wechsler" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Gestern" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Ungespeicherte Änderungen vorhanden. Speichern vor schliessen?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Ungespeicherte Änderungen vorhanden. Jetzt speichern?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Sie haben ungespeicherte Änderungen. Vor dem Erstellen einer neuen Datei speichern?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Sie haben ungespeicherte Änderungen. Vor dem Öffnen einer Datei speichern?" - }, "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.": { "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." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Dein System ist auf dem neuesten Stand!" }, - "actions": { - "actions": "Aktionen" - }, "admin": { "admin": "Admin" }, "attached": { "attached": "verbunden" }, - "boregard is required": { - "boregard is required": "boregard ist erforderlich" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "Gerät" }, - "devices connected": { - "devices connected": "Geräte verbunden" - }, "dgop not available": { "dgop not available": "dgop nicht verfügbar" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "diskutieren" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms ist eine hochgradig anpassbare, moderne Desktop-Shell mit einem Material 3 inspirierten Design.

Sie wurde mit Quickshell entwickelt, einem QT6-Framework zum Erstellen von Desktop-Shells, und Go, einer statisch typisierten, kompilierten Programmiersprache." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "matugen nicht verfügbar oder deaktiviert – GTK-Farben können nicht angewendet werden" - }, - "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "matugen nicht verfügbar oder deaktiviert – Qt-Farben können nicht angewendet werden" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen nicht gefunden - installieren Sie das matugen-Paket für dynamisches Theming" @@ -9326,6 +8855,9 @@ "nav": { "nav": "Nav" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "auf Sway" }, - "open": { - "open": "öffnen" - }, "or run ": { "or run ": "oder ausführen " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon nicht verfügbar" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "Prozesse" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 von %2" }, - "verified": { - "verified": "verifiziert" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "Nur aus vertrauenswürdigen Quellen installieren" }, diff --git a/quickshell/translations/poexports/eo.json b/quickshell/translations/poexports/eo.json index 05fc96feb..5ca78aba5 100644 --- a/quickshell/translations/poexports/eo.json +++ b/quickshell/translations/poexports/eo.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 Animacirapido" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 Seancoj" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 kopiita" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 propra animacidaŭro" - }, "%1 disconnected": { "%1 disconnected": "%1 malkonektita" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 ekranoj" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 ekzistas sed ne inkluziviĝas. Fenestraj reguloj ne aplikiĝos." - }, "%1 filtered": { "%1 filtered": "%1 filtritaj" }, @@ -119,9 +116,6 @@ "'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» permesas al la ŝlosilo malŝlosi memstare. «Dua faktoro» postulas pasvorton aŭ fingrospuron unue, poste la ŝlosilon." }, - "(Default)": { - "(Default)": "(Defaŭlta)" - }, "(Unnamed)": { "(Unnamed)": "(Sentitola)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24-hora formato" }, - "24-hour clock": { - "24-hour clock": "24-hora horloĝo" - }, "25 seconds": { "25 seconds": "25 sekundoj" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Posttagmezo" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Ĉio" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Aŭtentigo bezonata" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "Aŭtentigaj ŝanĝoj aplikitaj." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "Aŭtentigaj ŝanĝoj aplikiĝas aŭtomate." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Aŭtentigaj ŝanĝoj aplikiĝas aŭtomate. Nur-fingrospura saluto eble ne malŝlosos la ŝlosilaron." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Aŭtentigaj ŝanĝoj bezonas sudo-on. Malfermas terminalon por ke vi povu uzi pasvorton aŭ fingrospuron." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Aŭtentigo malsukcesis, bonvolu provu denove" - }, "Authorize": { "Authorize": "Rajtigi" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Aŭtomata reĝimo estas ŝaltita. " @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Aŭtomate konservita" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Aŭtomate viŝi post" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Havebla en Detala kaj Prognoza vidreĝimoj" }, - "Available.": { - "Available.": "Disponebla." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Interna programo" }, - "Backends: %1": { - "Backends: %1": "Motoroj: %1" - }, "Background": { "Background": "Fono" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "Trinkejo %1" }, - "Bar Configurations": { - "Bar Configurations": "Bretagordoj" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Barombro, limo kaj anguloj" }, - "Bar spacing and size": { - "Bar spacing and size": "Interspaco kaj grandeco de la drinkejo" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Baza koloro por ombroj (opakeco aplikiĝas aŭtomate)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Baterio %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Baterioŝarga limigo" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Mastrumado de baterio kaj potenco" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Bateria nivelo kaj potenca mastrumado" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Ligi la ŝlosekranon al dbus-signaloj de loginctl. Malŝaltu se vi uzas eksteran ŝlosekranon" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Ligu la spotlight IPC-agon en via kompostista agordo." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Ligu la agadon de spotlight-bar IPC en via kompostista agordo." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Lig-inkluzivo estas aldonita" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Malklarigo" }, - "Blur Border Color": { - "Blur Border Color": "Malklara bordkoloro" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Opakeco de malklara bordo" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Malklara fonbilda tavolo" }, "Blur on Overview": { "Blur on Overview": "Malklarigi en superrigardo" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Malklarigu la fonon malantaŭ stangoj, elŝprucfenestroj, modalaj fenestroj kaj sciigoj. Postulas subtenon kaj agordon de komponisto." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Malklarigu la fonon malantaŭ kradoj, popouts, modaloj kaj sciigoj. " }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Borda larĝo" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Bordkoloro ĉirkaŭ malklarigitaj surfacoj" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Butonkoloro" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "ĉefprocesoro" }, @@ -1436,9 +1379,6 @@ "Check on startup": { "Check on startup": "Kontrolu dum ekfunkciigo" }, - "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.": "Kontrolu sinkronigan staton laŭpeto. " - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Kontrolu vian kutiman komandon en Agordoj → Doko → Rubujo." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Elekti koloron por nokta reĝimo" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Elekti koloron de dok-lanĉila emblemo" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Elekti koloron de lanĉila emblemo" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Elekti la ombrodirekton por ĉi tiu breto" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Elekti la fenestraĵan fonkoloron" - }, - "Choose the border accent color": { - "Choose the border accent color": "Elekti la bordan akcentkoloron" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Elekti la emblemon montratan sur la lanĉila butono en DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Klaku «Agordi» por krei %1 kaj aldoni inkluzivon al via komponila agordo." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Klaku «Agordi» por krei la elig-agordojn kaj aldoni inkluzivon al via komponila agordo." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Klaku «Importi» por aldoni .ovpn- aŭ .conf-dosieron" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Tagtempa kolortemperaturo" - }, "Color temperature for night mode": { "Color temperature for night mode": "Noktareĝima kolortemperaturo" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Agordo estos konservita kiam ĉi tiu ekrano rekonektiĝos" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Agordi" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Konektante..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "Konekto malsukcesis" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "Kontrolas opakecon de ŝelsurfacoj, popouts, kaj modaloj" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "Kontrolas opakecon de la stangofono" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "Kontrolas opakecon de la limo" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Kontrolas opakecon de la ombrotavolo" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "Kontrolas opakecon de la fenestraĵo" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "Kontrolas opakecon de fenestraĵfonoj" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Kontrolas konturojn ĉirkaŭ neklaraj malklaraj kartoj, piloloj kaj sciigaj kartoj" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Regas la bazan malklarradiuson kaj ombroforŝovon" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Kontrolas la opakecon de la ombro" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Kontrolas la eksteran randon de protokol-malklaraj fenestroj" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Kontrolas la travideblecon de la ombro" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Oportunaj opcioj por la salutekrano. Sinkronigu por apliki." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Anguloj kaj fono" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "Ne eblis malfermi terminalon por la aŭtomata ensaluta ĝisdatigo." - }, "Count Only": { "Count Only": "Nur nombri" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Krei novan seancon %1 (n)" - }, "Create rule for:": { "Create rule for:": "Krei regulon por:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Propra..." }, - "Custom: ": { - "Custom: ": "Propra: " - }, "Customizable empty space": { "Customizable empty space": "Agordebla malplena spaco" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS-mallongigoj" }, - "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 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-salutekrano bezonas: greetd, dms-greeter. Fingrospuro: fprintd, pam_fprintd. Sekurŝlosiloj: pam_u2f. Aldonu vian uzanton al la greeter-grupo. Aŭtentigaj ŝanĝoj aplikiĝas aŭtomate; eble malfermiĝos terminalo kiam neprecesos sudo-aŭtentigo." - }, - "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "DMS bezonas aliron de administranto. " - }, "DMS out of date": { "DMS out of date": "DMS malaktualas" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "DMS-servilo estas malaktuala (API v%1, atendata v%2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Forigi uzanton" }, - "Delete user?": { - "Delete user?": "Ĉu forigi uzanton?" - }, "Demi Bold": { "Demi Bold": "Duongrasa" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Montri elektrajn menuagojn en krado anstataŭ listo" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Montri sekundojn en la horloĝo" - }, "Display setup failed": { "Display setup failed": "Agordo de ekrano malsukcesis" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Ekranoj" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Montras la nombron kiam estas troo" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Montras la aktivan klavararanĝon kaj permesas ŝanĝadon" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Doko Opakeco" }, - "Dock Visibility": { - "Dock Visibility": "Videbleco de la doko" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Doka marĝeno, opakeco kaj limo" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Doka marĝeno, travidebleco kaj limo" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Malplenigi Rubujon (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Malplenigi Rubujon?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Ŝalti 10-bitan kolorprofundon por pli larĝa kolorgamo kaj HDR-subteno" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Ŝaltita" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Ŝaltita, sed fingrospura disponeblo ne konfirmiĝis." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Ŝaltita, sed neniu fingrospur-legilo troviĝis." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Ŝaltita, sed neniuj spuroj ankoraŭ registriĝis. Aŭtentigaj ŝanĝoj aplikiĝos aŭtomate kiam vi aliigos fingrospurojn." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Ŝaltita, sed neniuj spuroj ankoraŭ registriĝis. Registru fingrospurojn kaj lanĉu Sinkronigon." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Ŝaltita, sed neniu registrita sekurŝlosilo ankoraŭ troviĝis. Aŭtentigaj ŝanĝoj aplikiĝos aŭtomate kiam via ŝlosilo estos registrita aŭ via U2F-agordo estos ĝisdatigita." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Ŝaltita, sed neniu registrita sekurŝlosilo ankoraŭ troviĝis. Registru ŝlosilon kaj lanĉu Sinkronigon." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Ŝaltita, sed sekurŝlosila disponeblo ne konfirmiĝis." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Ŝaltita. PAM jam provizas fingrospuran aŭtentigon." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Ŝaltita. PAM jam provizas sekurŝlosilan aŭtentigon." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Ŝaltita. PAM provizas fingrospuran aŭtentigon, sed neniuj spuroj ankoraŭ registriĝis." - }, "Enabling WiFi...": { "Enabling WiFi...": "Ŝaltas WiFi-on..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Ekzakta" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Ekskluziva zona forŝovo" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Malsukcesis aldoni presilon al klaso" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Malsukcesis apliki GTK-kolorojn" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Malsukcesis apliki Qt-kolorojn" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Malsukcesis ŝalti noktan reĝimon" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "Malsukcesis ebligi kromprogramon: %1" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "Malsukcesis alporti retan QR-kodon: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Malsukcesis movi al rubujo" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Malsukcesis analizi dosieron plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Malsukcesis analizi dosieron session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Malsukcesis analizi dosieron settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Malsukcesis paŭzigi presilon" @@ -3368,8 +3188,8 @@ "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.": "Dosieradministranto kutimis malfermi la rubujon. " }, - "File received from": { - "File received from": "Dosiero ricevita de" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Dosier-serĉado postulas dsearch\nInstalu el github.com/AvengeMedia/danksearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Por redaktado de simplaj tekstaj dosieroj" }, - "For reading PDF files": { - "For reading PDF files": "Por legi PDF-dosierojn" - }, "Force HDR": { "Force HDR": "Devigi HDR-on" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Generu Override" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "doni permeson" }, - "Grant admin?": { - "Grant admin?": "Doni administranton?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Donu administrantajn privilegiojn" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Salutekrano" }, - "Greeter Appearance": { - "Greeter Appearance": "Aspekto de salutekrano" - }, - "Greeter Behavior": { - "Greeter Behavior": "Konduto de salutekrano" - }, - "Greeter Status": { - "Greeter Status": "Stato de salutekrano" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Salutekrano aktivigita. greetd estas nun ŝaltita." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Salutgrupo:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Nur salutekrano — ne influas ĉefan horloĝon" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Nur salutekrano — formato por la dato sur la salutekrano" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Discord-servilo de Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Aranĝaj preterpasoj de Hyprland" - }, "Hyprland Options": { "Hyprland Options": "Opcioj de Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Nekorekta pasvorto" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Nekorekta pasvorto - provo %1 el %2 (ŝlosado eble sekvos)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Nekorekta pasvorto - sekvaj malsukcesoj eble kaŭzos kont-ŝlosadon" - }, "Incorrect password - try again": { "Incorrect password - try again": "Nekorekta pasvorto - provu denove" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Taskoj" }, - "Jobs: ": { - "Jobs: ": "Taskoj: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Aranĝaj preterpasoj" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Aranĝo kaj pozicioj de moduloj sur la salutekrano estas sinkronigitaj el via ŝelo (ekz. agordo de breto). Lanĉu Sinkronigon por apliki." - }, "Left": { "Left": "Maldekstre" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Lokaĵaro" }, - "Locale Settings": { - "Locale Settings": "Lokaĵaraj agordoj" - }, "Location": { "Location": "Loko" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Ŝlosekrano" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Vidigo de ŝlosekrano" - }, "Lock Screen Format": { "Lock Screen Format": "Formato de ŝlosekrano" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Konduto de ŝlosekrano" - }, - "Lock Screen layout": { - "Lock Screen layout": "Aranĝo de ŝlosekrano" - }, "Lock at startup": { "Lock at startup": "Ŝlosi dum lanĉo" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Prokrasto de ŝlos-dissolvo" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Aŭtentigaj ŝanĝoj de ŝlosekrano aplikiĝas aŭtomate kaj eble malfermos terminalon kiam sudo-aŭtentigo estas bezonata." - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Saluti" }, - "Login Authentication": { - "Login Authentication": "Saluta aŭtentigo" - }, "Long": { "Long": "Longa" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Administrita de Frame en Konektita Reĝimo" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Mastrumado" }, - "Manages calendar events": { - "Manages calendar events": "Administras kalendarajn eventojn" - }, "Manages files and directories": { "Manages files and directories": "Administras dosierojn kaj dosierujojn" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Mango-servo ne havebla" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Aranĝaj preterpasoj de MangoWC" - }, "Manual": { "Manual": "Mana" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Maksimumaj fiksitaj eroj atingitaj" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Maksimuma grando por ĉiu tonduja ero" - }, "Media": { "Media": "Aŭdvidaĵo" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Aŭdvidaĵ-ludilo" }, - "Media Player Settings": { - "Media Player Settings": "Agordoj de aŭdvidaĵ-ludilo" - }, "Media Players (": { "Media Players (": "Aŭdvidaĵ-ludiloj (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Reĝimo" }, - "Mode:": { - "Mode:": "Reĝimo:" - }, "Model": { "Model": "Modelo" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Grando de mus-kursoro en rastrumeroj" }, - "Move": { - "Move": "Movi" - }, "Move Widget": { "Move Widget": "Movi fenestraĵon" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "plurmedio" }, - "Multiplexer": { - "Multiplexer": "Multipleksoro" - }, "Multiplexer Type": { "Multiplexer Type": "Tipo de multipleksoro" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Monitorado de reta rapido" }, - "Network Status": { - "Network Status": "Reta stato" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri-integriĝo" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Aranĝaj preterpasoj de Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri-komponilaj agoj (fokuso, movo, ktp.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Neniuj kromprogramoj estis trovitaj" }, - "No plugins found.": { - "No plugins found.": "Neniuj kromprogramoj estis trovitaj." - }, "No printer found": { "No printer found": "Neniu presilo estis trovita" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Sciigaj ŝprucfenestroj" }, - "Notification Rules": { - "Notification Rules": "Sciigaj reguloj" - }, "Notification Settings": { "Notification Settings": "Sciigaj agordoj" }, - "Notification Timeouts": { - "Notification Timeouts": "Sciigaj templimoj" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Nur alĝustigi gamaon baze de tempo- aŭ lok-reguloj." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Nur influas PAM mastrumatan de DMS. Se greetd jam inkluzivas pam_fprintd, fingrospuro restas ŝaltita." - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opakeco" }, - "Opacity of the bar background": { - "Opacity of the bar background": "Opakeco de la stangofono" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "Opakeco de fenestraĵaj fonoj" - }, "Opaque": { "Opaque": "Opaka" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Malfermante dosierfoliumilon" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "Malferma terminalo por ĝisdatigi greetd" - }, "Opening terminal: ": { "Opening terminal: ": "Malfermante terminalon: " }, "Opens a picker of other active sessions on this seat": { "Opens a picker of other active sessions on this seat": "Malfermas elektilon de aliaj aktivaj sesioj sur ĉi tiu sidloko" }, - "Opens image files": { - "Opens image files": "Malfermas bilddosierojn" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Malfermas la konektitan lanĉilon en Konektita Kadro-Reĝimo." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM jam provizas sekurŝlosilan aŭtentigon. Ŝaltu ĉi tion por montri ĝin dum saluto." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM provizas fingrospuran aŭtentigon, sed la disponeblo ne povis esti konfirmita." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM provizas fingrospuran aŭtentigon, sed neniuj spuroj estas ankoraŭ registritaj." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM provizas fingrospuran aŭtentigon, sed neniu legilo estis detektita." - }, "PDF Reader": { "PDF Reader": "PDF-Leganto" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Plenigi horojn" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Plenigi horojn (02:00 anstataŭ 2:00)" - }, "Padding": { "Padding": "Interna marĝeno" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Parigita" }, - "Pairing": { - "Pairing": "Parigo" - }, "Pairing failed": { "Pairing failed": "Parigado malsukcesis" }, - "Pairing request from": { - "Pairing request from": "Peto pri parigo de" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Peto pri parigo sendita" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Telefona Konekto Ne Disponebla" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Telefona Konekto ne disponeblas" - }, "Phone number": { "Phone number": "Telefonnumero" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping sendita al" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Fiksita" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Ludi sonon kiam laŭteco estas alĝustigita" }, - "Play sounds for system events": { - "Play sounds for system events": "Ludi sonojn por sistemaj eventoj" - }, "Playback": { "Playback": "Ludado" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Ludas sondosierojn" }, - "Plays video files": { - "Plays video files": "Ludas videodosierojn" - }, "Please wait...": { "Please wait...": "Bonvolu atendi..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Konduto kaj pozicio de ŝprucfenestro" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Pordo" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "Energiŝparo" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Mastrumado de elektra profilo disponeblas" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Fonto de potenco" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Antaŭdifinitaj larĝoj (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Premu 'n' aŭ klaku 'Nova seanco' por krei tian" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Ĉefa ujo" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Mastrumado de presilo-servilo" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Presiloj" }, - "Printers: ": { - "Printers: ": "Presiloj: " - }, "Prioritize performance": { "Prioritize performance": "Prioritatigi rendimenton" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Procesoj" }, - "Processes:": { - "Processes:": "Procesoj:" - }, "Processing": { "Processing": "Procezante" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protokolo" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Forigi administranton" }, - "Remove admin?": { - "Remove admin?": "Ĉu forigi administranton?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Forigu angulon de la stango" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Rekomencigi grandon" }, - "Reset to Default?": { - "Reset to Default?": "Restarigi al Defaŭlta?" - }, "Reset to default": { "Reset to default": "Restarigi al defaŭlta" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Ringo" }, - "Ringing": { - "Ringing": "Sonorado" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Ondaj efikoj" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Regulo" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Regul-nomo" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Reguloj (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Konservante..." }, - "Saving…": { - "Saving…": "Konservante..." - }, "Scale": { "Scale": "Skalo" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Skani" }, - "Scanning": { - "Scanning": "Skanante" - }, "Scanning...": { "Scanning...": "Skanante..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Serĉi..." }, - "Searching": { - "Searching": "Serĉante" - }, "Searching...": { "Searching...": "Serĉante..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Sekureco kaj privateco" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Reĝimo de sekurŝlosilo" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Elekti ekranon por agordi fonbildon" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Elekti ekspaceta tiparon por procesa listo kaj teknikaj vidigoj" }, "Select network": { "Select network": "Elekti reton" }, - "Select system sound theme": { - "Select system sound theme": "Elekti sisteman son-etoson" - }, "Select the font family for UI text": { "Select the font family for UI text": "Elekti tiparan familion por fasada teksto" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Sendi Poŝtabulon" }, - "Send File": { - "Send File": "Sendi Dosieron" - }, "Send SMS": { "Send SMS": "Sendu SMS-on" }, - "Sending": { - "Sending": "Sendante" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "apartigi" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Agordu la tiparon por la korpa teksto de la sciiga (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Agordu la tiparon por sciiga resuma teksto" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Dividi gama-regajn agordojn" }, - "Share Text": { - "Share Text": "Kunhavigi Tekston" - }, "Shared": { "Shared": "Kunhavita" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Montru dum Niri-superrigardo" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Montru malklarajn surfacojn sur neklaraj paneloj por pli forta kontrasto" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "Montru montovojon" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "Montri sciigajn ŝprucfenestrojn nur sur la nuntempe fokusita ekrano" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Montri sciigojn nur sur la nuntempe fokusita ekrano" - }, "Show on Last Display": { "Show on Last Display": "Montri sur lasta ekrano" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Montri nur sur superrigardo" }, - "Show on all connected displays": { - "Show on all connected displays": "Montri sur ĉiuj konektitaj ekranoj" - }, "Show on screens:": { "Show on screens:": "Montri sur ekranoj:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Montri ekrankontrolilon (OSD) kiam brileco ŝanĝiĝas" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Montri ekrankontrolilon (OSD) kiam stato de majuskla fiksilo ŝanĝiĝas" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Montri ekrankontrolilon (OSD) kiam oni ŝanĝas sonajn eligajn aparatojn" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Montri ekrankontrolilon (OSD) kiam stato de senokupeco-malhelpaĵo ŝanĝiĝas" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Montri ekrankontrolilon (OSD) kiam stato de aŭdvidaĵ-ludilo ŝanĝiĝas" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Montri ekrankontrolilon (OSD) kiam laŭteco de aŭdvidaĵ-ludilo ŝanĝiĝas" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Montri ekrankontrolilon (OSD) kiam mikrofono estas silentigita/malsilentigita" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Montri ekrankontrolilon (OSD) kiam elektra profilo ŝanĝiĝas" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Montri ekrankontrolilon (OSD) kiam laŭteco ŝanĝiĝas" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "Montru la trinkejon nur kiam neniuj fenestroj estas malfermitaj" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Montri veterajn informojn en supra breto kaj regcentro" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Montri semajnan numeron en la kalendaro" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Montri indeksajn numerojn de laborspacoj en la supra laborspaca ŝaltilo" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Signalo:" - }, "Silence for a while": { "Silence for a while": "Silentu dum momento" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Komenco" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Lanĉu KDE Connect aŭ Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Lanĉu KDE Connect aŭ Valent por uzi ĉi tiun kromprogramon" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Strioj" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "Resumo" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminala retropaŝo malsukcesis. Instalu unu el la subtenataj terminal-imitiloj aŭ lanĉu 'dms greeter sync' mane." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Terminala retropaŝo malfermita. Plenumu la aŭtentigan agordadon tie; ĝi fermiĝos aŭtomate kiam finite." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminala retropaŝo malfermita. Plenumu la sinkronigon tie; ĝi fermiĝos aŭtomate kiam finite." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Uzenda interna terminala multipleksoro" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Terminalo malfermita. Plenumu la aŭtentigan agordadon tie; ĝi fermiĝos aŭtomate kiam finite." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminalo malfermita. Plenumu la sinkronigan aŭtentigon tie; ĝi fermiĝos aŭtomate kiam finite." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminaloj - Ĉiam uzi malhelan etoson" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Teksta Reprezentado" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "La ilo 'dgop' estas postulata por sistem-monitorado.\nBonvolu instali dgop por uzi ĉi tiun trajton." }, @@ -8156,20 +7754,8 @@ "This device": { "This device": "Ĉi tiu aparato" }, - "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.": "Ĉi tiu instalo ankoraŭ uzas hyprland.conf. " - }, - "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.": "Ĉi tiu instalo ankoraŭ uzas hyprland.conf. " - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "Ĉi tiu instalo ankoraŭ uzas hyprland.conf. " - }, - "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.": "Ĉi tiu instalo ankoraŭ uzas hyprland.conf. " + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Ĉi tio eble prenos kelkajn sekundojn" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Kaheli" }, - "Tile H": { - "Tile H": "Kaheli H" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "Kaheli V" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Progresa Trinkejo" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Templimo por kritik-prioritataj sciigoj" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Templimo por malalt-prioritataj sciigoj" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Templimo por normal-prioritataj sciigoj" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Nuanco Saturado" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Travidebleco" }, - "Transparency of the border": { - "Transparency of the border": "Travidebleco de la limo" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Travidebleco de la ombra tavolo" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "Travidebleco de la skizo de la fenestraĵo" - }, "Trash": { "Trash": "rubujo" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Malfiksi de la doko" }, - "Unsaved Changes": { - "Unsaved Changes": "Nekonservitaj ŝanĝoj" - }, "Unsaved changes": { "Unsaved changes": "Nekonservitaj ŝanĝoj" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Lanĉtempo" }, - "Uptime:": { - "Uptime:": "Lanĉtempo:" - }, "Urgent": { "Urgent": "urĝa" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Uzi propran bordan grandon" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Uzi propran larĝon por bordo/fokus-ringo" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Uzi son-etoson el sistemaj agordoj" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "Uzu la plilongigitan surfacon por lanĉila enhavo" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "Uzu la tegmentan tavolon kiam vi malfermas la lanĉilon" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "Uzi la saman pozicion kaj grandon sur ĉiuj ekranoj" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Kiam ŝlosita" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Fenestraj reguloj" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Fenestraj reguloj-inkluzivo mankas" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Fenestraj reguloj ne estas agorditaj" - }, "Wipe": { "Wipe": "Viŝo" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Laborspaco" }, - "Workspace Appearance": { - "Workspace Appearance": "Aspekto de laborspaco" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Indeksaj numeroj de laborspacoj" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Interna marĝeno de laborspaco" }, - "Workspace Settings": { - "Workspace Settings": "Agordoj de laborspaco" - }, "Workspace Switcher": { "Workspace Switcher": "Laborspaca ŝaltilo" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Hieraŭ" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Vi havas nekonservitajn ŝanĝojn. Ĉu konservi antaŭ ol fermi ĉi tiun langeton?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Vi havas nekonservitajn ŝanĝojn. Ĉu konservi antaŭ ol daŭrigi?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Vi havas nekonservitajn ŝanĝojn. Ĉu konservi antaŭ ol krei novan dosieron?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Vi havas nekonservitajn ŝanĝojn. Ĉu konservi antaŭ ol malfermi dosieron?" - }, "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.": { "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.": "Vi devas agordi ĉu:\nQT_QPA_PLATFORMTHEME=gtk3 AŬ\nQT_QPA_PLATFORMTHEME=qt6ct\nkiel mediajn variablojn, kaj poste restartigi la ŝelon.\n\nqt6ct postulas, ke qt6ct-kde estu instalita." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Via sistemo estas ĝisdata!" }, - "actions": { - "actions": "agoj" - }, "admin": { "admin": "admin" }, "attached": { "attached": "aligita" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "aparato" }, - "devices connected": { - "devices connected": "aparatoj konektitaj" - }, "dgop not available": { "dgop not available": "dgop ne disponeblas" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms estas tre agordebla, moderna labortabla ŝelo kun dezajno inspirita de material 3.

Ĝi estas konstruita per Quickshell, QT6-kadro por konstrui labortablajn ŝelojn, kaj Go, statike tipita, kompilita programlingvo." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "GitHub de mangowc" }, - "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "matugen ne havebla aŭ malŝaltita - ne povas apliki GTK-kolorojn" - }, - "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "matugen ne havebla aŭ malŝaltita - ne povas apliki Qt-kolorojn" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen ne trovita - instalu pakaĵon matugen por dinamika etosigo" @@ -9326,6 +8855,9 @@ "nav": { "nav": "navigi" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "GitHub de niri" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "sur Sway" }, - "open": { - "open": "malfermi" - }, "or run ": { "or run ": "aŭ lanĉu " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon ne disponeblas" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "proc." }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 de %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Instalu nur el fidindaj fontoj" }, diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index 52c42fc9f..1ef05b5f2 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "" }, - "%1 custom animation duration": { - "%1 custom animation duration": "" - }, "%1 disconnected": { "%1 disconnected": "" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "" - }, "%1 filtered": { "%1 filtered": "" }, @@ -119,9 +116,6 @@ "'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.": "" }, - "(Default)": { - "(Default)": "" - }, "(Unnamed)": { "(Unnamed)": "(Sin nombre)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "Formato de 24 horas" }, - "24-hour clock": { - "24-hour clock": "" - }, "25 seconds": { "25 seconds": "" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Tarde" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Todo" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Autenticación requerida" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Autenticación fallida, intente nuevamente" - }, "Authorize": { "Authorize": "Autorizar" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Limpiar automáticamente despues" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Disponible en modo detallado y pronóstico" }, - "Available.": { - "Available.": "" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "" - }, "Background": { "Background": "" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "Configuración de barras" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Limite de carga de bateria" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Bateria y gestion de energia" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Nivel de batería y gestión de energía" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Conectar pantalla de bloqueo a las señales dbus de loginctl. Deshabilitar si se usa una pantalla de bloqueo externa" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight 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.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Inclusión de atajos añadida" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Desenfocar capa de papel tapiz" }, "Blur on Overview": { "Blur on Overview": "Desenfocar en la vista general" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Elegir Color del Icono en el Lanzador" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Elegir el color de fondo para los widgets" - }, - "Choose the border accent color": { - "Choose the border accent color": "Elegir el color de acento del borde" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Elegir logo del lanzador en la DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Haga clic en \"Configuración\" para crear la configuración de salida y añadirla a la configuración del compositor." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Clic en importar para añadir un archivo .ovpn o .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Temperatura de color para el día" - }, "Color temperature for night mode": { "Color temperature for night mode": "Temperatura de color para el modo nocturno" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "La configuración se conservará cuando esta pantalla vuelva a conectarse" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Configurar" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Conectando..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Esquinas y Fondo" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "Solo la cantidad" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "" - }, "Create rule for:": { "Create rule for:": "" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Personalizado..." }, - "Custom: ": { - "Custom: ": "Personalizado: " - }, "Customizable empty space": { "Customizable empty space": "Espacio vacío personalizable" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Atajos de DMS" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS desactualizado" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "" }, - "Delete user?": { - "Delete user?": "" - }, "Demi Bold": { "Demi Bold": "" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Mostrar acciones en una cuadrícula en vez de una lista" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Mostrar segundos en el reloj" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Pantallas" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Muestra la distribución de teclado activa y permite cambiarla" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Visibilidad del dock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "" }, - "Empty Trash?": { - "Empty Trash?": "" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Habilita la profundidad de color de 10 bits para ampliar la gama de colores y la compatibilidad con HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Habilitado" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, "Enabling WiFi...": { "Enabling WiFi...": "Habilitando WiFi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Zona exclusiva" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Error al agregar la impresora a la clase" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Fallo al habilitar el modo nocturno" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Fallo al parsear plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Fallo al parsear session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Fallo al parsear settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Error al pausar la impresora" @@ -3368,8 +3188,8 @@ "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.": "" }, - "File received from": { - "File received from": "" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "" }, - "For reading PDF files": { - "For reading PDF files": "" - }, "Force HDR": { "Force HDR": "Forzar HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "" }, - "Grant admin?": { - "Grant admin?": "" - }, "Grant administrator privileges": { "Grant administrator privileges": "" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "" }, - "Greeter Appearance": { - "Greeter Appearance": "" - }, - "Greeter Behavior": { - "Greeter Behavior": "" - }, - "Greeter Status": { - "Greeter Status": "" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Sobreescribir opciones de Hyprland" - }, "Hyprland Options": { "Hyprland Options": "" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Contraseña incorrecta" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "" - }, "Incorrect password - try again": { "Incorrect password - try again": "" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Trabajos" }, - "Jobs: ": { - "Jobs: ": "Trabajos:" - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Anulaciones de diseño" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "" - }, "Left": { "Left": "Izquierda" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "" }, - "Locale Settings": { - "Locale Settings": "" - }, "Location": { "Location": "Ubicación" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Pantalla de bloqueo" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Visualización de la pantalla de bloqueo" - }, "Lock Screen Format": { "Lock Screen Format": "Formato en la pantalla de bloqueo" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Comportamiento de la pantalla de bloqueo" - }, - "Lock Screen layout": { - "Lock Screen layout": "Disposicion de la pantalla de bloqueo" - }, "Lock at startup": { "Lock at startup": "" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Intervalo de fundido antes de bloquear la pantalla" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "" }, - "Login Authentication": { - "Login Authentication": "" - }, "Long": { "Long": "Largo" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Gestión" }, - "Manages calendar events": { - "Manages calendar events": "" - }, "Manages files and directories": { "Manages files and directories": "" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Sobreescribir opciones de MangoWC" - }, "Manual": { "Manual": "" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Tamaño máximo por entrada en el portapapeles" - }, "Media": { "Media": "Multimedia" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Reproductor de multimedia" }, - "Media Player Settings": { - "Media Player Settings": "Ajustes del reproductor" - }, "Media Players (": { "Media Players (": "Reproductores (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Modo" }, - "Mode:": { - "Mode:": "Modo:" - }, "Model": { "Model": "Modelo" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "" }, - "Move": { - "Move": "" - }, "Move Widget": { "Move Widget": "Mover widget" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "" }, - "Multiplexer": { - "Multiplexer": "" - }, "Multiplexer Type": { "Multiplexer Type": "" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Monitor de velocidad de red" }, - "Network Status": { - "Network Status": "Estado de conexión" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Integración con Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Anulaciones de diseño Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Acciones del compositor Niri (enfocar,mover, etc.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "No hay complementos encontrados" }, - "No plugins found.": { - "No plugins found.": "No hay complementos encontrados." - }, "No printer found": { "No printer found": "Impresora no encontrada" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Notificaciones emergentes" }, - "Notification Rules": { - "Notification Rules": "" - }, "Notification Settings": { "Notification Settings": "Ajustes de notificaciones" }, - "Notification Timeouts": { - "Notification Timeouts": "Duración de las notificaciones" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Ajustar gamma en función de la hora o ubicación." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "" - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opacidad" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "" }, - "Opening terminal to update greetd": { - "Opening terminal to update 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 image files": { - "Opens image files": "" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "" - }, "PDF Reader": { "PDF Reader": "" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "" - }, "Padding": { "Padding": "Relleno" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Vinculado" }, - "Pairing": { - "Pairing": "" - }, "Pairing failed": { "Pairing failed": "Emparejamiento fallido" }, - "Pairing request from": { - "Pairing request from": "" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "" - }, "Phone number": { "Phone number": "" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "" }, - "Ping sent to": { - "Ping sent to": "" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Fijado" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Reproducir sonido al ajustar el volumen" }, - "Play sounds for system events": { - "Play sounds for system events": "Reproducir sonidos para eventos del sistema" - }, "Playback": { "Playback": "Reproducción" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "" }, - "Plays video files": { - "Plays video files": "" - }, "Please wait...": { "Please wait...": "" }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Comportamiento y posición de las notificaciones emergentes" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Gestión del perfil de potencia disponible" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Fuente de energia" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Anchuras prefijadas (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Gestión del servidor de impresión" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Impresoras" }, - "Printers: ": { - "Printers: ": "Impresoras: " - }, "Prioritize performance": { "Prioritize performance": "" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Procesos" }, - "Processes:": { - "Processes:": "Procesos:" - }, "Processing": { "Processing": "Procesando" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protocolo" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "" }, - "Remove admin?": { - "Remove admin?": "" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Reiniciar tamaño" }, - "Reset to Default?": { - "Reset to Default?": "" - }, "Reset to default": { "Reset to default": "" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "" }, - "Ringing": { - "Ringing": "" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "" }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "Escala" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Escanear" }, - "Scanning": { - "Scanning": "Escaneando" - }, "Scanning...": { "Scanning...": "Escaneando..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Buscar..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "Buscando..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Seguridad y privacidad" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Seleccionar monitor para configurar el fondo de pantalla" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Selecciona la fuente monoespaciada para la lista de procesos y la información técnica" }, "Select network": { "Select network": "" }, - "Select system sound theme": { - "Select system sound theme": "Seleccionar tema de sonidos del sistema" - }, "Select the font family for UI text": { "Select the font family for UI text": "Seleccione la familia de fuentes para el texto de la interfaz de usuario" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "" }, - "Send File": { - "Send File": "" - }, "Send SMS": { "Send SMS": "" }, - "Sending": { - "Sending": "" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "" }, - "Share Text": { - "Share Text": "" - }, "Shared": { "Shared": "" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "" - }, "Show on Last Display": { "Show on Last Display": "Mostrar en última pantalla" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "" }, - "Show on all connected displays": { - "Show on all connected displays": "Mostrar en todas las pantallas conectadas" - }, "Show on screens:": { "Show on screens:": "Mostrar en pantallas:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Mostrar en pantalla cuando el brillo cambia" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Mostrar en pantalla al activar o desactivar Bloq Mayús" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Mostrar en pantalla al ciclar los dispositivos de salida de audio" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Mostrar en pantalla cuando el estado del inhibidor cambia" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Mostrar en pantalla cuando el volumen multimedia cambia" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Mostrar en pantalla cuando el micrófono se silencia/reactiva" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Mostrar en pantalla cuando el perfil de energía cambia" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Mostrar en pantalla cuando el volumen cambia" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Mostrar clima en la barra superior y en el centro de control" }, - "Show week number in the calendar": { - "Show week number in the calendar": "" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Indicar el orden de los espacios en la barra superior" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Señal:" - }, "Silence for a while": { "Silence for a while": "" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Empezar" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Forzar modo oscuro en terminales" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "" }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "" }, - "Tile H": { - "Tile H": "" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Tiempo de espera para notificaciones de prioridad crítica" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Tiempo limite para las notificaciones de baja prioridad" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Tiempo de espera para notificaciones de prioridad normal" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Transparencia" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { "Trash": "" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Desfijar del dock" }, - "Unsaved Changes": { - "Unsaved Changes": "Cambios sin guardar" - }, "Unsaved changes": { "Unsaved changes": "Cambios sin guardar" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "" }, - "Uptime:": { - "Uptime:": "" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Usar un tamaño de borde personalizado" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Usar tema de sonidos del sistema" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "" - }, "Wipe": { "Wipe": "" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Espacio de trabajo" }, - "Workspace Appearance": { - "Workspace Appearance": "" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Espacios de trabajo numerados" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Margen de los espacios de trabajo" }, - "Workspace Settings": { - "Workspace Settings": "Ajustes de espacios de trabajo" - }, "Workspace Switcher": { "Workspace Switcher": "Espacios de trabajo" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Ayer" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Tienes cambios sin guardar. ¿Guardar antes de cerrar esta pestaña?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Tienes cambios sin guardar. ¿Guardar antes de continuar?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Tienes cambios sin guardar. ¿Guardar antes de crear un archivo nuevo?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Tienes cambios sin guardar. ¿Guardar antes de abrir otro archivo?" - }, "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.": { "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.": "" }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "" }, - "actions": { - "actions": "" - }, "admin": { "admin": "" }, "attached": { "attached": "" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "" }, @@ -9236,9 +8768,6 @@ "device": { "device": "dispositivo" }, - "devices connected": { - "devices connected": "dispositivos conectados" - }, "dgop not available": { "dgop not available": "dgop no disponible" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9308,11 +8840,8 @@ "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 Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matguen no encontrado - instala el paquete matugen para la tematización dinámica" @@ -9326,6 +8855,9 @@ "nav": { "nav": "" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "" }, - "open": { - "open": "" - }, "or run ": { "or run ": "" }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Instalar solo desde fuentes confiables" }, diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json index fdccc1a8f..676bb2445 100644 --- a/quickshell/translations/poexports/fa.json +++ b/quickshell/translations/poexports/fa.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "سرعت انیمیشن %1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 نشست" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 کپی شد" }, - "%1 custom animation duration": { - "%1 custom animation duration": "مدت زمان سفارشی انیمیشن %1" - }, "%1 disconnected": { "%1 disconnected": "%1 غیرمتصل" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 نمایشگر" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 وجود دارد اما وارد نشده است. قواعد پنجره اعمال نخواهند شد." - }, "%1 filtered": { "%1 filtered": "%1 فیلتر شده" }, @@ -119,9 +116,6 @@ "'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.": "«جایگزین» به کلید اجازه می‌دهد به تنهایی قفل را باز کند. «فاکتور دوم» ابتدا رمز عبور یا اثر انگشت و سپس کلید را نیاز دارد." }, - "(Default)": { - "(Default)": "(پیش‌فرض)" - }, "(Unnamed)": { "(Unnamed)": "(بدون نام)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "قالب ۲۴ ساعته" }, - "24-hour clock": { - "24-hour clock": "24 ساعته" - }, "25 seconds": { "25 seconds": "۲۵ ثانیه" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "بعد از ظهر" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "همه" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "احراز هویت نیاز است" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "تغییرات احراز هویت اعمال شد." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "تغییرات احراز هویت بصورت خودکار اعمال می‌شود." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "تغییرات احراز هویت بصورت خودکار اعمال می‌شود. ورود تنها با اثرانگشت شاید keyring را باز نکند." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "تغییرات احراز هویت به sudo نیاز دارد. درحال باز کردن ترمینال تا بتوانید از گذرواژه یا اثرانگشت استفاده کنید." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "احراز هویت ناموفق بود، لطفا دوباره تلاش کنید" - }, "Authorize": { "Authorize": "اجازه دادن" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "حالت خودکار فعال است. انتخاب پروفایل دستی غیرفعال می‌باشد." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "پاک‌کردن خودکار پس از" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "در حالت‌های نمایش با جزئیات و پیش‌بینی در دسترس است" }, - "Available.": { - "Available.": "در دسترس." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "بک‌اند" }, - "Backends: %1": { - "Backends: %1": "بک‌اند‌ها: %1" - }, "Background": { "Background": "پس‌زمینه" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "پیکربندی نوار" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "سایه، حاشیه و گوشه‌های نوار" }, - "Bar spacing and size": { - "Bar spacing and size": "فاصله‌گذاری نوار و اندازه" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "رنگ پایه برای سایه‌ها (شفافیت به صورت خودکار اعمال شده است)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "باتری %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "محدودیت شارژ باتری" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "مدیریت باتری و پاور" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "وضعیت باتری و مدیریت انرژی" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "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.": "اقدام IPC اسپات‌لایت را در تنظیمات کامپوزیتور خود نگاشت کنید." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Include نگاشت‌ها اضافه شد" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "رنگ حاشیه تار" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "شفافیت حاشیه تار" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "لایه تصویر پس‌زمینه تار" }, "Blur on Overview": { "Blur on Overview": "لایه تار در نمای کلی" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "پس‌زمینه پشت نوار‌ها، پاپ‌آپ‌ها، مودال‌ها و اعلان‌ها را تار کن. به پشتیبانی و پیکربندی کامپازیتور نیاز دارد." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "پهنای حاشیه" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "رنگ حاشیه دور سطوح تار" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "رنگ دکمه‌" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "دستور سفارشی خود را در تنظیمات ← داک ← زباله‌دان، بررسی کنید." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "انتخاب رنگ حالت تاریک" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "رنگ لوگوی لانجر دَنک را انتخاب کنید" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "انتخاب رنگ لوگوی لانچر" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "انتخاب کنید که این نوار چگونه جهت سایه را مشخص کند" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "رنگ پس‌زمینه برای ابزارک‌ها انتخاب کنید" - }, - "Choose the border accent color": { - "Choose the border accent color": "انتخاب رنگ تأکیدی حاشیه" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "لوگوی نمایش‌داده شده بر دکمه‌ی لانچر در نوار دَنک را انتخاب کنید" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "برای ایجاد %1 و افزودن include به پیکربندی کامپازیتور خود، روی «راه‌اندازی» کلیک کنید." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "برای ایجاد پیکربندی خروجی‌ها و افزودن include به پیکربندی کامپازیتور خود، روی «راه‌اندازی» کلیک کنید." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "برای افزودن یک فایل .conf یا .ovpn روی وارد کردن کلیک کنید" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "دمای رنگ برای زمان روز" - }, "Color temperature for night mode": { "Color temperature for night mode": "دمای رنگ برای حالت شب" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "وقتی این نمایشگر دوباره وصل شود، پیکربندی حفظ خواهد شد" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "پیکربندی" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "درحال اتصال..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "اتصال ناموفق بود" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "خط بیرونی دور کارت‌های پیش‌زمینه، برچسب‌های گرد و کارت‌های اعلان تار را کنترل می‌کند" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "شعاع تاری پایه و آفست سایه را کنترل می‌کند" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "لبه بیرونی پنجره‌های تار شده با پروتکل را کنترل می‌کند" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "شفافیت سایه را کنترل می‌کند" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "گزینه‌های راحتی برای صفحه قفل. برای اعمال شدن همگام‌سازی را انجام دهید." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "گوشه‌ها و پس‌زمینه" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "فقط تعداد" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "ساخت یک نشست %1 جدید (n)" - }, "Create rule for:": { "Create rule for:": "ایجاد قاعده برای:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "سفارشی..." }, - "Custom: ": { - "Custom: ": "سفارشی: " - }, "Customizable empty space": { "Customizable empty space": "فضای خالی قابل تنظیم" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "میانبرهای DMS" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS بروز نیست" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "سرور DMS قدیمی است (API نسخهٔ %1، نسخهٔ مورد انتظار %2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "حذف کاربر" }, - "Delete user?": { - "Delete user?": "کاربر حذف شود؟" - }, "Demi Bold": { "Demi Bold": "نیمه پررنگ" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "اقدامات منوی پاور را در جدول به جای فهرست نمایش بده" }, - "Display seconds in the clock": { - "Display seconds in the clock": "نمایش ثانیه در ساعت" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "نمایشگر‌ها" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "تعداد را هنگام فعال بودن سرریز شدن نمایش می‌دهد" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "چیدمان صفحه‌کلید فعال را نمایش می‌دهد و امکان تغییر را فراهم می‌کند" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "وضعیت نمایش داک" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "فاصله داخلی، شفافیت و حاشیه داک" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "خالی کردن زباله‌دان (%1)" }, - "Empty Trash?": { - "Empty Trash?": "آیا زباله‌دان خالی شود؟" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "فعال‌کردن عمق رنگ ۱۰ بیت برای طیف رنگ عریض‌تر و پشتیبانی HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "فعال" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "فعال، اما دردسترس بودن اثرانگشت تأیید نشد." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "فعال، اما هیچ دستگاه اثرانگشت‌خوانی شناسایی نشد." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "فعال، اما هیچ اثرانگشتی هنوز ثبت نشده است. تغییرات احراز هویت پس از ثبت اثر انگشت به طور خودکار اعمال می‌شوند." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "فعال، اما هیچ اثرانگشتی هنوز ثبت نشده است. اثرانگشت‌ها را ثبت کرده و همگام‌سازی را اجرا کنید." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "فعال، اما هنوز هیچ کلید امنیتی یافت نشده است. تغییرات احراز هویت پس از ثبت کلید یا بروزرسانی پیکربندی U2F به طور خودکار اعمال می‌شوند." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "فعال، اما هنوز هیچ کلید امنیتی یافت نشده است. یک کلید را ثبت کرده و همگام‌سازی را اجرا کنید." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "فعال، اما دردسترس بودن کلید امنیتی تأیید نشد." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "فعال. درحال حاضر PAM احراز هویت اثرانگشت را ارائه می‌دهد." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "فعال. درحال حاضر PAM احراز کلید امنیتی را ارائه می‌دهد." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "فعال. PAM احراز هویت اثرانگشت را ارائه می‌دهد، اما هیچ اثرانگشتی هنوز ثبت نشده است." - }, "Enabling WiFi...": { "Enabling WiFi...": "فعال‌سازی وای‌فای..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "دقیق" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "آفست ناحیه انحصاری" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "افزودن چاپگر به کلاس ناموفق بود" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "اعمال رنگ‌های GTK ناموفق بود" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "اعمال رنگ‌های Qt ناموفق بود" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "فعال‌کردن حالت شب ناموفق بود" }, - "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": "دریافت کد QR شبکه ناموفق بود: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "انتقال به زباله‌دان ناموفق بود" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "تجزیه فایل plugin_settings.json ناموفق بود" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "تجزیه فایل session.json ناموفق بود" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "تجزیه فایل settings.json ناموفق بود" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "توقف چاپگر ناموفق بود" @@ -3368,8 +3188,8 @@ "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.": "مدیر فایل استفاده شده برای زباله‌دان. «سفارشی» را انتخاب کرده تا دستور خود را وارد کنید." }, - "File received from": { - "File received from": "فایل دریافت شده از" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "جستجوی فایل به dsearch نیاز دارد\nاز github.com/morelazers/dsearch نصب کنید" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "برای ویرایش کردن فایل‌های متنی ساده" }, - "For reading PDF files": { - "For reading PDF files": "برای خواندن فایل‌های PDF" - }, "Force HDR": { "Force HDR": "اجبار HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "اعطا کن" }, - "Grant admin?": { - "Grant admin?": "دسترسی ادمین اعطا شود؟" - }, "Grant administrator privileges": { "Grant administrator privileges": "اعطای دسترسی ادمین" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "صفحه خوش‌آمدگویی" }, - "Greeter Appearance": { - "Greeter Appearance": "ظاهر صفحه خوش‌آمدگویی" - }, - "Greeter Behavior": { - "Greeter Behavior": "رفتار صفحه خوش‌آمدگویی" - }, - "Greeter Status": { - "Greeter Status": "وضعیت صفحه خوش‌آمدگویی" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "فعال‌سازی صفحه خوش‌آمدگویی انجام شد. اکنون صفحه خوش‌آمدگویی فعال است." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "گروه صفحه خوش‌آمدگویی:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "فقط صفحه خوش‌آمدگویی - بر ساعت اصلی تأثیر ندارد" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "فقط صفحه خوش‌آمدگویی - قالب برای تاریخ در صفحه ورود" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "سرور دیسکورد هایپرلند" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "جایگزینی‌های چیدمان هایپرلند" - }, "Hyprland Options": { "Hyprland Options": "گزینه‌های هایپرلند" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "گذرواژه نادرست" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "گذرواژه نادرست - تلاش %1 از %2 (ممکن است قفل شدن حساب را به دنبال داشته باشد)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "گذرواژه نادرست - شکست‌های بعدی می‌توانند باعث قفل شدن حساب شوند" - }, "Incorrect password - try again": { "Incorrect password - try again": "گذرواژه نادرست - دوباره تلاش کنید" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "کار‌های چاپ" }, - "Jobs: ": { - "Jobs: ": "کار‌های چاپ: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "جایگزینی‌های چیدمان" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "چیدمان و موقعیت ماژول‌ها در صفحه خوش‌آمدگویی از شل شما همگام‌سازی می‌شود (مانند تنظیمات نوار وضعیت). برای اعمال همگام‌سازی را اجرا کنید." - }, "Left": { "Left": "چپ" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "زبان" }, - "Locale Settings": { - "Locale Settings": "تنظیمات زبان" - }, "Location": { "Location": "مکان" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "صفحه قفل" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "نمایشگر صفحه قفل" - }, "Lock Screen Format": { "Lock Screen Format": "قالب صفحه قفل" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "رفتار صفحه قفل" - }, - "Lock Screen layout": { - "Lock Screen layout": "چیدمان صفحه قفل" - }, "Lock at startup": { "Lock at startup": "قفل در هنگام راه‌اندازی" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "بازه زمانی محو شدن تدریجی قفل" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "تغییرات احراز هویت صفحه قفل بصورت خودکار اعمال می‌شوند و شاید ترمینالی هنگامی که احراز هویت sudo نیاز باشد، باز شود." - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "ورود" }, - "Login Authentication": { - "Login Authentication": "احراز هویت ورود" - }, "Long": { "Long": "طولانی" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "توسط قاب در حالت متصل مدیریت شده است" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "مدیریت" }, - "Manages calendar events": { - "Manages calendar events": "رویداد‌های گاه‌شمار را مدیریت می‌کند" - }, "Manages files and directories": { "Manages files and directories": "فایل‌ها و دایرکتوری‌ها را مدیریت می‌کند" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "جایگزینی‌های چیدمان MangoWC" - }, "Manual": { "Manual": "دستی" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "به بیشینه مدخل‌های سنجاق شده رسیدید" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "بیشینه اندازه برای هر مدخل کلیپ‌بورد" - }, "Media": { "Media": "رسانه" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "پخش‌کننده رسانه" }, - "Media Player Settings": { - "Media Player Settings": "تنظیمات پخش‌کننده رسانه" - }, "Media Players (": { "Media Players (": "پخش‌کننده‌های رسانه (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "حالت" }, - "Mode:": { - "Mode:": "حالت:" - }, "Model": { "Model": "مدل" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "اندازه اشاره‌گر موس به پیکسل" }, - "Move": { - "Move": "حرکت" - }, "Move Widget": { "Move Widget": "انتقال ابزارک" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "چندرسانه‌ای" }, - "Multiplexer": { - "Multiplexer": "مالتی‌پلکسر" - }, "Multiplexer Type": { "Multiplexer Type": "نوع مالتی‌پلکسر" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "نمایشگر سرعت شبکه" }, - "Network Status": { - "Network Status": "وضعیت شبکه" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "همگام‌سازی نیری" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "جایگزینی‌های چیدمان‌ نیری" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "اقدام‌های کامپازیتور نیری (focus، move و غیره)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "افزونه‌ای یافت نشد" }, - "No plugins found.": { - "No plugins found.": "افزونه‌ای یافت نشد." - }, "No printer found": { "No printer found": "هیچ چاپگری یافت نشد" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "پاپ‌آپ اعلان‌ها" }, - "Notification Rules": { - "Notification Rules": "قواعد اعلان‌ها" - }, "Notification Settings": { "Notification Settings": "تنظیمات اعلان‌ها" }, - "Notification Timeouts": { - "Notification Timeouts": "وقفه اعلان‌ها" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "گاما را فقط بر اساس قواعد زمانی یا مکانی تنظیم کن." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "فقط روی PAM مدیریت شده توسط DMS تأثیر می‌گذارد. اگر greetd از قبل شامل pam_fprintd باشد، اثر انگشت فعال می‌ماند." - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "شفافیت" }, - "Opacity of the bar background": { - "Opacity of the bar background": "شفافیت پس‌زمینه نوار" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "شفافیت پس‌زمینه ابزارک‌ها" - }, "Opaque": { "Opaque": "کدر" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "باز کردن مرورگر فایل" }, - "Opening terminal to update greetd": { - "Opening terminal to update 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 image files": { - "Opens image files": "فایل‌های تصویر را باز می‌کند" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "لانچر متصل را در حالت قاب متصل باز می‌کند." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "درحال حاضر PAM احراز هویت کلید امنیتی را ارائه می‌دهد. این را برای نمایش در ورود فعال کنید." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM احراز هویت اثرانگشت را ارائه می‌دهد، اما دردسترس آن بودن تأیید نشد." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM احراز هویت اثرانگشت را ارائه می‌دهد، اما هیچ اثرانگشتی هنوز ثبت نشده است." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM احراز هویت اثرانگشت را ارائه می‌دهد، اما هیچ اثرانگشت‌خوانی تشخیص داده نشده است." - }, "PDF Reader": { "PDF Reader": "PDF خوان" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "حاشیه‌گذاری ساعات" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "ساعت با صفر ابتدا (02:00 یا 2:00)" - }, "Padding": { "Padding": "فاصله درونی" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "جفت شده" }, - "Pairing": { - "Pairing": "درحال جفت‌سازی" - }, "Pairing failed": { "Pairing failed": "جفت‌سازی ناموفق بود" }, - "Pairing request from": { - "Pairing request from": "درخواست جفت‌سازی از" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "درخواست جفت‌سازی فرستاده شد" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect دردسترس نیست" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "عدم دسترسی Phone Connect" - }, "Phone number": { "Phone number": "شماره تلفن" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "پینگ" }, - "Ping sent to": { - "Ping sent to": "پینگ فرستاده شد به" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "سنجاق شده" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "وقتی حجم صدا تنظیم شد صدا را پخش کن" }, - "Play sounds for system events": { - "Play sounds for system events": "برای رویداد‌های سیستمی صدا را پخش کن" - }, "Playback": { "Playback": "پخش" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "فایل‌های صوتی را باز می‌کند" }, - "Plays video files": { - "Plays video files": "فایل‌های ویدئو را پخش می‌کند" - }, "Please wait...": { "Please wait...": "لطفا صبر کنید..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "رفتار پاپ‌آپ، مکان" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "پورت" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "ذخیره انرژی" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "مدیریت پروفایل پاور در دسترس" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "منبع پاور" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "عرض‌های از پیش تعیین شده (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "برای ساخت یکی دکمه 'n' را فشار دهید یا بر «نشست جدید» کلیک کنید" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "زمینه اصلی" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "مدیریت سرور چاپ" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "چاپگر‌ها" }, - "Printers: ": { - "Printers: ": "چاپگر‌ها: " - }, "Prioritize performance": { "Prioritize performance": "اولویت با کارایی" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "فرایندها" }, - "Processes:": { - "Processes:": "فرایندها:" - }, "Processing": { "Processing": "درحال پردازش" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "پروتکل" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "حذف ادمین" }, - "Remove admin?": { - "Remove admin?": "ادمین حذف شود؟" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "گردی گوشه را از نوار حذف کن" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "تنظیم مجدد اندازه" }, - "Reset to Default?": { - "Reset to Default?": "به پیش‌فرض بازنشانده شود؟" - }, "Reset to default": { "Reset to default": "بازنشاندن به پیش‌فرض" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "زنگ زدن" }, - "Ringing": { - "Ringing": "درحال زنگ زدن" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "افکت موجی" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "قاعده" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "نام قاعده" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "قواعد (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "درحال ذخیره..." }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "بزرگنمایی" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "اسکن" }, - "Scanning": { - "Scanning": "درحال اسکن" - }, "Scanning...": { "Scanning...": "درحال اسکن..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "جستجو..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "درحال جستجو..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "امنیت و حریم خصوصی" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "حالت کلید امنیتی" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "مانیتور را برای پیکربندی تصویر پس‌زمینه انتخاب کنید" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "قلم monospace را برای فهرست فرایند‌ها و نمایشگر‌های فنی انتخاب کنید" }, "Select network": { "Select network": "انتخاب شبکه" }, - "Select system sound theme": { - "Select system sound theme": "انتخاب تم صدای سیستم" - }, "Select the font family for UI text": { "Select the font family for UI text": "خانواده قلم را برای متن UI انتخاب کنید" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "ارسال کلیپ‌بورد" }, - "Send File": { - "Send File": "ارسال فایل" - }, "Send SMS": { "Send SMS": "ارسال SMS" }, - "Sending": { - "Sending": "درحال ارسال" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "جدا" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "اشتراک‌گذاری تنظیمات کنترل گاما" }, - "Share Text": { - "Share Text": "اشتراک‌گذاری متن" - }, "Shared": { "Shared": "به اشتراک گذاشته شد" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "هنگام نمای کلی نیری نمایش بده" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "سطوح پیش‌زمینه را بر پنل‌های تار برای کنتراست قوی‌تر نمایش بده" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "پاپ‌آپ اعلان‌ها را فقط روی مانیتور فوکوس شده نمایش بده" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "اعلان‌ها را فقط روی مانیتور فعلی فوکوس‌شده نمایش بده" - }, "Show on Last Display": { "Show on Last Display": "نمایش در آخرین نمایشگر" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "فقط روی نمای کلی نمایش بده" }, - "Show on all connected displays": { - "Show on all connected displays": "نمایش همه نمایشگر‌های متصل" - }, "Show on screens:": { "Show on screens:": "نمایش روی صفحات:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "نمایشگر بر صفحه را هنگام تغییر روشنایی نمایش بده" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "نمایشگر بر صفحه را هنگام تغییر وضعیت قفل حروف بزرگ نمایش بده" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "نمایشگر بر صفحه را هنگام تغییر دستگاه‌های خروجی صوتی نمایش بده" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "نمایشگر بر صفحه را هنگام تغیر وضعیت مهارگر بیکاری نمایش بده" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "نمایشگر بر صفحه را هنگامی که وضعیت پخش‌کننده رسانه تغییر می‌کند نمایش بده" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "نمایشگر بر صفحه را هنگام تغییر حجم صدای پخش‌کننده رسانه نمایش بده" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "نمایشگر بر صفحه را هنگام بی‌صدا/صدادار شدن میکروفون نمایش بده" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "نمایشگر بر صفحه را هنگام تغییر پروفایل پاور نمایش بده" - }, - "Show on-screen display when volume changes": { - "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": "نوار را هنگامی که هیچ پنجره‌ای باز نیست نمایش بده" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "اطلاعات آب و هوا را در نوار بالا و مرکز کنترل نمایش بده" }, - "Show week number in the calendar": { - "Show week number in the calendar": "شماره هفته را در گاه‌شمار نمایش بده" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "شماره شاخص محیط‌‎کار را در تغییردهنده محیط‌کار نوار بالا نمایش بده" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "سیگنال:" - }, "Silence for a while": { "Silence for a while": "ساکت کردن برای مدتی" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "شروع" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "برنامه KDE Connect یا Valent را آغاز کنید" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "برنامه KDE Connect یا Valent را برای استفاده از این افزونه آغاز کنید" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "راه راه" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "خلاصه" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "ترمینال پشتیبان ناموفق بود. یکی از شبیه‌سازی ترمینال‌های پشتیبانی شده را نصب یا به صورت دستی 'dms greeter sync' را اجرا کنید." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "ترمینال پشتیبان باز شد. احراز هویت را آنجا کامل کنید؛ وقتی انجام شد بصورت خودکار بسته می‌شود." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "ترمینال پشتیبان باز شد. همگام‌سازی را آنجا کامل کنید؛ وقتی انجام شد بصورت خودکار بسته می‌شود." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "بک‌اند مالتی‌پلکسر ترمینال برای استفاده" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "ترمینال باز شد. راه‌اندازی احراز هویت را آنجا کامل کنید؛ بعد از انجام بصورت خودکار بسته خواهد شد." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "ترمینال باز شد. احراز هویت را آنجا کامل کنید؛ وقتی انجام شد به طور خودکار بسته می‌شود." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "ترمینال‌ها - همیشه از تم تاریک استفاده کن" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "نماپردازی متن" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "ابزار «dgop» برای نظارت سیستم نیاز است.\nلطفا برای استفاده از این قابلیت dgop را نصب کنید." }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "این ممکن است چند ثانیه طول بکشد" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "کاشی‌وار" }, - "Tile H": { - "Tile H": "کاشی‌وار افقی" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "کاشی‌وار عمودی" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "وقفه اعلان‌ها با اولویت حیاتی" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "وقفه اعلان‌ها با اولویت پایین" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "وقفه اعلان‌ها با اولویت عادی" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "اشباع سایه رنگ" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "شفافیت" }, - "Transparency of the border": { - "Transparency of the border": "شفافیت حاشیه" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "شفافیت لایه سایه" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "شفافیت خط دور ابزارک" - }, "Trash": { "Trash": "زباله‌دان" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "جداکردن از داک" }, - "Unsaved Changes": { - "Unsaved Changes": "تغییرات ذخیره نشده" - }, "Unsaved changes": { "Unsaved changes": "تغییرات ذخیره نشده" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "زمان اجرا" }, - "Uptime:": { - "Uptime:": "زمان اجرا:" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "از اندازه حاشیه سفارشی استفاده کن" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "از طول حاشیه/focus-ring سفارشی استفاده کن" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "استفاده از تم صدا در تنظیمات سیستم" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "از لایه overlay هنگام باز کردن لانچر استفاده کن" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "از مکان و اندازه یکسان بین تمامی نمایشگرها استفاده کن" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "هنگام قفل شدن" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "قواعد پنجره‌ها" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "دستور Include برای قواعد پنجره‌ها یافت نشد" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "قواعد پنجره‌ها پیکربندی نشده‌اند" - }, "Wipe": { "Wipe": "پاک کردن" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "محیط‌کار" }, - "Workspace Appearance": { - "Workspace Appearance": "نمای ظاهری محیط‌کار" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "شماره شاخص محیط‌کارها" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "فاصله درونی محیط‌کار" }, - "Workspace Settings": { - "Workspace Settings": "تنظیمات محیط‌کار" - }, "Workspace Switcher": { "Workspace Switcher": "تغییردهنده محیط‌کار" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "دیروز" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "شما تغییرات ذخیره نشده‌ دارید. آیا پیش از بستن این برگه ذخیره شوند؟" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "شما تغییرات ذخیره نشده‌ دارید. پیش از ادامه ذخیره شوند؟" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "شما تغییرات ذخیره نشده‌ دارید. پیش از ایجاد فایل جدید، ذخیره شوند؟" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "شما تغییرات ذخیره نشده‌ دارید. پیش از باز کردن فایل، ذخیره شوند؟" - }, "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.": { "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و پس از آن، شل را مجدداً راه‌اندازی کنید.\n\nبسته qt6ct نیازمند نصب qt6ct-kde است." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "سیستم شما بروز است!" }, - "actions": { - "actions": "اقدام‌ها" - }, "admin": { "admin": "ادمین" }, "attached": { "attached": "پیوست شد" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "براندون" }, @@ -9236,9 +8768,6 @@ "device": { "device": "دستگاه" }, - "devices connected": { - "devices connected": "دستگاه‌های متصل" - }, "dgop not available": { "dgop not available": "dgop در دسترس نیست" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "گیتهاب mangowc" }, - "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 دردسترس نیست یا غیرفعال است - اعمال رنگ‌های Qt ممکن نیست" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen یافت نشد - بسته matugen را برای تم پویا نصب کنید" @@ -9326,6 +8855,9 @@ "nav": { "nav": "پیمایش" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "گیتهاب نیری" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "در Sway" }, - "open": { - "open": "باز کردن" - }, "or run ": { "or run ": "یا اجرای " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profile-daemon دردسترس نیست" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "فرایند" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "نسخه %1 توسط %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "نصب فقط از منابع معتبر" }, diff --git a/quickshell/translations/poexports/fr.json b/quickshell/translations/poexports/fr.json index 5527ed882..84ac07f0c 100644 --- a/quickshell/translations/poexports/fr.json +++ b/quickshell/translations/poexports/fr.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "Vitesse d'animation %1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 sessions" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "" }, - "%1 custom animation duration": { - "%1 custom animation duration": "Durée d'animation personnalisée %1" - }, "%1 disconnected": { "%1 disconnected": "%1 déconnecté" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 écrans" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 existe mais n'est pas inclus. Les règles de fenêtres ne s'appliqueront pas." - }, "%1 filtered": { "%1 filtered": "%1 filtré" }, @@ -119,9 +116,6 @@ "'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.": "'Alternatif' laisse la clé se déverrouiller d'elle-même. 'Deux facteurs' nécessite un mot de passe ou une empreinte d'abord, puis la clé." }, - "(Default)": { - "(Default)": "(Par défaut)" - }, "(Unnamed)": { "(Unnamed)": "(Sans nom)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "Format 24 Heures" }, - "24-hour clock": { - "24-hour clock": "Horloge 24 heures" - }, "25 seconds": { "25 seconds": "25 secondes" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Après-midi" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Tous" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Authentification requise" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Échec de l’authentification, veuillez réessayer" - }, "Authorize": { "Authorize": "Autoriser" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Nettoyage automatique après" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Disponible dans les modes Vue détaillée et Prévisions" }, - "Available.": { - "Available.": "Disponible." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "" - }, "Background": { "Background": "Arrière-plan" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "Configurations de la barre" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Couleur de base pour les ombres (l'opacité est appliquée automatiquement)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Batterie %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Limite de charge de la batterie" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Gestion de la batterie et de l’alimentation" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Niveau de batterie et gestion de l'alimentation" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Lier l’écran de verrouillage aux signaux D-Bus de loginctl. À désactiver si un écran de verrouillage externe est utilisé." }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight 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.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Inclusion des raccourcis ajoutée" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Flouter la couche du fond d’écran" }, "Blur on Overview": { "Blur on Overview": "Flou dans la vue d’ensemble" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Couleur du bouton" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "Processeur" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Choisir la couleur du mode sombre" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Choisir la couleur du logo du Lanceur dans le Dock" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Choisir la couleur du logo du lanceur" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Choisissez comment cette barre gère la direction de l'ombre" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Choisir la couleur de fond des widgets" - }, - "Choose the border accent color": { - "Choose the border accent color": "Choisir la couleur d’accentuation de la bordure" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Choisir le logo affiché sur le bouton du lanceur dans la DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Cliquez sur “Configuration” pour créer %1 et l’ajouter aux inclusions de la configuration de votre compositeur." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Cliquez sur « Configurer » pour créer la configuration des sorties et l’inclure dans la configuration du compositeur." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Cliquez sur importer pour ajouter un fichier .ovpn ou .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Température de couleur pour la journée" - }, "Color temperature for night mode": { "Color temperature for night mode": "Température de couleur pour le mode nuit" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "La configuration sera conservée lorsque cet écran se reconnectera" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Configurer" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Connexion..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "Connexion échouée" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Contrôle la transparence des ombres" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Coins et arrière-plan" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "Nombre uniquement" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Créer une nouvelle %1 session (n)" - }, "Create rule for:": { "Create rule for:": "Créer règle pour :" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Personnalisé..." }, - "Custom: ": { - "Custom: ": "Personnalisé : " - }, "Customizable empty space": { "Customizable empty space": "Espace vide personnalisable" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Raccourcis DMS" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS obsolète" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "" }, - "Delete user?": { - "Delete user?": "" - }, "Demi Bold": { "Demi Bold": "" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Afficher les actions du menu d’alimentation sous forme de grille" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Afficher les secondes sur l’horloge" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Affichages" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Affiche le compteur lorsque le débordement est actif" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Affiche la disposition de clavier active et permet de la changer" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Visibilité du dock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "" }, - "Empty Trash?": { - "Empty Trash?": "" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Activer la profondeur de couleur 10 bits pour une gamme de couleurs étendue et la prise en charge du HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Activé" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Activé, mais la disponibilité de l'empreinte n'a pas pu être confirmée." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Activé, mais aucun lecteur d'empreintes n'a été détecté." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Activé, mais aucune empreinte n'a encore été enregistrée. Enregistrez une empreinte et exécutez la Synchro." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Activé, mais la disponibilité de la clé de sécurité n'a pas pu être confirmée." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Activé. PAM fourni déjà une authentification par empreinte." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Activé. PAM fourni déjà une authentification par clé de sécurité." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Activé. PAM fourni l'authentification par empreinte, mais aucune empreinte n'a encore été enregistrée." - }, "Enabling WiFi...": { "Enabling WiFi...": "Activation du Wi-Fi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Exact" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Décalage de zone exclusive" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Échec de l’ajout de l’imprimante à la classe" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Échec de l’activation du mode nuit" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Échec de l’analyse de plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Échec de l’analyse de session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Échec de l’analyse de settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Échec de la mise en pause de l’imprimante" @@ -3368,8 +3188,8 @@ "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.": "" }, - "File received from": { - "File received from": "Fichier reçu de" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "La recherche de fichiers nécessite dsearch\nInstallez-le depuis github.com/morelazers/dsearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "" }, - "For reading PDF files": { - "For reading PDF files": "" - }, "Force HDR": { "Force HDR": "Forcer le HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "" }, - "Grant admin?": { - "Grant admin?": "" - }, "Grant administrator privileges": { "Grant administrator privileges": "" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Greeter" }, - "Greeter Appearance": { - "Greeter Appearance": "Apparence du Greeter" - }, - "Greeter Behavior": { - "Greeter Behavior": "Comportement du Greeter" - }, - "Greeter Status": { - "Greeter Status": "État du Greeter" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Greeter activé. greetd est désormais activé." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Greeter seulement — n'affecte pas l'horloge principale" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Greeter seulement — format pour la date sur l'écran de verrouillage" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Serveur Discord Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Surcharges de disposition Hyprland" - }, "Hyprland Options": { "Hyprland Options": "Options Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Mot de passe incorrect" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Mot de passe incorrect - tentative %1 sur %2 (un verrouillage peut s'ensuivre)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Mot de passe incorrect - les prochains échecs pourraient activer le verrouillage du compte" - }, "Incorrect password - try again": { "Incorrect password - try again": "" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Tâches" }, - "Jobs: ": { - "Jobs: ": "Tâches : " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Surcharges de disposition" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "" - }, "Left": { "Left": "Gauche" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Régional" }, - "Locale Settings": { - "Locale Settings": "Paramètres régionaux" - }, "Location": { "Location": "Emplacement" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Écran de verrouillage" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Affichage de l’écran de verrouillage" - }, "Lock Screen Format": { "Lock Screen Format": "Format de l’écran de verrouillage" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Comportement de l’écran de verrouillage" - }, - "Lock Screen layout": { - "Lock Screen layout": "Disposition de l’écran de verrouillage" - }, "Lock at startup": { "Lock at startup": "Verrouillage au démarrage" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Délai de grâce avant le fondu du verrouillage" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "" }, - "Login Authentication": { - "Login Authentication": "Authentification lors de la connexion" - }, "Long": { "Long": "Long" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Gestion" }, - "Manages calendar events": { - "Manages calendar events": "" - }, "Manages files and directories": { "Manages files and directories": "" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Surcharges de disposition MangoWC" - }, "Manual": { "Manual": "Manuel" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Le maximum d'entrées épinglées a été atteint" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Taille maximale par élément du presse-papiers" - }, "Media": { "Media": "Média" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Lecteur multimédia" }, - "Media Player Settings": { - "Media Player Settings": "Paramètres du lecteur multimédia" - }, "Media Players (": { "Media Players (": "Lecteurs multimédias (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Mode" }, - "Mode:": { - "Mode:": "Mode :" - }, "Model": { "Model": "Modèle" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Taille du pointeur de la souris en pixels" }, - "Move": { - "Move": "Déplacer" - }, "Move Widget": { "Move Widget": "Déplacer le widget" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "" }, - "Multiplexer": { - "Multiplexer": "Multiplexeur" - }, "Multiplexer Type": { "Multiplexer Type": "Type de multiplexeur" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Moniteur de vitesse réseau" }, - "Network Status": { - "Network Status": "État du réseau" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Intégration Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Surcharges de disposition Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Actions du compositeur Niri (focus, déplacement, etc.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Aucun plugin trouvé" }, - "No plugins found.": { - "No plugins found.": "Aucun plugin trouvé." - }, "No printer found": { "No printer found": "Aucune imprimante trouvée" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Notifications contextuelles" }, - "Notification Rules": { - "Notification Rules": "Règles de notification" - }, "Notification Settings": { "Notification Settings": "Paramètres de notifications" }, - "Notification Timeouts": { - "Notification Timeouts": "Délais d’affichage des notifications" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Ajuster le gamma uniquement en fonction de l’heure ou de l’emplacement." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "" - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opacité" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "Opaque" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Ouvrir l'explorateur de fichiers" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" - }, "Opening terminal: ": { "Opening terminal: ": "Ouverture du terminal : " }, "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 the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM fourni déjà une authentification par clé de sécurité. Activez ceci pour l'afficher lors de la connexion." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM fourni l'authentification par empreinte, mais aucune empreinte n'a été encore enregistrée." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM fourni l'authentification par empreinte, mais aucun lecteur n'a été détecté." - }, "PDF Reader": { "PDF Reader": "" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Heures facturées" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "" - }, "Padding": { "Padding": "Marge" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Appairé" }, - "Pairing": { - "Pairing": "Connexion" - }, "Pairing failed": { "Pairing failed": "Échec de l’appairage" }, - "Pairing request from": { - "Pairing request from": "Demande d'appairage de" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Demande d'appairage envoyée" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Connexion au téléphone non disponible" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Connexion au téléphone indisponible" - }, "Phone number": { "Phone number": "Numéro de téléphone" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping envoyé à" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Épinglé" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Jouer un son lors du réglage du volume" }, - "Play sounds for system events": { - "Play sounds for system events": "Jouer les sons pour les événements système" - }, "Playback": { "Playback": "Lecture" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "" }, - "Plays video files": { - "Plays video files": "" - }, "Please wait...": { "Please wait...": "Veuillez patienter..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Comportement et position des notifications" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Port" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "Économie d'énergie" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Gestion du profil d’alimentation disponible" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Source d’alimentation" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Largeurs prédéfinies (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Appuyez sur 'n' ou cliquez sur 'Nouvelle session' pour en créer une" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Conteneur primaire" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Gestion du serveur d’impression" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Imprimantes" }, - "Printers: ": { - "Printers: ": "Imprimantes : " - }, "Prioritize performance": { "Prioritize performance": "Prioriser les performances" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Processus" }, - "Processes:": { - "Processes:": "Processus :" - }, "Processing": { "Processing": "Traitement en cours" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protocole" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "" }, - "Remove admin?": { - "Remove admin?": "" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Réinitialiser la taille" }, - "Reset to Default?": { - "Reset to Default?": "" - }, "Reset to default": { "Reset to default": "" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Faire sonner" }, - "Ringing": { - "Ringing": "En train de sonner" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Effets d'ondulation" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Règle" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Nom de la règle" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Règles (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Sauvegarde..." }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "Échelle" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Scanner" }, - "Scanning": { - "Scanning": "Scan en cours" - }, "Scanning...": { "Scanning...": "Scan en cours..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Rechercher..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "Recherche en cours..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Sécurité et confidentialité" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Mode clé de sécurité" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Sélectionner l'écran sur lequel configurer le fond d’écran" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Sélectionner la police monospace pour la liste des processus et les affichages techniques" }, "Select network": { "Select network": "Sélectionner réseau" }, - "Select system sound theme": { - "Select system sound theme": "Sélectionner le thème sonore du système" - }, "Select the font family for UI text": { "Select the font family for UI text": "Sélectionner la famille de polices pour le texte de l’interface" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Envoyer le presse-papier" }, - "Send File": { - "Send File": "Envoyer un fichier" - }, "Send SMS": { "Send SMS": "Envoyer SMS" }, - "Sending": { - "Sending": "Envoi" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Partager les réglages de contrôle Gamma" }, - "Share Text": { - "Share Text": "Partager le texte" - }, "Shared": { "Shared": "Partagé" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "" - }, "Show on Last Display": { "Show on Last Display": "Afficher sur le dernier écran" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Afficher uniquement dans l’aperçu" }, - "Show on all connected displays": { - "Show on all connected displays": "Afficher sur tous les écrans connectés" - }, "Show on screens:": { "Show on screens:": "Afficher sur les écrans :" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Afficher à l’écran lors du changement de luminosité" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Afficher à l’écran lors de l’activation/désactivation du verrouillage majuscules" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Afficher à l’écran lors du changement de périphériques audio" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Afficher à l’écran lors du changement de l’état du bloqueur d’inactivité" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Afficher l’OSD lors des changements d’état du lecteur multimédia" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Afficher à l’écran lors du changement de volume du lecteur multimédia" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Afficher à l’écran lorsque le microphone est coupé/rétabli" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Afficher à l’écran lors du changement du profil d’alimentation" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Afficher à l’écran lors du changement du volume" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Afficher les informations météo dans la barre supérieure et le centre de contrôle" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Afficher le numéro de semaine dans le calendrier" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Afficher les numéros des espaces de travail dans le sélecteur de la barre supérieure" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Signal :" - }, "Silence for a while": { "Silence for a while": "" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Démarrer" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Démarrer KDE Connect ou Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Démarrer KDE Connect ou Valent pour utiliser ce plugin" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Rayures" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "Résumé" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Forcer le mode sombre dans les terminaux" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "L'outil 'dgop' est requis pour la surveillance du système.\nVeuillez installer dgop pour utiliser cette fonctionnalité." }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Cela peut prendre quelques secondes" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Tuile" }, - "Tile H": { - "Tile H": "Tuile H" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "Tuile V" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Durée d’affichage des notifications critiques" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Durée d’affichage des notifications basse priorité" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Durée d’affichage des notifications priorité normale" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Transparence" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { "Trash": "" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Détacher du dock" }, - "Unsaved Changes": { - "Unsaved Changes": "Modifications non enregistrées" - }, "Unsaved changes": { "Unsaved changes": "Modifications non enregistrées" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Durée d'activité" }, - "Uptime:": { - "Uptime:": "Durée d'activité :" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Utiliser une taille de bordure personnalisée" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Utiliser une largeur de bordure/anneau de focus personnalisée" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Utiliser le thème sonore des paramètres système" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "Utiliser la même position et taille sur tous les écrans" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Une fois verrouillé" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Règles de fenêtre" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Inclusion des règles de fenêtre manquante" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Règles de fenêtres non configurées" - }, "Wipe": { "Wipe": "Effacer" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Espace de travail" }, - "Workspace Appearance": { - "Workspace Appearance": "Apparence de l’espace de travail" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Numéros des espaces de travail" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Marge des espaces de travail" }, - "Workspace Settings": { - "Workspace Settings": "Paramètres des espaces de travail" - }, "Workspace Switcher": { "Workspace Switcher": "Sélecteur d’espaces de travail" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Hier" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Vous avez des modifications non enregistrées. Enregistrer avant de fermer cet onglet ?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Vous avez des modifications non enregistrées. Enregistrer avant de continuer ?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Vous avez des modifications non enregistrées. Enregistrer avant de créer un nouveau fichier ?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Vous avez des modifications non enregistrées. Enregistrer avant d’ouvrir un fichier ?" - }, "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.": { "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.": "Vous devez définir soit :\nQT_QPA_PLATFORMTHEME=gtk3 OU\nQT_QPA_PLATFORMTHEME=qt6ct\ncomme variables d'environnement, puis redémarrer le shell.\n\nqt6ct nécessite que qt6ct-kde soit installé." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Votre système est à jour !" }, - "actions": { - "actions": "actions" - }, "admin": { "admin": "" }, "attached": { "attached": "attaché" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "appareil" }, - "devices connected": { - "devices connected": "appareils connectés" - }, "dgop not available": { "dgop not available": "dgop non disponible" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "Github mangowc" }, - "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 Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen introuvable – installez le paquet matugen pour le thème dynamique" @@ -9326,6 +8855,9 @@ "nav": { "nav": "nav" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "Github niri" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "sur Sway" }, - "open": { - "open": "ouvrir" - }, "or run ": { "or run ": "ou lancer " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon non disponible" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "procs" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 par %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Installez seulement à partir de source fiables" }, diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index a305ecd29..9d4077ad3 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "מהירות האנימציה ב%1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 הפעלות" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 הועתק/ו" }, - "%1 custom animation duration": { - "%1 custom animation duration": "משך אנימציה מותאם אישית ל%1" - }, "%1 disconnected": { "%1 disconnected": "%1 מנותק" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 מסכים" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 קיים אך אינו כלול. חוקי החלון לא יתקיימו." - }, "%1 filtered": { "%1 filtered": "%1 מסוננים" }, @@ -119,9 +116,6 @@ "'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.": "'חלופי' מאפשר למפתח לפתוח את הנעילה בעצמו. 'גורם שני' דורש קודם סיסמה או טביעת אצבע, ואז את המפתח." }, - "(Default)": { - "(Default)": "(ברירת מחדל)" - }, "(Unnamed)": { "(Unnamed)": "(ללא שם)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "תבנית 24 שעות" }, - "24-hour clock": { - "24-hour clock": "שעון 24 שעות" - }, "25 seconds": { "25 seconds": "25 שניות" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "אחר הצהריים" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "הכל" }, @@ -777,7 +771,7 @@ "Authenticate": "אימות" }, "Authenticated!": { - "Authenticated!": "" + "Authenticated!": "האימות הושלם!" }, "Authenticating...": { "Authenticating...": "מאמת..." @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "נדרש אימות" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "שינויי האימות הוחלו." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "שינויי אימות מוחלים באופן אוטומטי." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "שינויי אימות מוחלים באופן אוטומטי. התחברות באמצעות טביעת אצבע בלבד עשויה שלא לפתוח את צרור המפתחות." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "שינויי אימות דורשים להזדהות עם sudo. נפתח מסוף כדי שתוכל/י להשתמש בסיסמה או בטביעת אצבע." }, @@ -804,16 +798,13 @@ "Authentication error - try again": "שגיאת אימות - נסה/י שנית" }, "Authentication failed - attempt %1 of %2": { - "Authentication failed - attempt %1 of %2": "" + "Authentication failed - attempt %1 of %2": "האימות נכשל - ניסיון %1 מתוך %2" }, "Authentication failed - lockout can occur": { - "Authentication failed - lockout can occur": "" + "Authentication failed - lockout can occur": "האימות נכשל - עלולה להתרחש נעילה" }, "Authentication failed - try again": { - "Authentication failed - try again": "" - }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "האימות נכשל, נא לנסות שוב" + "Authentication failed - try again": "האימות נכשל - נסה/י שנית" }, "Authorize": { "Authorize": "אשר/י" @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "חיסכון אוטומטי בחשמל" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "מצב אוטומטי מתאים את הריווח לסרגל; מצב כבוי משאיר מרווחים לפי הגדרות הHyprland שלך" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "מצב אוטומטי מתאים את הריווח לסרגל; מצב כבוי משאיר מרווחים לפי הגדרות הMangoWC שלך" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "מצב אוטומטי מתאים את הריווח לסרגל; מצב כבוי משאיר מרווחים לפי הגדרות הniri שלך" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "מצב אוטומטי מופעל. בחירת פרופיל ידנית מושבתת." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "נשמר אוטומטית" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "ניקוי אוטומטי אחרי" }, @@ -983,17 +971,14 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "זמין כתצוגה מפורטת או תצוגה של התחזית" }, - "Available.": { - "Available.": "זמין." - }, "Awaiting fingerprint authentication": { - "Awaiting fingerprint authentication": "" + "Awaiting fingerprint authentication": "ממתין לאימות באמצעות טביעת אצבע" }, "Awaiting fingerprint or security key authentication": { - "Awaiting fingerprint or security key authentication": "" + "Awaiting fingerprint or security key authentication": "ממתין לאימות באמצעות טביעת אצבע או מפתח אבטחה" }, "Awaiting security key authentication": { - "Awaiting security key authentication": "" + "Awaiting security key authentication": "ממתין לאימות באמצעות מפתח אבטחה" }, "BSSID": { "BSSID": "BSSID" @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "Backends: %1" - }, "Background": { "Background": "רקע" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "סרגל %1" }, - "Bar Configurations": { - "Bar Configurations": "תצורות סרגלים" - }, "Bar Inset Padding": { "Bar Inset Padding": "ריווח פנימי של הסרגל" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "צל, מסגרת ופינות של הסרגל" }, - "Bar spacing and size": { - "Bar spacing and size": "ריווח וגודל הסרגל" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "צבע בסיס לצללים (שקיפות מוחלת אוטומטית)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "סוללה %1" }, - "Battery Alerts": { - "Battery Alerts": "התראות סוללה" - }, "Battery Charge Limit": { "Battery Charge Limit": "מגבלה טעינה לסוללה" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "מתח סוללה" }, - "Battery Protection": { - "Battery Protection": "הגנת סוללה" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "הגנה וטעינת סוללה" - }, - "Battery Status": { - "Battery Status": "מצב סוללה" - }, "Battery and power management": { "Battery and power management": "ניהול סוללה וחשמל" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "הסוללה עומדת על %1% - כדאי להטעין בקרוב" }, - "Battery level and power management": { - "Battery level and power management": "רמת סוללה וניהול חשמל" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "אחוז סוללה להפעלת התראה קריטית." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "מקשר את מסך הנעילה לאותות D-Bus מloginctl. יש להשבית אם משתמשים במסך נעילה חיצוני." }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "קשר/י את פעולת הIPC של spotlight בהגדרות הקומפוזיטור שלך." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "קשר/י את פעולת הIPC של spotlight-bar בהגדרות הקומפוזיטור שלך." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "קובץ includes של קיצורי מקלדת נוסף" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "טשטוש" }, - "Blur Border Color": { - "Blur Border Color": "צבע מסגרת הטשטוש" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "שקיפות מסגרת הטשטוש" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "שכבת טשטוש לתמונת הרקע" }, "Blur on Overview": { "Blur on Overview": "טשטוש בסקירה" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "טשטש/י את הרקע מאחורי סרגלים, חלונות קופצים, מודלים והתראות. דורש תמיכה והגדרה של הקומפוזיטור." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "טשטש/י את הרקע מאחורי סרגלים, חלונות קופצים, מודלים והתראות. דורש תמיכה של הקומפוזיטור. התאם/י את השקיפות בהתאם." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "רוחב המסגרת" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "צבע המסגרת סביב משטחים מטושטשים" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "צבע המסגרת מסביב לחלונות קופצים, מודלים, ומשטחי מעטפת אחרים" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "צבע כפתור" }, - "By %1": { - "By %1": "מאת %1" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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.": "בדוק/בדקי את מצב הסנכרון לפי דרישה. סנכרון (מלא) מיועד למנהל/ת הראשי/ת: הסנכרון מעתיק את ערכת הנושא שלך למסך ההתחברות ומגדיר את תצורת הgreeter של המערכת. במערכות מרובות משתמשים, הוסף/י חשבונות אחרים תחת הגדרות → משתמשים, ולאחר מכן בקש/י מכל אחד מהם להריץ dms greeter sync --profile לאחר התנתקות והתחברות מחדש - לא סנכרון מלא. שינויי אימות מוחלים באופן אוטומטי." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "בדוק/בדקי את הפקודה המותאמת אישית שלך בהגדרות → Dock → אשפה." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "בחר/י צבע למצב כהה" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "בחר/י צבע לוגו למשגר Dock" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "בחר/י צבע לוגו למשגר" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "בחר/י לאיזה כיוון יופנה הצל על הסרגל הזה" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "בחר/י כיצד לקבל התראות על הסוללה." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "בחר/י כיצד לקבל התראות על סוללה קריטית." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "בחר/י טקסט ווידג׳ט נייטרלי או בצבע ההדגשה" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "בחר/י את צבע הרקע לווידג׳טים" - }, - "Choose the border accent color": { - "Choose the border accent color": "בחר/י את צבע ההדגשה של המסגרת" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "בחר/י את הלוגו המוצג על כפתור המשגר בDank Bar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "לחץ/י על 'התקנה' כדי ליצור את %1 ולכלול אותו בהגדרות הקומפוזיטור שלך." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "לחץ/י על 'התקנה' כדי ליצור קובץ הגדרה לפלט התצוגה ולכול אותו בהגדרות הקומפוזיטור שלך." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "לחץ/י על ייבוא כדי להוסיף קובץ ovpn. או conf." }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "הצבע שמוצג באזורים שאינם מכוסים על ידי תמונת הרקע" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "הצבע שמוצג באזורים שאינם מכוסים על ידי תמונת הרקע (לדוגמה במצבי 'התאמה' או 'ריפוד')" - }, - "Color temperature for day time": { - "Color temperature for day time": "טמפרטורת צבע לשעות היום" - }, "Color temperature for night mode": { "Color temperature for night mode": "טמפרטורת צבע למצב לילה" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "ההגדרות יישמרו כאשר מסך זה יתחבר מחדש" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "הגדר/י" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "מתחבר..." }, - "Connecting…": { - "Connecting…": "מתחבר…" - }, "Connection failed": { "Connection failed": "החיבור נכשל" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "שולט בשקיפות של משטחי המעטפת, חלונות קופצים ומודלים" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "שולט בשקיפות של רקע הסרגל" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "שולט בשקיפות של המסגרת" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "שולט בשקיפות של שכבת הצל" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "שולט בשקיפות של קווי המתאר בווידג׳ט" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "שולט בשקיפות של רקעי הווידג׳טים" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "שולט בקווי המתאר מסביב לכרטיסי רקע קדמי מטושטשים, כפתורים וכרטיסי התראות" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "שולט בקווי המתאר מסביב לכרטיסי רקע קדמי, כפתורים וכרטיסי התראות" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "שולט ברדיוס הטשטוש הבסיסי ובהיסט של הצללים" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "שולט בשקיפות של הצל" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "שולט בקצה החיצוני של חלונות המטושטשים על ידי הפרוטוקול" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "שולט בקווי המתאר של חלונות קופצים, מודלים ומשטחי מעטפת אחרים" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "שולט בשקיפות הצל" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "אפשרויות נוחות למסך ההתחברות. הרץ/י סנכרון כדי להחיל." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "פינות ורקע" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "לא ניתן היה לפתוח מסוף עבור עדכון ההתחברות האוטומטית." - }, "Count Only": { "Count Only": "ספירה בלבד" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "צור/צרי הפעלה חדשה של %1 (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "צור/צרי הפעלה חדשה של %1 (n)" - }, "Create rule for:": { "Create rule for:": "צור/צרי חוק עבור:" }, @@ -2175,7 +2061,7 @@ "Custom command and terminal params are split on whitespace; paths with spaces will break.": "פקודה מותאמת אישית ופרמטרים של המסוף מפוצלים על ידי רווחים, נתיבים הכוללים רווחים ישברו." }, "Custom interval in minutes (minimum 5)": { - "Custom interval in minutes (minimum 5)": "" + "Custom interval in minutes (minimum 5)": "מרווח זמן מותאם אישית בדקות (מינימום 5)" }, "Custom open-trash command": { "Custom open-trash command": "פקודה מותאמת אישית לפתיחת האשפה" @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "מותאם אישית..." }, - "Custom: ": { - "Custom: ": "מותאם אישית: " - }, "Customizable empty space": { "Customizable empty space": "רווח ריק הניתן להתאמה" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "קיצורי DMS" }, - "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 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 דורש הרשאות מנהל מערכת. המסוף ייסגר אוטומטית בסיום." - }, "DMS out of date": { "DMS out of date": "הDMS לא מעודכן" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "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)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "מחק/י משתמש/ת" }, - "Delete user?": { - "Delete user?": "למחוק את המשתמש/ת?" - }, "Demi Bold": { "Demi Bold": "חצי מודגש" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "הצג/י את פעולות תפריט הכיבוי ברשת במקום ברשימה" }, - "Display seconds in the clock": { - "Display seconds in the clock": "הצג/י שניות בשעון" - }, "Display setup failed": { "Display setup failed": "הגדרת התצוגה נכשלה" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "מסכים" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "מציג ספירה כאשר הגלישה פעילה" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "מציג את פריסת המקלדת הפעילה ומאפשר להחליף בין פריסות" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "שקיפות הDock" }, - "Dock Visibility": { - "Dock Visibility": "נראות הDock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "שוליים, שקיפות ומסגרת של הDock" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "שוליים, שקיפות ומסגרת הDock" - }, "Dock window": { "Dock window": "עגן/י חלון" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "רוקן/י אשפה (%1)" }, - "Empty Trash?": { - "Empty Trash?": "לרוקן אשפה?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "הפעל/י עומק צבע של 10 סיביות לסולם צבעים רחב יותר עם תמיכה בHDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "מופעל" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "מופעל, אך לא ניתן היה לאשר את זמינות טביעת האצבע." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "מופעל, אך לא זוהה קורא טביעות אצבע." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "מופעל, אך אין טביעות אצבע רשומות עדיין. שינויי אימות מוחלים באופן אוטומטי לאחר רישום טביעות אצבע." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "מופעל, אך אין טביעות אצבע רשומות עדיין. רשום/י טביעות אצבע והרץ/י את הסנכרון." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "מופעל, אך לא נמצא מפתח אבטחה רשום עדיין. שינויי אימות מוחלים באופן אוטומטי לאחר רישום המפתח שלך או עדכון תצורת ה-U2F שלך." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "מופעל, אך לא נמצא מפתח אבטחה רשום עדיין. רשום/י מפתח והרץ/י את הסנכרון." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "מופעל, אך לא ניתן היה לאמת את זמינות מפתח האבטחה." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "מופעל. PAM כבר מספק אימות באמצעות טביעת אצבע." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "מופעל. PAM כבר מספק אימות באמצעות מפתח אבטחה." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "מופעל. PAM מספק אימות באמצעות טביעת אצבע, אך אין טביעות אצבע רשומות עדיין." - }, "Enabling WiFi...": { "Enabling WiFi...": "מפעיל WiFi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "מדויק" }, - "Excluded Media Players": { - "Excluded Media Players": "נגני מדיה לא נכללים" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "היסט האזור הבלעדי" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "הוספת המדפסת לסוג נכשלה" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "החלת צבעי GTK נכשלה" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "החלת צבעי Qt נכשלה" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "החלת מגבלת הטעינה על המערכת נכשלה" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "הפעלת מצב לילה נכשלה" }, - "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": "קבלת קוד QR של הרשת נכשלה: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "העברה לאשפה נכשלה" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "הקריאה של הקובץ plugin_settings.json נכשלה" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "הקריאה של הקובץ session.json נכשלה" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "הקריאה של הקובץ settings.json נכשלה" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "השהיית המדפסת נכשלה" @@ -3368,8 +3188,8 @@ "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.": "מנהל הקבצים שבו נעשה שימוש כדי לפתוח את האשפה. בחר/י \"מותאם אישית\" כדי להזין פקודה משלך." }, - "File received from": { - "File received from": "התקבל קובץ מ" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "חיפוש קבצים הכלי dsearch נדרש כדי לבצע חיפוש של קבצים.\nהתקן/י אותו מ: github.com/morelazers/dsearch" @@ -3435,7 +3255,7 @@ "Flags": "דגלים" }, "Flatpak": { - "Flatpak": "" + "Flatpak": "Flatpak" }, "Flipped": { "Flipped": "הפוך" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "לעריכת קובצי טקסט פשוט" }, - "For reading PDF files": { - "For reading PDF files": "לקריאת קובצי PDF" - }, "Force HDR": { "Force HDR": "אלץ/י HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "מרווחים" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "יצירת דריסה" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "הענק/י" }, - "Grant admin?": { - "Grant admin?": "להעניק הרשאת ניהול?" - }, "Grant administrator privileges": { "Grant administrator privileges": "הענק/י הרשאות לניהול המערכת" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "מסך ההתחברות" }, - "Greeter Appearance": { - "Greeter Appearance": "המראה של מסך ההתחברות" - }, - "Greeter Behavior": { - "Greeter Behavior": "התנהגות מסך ההתחברות" - }, - "Greeter Status": { - "Greeter Status": "מצב מסך ההתחברות" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "מסך ההתחברות הופעל. greetd פועל כעת כמנהל התצוגה." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "קבוצת greeter:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "במסך ההתחברות בלבד - ללא השפעה על השעון הראשי" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "במסך ההתחברות בלבד - תבנית לתאריך שמופיע בכניסה" }, @@ -3852,7 +3657,7 @@ "Groups": "קבוצות" }, "H": { - "H": "" + "H": "גובה" }, "HDR (EDID)": { "HDR (EDID)": "HDR (EDID)" @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "שרת הDiscord של Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "דריסות פריסה של Hyprland" - }, "Hyprland Options": { "Hyprland Options": "אפשרויות Hyprland" }, @@ -4149,22 +3951,22 @@ "Ignore Completely": "התעלם/י לחלוטין" }, "Ignore package": { - "Ignore package": "" + "Ignore package": "התעלמות מהחבילה" }, "Ignore this package": { - "Ignore this package": "" + "Ignore this package": "התעלם/י מחבילה זו" }, "Ignored (%1)": { - "Ignored (%1)": "" + "Ignored (%1)": "בהתעלמות (%1)" }, "Ignored Packages": { - "Ignored Packages": "" + "Ignored Packages": "חבילות בהתעלמות" }, "Ignored packages are hidden from the updater and skipped by 'Update All'.": { - "Ignored packages are hidden from the updater and skipped by 'Update All'.": "" + "Ignored packages are hidden from the updater and skipped by 'Update All'.": "חבילות בהתעלמות מוסתרות ממערכת העדכונים ומדלגים עליהן בעת לחיצה על 'עדכן/י הכל'." }, "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.": { - "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.": "" + "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.": "חבילות בהתעלמות חלות רק על מערכת העדכונים המובנית. הפקודה המותאמת אישית שלך שולטת בהחרגות שלה." }, "Image": { "Image": "תמונה" @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "סיסמה שגויה" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "סיסמה שגויה - ניסיון %1 מתוך %2 (עלולה להתרחש נעילה)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "סיסמה שגויה - כשלונות נוספים עלולים לגרום לנעילת החשבון" - }, "Incorrect password - try again": { "Incorrect password - try again": "סיסמה שגויה - נסה/י שנית" }, @@ -4347,7 +4143,7 @@ "Invalid configuration": "הגדרה לא חוקית" }, "Invalid package name — letters, digits and @._+:- only.": { - "Invalid package name — letters, digits and @._+:- only.": "" + "Invalid package name — letters, digits and @._+:- only.": "שם חבילה לא חוקי - אותיות, ספרות והתווים @._+:- בלבד." }, "Invalid password for %1": { "Invalid password for %1": "סיסמה שגויה עבור %1" @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "עבודות" }, - "Jobs: ": { - "Jobs: ": "עבודות: " - }, "Join video call": { "Join video call": "הצטרף/י לשיחת וידאו" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "דריסות פריסה" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "פריסה ומיקומי מודולים במסך ההתחברות מסונכרנים מהמעטפת שלך (לדוגמה, הגדרות הסרגל). הרץ/י סנכרון כדי להחיל." - }, "Left": { "Left": "שמאל" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "שפה ואזור" }, - "Locale Settings": { - "Locale Settings": "הגדרות אזוריות" - }, "Location": { "Location": "מיקום" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "מסך הנעילה" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "מראה מסך הנעילה" - }, - "Lock Screen Display": { - "Lock Screen Display": "תצוגת מסך הנעילה" - }, "Lock Screen Format": { "Lock Screen Format": "תבנית מסך הנעילה" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "התנהגות מסך הנעילה" - }, - "Lock Screen layout": { - "Lock Screen layout": "פריסת מסך הנעילה" - }, "Lock at startup": { "Lock at startup": "נעילה בעת ההפעלה" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "תקופת חסד לדהייה של מסך הנעילה" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "שינויי אימות למסך הנעילה מוחלים באופן אוטומטי ועשויים לפתוח מסוף כאשר נדרש אימות עם sudo." - }, "Lock screen font": { "Lock screen font": "גופן מסך הנעילה" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "התחברות" }, - "Login Authentication": { - "Login Authentication": "הזדהות בכניסה" - }, "Long": { "Long": "ארוך" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "מנוהל על ידי המסגרת במצב ״מחובר״" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "ניהול" }, - "Manages calendar events": { - "Manages calendar events": "לניהול אירועים ביומן" - }, "Manages files and directories": { "Manages files and directories": "לניהול קבצים ותיקיות" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "שירות Mango אינו זמין" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "דריסות פריסה של MangoWC" - }, "Manual": { "Manual": "ידני" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "הושג מקסימום רשומות מוצמדות" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "גודל מקסימלי לרשומת לוח ההעתקה" - }, "Media": { "Media": "מדיה" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "נגן מדיה" }, - "Media Player Settings": { - "Media Player Settings": "הגדרות נגן המדיה" - }, "Media Players (": { "Media Players (": "נגני מדיה (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "מצב" }, - "Mode:": { - "Mode:": "מצב:" - }, "Model": { "Model": "דגם" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "גודל סמן העכבר בפיקסלים" }, - "Move": { - "Move": "הזז/י" - }, "Move Widget": { "Move Widget": "הזזת הווידג׳ט" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "מולטימדיה" }, - "Multiplexer": { - "Multiplexer": "מרבב" - }, "Multiplexer Type": { "Multiplexer Type": "סוג המרבב" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "מנטר מהירות רשת" }, - "Network Status": { - "Network Status": "מצב רשת" - }, "Network Type": { "Network Type": "סוג רשת" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "אינטגרציה עם niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "דריסות פריסה של niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "פעולות קומפוזיטור של niri (מיקוד, הזזה וכו')" }, @@ -5451,7 +5196,7 @@ "No output devices found": "לא נמצאו התקני פלט" }, "No packages ignored. Add one here or hover an update in the popout and click the hide button.": { - "No packages ignored. Add one here or hover an update in the popout and click the hide button.": "" + "No packages ignored. Add one here or hover an update in the popout and click the hide button.": "אין חבילות בהתעלמות. הוסף/י אחת כאן או באמצעות ריחוף מעל עדכון בחלון הקופץ ולחיצה על כפתור ההסתרה." }, "No peers found": { "No peers found": "לא נמצאו עמיתים" @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "לא נמצאו תוספים" }, - "No plugins found.": { - "No plugins found.": "לא נמצאו תוספים." - }, "No printer found": { "No printer found": "לא נמצאה מדפסת" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "חלוניות התראה קופצות" }, - "Notification Rules": { - "Notification Rules": "חוקי התראות" - }, "Notification Settings": { "Notification Settings": "הגדרות התראות" }, - "Notification Timeouts": { - "Notification Timeouts": "הקצבת זמן להתראות" - }, "Notification Type": { "Notification Type": "סוג התראה" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "כוונן/י את הגאמה רק לפי כללי זמן או מיקום." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "משפיע רק על PAM המנוהל על ידי DMS. אם greetd כבר כולל את pam_fprintd, טביעת האצבע תישאר מופעלת." - }, "Only on Battery": { "Only on Battery": "רק בעת שימוש בסוללה" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "שקיפות" }, - "Opacity of the bar background": { - "Opacity of the bar background": "שקיפות של רקע הסרגל" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "שקיפות של רקעי הווידג׳טים" - }, "Opaque": { "Opaque": "אטום" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "פותח דפדפן קבצים" }, - "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 image files": { - "Opens image files": "לפתיחת קבצי תמונות" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "פותח את המשגר המחובר במצב מסגרת מחוברת." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM כבר מספק אימות באמצעות מפתח אבטחה. הפעל/י את ההזדהות כדי להציג אותה בכניסה." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM מספק אימות באמצעות טביעת אצבע, אך לא ניתן היה לאמת את הזמינות." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM מספק אימות באמצעות טביעת אצבע, אך אין טביעות אצבע רשומות עדיין." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM מספק אימות באמצעות טביעת אצבע, אך לא זוהה קורא טביעות אצבע." - }, "PDF Reader": { "PDF Reader": "קורא PDF" }, @@ -5937,7 +5649,7 @@ "PIN": "קוד PIN" }, "Package name (e.g., docker)": { - "Package name (e.g., docker)": "" + "Package name (e.g., docker)": "שם החבילה (לדוגמה docker)" }, "Pad": { "Pad": "ריפוד" @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "ריפוד שעות" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "ריפוד שעות (02:00 לעומת 2:00)" - }, "Padding": { "Padding": "ריווח פנימי" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "מותאם" }, - "Pairing": { - "Pairing": "צימוד בתהליך" - }, "Pairing failed": { "Pairing failed": "הצימוד נכשל" }, - "Pairing request from": { - "Pairing request from": "בקשת צימוד מ" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "בקשת צימוד נשלחה" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect לא זמין" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Phone Connect לא זמין" - }, "Phone number": { "Phone number": "מספר טלפון" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "פינג" }, - "Ping sent to": { - "Ping sent to": "פינג נשלח ל" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "מוצמד" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "ניגון צליל בעת שינוי עוצמת השמע" }, - "Play sounds for system events": { - "Play sounds for system events": "ניגון צלילים לאירועי מערכת" - }, "Playback": { "Playback": "השמעה" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "לניגון קבצי שמע" }, - "Plays video files": { - "Plays video files": "לניגון קבצי וידאו" - }, "Please wait...": { "Please wait...": "אנא המתן/י..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "התנהגות ומיקום חלונות קופצים" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "פורט" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "פרופילי חשמל וחיסכון" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "החלפה אוטומטית של פרופילי חשמל" - }, "Power Saver": { "Power Saver": "חיסכון בחשמל" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "ניהול פרופיל חשמל זמין" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "פרופיל החשמל שבו ייעשה שימוש כאשר מחובר לחשמל (AC)." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "פרופיל החשמל שבו ייעשה שימוש כאשר פועל על סוללה." - }, "Power source": { "Power source": "מקור חשמל" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "רוחבים מוגדרים מראש (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "לחץ/י על 'n' במקלדת או על הכפתור 'הפעלה חדשה' כדי ליצור אחת" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "לחץ/י על Ctrl+N או על הכפתור 'הפעלה חדשה' כדי ליצור אחת" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "מיכל ראשי" }, - "Primary Theme Color": { - "Primary Theme Color": "צבע ערכת הנושא הראשי" - }, "Print Server Management": { "Print Server Management": "ניהול שרת הדפסה" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "מדפסות" }, - "Printers: ": { - "Printers: ": "מדפסות: " - }, "Prioritize performance": { "Prioritize performance": "עדיפות לביצועים" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "תהליכים" }, - "Processes:": { - "Processes:": "תהליכים:" - }, "Processing": { "Processing": "מעבד" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "פרופיל בעת שימוש בסוללה" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "פרוטוקול" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "הסר/י מנהל/ת" }, - "Remove admin?": { - "Remove admin?": "להסיר מנהל/ת?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "הסר/י עיגול פינות מהסרגל" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "אפס/י גודל" }, - "Reset to Default?": { - "Reset to Default?": "לאפס לברירת מחדל?" - }, "Reset to default": { "Reset to default": "איפוס לברירת מחדל" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "צלצל/י" }, - "Ringing": { - "Ringing": "מצלצל" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "אפקטי אדווה" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "חוק" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "שם חוק" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "חוקים (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "שומר/ת..." }, - "Saving…": { - "Saving…": "שומר…" - }, "Scale": { "Scale": "קנה מידה" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "סריקה" }, - "Scanning": { - "Scanning": "סורק" - }, "Scanning...": { "Scanning...": "סורק..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "חיפוש..." }, - "Searching": { - "Searching": "מחפש" - }, "Searching...": { "Searching...": "מחפש..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "אבטחה ופרטיות" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "מצב מפתח אבטחה" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "בחר/י תמונת רקע למסך הנעילה" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "בחר/י מסך להגדרת הרקע" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "בחר/י גופן ברוחב קבוע לרשימת תהליכים ותצוגות טכניות" }, "Select network": { "Select network": "בחר/י רשת" }, - "Select system sound theme": { - "Select system sound theme": "בחר/י את ערכת הצלילים של המערכת" - }, "Select the font family for UI text": { "Select the font family for UI text": "בחר/י גופן לטקסט ממשק המשתמש" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "שלח/י לוח ההעתקה" }, - "Send File": { - "Send File": "שלח/י קובץ" - }, "Send SMS": { "Send SMS": "שלח/י SMS" }, - "Sending": { - "Sending": "שולח" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "נפרד" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "הגדר/י את גודל הגופן לטקסט גוף ההתראה (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "הגדר/י את גודל הגופן לטקסט תקציר ההתראה" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "הגדר/י את האחוז שבו הסוללה תיחשב כחלשה." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "שיתוף ההגדרות עם בקרת גאמה" }, - "Share Text": { - "Share Text": "שתף/י טקסט" - }, "Shared": { "Shared": "שותף" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "הצג/י במהלך הסקירה של niri" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "הצג/י משטחים קדמיים על פאנלים מטושטשים לניגודיות חזקה יותר" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "הצג/י משטחים קדמיים על פאנלים עבור ניגודיות חזקה יותר" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "הצג/י נתיב עגינה" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "הצג/י חלונות קופצים של התראות רק במסך הממוקד כעת" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "הצג/י התראות רק במסך הממוקד כעת" - }, "Show on Last Display": { "Show on Last Display": "הצג/י במסך האחרון" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "הצגה בסקירה בלבד" }, - "Show on all connected displays": { - "Show on all connected displays": "הצג/י בכל המסכים המחוברים" - }, "Show on screens:": { "Show on screens:": "הצג/י במסכים:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "הצג/י תצוגה על המסך (OSD) כאשר הבהירות משתנה" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "הצג/י תצוגה על המסך (OSD) כאשר מצב Caps Lock משתנה" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "הצג/י תצוגה על המסך (OSD) בעת מעבר בין התקני פלט של שמע" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "הצג/י תצוגה על המסך (OSD) כאשר מצב מונע ההמתנה משתנה" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "הצג/י תצוגה על המסך (OSD) כאשר מצב נגן המדיה משתנה" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "הצג/י תצוגה על המסך (OSD) כאשר עוצמת השמע בנגן המדיה משתנה" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "הצג/י תצוגה על המסך (OSD) כאשר המיקרופון מושתק/מופעל" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "הצג/י תצוגה על המסך (OSD) כאשר פרופיל החשמל משתנה" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "הצג/י תצוגה על המסך (OSD) כאשר עוצמת השמע משתנה" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "הצג/י את הסרגל רק כאשר אין חלונות פתוחים" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "הצג/י מידע על מזג האוויר בסרגל העליון ובמרכז הבקרה" }, - "Show week number in the calendar": { - "Show week number in the calendar": "הצג/י מספר שבוע בלוח השנה" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "הצג/י את מספרי האינדקס של סביבות העבודה במחליף סביבת העבודה שבסרגל העליון" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "עוצמת קליטה" }, - "Signal:": { - "Signal:": "אות:" - }, "Silence for a while": { "Silence for a while": "השתק/י לזמן מה" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "התחל/י" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "הפעל/י KDE Connect או Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "הפעל/י KDE Connect או Valent כדי להשתמש בתוסף זה" }, @@ -7812,7 +7425,7 @@ "Status": "מצב" }, "Stop ignoring %1": { - "Stop ignoring %1": "" + "Stop ignoring %1": "הפסק/י להתעלם מ-%1" }, "Stopped": { "Stopped": "נעצר" @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "פסים" }, - "Subtle Overlay": { - "Subtle Overlay": "שכבת כיסוי עדינה" - }, "Summary": { "Summary": "סיכום" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "המעבר למסוף כגיבוי נכשל. התקן/י את אחד מיישומי המסוף הנתמכים או הרץ/י את הפקודה 'dms greeter sync' באופן ידני." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "נפתח מסוף כגיבוי. השלם/השלימי את הגדרת האימות שם, הוא ייסגר אוטומטית בסיום." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "נפתח מסוף כגיבוי. השלם/השלימי את הסנכרון שם. הוא ייסגר אוטומטית בסיום." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "הbackend של מרבב המסוף שברצונך להשתמש בו" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "המסוף נפתח. השלם/השלימי את הגדרת האימות שם, הוא ייסגר אוטומטית בסיום." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "המסוף נפתח. השלם/השלימי את אימות הסנכרון שם. הוא ייסגר אוטומטית בסיום." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "השתמש/י תמיד בערכת נושא כהה במסופים" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "רינדור טקסט" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "הכלי 'boregard' אינו מותקן או אינו נמצא בPATH שלך.\n\nהתקן/י אותו מhttps://danklinux.com, ולאחר מכן הפעל/י מחדש תוסף זה." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "כלי 'dgop' נדרש לניטור מערכת.\nאנא התקן/י dgop כדי להשתמש בתכונה זו." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "התקנה זו עדיין משתמשת ב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.": "התקנה זו עדיין משתמשת בhyprland.conf. הרץ/י dms setup כדי להעביר את ההגדרות לפני עריכת הגדרות התצוגה." - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "התקנה זו עדיין משתמשת ב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.": "התקנה זו עדיין משתמשת בhyprland.conf. הרץ/י dms setup כדי להעביר את ההגדרות לפני עריכת חוקי החלון בהגדרות." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "זה עשוי לקחת מספר שניות" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "ריצוף" }, - "Tile H": { - "Tile H": "ריצוף אופקי" - }, "Tile Horizontally": { "Tile Horizontally": "ריצוף אופקי" }, - "Tile V": { - "Tile V": "ריצוף אנכי" - }, "Tile Vertically": { "Tile Vertically": "ריצוף אנכי" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "פס התקדמות של הזמן הקצוב" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "הזמן שמוקצב להתראות בעדיפות קריטית" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "הזמן שמוקצב להתראות בעדיפות נמוכה" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "הזמן שמוקצב להתראות בעדיפות רגילה" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "רוויית הגוון" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "שקיפות" }, - "Transparency of the border": { - "Transparency of the border": "שקיפות של המסגרת" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "שקיפות של שכבת הצל" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "שקיפות של קו המתאר של הווידג׳ט" - }, "Trash": { "Trash": "אשפה" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "בטל/י נעיצה על הDock" }, - "Unsaved Changes": { - "Unsaved Changes": "שינויים שלא נשמרו" - }, "Unsaved changes": { "Unsaved changes": "שינויים שלא נשמרו" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "זמן פעילות" }, - "Uptime:": { - "Uptime:": "זמן פעילות:" - }, "Urgent": { "Urgent": "דחוף" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "השתמש/י בצבעים שחולצו מעטיפת האלבום במקום בצבעי ערכת הנושא של המערכת" }, - "Use custom border size": { - "Use custom border size": "השתמש/י בגודל מסגרת מותאם אישית" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "השתמש/י ברוחב מסגרת/טבעת מיקוד מותאם אישית" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "השתמש/י בערכת הצלילים מהגדרות המערכת" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "השתמש/י באותו מיקום וגודל בכל המסכים" }, @@ -8910,7 +8466,7 @@ "Votes": "הצבעות" }, "W": { - "W": "" + "W": "רוחב" }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "כאשר נעול" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "לבן" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "חוקי חלון" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "קובץ includes של חוקי חלון חסר" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "חוקי חלון אינם מוגדרים" - }, "Wipe": { "Wipe": "ניגוב" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "סביבת עבודה" }, - "Workspace Appearance": { - "Workspace Appearance": "המראה של סביבות העבודה" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "מספרי אינדקס של סביבות העבודה" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "ריווח סביבת העבודה" }, - "Workspace Settings": { - "Workspace Settings": "הגדרות סביבות העבודה" - }, "Workspace Switcher": { "Workspace Switcher": "מחליף סביבות העבודה" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "אתמול" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "יש לך שינויים שלא נשמרו. האם ברצונך לשמור אותם לפני סגירת הכרטיסייה הזו?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "יש לך שינויים שלא נשמרו. האם ברצונך לשמור אותם לפני שממשיכים?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "יש לך שינויים שלא נשמרו. האם ברצונך לשמור לפני יצירת קובץ חדש?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "יש לך שינויים שלא נשמרו. האם ברצונך לשמור לפני פתיחת קובץ?" - }, "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.": { "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." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "המערכת שלך מעודכנת!" }, - "actions": { - "actions": "פעולות" - }, "admin": { "admin": "admin" }, "attached": { "attached": "מחובר" }, - "boregard is required": { - "boregard is required": "נדרש boregard" - }, "brandon": { "brandon": "brandon" }, @@ -9213,16 +8745,16 @@ "by %1": "מאת %1" }, "checked %1d ago": { - "checked %1d ago": "" + "checked %1d ago": "נבדק לפני %1 ימים" }, "checked %1h ago": { - "checked %1h ago": "" + "checked %1h ago": "נבדק לפני %1 שעות" }, "checked %1m ago": { - "checked %1m ago": "" + "checked %1m ago": "נבדק לפני %1 דקות" }, "checked just now": { - "checked just now": "" + "checked just now": "נבדק ממש עכשיו" }, "days": { "days": "ימים" @@ -9236,9 +8768,6 @@ "device": { "device": "התקן" }, - "devices connected": { - "devices connected": "התקנים מחוברים" - }, "dgop not available": { "dgop not available": "dgop אינו זמין" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "דיון" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "הפרויקט DMS הוא מעטפת שולחן עבודה מודרנית וניתנת להתאמה אישית עם עיצוב בהשראת Material Design 3 של גוגל.

היא נבנתה עם שפת התכנות Go וQuickshell, ספריית Qt6 לבניית מעטפות לשולחן העבודה." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "הGitHub של mangowc" }, - "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 אינו זמין או מושבת - לא ניתן להחיל צבעי Qt" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen לא נמצא - התקן/י את החבילה של matugen כדי לאפשר עיצוב דינמי" @@ -9326,6 +8855,9 @@ "nav": { "nav": "ניווט" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "הGitHub של niri" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "על Sway" }, - "open": { - "open": "פתח/י" - }, "or run ": { "or run ": "או הרץ/י " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon אינו זמין" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "תהליכים" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 מאת %2" }, - "verified": { - "verified": "מאומת" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• התקן/י רק ממקורות מהימנים" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index 59ac33c8d..14f466b49 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 animációsebesség" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 munkamenet" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 másolva" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 egyéni animáció időtartama" - }, "%1 disconnected": { "%1 disconnected": "%1 leválasztva" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 kijelző" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 létezik, de nincs befoglalva. Az ablakszabályok nem fognak érvényesülni." - }, "%1 filtered": { "%1 filtered": "%1 szűrve" }, @@ -119,9 +116,6 @@ "'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." }, - "(Default)": { - "(Default)": "(Alapértelmezett)" - }, "(Unnamed)": { "(Unnamed)": "(Névtelen)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24 órás formátum" }, - "24-hour clock": { - "24-hour clock": "24 órás óra" - }, "25 seconds": { "25 seconds": "25 másodperc" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Délután" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Összes" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Hitelesítés szükséges" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "A hitelesítési módosítások alkalmazva." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "A hitelesítési módosítások automatikusan alkalmazásra kerülnek." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "A hitelesítési módosítások automatikusan alkalmazásra kerülnek. A kizárólag ujjlenyomatos bejelentkezés nem biztos, hogy feloldja a kulcstartót." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "A hitelesítési módosításokhoz sudo jogosultság szükséges. Terminál megnyitása a jelszó vagy ujjlenyomat használatához." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "A hitelesítés sikertelen, próbáld újra" - }, "Authorize": { "Authorize": "Hitelesítés" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "Automatikus energiatakarékosság" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "Automatikusan igazítja a sávtávolságot; Kikapcsolva hézagokat hagy a Hyprland konfigurációhoz" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "Automatikusan igazítja a sávtávolságot; Kikapcsolva hézagokat hagy a MangoWC konfigurációhoz" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "Automatikusan igazítja a sávtávolságot; Kikapcsolva hézagokat hagy a niri konfigurációhoz" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Az automatikus mód be van kapcsolva. A kézi profilválasztás le van tiltva." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Automatikusan mentve" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Automatikus törlés" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Részletes és Előrejelzés nézetmódokban érhető el" }, - "Available.": { - "Available.": "Elérhető." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Háttérrendszer" }, - "Backends: %1": { - "Backends: %1": "Háttérprogramok: %1" - }, "Background": { "Background": "Háttér" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "%1. sáv" }, - "Bar Configurations": { - "Bar Configurations": "Sáv konfiguráció" - }, "Bar Inset Padding": { "Bar Inset Padding": "Sáv belső margója" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Sáv árnyék, szegély és sarkok" }, - "Bar spacing and size": { - "Bar spacing and size": "Sáv térköz és méret" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Az árnyékok alapszíne (az áttetszőség automatikusan alkalmazva)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Akkumulátor: %1" }, - "Battery Alerts": { - "Battery Alerts": "Akkumulátor figyelmeztetések" - }, "Battery Charge Limit": { "Battery Charge Limit": "Akkumulátor töltési korlát" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "Akkumulátoros tápellátás" }, - "Battery Protection": { - "Battery Protection": "Akkumulátorvédelem" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "Akkumulátorvédelem és töltés" - }, - "Battery Status": { - "Battery Status": "Akkumulátor állapota" - }, "Battery and power management": { "Battery and power management": "Akkumulátor- és energiakezelés" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "Az akkumulátor töltöttsége %1% - Javasolt hamarosan töltőre tenni" }, - "Battery level and power management": { - "Battery level and power management": "Akkumulátor töltöttségi szintje és energiagazdálkodás" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "Akkumulátor százalékos értéke a kritikus riasztás kiváltásához." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "A zárolási képernyő kötése a loginctl dbus jeleihez. Tiltsd le, ha külső zárolási képernyőt használsz" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Társítsd a „spotlight” IPC-műveletet a kompozitor konfigurációjában." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Társítsd a „spotlight-bar” IPC-műveletet a kompozitor konfigurációjában." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "A gyorsbillentyűk include bejegyzés hozzáadva" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Elmosás" }, - "Blur Border Color": { - "Blur Border Color": "Elmosás szegélyszíne" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Elmosás szegélyének átlátszatlansága" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Háttérkép elmosási réteg" }, "Blur on Overview": { "Blur on Overview": "Elmosás az áttekintésben" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "A sávok, felugró ablakok, modális ablakok és értesítések mögötti háttér elmosása. Kompozitor támogatást és beállítást igényel." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Háttér elmosása a sávok, felugrók, modális ablakok és értesítések mögött. Kompozitor támogatás szükséges hozzá. Állítsa be az átlátszóságot ennek megfelelően." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Szegély szélessége" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Szegélyszín az elmosott felületek körül" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "Keretszín a felugró ablakok, modális ablakok és egyéb felületek körül" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Gomb színe" }, - "By %1": { - "By %1": "Készítette: %1" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "Check on startup": { "Check on startup": "Ellenőrzés indításkor" }, - "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.": "Szinkronizálási állapot ellenőrzése igény szerint. A szinkronizálás (teljes) a fő adminisztrátornak szól: átmásolja a témát a bejelentkezési képernyőre, és beállítja a rendszer üdvözlőképernyő-konfigurációját. Többfelhasználós rendszereken adj hozzá más fiókokat a Beállítások → Felhasználók menüpontban, majd kérd meg mindegyiküket, hogy a ki- és bejelentkezés után futtassák a „dms greeter sync --profile” parancsot – ne a teljes szinkronizálást. A hitelesítési változtatások automatikusan érvényesülnek." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Ellenőrizd az egyéni parancsodat a Beállítások → Dokk → Kuka útvonalon." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Sötét mód színének kiválasztása" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Dokkindító-logó színének kiválasztása" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Indítóikon színének kiválasztása" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Árnyék irányának meghatározása ezen a sávon" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "Válaszd ki, hogyan szeretnél értesülni az akkumulátorriasztásokról." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "Hogyan kapj értesítést a kritikus akkumulátor-figyelmeztetésekről." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "Semleges vagy kiemelt színű widget szöveg választása" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "A widgetek háttérszínének kiválasztása" - }, - "Choose the border accent color": { - "Choose the border accent color": "A szegély kiemelőszínének kiválasztása" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "A DankBar indítógombján megjelenő logó kiválasztása" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Kattints a „Beállítás” gombra a %1 létrehozásához és az include bejegyzés hozzáadásához a kompozitor konfigurációhoz." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Kattints a „Beállítás” gombra a kimenetek konfiguráció létrehozásához és az include bejegyzés hozzáadásához a kompozitor konfigurációjához." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Kattints az importálás gombra .ovpn vagy .conf fájl hozzáadásához" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "A háttérkép által le nem fedett területek színe" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "A háttérkép által nem fedett területeken megjelenő szín (pl. Igazítás vagy Kitöltés módban)" - }, - "Color temperature for day time": { - "Color temperature for day time": "Színhőmérséklet a nappali módhoz" - }, "Color temperature for night mode": { "Color temperature for night mode": "Színhőmérséklet az éjszakai módhoz" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "A konfiguráció megmarad, amikor ez a kijelző újra csatlakozik" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Beállítás" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Csatlakozás…" }, - "Connecting…": { - "Connecting…": "Kapcsolódás…" - }, "Connection failed": { "Connection failed": "Kapcsolódás sikertelen" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "A shell felületek, felugrók és modális ablakok átlátszóságát szabályozza" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "A sáv hátterének átlátszóságát szabályozza" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "A szegély átlátszóságát szabályozza" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Az árnyékréteg átlátszóságát szabályozza" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "A widget körvonalának átlátszóságát szabályozza" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "A widgetek hátterének átlátszóságát szabályozza" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Szabályozza az elmosódott előtér-kártyák, tabletták és értesítési kártyák körüli körvonalakat" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "Az előtérben lévő kártyák, tabletták és értesítési kártyák körüli körvonalakat szabályozza" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Az árnyékok alap elmosási sugara és eltolása" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Az árnyék átlátszóságát szabályozza" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Szabályozza a protokoll-elmosott ablakok külső szélét" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "Szabályozza a felugró ablakok, modális ablakok és egyéb felületek körvonalát" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Az árnyék átlátszósága" - }, "Convenience options for the login screen. Sync to apply.": { "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." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "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.": "Nem sikerült terminált nyitni az automatikus bejelentkezés frissítéséhez." - }, "Count Only": { "Count Only": "Csak darabszám" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "Új %1 munkamenet létrehozása (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Új %1 munkamenet létrehozása (n)" - }, "Create rule for:": { "Create rule for:": "Szabály létrehozása ehhez:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Egyéni…" }, - "Custom: ": { - "Custom: ": "Egyéni: " - }, "Customizable empty space": { "Customizable empty space": "Testreszabható üres terület" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS-gyorsbillentyűk" }, - "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 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.": "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" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "A DMS-szerver elavult (API v%1, várt v%2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Felhasználó törlése" }, - "Delete user?": { - "Delete user?": "Törlöd a felhasználót?" - }, "Demi Bold": { "Demi Bold": "Közepesen félkövér" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Főkapcsoló menü műveletek megjelenítése rácsban lista helyett" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Másodpercek megjelenítése az órán" - }, "Display setup failed": { "Display setup failed": "A kijelző beállítása sikertelen" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Kijelzők" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Megjeleníti a darabszámot, ha a túlcsordulás aktív" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Megjeleníti az aktív billentyűzetkiosztást és lehetővé teszi a váltást" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Dokk átlátszósága" }, - "Dock Visibility": { - "Dock Visibility": "Dokk láthatósága" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Dokk margója, átlátszósága és szegélye" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Dokk margója, átlátszósága és szegélye" - }, "Dock window": { "Dock window": "Dokkablak" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Kuka ürítése (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Üríted a kukát?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "10 bites színmélység engedélyezése a szélesebb színtartomány és a HDR támogatása érdekében" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Engedélyezve" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Engedélyezve, de az ujjlenyomat-olvasó elérhetősége nem erősíthető meg." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Engedélyezve, de nem található ujjlenyomat-olvasó." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Engedélyezve, de még nincsenek regisztrált ujjlenyomatok. A hitelesítési módosítások automatikusan alkalmazásra kerülnek, amint ujjlenyomatokat regisztrálsz." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Engedélyezve, de még nincs regisztrált ujjlenyomat. Regisztrálj ujjlenyomatokat, majd futtasd a szinkronizálást." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Engedélyezve, de még nem található regisztrált biztonsági kulcs. A hitelesítési módosítások automatikusan alkalmazásra kerülnek, amint regisztrálod a kulcsodat vagy frissíted az U2F-konfigurációdat." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Engedélyezve, de nem található regisztrált biztonsági kulcs. Regisztrálj egy kulcsot, majd futtasd a szinkronizálást." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Engedélyezve, de a biztonsági kulcs elérhetősége nem erősíthető meg." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Engedélyezve. A PAM már biztosít ujjlenyomatos hitelesítést." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Engedélyezve. A PAM már biztosít biztonsági kulcsos hitelesítést." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Engedélyezve. A PAM biztosít ujjlenyomatos hitelesítést, de még nincs regisztrált ujjlenyomat." - }, "Enabling WiFi...": { "Enabling WiFi...": "Wi-Fi bekapcsolása…" }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Pontos egyezés" }, - "Excluded Media Players": { - "Excluded Media Players": "Kizárt médialejátszók" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Exkluzív zóna eltolása" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Nem sikerült a nyomtatót osztályhoz adni" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Nem sikerült a GTK-színek alkalmazása" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Nem sikerült a Qt-színek alkalmazása" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "Nem sikerült alkalmazni a töltési korlátot a rendszeren" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Nem sikerült engedélyezni az éjszakai módot" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "Nem sikerült engedélyezni a bővítményt: %1" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "Nem sikerült lekérni a hálózati QR-kódot: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Nem sikerült a kukába helyezés" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Nem sikerült a plugin_settings.json feldolgozása" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Nem sikerült a session.json feldolgozása" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Nem sikerült a settings.json feldolgozása" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Nem sikerült a nyomtatót szüneteltetni" @@ -3368,8 +3188,8 @@ "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.": "A kuka megnyitásához használt fájlkezelő. Válaszd az „egyéni” lehetőséget saját parancs megadásához." }, - "File received from": { - "File received from": "Fájl érkezett innen:" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "A fájlkereséshez dsearch szükséges\nTelepítsd innen: github.com/AvengeMedia/danksearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Egyszerű szövegfájlok szerkesztéséhez" }, - "For reading PDF files": { - "For reading PDF files": "PDF-fájlok olvasásához" - }, "Force HDR": { "Force HDR": "HDR kényszerítése" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "Hézagok" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Felülbírálás létrehozása" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "Megadás" }, - "Grant admin?": { - "Grant admin?": "Megadod a rendszergazdai jogot?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Rendszergazdai jogosultságok megadása" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Üdvözlőképernyő" }, - "Greeter Appearance": { - "Greeter Appearance": "Üdvözlőképernyő megjelenése" - }, - "Greeter Behavior": { - "Greeter Behavior": "Üdvözlőképernyő viselkedése" - }, - "Greeter Status": { - "Greeter Status": "Üdvözlőképernyő állapota" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Üdvözlőképernyő aktiválva. A greetd mostantól engedélyezve van." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Üdvözlőképernyő-csoport:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Csak az üdvözlőképernyőre – nincs hatással a fő órára" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Csak az üdvözlőképernyőre – a bejelentkezési képernyőn megjelenő dátum formátuma" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord szervere" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland elrendezés felülbírálások" - }, "Hyprland Options": { "Hyprland Options": "Hyprland beállítások" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Helytelen jelszó" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Helytelen jelszó – %1 / %2 próbálkozás (kizárás követheti)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Helytelen jelszó – a következő sikertelen próbálkozások a fiók zárolását vonhatják maguk után" - }, "Incorrect password - try again": { "Incorrect password - try again": "Helytelen jelszó - próbáld újra" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Feladatok" }, - "Jobs: ": { - "Jobs: ": "Feladatok: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Elrendezés felülbírálása" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Az üdvözlőképernyő elrendezése és a modulok pozíciói a héjból (például sávkonfiguráció) vannak szinkronizálva. Futtasd a szinkronizálást az alkalmazáshoz." - }, "Left": { "Left": "Bal" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Területi beállítás" }, - "Locale Settings": { - "Locale Settings": "Területi beállítások" - }, "Location": { "Location": "Hely" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Zárolási képernyő" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "Lezárási képernyő megjelenése" - }, - "Lock Screen Display": { - "Lock Screen Display": "Zárolási képernyő megjelenítése" - }, "Lock Screen Format": { "Lock Screen Format": "Zárolási képernyő formátuma" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Zárolási képernyő viselkedése" - }, - "Lock Screen layout": { - "Lock Screen layout": "Zárolási képernyő elrendezés" - }, "Lock at startup": { "Lock at startup": "Zárolás indításkor" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Zárolási elhalványítás türelmi ideje" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "A képernyőzár hitelesítési módosításai automatikusan alkalmazásra kerülnek, és terminált nyithatnak meg, ha sudo hitelesítés szükséges." - }, "Lock screen font": { "Lock screen font": "Lezárási képernyő betűtípusa" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Bejelentkezés" }, - "Login Authentication": { - "Login Authentication": "Bejelentkezési hitelesítés" - }, "Long": { "Long": "Hosszú" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Keret által kezelve Csatlakoztatott módban" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Kezelés" }, - "Manages calendar events": { - "Manages calendar events": "Naptáresemények kezelése" - }, "Manages files and directories": { "Manages files and directories": "Fájlok és könyvtárak kezelése" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "A Mango szolgáltatás nem érhető el" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC elrendezés felülbírálások" - }, "Manual": { "Manual": "Kézi" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Elérted a rögzített bejegyzések maximális számát" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Maximális méret vágólap-bejegyzésenként" - }, "Media": { "Media": "Média" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Médialejátszó" }, - "Media Player Settings": { - "Media Player Settings": "Médialejátszó-beállítások" - }, "Media Players (": { "Media Players (": "Médialejátszók (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Mód" }, - "Mode:": { - "Mode:": "Mód:" - }, "Model": { "Model": "Modell" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Egérmutató mérete képpontban" }, - "Move": { - "Move": "Áthelyezés" - }, "Move Widget": { "Move Widget": "Widget áthelyezése" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "Multimédia" }, - "Multiplexer": { - "Multiplexer": "Multiplexer" - }, "Multiplexer Type": { "Multiplexer Type": "Multiplexer típusa" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Hálózati sebességfigyelő" }, - "Network Status": { - "Network Status": "Hálózati állapot" - }, "Network Type": { "Network Type": "Hálózati típus" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri integráció" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri elrendezés felülbírálásai" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri-kompozitorműveletek (fókusz, áthelyezés, stb.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Nem található bővítmény" }, - "No plugins found.": { - "No plugins found.": "Nem található bővítmény." - }, "No printer found": { "No printer found": "Nem található nyomtató" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Felugró értesítések" }, - "Notification Rules": { - "Notification Rules": "Értesítési szabályok" - }, "Notification Settings": { "Notification Settings": "Értesítési beállítások" }, - "Notification Timeouts": { - "Notification Timeouts": "Értesítési időkorlátok" - }, "Notification Type": { "Notification Type": "Értesítés típusa" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Csak az idő- vagy helyalapú szabályok szerint állítsa a gammát." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Csak a DMS által kezelt PAM-ra van hatással. Ha a greetd már tartalmazza a pam_fprintd-t, az ujjlenyomat-olvasó engedélyezve marad." - }, "Only on Battery": { "Only on Battery": "Csak akkumulátorról" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Átlátszóság" }, - "Opacity of the bar background": { - "Opacity of the bar background": "A sáv hátterének átlátszatlansága" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "A widget hátterek átlátszatlansága" - }, "Opaque": { "Opaque": "Átlátszatlan" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Fájlkezelő megnyitása" }, - "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: " }, "Opens a picker of other active sessions on this seat": { "Opens a picker of other active sessions on this seat": "Megnyit egy választót az ezen az állomáson lévő többi aktív munkamenet közül" }, - "Opens image files": { - "Opens image files": "Megnyitja a képfájlokat" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Megnyitja a csatlakoztatott indítót Csatlakoztatott keretmódban." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "A PAM már biztosítja a biztonsági kulcsos hitelesítést. Engedélyezd ezt a bejelentkezéskori megjelenítéshez." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "A PAM biztosítja az ujjlenyomatos hitelesítést, de az elérhetőséget nem sikerült megerősíteni." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "A PAM biztosítja az ujjlenyomatos hitelesítést, de még nincsenek ujjlenyomatok regisztrálva." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "A PAM biztosítja az ujjlenyomatos hitelesítést, de nem található olvasó." - }, "PDF Reader": { "PDF Reader": "PDF-olvasó" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Kezdő nulla az órákhoz" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Órák kiegészítése nullával (02:00 vs 2:00)" - }, "Padding": { "Padding": "Belső margó" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Párosítva" }, - "Pairing": { - "Pairing": "Párosítás" - }, "Pairing failed": { "Pairing failed": "A párosítás sikertelen" }, - "Pairing request from": { - "Pairing request from": "Párosítási kérelem érkezett innen:" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Párosítási kérelem elküldve" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "A telefonos kapcsolat nem érhető el" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "A telefonos kapcsolat nem érhető el" - }, "Phone number": { "Phone number": "Telefonszám" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping elküldve ide:" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Rögzítve" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Hang lejátszása a hangerő állításakor" }, - "Play sounds for system events": { - "Play sounds for system events": "Hang lejátszása rendszereseményekkor" - }, "Playback": { "Playback": "Lejátszás" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Hangfájlok lejátszása" }, - "Plays video files": { - "Plays video files": "Videófájlok lejátszása" - }, "Please wait...": { "Please wait...": "Kis türelmet…" }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Felugró ablak viselkedése, pozíciója" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Port" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "Energiaprofilok és energiatakarékosság" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "Energiaprofilok automatikus váltása" - }, "Power Saver": { "Power Saver": "Energiatakarékos mód" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Az energiaprofil-kezelés elérhető" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "Hálózati tápellátás esetén használandó energiaprofil." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "Akkumulátoros működés esetén használandó energiaprofil." - }, "Power source": { "Power source": "Áramforrás" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Előre beállított szélességek (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Nyomd meg az 'n' billentyűt vagy kattints az 'Új munkamenet' gombra a létrehozáshoz" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "Nyomd meg a Ctrl+N billentyűkombinációt vagy kattints az „Új munkamenet” gombra a létrehozásához" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Elsődleges tároló" }, - "Primary Theme Color": { - "Primary Theme Color": "Elsődleges témaszín" - }, "Print Server Management": { "Print Server Management": "Nyomtatókiszolgáló-kezelés" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Nyomtatók" }, - "Printers: ": { - "Printers: ": "Nyomtatók: " - }, "Prioritize performance": { "Prioritize performance": "Teljesítmény előtérbe helyezése" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Folyamatok" }, - "Processes:": { - "Processes:": "Folyamatok:" - }, "Processing": { "Processing": "Feldolgozás" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "Profil akkumulátoros működéskor" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protokoll" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Rendszergazda eltávolítása" }, - "Remove admin?": { - "Remove admin?": "Eltávolítod a rendszergazdai jogosultságot?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Sarokkerekítés eltávolítása a sávról" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Méret visszaállítása" }, - "Reset to Default?": { - "Reset to Default?": "Visszaállítás az alapértelmezettre?" - }, "Reset to default": { "Reset to default": "Alapértelmezés visszaállítása" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Megcsörgetés" }, - "Ringing": { - "Ringing": "Csörgetés" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Hullám effektusok" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Szabály" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Szabály neve" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Szabályok (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Mentés…" }, - "Saving…": { - "Saving…": "Mentés…" - }, "Scale": { "Scale": "Skála" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Szkennelés" }, - "Scanning": { - "Scanning": "Szkennelés" - }, "Scanning...": { "Scanning...": "Keresés…" }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Keresés…" }, - "Searching": { - "Searching": "Keresés" - }, "Searching...": { "Searching...": "Keresés…" }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Biztonság és adatvédelem" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Biztonsági kulcs mód" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "Lezárási képernyő háttérképének kiválasztása" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Válassz monitort a háttérkép beállításához" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Rögzített szélességű betűtípus (folyamatlistához és technikai kijelzőkhöz)" }, "Select network": { "Select network": "Hálózat kiválasztása" }, - "Select system sound theme": { - "Select system sound theme": "Rendszerhang-téma kiválasztása" - }, "Select the font family for UI text": { "Select the font family for UI text": "Betűtípus-család a felületen lévő szövegekhez" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Vágólap küldése" }, - "Send File": { - "Send File": "Fájl küldése" - }, "Send SMS": { "Send SMS": "SMS küldése" }, - "Sending": { - "Sending": "Küldés" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Különálló" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Az értesítés törzsszövegének betűmérete (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Az értesítés összegző szövegének betűmérete" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "A százalékos érték, amelynél az akkumulátor alacsonynak minősül." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Gammavezérlési beállítások megosztása" }, - "Share Text": { - "Share Text": "Szöveg megosztása" - }, "Shared": { "Shared": "Megosztva" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Megjelenítés a Niri áttekintő során" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Előtér felületeinek megjelenítése az elmosódott paneleken az erősebb kontraszt érdekében" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "Előtér-felületek megjelenítése a paneleken az erősebb kontraszt érdekében" }, @@ -7571,12 +7229,6 @@ "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" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Értesítések megjelenítése csak az éppen fókuszált monitoron" - }, "Show on Last Display": { "Show on Last Display": "Megjelenítés az utolsó kijelzőn" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Megjelenítés csak az áttekintésben" }, - "Show on all connected displays": { - "Show on all connected displays": "Megjelenítés minden csatlakoztatott kijelzőn" - }, "Show on screens:": { "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é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é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é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é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é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é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é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é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é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" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Időjárási információk megjelenítése a felső sávon és a vezérlőközponton" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Hétszám megjelenítése a naptárban" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Munkaterület-indexszámok megjelenítése a felső sáv munkaterület-váltójában" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "Jelerősség" }, - "Signal:": { - "Signal:": "Jel:" - }, "Silence for a while": { "Silence for a while": "Némítás egy időre" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Indítás" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "A KDE Connect vagy a Valent indítása" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Indítsd el a KDE Connectet vagy a Valentet a bővítmény használatához" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Csíkok" }, - "Subtle Overlay": { - "Subtle Overlay": "Finom átfedés" - }, "Summary": { "Summary": "Összegzés" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "A tartalék terminál megnyitása sikertelen. Telepíts egyet a támogatott terminálemulátorok közül, vagy futtasd a „dms greeter sync” parancsot." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Tartalék terminál megnyitva. Fejezd be ott a hitelesítési beállítást; a befejezés után automatikusan be fog záródni." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Tartalék terminál megnyitva, ott befejezheted a szinkronizálást; automatikusan be fog záródni, ha kész lesz." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Használandó terminálmultiplexer-háttérprogram" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Terminál megnyitva. Fejezd be ott a hitelesítési beállítást; a befejezés után automatikusan be fog záródni." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminál megnyitva, ott befejezheted a szinkronizálás hitelesítését; automatikusan be fog záródni, ha kész lesz." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminálok – Mindig sötét téma használata" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Szövegmegjelenítés" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "A 'boregard' eszköz nincs telepítve, vagy nincs a PATH-ban.\n\nTelepítsd a https://danklinux.com címről, majd engedélyezd újra ezt a bővítményt." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "A rendszerfigyeléshez a „dgop” eszköz szükséges.\nTelepítsd a dgop-ot a funkció használatához." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "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.": "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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": "Ez a telepítés továbbra is a hyprland.conf fájlt használja. Futtasd a „dms setup” parancsot a migráláshoz, mielőtt szerkesztenéd az elrendezési beállításokat." - }, - "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.": "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 install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Ez eltarthat néhány másodpercig" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Mozaik" }, - "Tile H": { - "Tile H": "Vízszintes mozaik" - }, "Tile Horizontally": { "Tile Horizontally": "Csempézés vízszintesen" }, - "Tile V": { - "Tile V": "Függőleges mozaik" - }, "Tile Vertically": { "Tile Vertically": "Csempézés függőlegesen" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Időtúllépési folyamatjelző sáv" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Időtúllépés a kritikus prioritású értesítésekhez" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Időtúllépés az alacsony prioritású értesítésekhez" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Időtúllépés a normál prioritású értesítésekhez" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Színárnyalat telítettsége" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Átlátszóság" }, - "Transparency of the border": { - "Transparency of the border": "A szegély átlátszósága" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Az árnyékréteg átlátszósága" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "A widget körvonalának átlátszósága" - }, "Trash": { "Trash": "Kuka" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Rögzítés feloldása a Dokkról" }, - "Unsaved Changes": { - "Unsaved Changes": "Nem mentett változtatások" - }, "Unsaved changes": { "Unsaved changes": "Nem mentett változtatások" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Működési idő" }, - "Uptime:": { - "Uptime:": "Működési idő:" - }, "Urgent": { "Urgent": "Sürgős" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Egyéni szegélyméret használata" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Egyéni szegély/fókuszgyűrű szélesség használata" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Hangtéma használata a rendszerbeállításokból" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "Kiterjesztett felület használata az indító tartalmához" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "Az átfedési réteg használata az indító megnyitásakor" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "Azonos pozíció és méret használata minden kijelzőn" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Zároláskor" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "Fehér" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Ablakszabályok" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Az ablakszabályok include bejegyzés hiányzik" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Az ablakszabályok nincsenek beállítva" - }, "Wipe": { "Wipe": "Törlés" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Munkaterület" }, - "Workspace Appearance": { - "Workspace Appearance": "Munkaterület megjelenése" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Munkaterület-indexszámok" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Munkaterület-margó" }, - "Workspace Settings": { - "Workspace Settings": "Munkaterület-beállítások" - }, "Workspace Switcher": { "Workspace Switcher": "Munkaterület-váltó" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Tegnap" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Nem mentett változtatásaid vannak. Szeretnél menteni a lap bezárása előtt?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Nem mentett változtatásaid vannak. Szeretnél menteni a folytatás előtt?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Nem mentett változtatásaid vannak. Szeretnél menteni az új fájl létrehozása előtt?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Nem mentett változtatásaid vannak. Szeretnél menteni a fájl megnyitása előtt?" - }, "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.": { "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." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "A rendszer naprakész!" }, - "actions": { - "actions": "műveletek" - }, "admin": { "admin": "rendszergazda" }, "attached": { "attached": "csatolva" }, - "boregard is required": { - "boregard is required": "A boregard szükséges" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "eszköz" }, - "devices connected": { - "devices connected": "csatlakoztatott eszköz" - }, "dgop not available": { "dgop not available": "A dgop nem érhető el" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "megvitatás" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "A dms egy nagymértékben testreszabható, modern asztali héj, material 3 ihlette dizájnnal.

A Quickshell-lel, egy QT6 keretrendszerrel asztali héjak építéséhez, és a Go statikusan típusos, fordított programozási nyelvvel készült." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "A Matugen nem érhető el vagy le van tiltva - a GTK-színek nem alkalmazhatók" - }, - "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "A Matugen nem érhető el vagy le van tiltva - a Qt-színek nem alkalmazhatók" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen nem található - telepítsd a matugen csomagot a dinamikus témázásért" @@ -9326,6 +8855,9 @@ "nav": { "nav": "navigáció" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "Sway-en" }, - "open": { - "open": "megnyitás" - }, "or run ": { "or run ": "vagy futtasd ezt: " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "A power-profiles-daemon nem érhető el" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "folyamat" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 ettől: %2" }, - "verified": { - "verified": "ellenőrzött" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Csak megbízható forrásokból telepíts" }, diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index bef3998a2..7628ed5fb 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "Velocità Animazione %1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 Sessioni" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 copiato" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 durata animazione personalizzata" - }, "%1 disconnected": { "%1 disconnected": "%1 disconnesso" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 schermi" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 esiste ma non è incluso. Le regole della finestra non verranno applicate." - }, "%1 filtered": { "%1 filtered": "%1 filtrato(i)" }, @@ -119,9 +116,6 @@ "'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." }, - "(Default)": { - "(Default)": "(Predefinito)" - }, "(Unnamed)": { "(Unnamed)": "(Senza nome)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "Formato 24 Ore" }, - "24-hour clock": { - "24-hour clock": "orologio 24 ore" - }, "25 seconds": { "25 seconds": "25 secondi" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Pomeriggio" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Tutto" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Autenticazione Richiesta" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "Modifiche di autenticazione applicate." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "Le modifiche di autenticazione vengono applicate automaticamente." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Le modifiche di autenticazione vengono applicate automaticamente. L'accesso solo con impronta digitale potrebbe non sbloccare il Portachiavi." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Le modifiche di autenticazione richiedono sudo. Apertura del terminale per consentirti l'uso della password o dell'impronta digitale." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Impossibile autenticarsi, per favore riprova" - }, "Authorize": { "Authorize": "Autorizza" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "Risparmio Energetico Automatico" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "Auto corrisponde alla spaziatura della barra; Off lascia gap alla tua configurazione di Hyprland" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "Auto corrisponde alla spaziatura della barra; Off lascia gap alla tua configurazione di MangoWC" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "Auto corrisponde alla spaziatura della barra; Off lascia gap alla tua configurazione di niri" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Modalità automatica attiva. Selezione dei profili manuale disabilitata." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Salvato automaticamente" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Cancellazione Automatica Dopo" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Disponibile nelle modalità Dettagliata e Previsioni" }, - "Available.": { - "Available.": "Disponibile." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "Backend: %1" - }, "Background": { "Background": "Sfondo" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "Barra %1" }, - "Bar Configurations": { - "Bar Configurations": "Configurazioni Barra" - }, "Bar Inset Padding": { "Bar Inset Padding": "Spaziatura Interna della Barra" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Ombra, bordo e angoli della barra" }, - "Bar spacing and size": { - "Bar spacing and size": "Spaziatura e dimensioni della barra" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Colore base per le ombre (l'opacità è applicata automaticamente)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Batteria %1" }, - "Battery Alerts": { - "Battery Alerts": "Avvisi Batteria" - }, "Battery Charge Limit": { "Battery Charge Limit": "Limite Carica Batteria" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "Alimentazione Batteria" }, - "Battery Protection": { - "Battery Protection": "Protezione Batteria" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "Protezione e Ricarica della Batteria" - }, - "Battery Status": { - "Battery Status": "Stato della Batteria" - }, "Battery and power management": { "Battery and power management": "Gestione batteria e alimentazione" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "La batteria è al %1% - Valuta di ricaricarla presto" }, - "Battery level and power management": { - "Battery level and power management": "Livello batteria e gestione energetica" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "Percentuale della batteria per attivare un avviso critico." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Associa la schermata di blocco ai segnali dbus di loginctl. Disabilita se utilizzi una schermata di blocco esterna" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Associa l'azione IPC di Spotlight alla configurazione del tuo compositor." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Associa l'azione IPC spotlight-bar nella configurazione del tuo compositor." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Inclusione scorciatoie aggiunta" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Sfocatura" }, - "Blur Border Color": { - "Blur Border Color": "Colore Bordo Sfocato" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Opacità Bordo Sfocato" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Sfoca il Livello dello Sfondo" }, "Blur on Overview": { "Blur on Overview": "Sfocatura su Panoramica" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Sfoca lo sfondo dietro barre, popup, finestre modali e notifiche. Richiede supporto e configurazione del compositor." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Sfoca lo sfondo dietro barre, popup, modali e notifiche. Richiede il supporto del compositore. Regola l'Opacità di conseguenza." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Larghezza del Bordo" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Colore del bordo attorno alle superfici sfocate" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "Colore del bordo attorno a popup, modali e altre superfici della shell" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Colore Pulsante" }, - "By %1": { - "By %1": "Di %1" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "Check on startup": { "Check on startup": "Controllo all'avvio" }, - "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.": "Verifica lo stato della sincronizzazione su richiesta. La sincronizzazione (completa) è per l'amministratore principale: copia il tema nella schermata di accesso e configura il sistema di benvenuto. Nei sistemi multiutente, aggiungi altri account in Impostazioni → Utenti, quindi fai in modo che ognuno di essi esegua il comando dms greeter sync --profile dopo aver effettuato il logout e il login (non una sincronizzazione completa). Le modifiche all'autenticazione vengono applicate automaticamente." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Controlla il tuo comando personalizzato in Impostazioni → Dock → Cestino." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Scegli Colore Modalità Scura" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Scegli il Colore del Logo del Dock Launcher" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Scegli il Colore del Logo del Launcher" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Scegli come questa barra determina la direzione delle ombre" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "Scegli come ricevere le notifiche per gli avvisi della batteria." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "Scegli come ricevere le notifiche per gli avvisi critici della batteria." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "Scegli testo del widget neutro o colorato con l'accento" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Scegli il colore di sfondo per i widget" - }, - "Choose the border accent color": { - "Choose the border accent color": "Scegli il colore di accento del bordo" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Scegli il logo visualizzato sul pulsante del launcher nella DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Fai clic su \"Configura\" per creare %1 e aggiungere l'inclusione al file di configurazione del compositor." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Fai clic su \"Configura\" per creare la configurazione degli output e aggiungere l'istruzione include alla configurazione del compositor." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Fai clic su Importa per aggiungere un file .ovpn o .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "Colore mostrato per le aree non coperte dallo sfondo" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "Colore mostrato per le aree non coperte dallo sfondo (es. nella modalità Adatta o Riempi)" - }, - "Color temperature for day time": { - "Color temperature for day time": "Temperatura colore per il giorno" - }, "Color temperature for night mode": { "Color temperature for night mode": "Temperatura colore per la modalità notturna" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "La configurazione verrà preservata quando questo schermo si riconnette" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Configura" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Connessione in corso..." }, - "Connecting…": { - "Connecting…": "Connessione…" - }, "Connection failed": { "Connection failed": "Connessione non riuscita" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "Controlla l'opacità di superfici della shell, popup e modali" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "Controlla l'opacità dello sfondo della barra" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "Controlla l'opacità del bordo" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Controlla l'opacità del livello dell'ombra" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "Controlla l'opacità del contorno del widget" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "Controlla l'opacità degli sfondi dei widget" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Determina i contorni attorno alle schede in primo piano sfocate, alle pillole e alle schede di notifica" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "Controlla i contorni attorno alle schede in primo piano, alle pillole e alle schede di notifica" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Controlla il raggio di sfocatura base e l'offset delle ombre" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Controlla l'opacità dell'ombra" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Determina il bordo esterno delle finestre con sfocatura da protocollo" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "Controlla il contorno di popup, modali e altre superfici della shell" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Controlla la trasparenza dell'ombra" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Opzioni di comodità per la schermata di accesso. Sincronizza per applicare." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "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.": "Impossibile aprire un terminale per l'aggiornamento dell'accesso automatico." - }, "Count Only": { "Count Only": "Solo Conteggio" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "Crea una nuova sessione %1 (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Crea una nuova sessione %1 (n)" - }, "Create rule for:": { "Create rule for:": "Crea regola per:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Personalizzato..." }, - "Custom: ": { - "Custom: ": "Personalizzato: " - }, "Customizable empty space": { "Customizable empty space": "Spazio vuoto personalizzabile" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Scorciatoie DMS" }, - "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 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 richiede l'accesso come amministratore. Il terminale si chiuderà automaticamente al termine." - }, "DMS out of date": { "DMS out of date": "DMS obsoleta" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "Il server DMS è obsoleto (API v%1, previsto v%2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Elimina utente" }, - "Delete user?": { - "Delete user?": "Eliminare l'utente?" - }, "Demi Bold": { "Demi Bold": "Semi-Grassetto" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Visualizza le azioni di alimentazione in una griglia invece che in una lista" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Mostra i secondi nell'orologio" - }, "Display setup failed": { "Display setup failed": "Configurazione schermo non riuscita" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Schermi" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Conteggio schermi quando l'overflow è attivo" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Mostra il layout tastiera attivo e ne permette il cambio" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Opacità Dock" }, - "Dock Visibility": { - "Dock Visibility": "Visibilità Dock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Margine, opacità e bordo del dock" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Margine, trasparenza e bordo del dock" - }, "Dock window": { "Dock window": "Finestra del Dock" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Svuota Cestino (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Svuotare il Cestino?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Abilita profondità colore a 10 bit per una gamma cromatica più ampia e supporto HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Attivato" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Attivato, ma impossibile confermare la disponibilità dell'impronta digitale." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Attivato, ma non è stato rilevato nessun lettore di impronte digitali." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Attivato, ma nessuna impronta è ancora registrata. Le modifiche di autenticazione verranno applicate automaticamente una volta registrate le impronte digitali." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Attivato, ma nessuna impronta è ancora registrata. Registra le impronte ed esegui Sincronizza." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Attivato, ma nessuna chiave di sicurezza registrata trovata finora. Le modifiche di autenticazione verranno applicate automaticamente una volta registrata la chiave o aggiornata la configurazione U2F." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Attivato, ma nessuna chiave di sicurezza registrata trovata. Registra una chiave ed esegui Sincronizza." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Attivato, ma la disponibilità della chiave di sicurezza non ha potuto essere confermata." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Attivato. PAM fornisce già l'autenticazione tramite impronta digitale." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Attivato. PAM fornisce già l'autenticazione tramite chiave di sicurezza." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Attivato. PAM fornisce l'autenticazione tramite impronta digitale, ma nessuna impronta è ancora registrata." - }, "Enabling WiFi...": { "Enabling WiFi...": "Attivazione Wi-Fi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Esatto" }, - "Excluded Media Players": { - "Excluded Media Players": "Lettori Multimediali Esclusi" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Offset Zona Esclusiva" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Impossibile aggiungere la stampante alla classe" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Impossibile applicare i colori GTK" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Impossibile applicare i colori Qt" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "Impossibile applicare il limite di carica al sistema" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Impossibile attivare la modalità notturna" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "Impossibile abilitare il plugin: %1" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "Impossibile recuperare il codice QR di rete: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Impossibile spostare nel cestino" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Impossibile analizzare plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Impossibile analizzare session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Impossibile analizzare settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Impossibile mettere in pausa la stampante" @@ -3368,8 +3188,8 @@ "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.": "Il gestore dei file utilizzato per aprire il cestino. Seleziona \"personalizzato\" per inserire il tuo comando." }, - "File received from": { - "File received from": "File ricevuto da" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "La ricerca file richiede dsearch\nInstallalo da github.com/AvengeMedia/danksearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Per la modifica di file di testo semplice" }, - "For reading PDF files": { - "For reading PDF files": "Per leggere i file PDF" - }, "Force HDR": { "Force HDR": "Forza HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "Spaziature" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Genera Override" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "Concedi" }, - "Grant admin?": { - "Grant admin?": "Concedi privilegi amministrativi?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Concedi i privilegi di amministratore" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Greeter" }, - "Greeter Appearance": { - "Greeter Appearance": "Aspetto del Greeter" - }, - "Greeter Behavior": { - "Greeter Behavior": "Comportamento del Greeter" - }, - "Greeter Status": { - "Greeter Status": "Stato del Greeter" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Greeter attivato. greetd è ora attivato." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Gruppo greeter:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Solo per il greeter - non influenza l'orologio principale" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Solo per il greeter - formato della data sulla schermata di accesso" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Server Discord di Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Sovrascritture Layout Hyprland" - }, "Hyprland Options": { "Hyprland Options": "Opzioni Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Password errata" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Password errata - tentativo %1 di %2 (il blocco potrebbe avvenire)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Password errata - ulteriori errori potrebbero bloccare l'account" - }, "Incorrect password - try again": { "Incorrect password - try again": "Password errata - riprova" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Stampe" }, - "Jobs: ": { - "Jobs: ": "Stampe: " - }, "Join video call": { "Join video call": "Partecipa alla videochiamata" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Sovrascritture del Layout" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Il layout e le posizioni dei moduli sul greeter sono sincronizzati dalla tua shell (es. configurazione della barra). Esegui Sincronizza per applicare." - }, "Left": { "Left": "Sinistra" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Lingua" }, - "Locale Settings": { - "Locale Settings": "Impostazioni della Lingua" - }, "Location": { "Location": "Posizione" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Schermata di Blocco" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "Aspetto Schermata di Blocco" - }, - "Lock Screen Display": { - "Lock Screen Display": "Schermo della Schermata di Blocco" - }, "Lock Screen Format": { "Lock Screen Format": "Formato Schermata di Blocco" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Comportamento Schermata di Blocco" - }, - "Lock Screen layout": { - "Lock Screen layout": "Layout Schermata di Blocco" - }, "Lock at startup": { "Lock at startup": "Blocca all'avvio" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Periodo di attesa per la dissolvenza al blocco" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Le modifiche all'autenticazione della schermata di blocco vengono applicate automaticamente e potrebbero aprire un terminale quando è richiesta l'autenticazione sudo." - }, "Lock screen font": { "Lock screen font": "Font schermata di blocco" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Accesso" }, - "Login Authentication": { - "Login Authentication": "Autenticazione di Accesso" - }, "Long": { "Long": "Lunga" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Gestito dalla Cornice in Modalità Connessa" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Gestione" }, - "Manages calendar events": { - "Manages calendar events": "Gestisce gli eventi del calendario" - }, "Manages files and directories": { "Manages files and directories": "Gestisce file e directory" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Servizio Mango non disponibile" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Sovrascritture Layout MangoWC" - }, "Manual": { "Manual": "Manuale" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Raggiunto il numero massimo di voci fissate" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Dimensione massima per ogni voce degli appunti" - }, "Media": { "Media": "Media" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Lettore Multimediale" }, - "Media Player Settings": { - "Media Player Settings": "Impostazioni Lettore Multimediale" - }, "Media Players (": { "Media Players (": "Lettori Multimediali (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Modalità" }, - "Mode:": { - "Mode:": "Modalità:" - }, "Model": { "Model": "Modello" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Dimensione puntatore del mouse in pixel" }, - "Move": { - "Move": "Sposta" - }, "Move Widget": { "Move Widget": "Sposta Widget" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "Multimedia" }, - "Multiplexer": { - "Multiplexer": "Multiplexer" - }, "Multiplexer Type": { "Multiplexer Type": "Tipo di Multiplexer" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Monitor Velocità Rete" }, - "Network Status": { - "Network Status": "Stato Rete" - }, "Network Type": { "Network Type": "Tipo di Rete" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Integrazione Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Sovrascritture Layout Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Azioni del compositor Niri (focus, sposta, etc.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Nessun plugin trovato" }, - "No plugins found.": { - "No plugins found.": "Nessun plugin trovato." - }, "No printer found": { "No printer found": "Nessuna stampante trovata" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Popup Notifiche" }, - "Notification Rules": { - "Notification Rules": "Regole Notifica" - }, "Notification Settings": { "Notification Settings": "Impostazioni Notifiche" }, - "Notification Timeouts": { - "Notification Timeouts": "Timeout Notifiche" - }, "Notification Type": { "Notification Type": "Tipo di Notifica" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Regola la gamma solo in base alle regole di tempo o di posizione." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Influisce solo sul PAM gestito da DMS. Se greetd include già pam_fprintd, l'impronta digitale rimane abilitata." - }, "Only on Battery": { "Only on Battery": "Solo sulla Batteria" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opacità" }, - "Opacity of the bar background": { - "Opacity of the bar background": "Opacità dello sfondo della barra" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "Opacità degli sfondi dei widget" - }, "Opaque": { "Opaque": "Opaco" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Apertura del gestore file" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "Apertura terminale per aggiornare greetd" - }, "Opening terminal: ": { "Opening terminal: ": "Apertura del terminale: " }, "Opens a picker of other active sessions on this seat": { "Opens a picker of other active sessions on this seat": "Apre un selettore di altre sessioni attive su questo sedile" }, - "Opens image files": { - "Opens image files": "Apre i file di immagine" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Apre il launcher connesso in modalità Connected Frame." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM fornisce già l'autenticazione tramite chiave di sicurezza. Abilita questa opzione per mostrarla al login." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM fornisce l'autenticazione tramite impronta digitale, ma la disponibilità non ha potuto essere confermata." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM fornisce l'autenticazione tramite impronta digitale, ma nessuna impronta è ancora registrata." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM fornisce l'autenticazione tramite impronta digitale, ma non è stato rilevato nessun lettore." - }, "PDF Reader": { "PDF Reader": "Lettore PDF" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Ore a Due Cifre" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Ore a due cifre (02:00 vs 2:00)" - }, "Padding": { "Padding": "Spaziatura Interna" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Associato" }, - "Pairing": { - "Pairing": "Associazione in corso" - }, "Pairing failed": { "Pairing failed": "Impossibile associare" }, - "Pairing request from": { - "Pairing request from": "Richiesta di associazione da" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Richiesta di associazione inviata" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect non Disponibile" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Phone Connect non disponibile" - }, "Phone number": { "Phone number": "Numero di telefono" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping inviato a" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Fissato" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Riproduci un suono quando il volume viene regolato" }, - "Play sounds for system events": { - "Play sounds for system events": "Riproduci dei suoni per eventi di sistema" - }, "Playback": { "Playback": "Riproduzione" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Riproduzione di file audio" }, - "Plays video files": { - "Plays video files": "Riproduzione di file video" - }, "Please wait...": { "Please wait...": "Attendi..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Comportamento e posizione dei popup" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Porta" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "Profili Energetici e Risparmio" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "Commutazione Automatica Profili Energetici" - }, "Power Saver": { "Power Saver": "Risparmio Energetico" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Gestione dei profili energetici disponibile" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "Profilo energetico da usare quando è collegata l'alimentazione CA." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "Profilo energetico da usare quando si è alimentati a batteria." - }, "Power source": { "Power source": "Sorgente di alimentazione" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Larghezze Predefinite (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Premi \"n\" o fai clic su \"Nuova Sessione\" per crearne una" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "Premi Ctrl+N o fai clic su \"Nuova Sessione\" per crearne una" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Contenitore Primario" }, - "Primary Theme Color": { - "Primary Theme Color": "Colore Primario del Tema" - }, "Print Server Management": { "Print Server Management": "Gestione Server di Stampa" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Stampanti" }, - "Printers: ": { - "Printers: ": "Stampanti: " - }, "Prioritize performance": { "Prioritize performance": "Dai priorità alle prestazioni" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Processi" }, - "Processes:": { - "Processes:": "Processi:" - }, "Processing": { "Processing": "In Elaborazione" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "Profilo a Batteria" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protocollo" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Rimuovi amministratore" }, - "Remove admin?": { - "Remove admin?": "Rimuovere l'amministratore?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Rimuovere gli angoli arrotondati dalla barra" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Reimposta Dimensioni" }, - "Reset to Default?": { - "Reset to Default?": "Ripristina le impostazioni predefinite?" - }, "Reset to default": { "Reset to default": "Ripristina le impostazioni predefinite" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Fai squillare" }, - "Ringing": { - "Ringing": "Squillo in corso" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Effetto Increspatura" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Regola" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Nome Regola" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Regole (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Salvataggio..." }, - "Saving…": { - "Saving…": "Salvataggio…" - }, "Scale": { "Scale": "Scala" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Scansiona" }, - "Scanning": { - "Scanning": "Scansione" - }, "Scanning...": { "Scanning...": "Scansione..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Cerca..." }, - "Searching": { - "Searching": "Ricerca" - }, "Searching...": { "Searching...": "Ricerca in corso..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Sicurezza e privacy" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Modalità chiave di sicurezza" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "Seleziona immagine di sfondo per la schermata di blocco" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Seleziona lo schermo per configurare lo sfondo" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Seleziona font a larghezza fissa per lista processi e visualizzazioni tecniche" }, "Select network": { "Select network": "Seleziona rete" }, - "Select system sound theme": { - "Select system sound theme": "Seleziona tema suoni di sistema" - }, "Select the font family for UI text": { "Select the font family for UI text": "Seleziona la famiglia di font per il testo dell'interfaccia utente" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Invia Appunti" }, - "Send File": { - "Send File": "Invia File" - }, "Send SMS": { "Send SMS": "Invia SMS" }, - "Sending": { - "Sending": "Invio in Corso" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Separato" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Imposta la dimensione del font per il testo del corpo della notifica (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Imposta la dimensione del font per il testo del riepilogo della notifica" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "Imposta la percentuale a cui la batteria è considerata scarica." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Condividi Impostazioni Controllo Gamma" }, - "Share Text": { - "Share Text": "Condividi Testo" - }, "Shared": { "Shared": "Condiviso" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Mostra durante la panoramica di Niri" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Mostra le superfici in primo piano sui pannelli sfocati per ottenere un contrasto più marcato" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "Mostra superfici in primo piano sui pannelli per un contrasto più forte" }, @@ -7571,12 +7229,6 @@ "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" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Mostra le notifiche solo sullo schermo attualmente attivo" - }, "Show on Last Display": { "Show on Last Display": "Mostra sull'Ultimo Schermo" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Mostra Solo nella Panoramica" }, - "Show on all connected displays": { - "Show on all connected displays": "Mostra su tutti gli schermi connessi" - }, "Show on screens:": { "Show on screens:": "Mostra sugli schermi:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Mostra indicatore a schermo quando la luminosità cambia" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Mostra indicatore a schermo quando lo stato del blocco maiuscole cambia" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Mostra indicatore a schermo quando si scorre tra i dispositivi di uscita audio" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Mostra indicatore a schermo quando cambia lo stato del blocco sospensione" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Mostra indicatore a schermo quando cambia lo stato del lettore multimediale" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Mostra indicatore a schermo quando cambia il volume del lettore multimediale" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Mostra indicatore a schermo quando il microfono è attivato/disattivato" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Mostra indicatore a schermo quando il profilo di alimentazione cambia" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Mostra indicatore a schermo quando il volume cambia" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "Mostra la barra solo quando non ci sono finestre aperte." }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Mostra informazioni meteo nella barra superiore e nel centro di controllo" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Mostra il numero della settimana nel calendario" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Mostra i numeri d'indice degli spazi di lavoro nello switcher degli spazi di lavoro nella barra superiore" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "Intensità del Segnale" }, - "Signal:": { - "Signal:": "Segnale:" - }, "Silence for a while": { "Silence for a while": "Disattiva per un po'" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Avvia" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Avvia KDE Connect o Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Avvia KDE Connect o Valent per usare questo plugin" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Strisce" }, - "Subtle Overlay": { - "Subtle Overlay": "Sovrapposizione Sottile" - }, "Summary": { "Summary": "Riassunto" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Impossibile utilizzare il terminale di ripiego. Installa uno degli emulatori di terminale supportati oppure esegui manualmente 'dms greeter sync'." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Terminale di ripiego aperto. Completa la configurazione dell'autenticazione lì; si chiuderà automaticamente al termine." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminale di ripiego aperto. Completa la sincronizzazione lì; si chiuderà automaticamente al termine." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Backend multiplexer del terminale da usare" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Terminale aperto. Completa la configurazione dell'autenticazione lì; si chiuderà automaticamente al termine." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminale aperto. Completa l'autenticazione per la sincronizzazione lì; si chiuderà automaticamente al termine." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminali - Usa Sempre Tema Scuro" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Rendering del Testo" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "Lo strumento 'boregard' non è installato o non è nel tuo PATH.\n\nInstallalo da https://danklinux.com, poi riattiva questo plugin." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "Lo strumento \"dgop\" è necessario per il monitoraggio del sistema.\nInstalla dgop per utilizzare questa funzionalità." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "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.": "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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": "Questa installazione usa ancora hyprland.conf. Esegui dms setup per migrare prima di modificare le impostazioni di layout." - }, - "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.": "Questa installazione usa ancora hyprland.conf. Esegui dms setup per migrare prima di modificare le regole delle finestre nelle Impostazioni." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "L'operazione potrebbe richiedere alcuni secondi" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Affianca" }, - "Tile H": { - "Tile H": "Affianca Orizz." - }, "Tile Horizontally": { "Tile Horizontally": "Affianca Orizzontalmente" }, - "Tile V": { - "Tile V": "Affianca Vert." - }, "Tile Vertically": { "Tile Vertically": "Affianca Verticalmente" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Barra di Avanzamento del Timeout" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Timeout per le notifiche di priorità critica" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Timeout per le notifiche di bassa priorità" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Timeout per le notifiche di priorità normale" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Saturazione del Colore" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Trasparenza" }, - "Transparency of the border": { - "Transparency of the border": "Trasparenza del bordo" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Trasparenza dello strato d'ombra" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "Trasparenza del contorno del widget" - }, "Trash": { "Trash": "Cestino" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Rimuovi dal Dock" }, - "Unsaved Changes": { - "Unsaved Changes": "Modifiche non Salvate" - }, "Unsaved changes": { "Unsaved changes": "Modifiche non salvate" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Tempo di Attività" }, - "Uptime:": { - "Uptime:": "Tempo di Attività:" - }, "Urgent": { "Urgent": "Urgente" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "Usa i colori estratti dalla copertina dell'album invece dei colori del tema di sistema" }, - "Use custom border size": { - "Use custom border size": "Usa uno spessore bordo personalizzato" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Usa larghezza bordo/cornice di focus personalizzata" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Usa tema di suoni dalle impostazioni di sistema" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "Usa la superficie estesa per il contenuto del launcher" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "Utilizza il livello di sovrapposizione all'apertura del launcher" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "Usa la stessa posizione e dimensione su tutti gli schermi" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Quando bloccato" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "Bianco" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Regole Finestra" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Inclusione Regole Finestra Mancanti" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Regole Finestra non Configurate" - }, "Wipe": { "Wipe": "Tendina" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Spazio di Lavoro" }, - "Workspace Appearance": { - "Workspace Appearance": "Aspetto Spazi di Lavoro" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Numeri Indice Spazi di Lavoro" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Spaziatura Interna degli Spazi di Lavoro" }, - "Workspace Settings": { - "Workspace Settings": "Impostazioni Spazi di Lavoro" - }, "Workspace Switcher": { "Workspace Switcher": "Switcher Spazi di Lavoro" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Ieri" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Ci sono modifiche non salvate. Salvare prima di chiudere questa scheda?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Ci sono modifiche non salvate. Salvare prima di continuare?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Ci sono modifiche non salvate. Salvare prima di creare un nuovo file?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Ci sono modifiche non salvate. Salvare prima di aprire un file?" - }, "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.": { "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." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Il tuo sistema è aggiornato!" }, - "actions": { - "actions": "azioni" - }, "admin": { "admin": "amministratore" }, "attached": { "attached": "agganciato" }, - "boregard is required": { - "boregard is required": "boregard è richiesto" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "dispositivo" }, - "devices connected": { - "devices connected": "dispositivi connessi" - }, "dgop not available": { "dgop not available": "dgop non disponibile" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "in discussione" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms è una shell desktop moderna e altamente personalizzabile con un design ispirato a Material 3.

È costruita con Quickshell, un framework QT6 per la creazione di shell desktop, e Go, un linguaggio di programmazione compilato e staticamente tipizzato." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "GitHub di mangowc" }, - "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "matugen non disponibile o disabilitato - non può applicare i colori GTK" - }, - "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "matugen non disponibile o disabilitato - non può applicare i colori Qt" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen non trovato - installa il pacchetto matugen per il theming dinamico" @@ -9326,6 +8855,9 @@ "nav": { "nav": "nav" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "GitHub di niri" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "su Sway" }, - "open": { - "open": "apri" - }, "or run ": { "or run ": "o esegui " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon non disponibile" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "proc" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 di %2" }, - "verified": { - "verified": "verificato" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Installa solo da sorgenti fidate" }, diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index 6c4b00977..9badee937 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 アニメーション速度" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 件のセッション" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "1% がコピーされました" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 カスタムアニメーション時間" - }, "%1 disconnected": { "%1 disconnected": "%1 件切断済み" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 ディスプレイ" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 は存在しますが、含まれていません。ウィンドウルールは適用されません。" - }, "%1 filtered": { "%1 filtered": "フィルター済み %1 件" }, @@ -119,9 +116,6 @@ "'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」は最初にパスワードまたは指紋認証が必要で、その後にキーが必要です。" }, - "(Default)": { - "(Default)": "(デフォルト)" - }, "(Unnamed)": { "(Unnamed)": "(名前なし)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24 時間形式" }, - "24-hour clock": { - "24-hour clock": "24時間時計" - }, "25 seconds": { "25 seconds": "25秒" }, @@ -509,8 +500,11 @@ "Afternoon": { "Afternoon": "午後" }, + "Alerts": { + "Alerts": "" + }, "All": { - "All": "全て" + "All": "すべて" }, "All checks passed": { "All checks passed": "すべてのチェックに成功しました" @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "認証が必要です" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "認証の変更を適用しました。" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "認証の変更は自動的に適用されます。" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "認証の変更は自動的に適用されます。指紋のみのログインでは Keyring のロックが解除されない場合があります。" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "認証の変更には sudo が必要です。パスワードまたは指紋を使用できるよう端末を開きます。" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "認証が失敗しました、もう一度試してください" - }, "Authorize": { "Authorize": "許可" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "自動省電力" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "自動モードがオンになっています。手動プロファイル選択は無効になっています。" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "自動保存しました" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "自動消去まで" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "詳細表示と予報表示で利用可能" }, - "Available.": { - "Available.": "利用可能。" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "バックエンド" }, - "Backends: %1": { - "Backends: %1": "バックエンド: %1" - }, "Background": { "Background": "背景" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "バー %1" }, - "Bar Configurations": { - "Bar Configurations": "バーの設定" - }, "Bar Inset Padding": { "Bar Inset Padding": "バーの内側余白" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "バーの影、境界線、角" }, - "Bar spacing and size": { - "Bar spacing and size": "バーの間隔とサイズ" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "影の基本色(透明度は自動的に適用されます)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "バッテリー %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "バッテリー充電上限" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "バッテリー駆動" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "バッテリー保護と充電" - }, - "Battery Status": { - "Battery Status": "バッテリー状態" - }, "Battery and power management": { "Battery and power management": "バッテリーと電源管理" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "バッテリー残量 %1% - そろそろ充電してください" }, - "Battery level and power management": { - "Battery level and power management": "バッテリーレベルおよび電源管理" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "重大アラートを出すバッテリー残量の割合です。" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "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.": "コンポジター設定で spotlight IPC アクションをバインドしてください。" - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "コンポジター設定で spotlight-bar IPC アクションをバインドしてください。" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Binds include を追加しました" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "ぼかし" }, - "Blur Border Color": { - "Blur Border Color": "ぼかし境界線の色" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "ぼかし境界線の透明度" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "ぼかし壁紙レイヤー" }, "Blur on Overview": { "Blur on Overview": "概要のぼかし" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "バー、ポップアウト、モーダル、通知の背後の背景をぼかす。コンポジターのサポートと設定が必要。" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "バー、ポップアウト、モーダル、通知の背後をぼかします。コンポジターの対応が必要です。不透明度も合わせて調整してください。" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "枠線の幅" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "ぼかしたサーフェスの周囲のボーダー色" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "ボタンカラー" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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.": "必要なときに同期状態を確認します。同期(フル)はメイン管理者向けで、テーマをログイン画面へコピーし、システムの greeter 設定を行います。複数ユーザー環境では、設定 → ユーザーで他のアカウントを追加し、それぞれログアウト後に再ログインして dms greeter sync --profile を実行してください。フル同期ではありません。認証の変更は自動で適用されます。" - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "設定 → ドック → ゴミ箱でカスタムコマンドを確認してください。" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "ダークモードの色を選ぶ" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "ドックランチャーロゴの色を選ぶ" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "ランチャーロゴの色を選ぶ" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "このバーが影の方向を決定する方法を選ぶ" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "バッテリーアラートの通知方法を選択します。" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "ウィジェット文字色をニュートラルかアクセント色から選択" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "ウィジェットの背景色を選んでください" - }, - "Choose the border accent color": { - "Choose the border accent color": "ボーダーの強調色を選ぶ" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Dank Barのランチャーボタンに表示されるロゴを選ぶ" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "「Setup」をクリックして %1 を作成し、コンポジター設定に include を追加します。" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "「Setup」をクリックして outputs 設定を作成し、コンポジター設定に include を追加します。" - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Import をクリックして .ovpn または .conf を追加" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "壁紙で覆われない領域に表示する色(例: フィットやパディングモード)" - }, - "Color temperature for day time": { - "Color temperature for day time": "昼間の色温度" - }, "Color temperature for night mode": { "Color temperature for night mode": "ナイトモードの色温度" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "このディスプレイが再接続されたときに設定が保持されます" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "設定" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "接続中..." }, - "Connecting…": { - "Connecting…": "接続中…" - }, "Connection failed": { "Connection failed": "接続に失敗しました" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "シェル面、ポップアウト、モーダルの不透明度を制御" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "バー背景の不透明度を制御" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "境界線の不透明度を制御" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "影レイヤーの不透明度を制御" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "ウィジェット輪郭線の不透明度を制御" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "ウィジェット背景の不透明度を制御" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "ぼかした前景カード、ピル型要素、通知カードのアウトラインを調整" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "影の基本ぼかし半径とオフセットを制御" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "影の不透明度を制御" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "プロトコルによるぼかしが適用されたウィンドウの外縁を調整" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "影の透明度を制御" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "ログイン画面用の便利なオプションです。適用するには Sync を実行してください。" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "角と背景" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "自動ログイン更新用の端末を開けませんでした。" - }, "Count Only": { "Count Only": "件数のみ" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "新しい %1 セッションを作成(n)" - }, "Create rule for:": { "Create rule for:": "次のルールを作成:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "カスタム..." }, - "Custom: ": { - "Custom: ": "カスタム: " - }, "Customizable empty space": { "Customizable empty space": "カスタマイズ可能な空きスペース" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS ショートカット" }, - "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 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 には 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 には管理者権限が必要です。完了すると端末は自動で閉じます。" - }, "DMS out of date": { "DMS out of date": "DMSに更新があります" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "DMS サーバーのバージョンが古い(APIバージョン %1、本来はバージョン %2 が必要)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "ユーザーを削除" }, - "Delete user?": { - "Delete user?": "ユーザーを削除しますか?" - }, "Demi Bold": { "Demi Bold": "デミボールド" }, @@ -2505,7 +2382,7 @@ "Disable Output": "出力を無効化" }, "Disabled": { - "Disabled": "無効化されました" + "Disabled": "無効" }, "Disabled by Frame Mode": { "Disabled by Frame Mode": "フレームモードにより無効化" @@ -2529,7 +2406,7 @@ "Disconnect": "切断" }, "Disconnected": { - "Disconnected": "切断済み" + "Disconnected": "未接続" }, "Disconnected from WiFi": { "Disconnected from WiFi": "WiFiから切断されました" @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "電源メニューのアクションをリストではなくグリッドに表示" }, - "Display seconds in the clock": { - "Display seconds in the clock": "時計に秒を表示" - }, "Display setup failed": { "Display setup failed": "ディスプレイ設定に失敗しました" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "表示" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "オーバーフローが有効なとき件数を表示" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "アクティブなキーボードレイアウトを表示、切り替えを可能に" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "ドックの不透明度" }, - "Dock Visibility": { - "Dock Visibility": "ドックの表示" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "ドックの余白、不透明度、境界線" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "ドックの余白、透明度、境界線" - }, "Dock window": { "Dock window": "ドックウィンドウ" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "ゴミ箱を空にする (%1)" }, - "Empty Trash?": { - "Empty Trash?": "ゴミ箱を空にしますか?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "より広い色域と HDR サポートのために 10 ビット色深度を有効にします" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "有効化されました" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "有効ですが、指紋認証の利用可否を確認できませんでした。" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "有効ですが、指紋リーダーが検出されませんでした。" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "有効ですが、まだ指紋が登録されていません。指紋を登録すると認証の変更は自動的に適用されます。" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "有効ですが、まだ指紋が登録されていません。指紋を登録して Sync を実行してください。" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "有効ですが、まだ登録済みのセキュリティキーが見つかっていません。キーを登録するか U2F 設定を更新すると、認証の変更は自動的に適用されます。" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "有効ですが、まだ登録済みのセキュリティキーが見つかっていません。キーを登録して Sync を実行してください。" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "有効ですが、セキュリティキーの利用可否を確認できませんでした。" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "有効です。PAM はすでに指紋認証を提供しています。" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "有効です。PAM はすでにセキュリティキー認証を提供しています。" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "有効です。PAM は指紋認証を提供していますが、まだ指紋が登録されていません。" - }, "Enabling WiFi...": { "Enabling WiFi...": "WiFi を有効化中..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "完全一致" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "排他ゾーンオフセット" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "クラスへのプリンター追加に失敗しました" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "GTK カラーの適用に失敗しました" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Qt カラーの適用に失敗しました" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "充電上限をシステムに適用できませんでした" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "ナイトモードの有効化に失敗しました" }, - "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": "ネットワークQRコードの取得に失敗しました: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "ゴミ箱への移動に失敗しました" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "plugin_settings.json の解析に失敗しました" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "session.json の解析に失敗しました" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "settings.json の解析に失敗しました" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "プリンターの一時中断に失敗しました" @@ -3368,8 +3188,8 @@ "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.": "ゴミ箱を開くために使用するファイルマネージャーです。独自のコマンドを入力するには「カスタム」を選択してください。" }, - "File received from": { - "File received from": "ファイルの受信元" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "ファイル検索には dsearch が必要です\ngithub.com/AvengeMedia/danksearch からインストールしてください" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "プレーンテキストファイルを編集する場合" }, - "For reading PDF files": { - "For reading PDF files": "PDF ファイルを読む場合" - }, "Force HDR": { "Force HDR": "HDR を強制" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Override を生成" }, @@ -3726,7 +3546,7 @@ "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/4 または QT5/QT6(qt6ct-kde が必要)設定を生成します。必要なのは一度だけです。

GTK テーマを適用する前に adw-gtk3 を設定することを推奨します。" }, "Generic": { - "Generic": "汎用" + "Generic": "プリセット" }, "Geometric Centering": { "Geometric Centering": "" @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "付与" }, - "Grant admin?": { - "Grant admin?": "管理者権限を付与しますか?" - }, "Grant administrator privileges": { "Grant administrator privileges": "管理者権限を付与" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Greeter" }, - "Greeter Appearance": { - "Greeter Appearance": "Greeter の外観" - }, - "Greeter Behavior": { - "Greeter Behavior": "Greeter の動作" - }, - "Greeter Status": { - "Greeter Status": "Greeter の状態" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Greeter を有効化しました。greetd は現在有効です。" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Greeter グループ:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Greeter のみ — メイン時計には影響しません" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Greeter のみ — ログイン画面の日付形式" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord サーバー" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland レイアウト上書き" - }, "Hyprland Options": { "Hyprland Options": "Hyprland オプション" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "パスワードが間違っています" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "パスワードが間違っています - %2 回中 %1 回目の試行です(ロックアウトされる可能性があります)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "パスワードが間違っています - 次の失敗でアカウントがロックされる可能性があります" - }, "Incorrect password - try again": { "Incorrect password - try again": "パスワードが間違っています - もう一度試してください" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "ジョブ" }, - "Jobs: ": { - "Jobs: ": "ジョブ: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "レイアウト上書き" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Greeter のレイアウトとモジュール位置はシェル(例: バー設定)から同期されます。適用するには Sync を実行してください。" - }, "Left": { "Left": "左" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "ロケール" }, - "Locale Settings": { - "Locale Settings": "ロケール設定" - }, "Location": { "Location": "位置" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "ロック画面" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "ロック画面表示" - }, "Lock Screen Format": { "Lock Screen Format": "ロック画面のフォーマット" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "ロック画面の動作" - }, - "Lock Screen layout": { - "Lock Screen layout": "ロック画面レイアウト" - }, "Lock at startup": { "Lock at startup": "起動時にロック" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "ロックフェードの猶予時間" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "ロック画面の認証変更は自動的に適用され、sudo 認証が必要な場合は端末が開くことがあります。" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "ログイン" }, - "Login Authentication": { - "Login Authentication": "ログイン認証" - }, "Long": { "Long": "長い" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "接続モードではフレームによって管理されます" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "管理" }, - "Manages calendar events": { - "Manages calendar events": "カレンダーイベントを管理します" - }, "Manages files and directories": { "Manages files and directories": "ファイルとディレクトリを管理します" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Mango サービスを利用できません" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC レイアウト上書き" - }, "Manual": { "Manual": "手動" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "固定エントリ数が上限に達しました" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "クリップボードエントリごとの最大サイズ" - }, "Media": { "Media": "メディア" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "メディアプレーヤー" }, - "Media Player Settings": { - "Media Player Settings": "メディアプレーヤーの設定" - }, "Media Players (": { "Media Players (": "メディアプレーヤー(" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "モード" }, - "Mode:": { - "Mode:": "モード:" - }, "Model": { "Model": "モデル" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "マウスポインターのサイズ(ピクセル)" }, - "Move": { - "Move": "移動" - }, "Move Widget": { "Move Widget": "ウィジェットを移動" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "マルチメディア" }, - "Multiplexer": { - "Multiplexer": "マルチプレクサ" - }, "Multiplexer Type": { "Multiplexer Type": "マルチプレクサの種類" }, @@ -5115,7 +4866,7 @@ "Muted palette with subdued, calming tones.": "落ち着いた色調のパレット。" }, "My Online": { - "My Online": "私のオンライン" + "My Online": "自分のオンライン" }, "NM not supported": { "NM not supported": "NMが利用できません" @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "ネットワーク速度モニター" }, - "Network Status": { - "Network Status": "ネットワーク状態" - }, "Network Type": { "Network Type": "ネットワーク種別" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri 統合" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri レイアウト上書き" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri コンポジターアクション(フォーカス、移動など)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "プラグインが見つかりませんでした" }, - "No plugins found.": { - "No plugins found.": "プラグインが見つかりませんでした。" - }, "No printer found": { "No printer found": "プリンターが見つかりませんでした" }, @@ -5559,7 +5301,7 @@ "Noise": "ノイズ" }, "None": { - "None": "ない" + "None": "なし" }, "None active": { "None active": "アクティブなものはありません" @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "通知ポップアップ" }, - "Notification Rules": { - "Notification Rules": "通知ルール" - }, "Notification Settings": { "Notification Settings": "通知設定" }, - "Notification Timeouts": { - "Notification Timeouts": "通知タイムアウト" - }, "Notification Type": { "Notification Type": "通知タイプ" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "ガンマは、時間または場所のルールに基づいてのみ調整します。" }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "DMS 管理の PAM にのみ影響します。greetd がすでに pam_fprintd を含んでいる場合、指紋認証は有効のままです。" - }, "Only on Battery": { "Only on Battery": "バッテリー駆動時のみ" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "不透明度" }, - "Opacity of the bar background": { - "Opacity of the bar background": "バー背景の不透明度" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "ウィジェット背景の不透明度" - }, "Opaque": { "Opaque": "不透明" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "ファイルブラウザーを開いています" }, - "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": "この seat 上の他のアクティブセッションを選ぶピッカーを開きます" }, - "Opens image files": { - "Opens image files": "画像ファイルを開く" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "接続フレームモードで接続ランチャーを開きます。" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM はすでにセキュリティキー認証を提供しています。ログイン時に表示するにはこれを有効にしてください。" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM は指紋認証を提供していますが、利用可否を確認できませんでした。" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM は指紋認証を提供していますが、まだ指紋が登録されていません。" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM は指紋認証を提供していますが、リーダーが検出されませんでした。" - }, "PDF Reader": { "PDF Reader": "PDF リーダー" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "時間をゼロ埋め" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "時間をゼロ埋めする(02:00 と 2:00)" - }, "Padding": { "Padding": "パディング" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "ペアリング済み" }, - "Pairing": { - "Pairing": "ペアリング中" - }, "Pairing failed": { "Pairing failed": "ペアリングが失敗しました" }, - "Pairing request from": { - "Pairing request from": "ペアリング要求元" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "ペアリング要求を送信しました" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect は利用できません" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Phone Connect は利用できません" - }, "Phone number": { "Phone number": "電話番号" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping の送信先" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "固定済み" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "音量を調整したときにサウンドを再生" }, - "Play sounds for system events": { - "Play sounds for system events": "システムイベントが発生したときにサウンドを再生" - }, "Playback": { "Playback": "再生" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "音声ファイルを再生します" }, - "Plays video files": { - "Plays video files": "ビデオファイルを再生します" - }, "Please wait...": { "Please wait...": "お待ちください..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "ポップアップの挙動、位置" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "ポート" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "電源プロファイル自動切替" - }, "Power Saver": { "Power Saver": "省電力" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "電源プロファイル管理が利用可能" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "AC 電源接続時に使う電源プロファイルです。" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "バッテリー駆動時に使う電源プロファイルです。" - }, "Power source": { "Power source": "電源" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "プリセット幅(%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "'n' を押すか「新しいセッション」をクリックして作成してください" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "プライマリーコンテナー" }, - "Primary Theme Color": { - "Primary Theme Color": "プライマリテーマ色" - }, "Print Server Management": { "Print Server Management": "プリントサーバー管理" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "プリンター" }, - "Printers: ": { - "Printers: ": "プリンター: " - }, "Prioritize performance": { "Prioritize performance": "パフォーマンスを優先" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "プロセス" }, - "Processes:": { - "Processes:": "プロセス:" - }, "Processing": { "Processing": "進行中" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "バッテリー駆動時のプロファイル" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "プロトコル" }, @@ -6549,7 +6231,7 @@ "Recommended available": "推奨が利用可能" }, "Refresh": { - "Refresh": "リフレッシュ" + "Refresh": "更新" }, "Refresh Weather": { "Refresh Weather": "天気を更新" @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "管理者から外す" }, - "Remove admin?": { - "Remove admin?": "管理者権限を外しますか?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "バーの角丸をなくす" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "サイズをリセット" }, - "Reset to Default?": { - "Reset to Default?": "既定に戻しますか?" - }, "Reset to default": { "Reset to default": "既定に戻す" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "着信" }, - "Ringing": { - "Ringing": "着信中" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "リップル効果" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "ルール" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "ルール名" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "ルール(%1)" }, @@ -6906,7 +6588,7 @@ "Save password": "パスワードを保存" }, "Saved": { - "Saved": "保存されました" + "Saved": "保存済み" }, "Saved Configurations": { "Saved Configurations": "保存済み設定" @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "保存しています..." }, - "Saving…": { - "Saving…": "保存中…" - }, "Scale": { "Scale": "スケール" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "スキャン" }, - "Scanning": { - "Scanning": "スキャン中" - }, "Scanning...": { "Scanning...": "スキャンしています..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "検索..." }, - "Searching": { - "Searching": "検索中" - }, "Searching...": { "Searching...": "検索中..." }, @@ -7044,7 +6717,7 @@ "Secondary Container": "セカンダリコンテナ" }, "Secured": { - "Secured": "保護済み" + "Secured": "セキュリティあり" }, "Security": { "Security": "セキュリティ" @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "セキュリティとプライバシー" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "セキュリティキーモード" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "壁紙を設定するモニターを選ぶ" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "プロセスリストと技術表示用の等幅フォントを選ぶ" }, "Select network": { "Select network": "ネットワークを選択" }, - "Select system sound theme": { - "Select system sound theme": "システムサウンドテーマを選ぶ" - }, "Select the font family for UI text": { "Select the font family for UI text": "UI テキストのフォントファミリーを選択" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "クリップボードを送信" }, - "Send File": { - "Send File": "ファイルを送信" - }, "Send SMS": { "Send SMS": "SMS を送信" }, - "Sending": { - "Sending": "送信中" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Separate" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "通知本文テキスト(htmlBody)のフォントサイズを設定" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "通知概要テキストのフォントサイズを設定" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "バッテリー残量が少ないとみなす割合を設定します。" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "ガンマ制御設定を共有" }, - "Share Text": { - "Share Text": "テキストを共有" - }, "Shared": { "Shared": "共有済み" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Niri の概要表示中に表示" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "コントラストを強めるため、ぼかしたパネル上に前景サーフェスを表示" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "マウントパスを表示" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "現在フォーカスされているモニターにのみ通知ポップアップを表示" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "現在フォーカスされているモニターにのみ通知を表示" - }, "Show on Last Display": { "Show on Last Display": "最後のディスプレイに表示" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "概要のみに表示" }, - "Show on all connected displays": { - "Show on all connected displays": "すべての接続されたディスプレイに表示" - }, "Show on screens:": { "Show on screens:": "画面に表示:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "明るさが変化した時にOSDを表示" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Caps Lock の状態が変化した時にOSDを表示" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "音声出力デバイスを切り替えたときに OSD を表示" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "アイドルインヒビターの状態が変化した時にOSDを表示" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "メディアプレーヤーの状態が変化したときに OSD を表示" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "メディアプレーヤーの音量が変化したときにOSDを表示" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "マイクがミュート/ミュート解除された時にOSDを表示" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "電源プロファイルが変化した時にOSDを表示" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "音量が変化したときにOSDを表示" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "ウィンドウが開いていないときだけバーを表示" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "トップバーとコントロールセンターに天気情報を表示" }, - "Show week number in the calendar": { - "Show week number in the calendar": "カレンダーに週番号を表示" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "上部バーのワークスペーススイッチャーにワークスペースインデックス番号を表示します" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "信号強度" }, - "Signal:": { - "Signal:": "Signal:" - }, "Silence for a while": { "Silence for a while": "しばらくミュート" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "始める" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "KDE Connect または Valent を起動" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "このプラグインを使うには KDE Connect または Valent を起動してください" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "ストライプ" }, - "Subtle Overlay": { - "Subtle Overlay": "控えめなオーバーレイ" - }, "Summary": { "Summary": "概要" }, @@ -8022,16 +7632,16 @@ "Tags: %1": "タグ: %1" }, "Tailscale": { - "Tailscale": "テールスケール" + "Tailscale": "Tailscale" }, "Tailscale Network": { - "Tailscale Network": "テールスケールネットワーク" + "Tailscale Network": "Tailscaleネットワーク" }, "Tailscale action failed": { - "Tailscale action failed": "Tailscale アクションに失敗しました" + "Tailscale action failed": "Tailscaleの操作に失敗しました" }, "Tailscale not available": { - "Tailscale not available": "尾部スケールは入手できません" + "Tailscale not available": "Tailscaleを利用できません" }, "Terminal": { "Terminal": "ターミナル" @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "端末フォールバックに失敗しました。対応する端末エミュレーターのいずれかをインストールするか、'dms greeter sync' を手動で実行してください。" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "端末フォールバックを開きました。そこで認証設定を完了してください。完了すると自動的に閉じます。" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "端末フォールバックを開きました。そこで同期を完了してください。完了すると自動的に閉じます。" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "使用する端末マルチプレクサーバックエンド" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "端末を開きました。そこで認証設定を完了してください。完了すると自動的に閉じます。" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "端末を開きました。そこで同期認証を完了してください。完了すると自動的に閉じます。" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "端末 - 常にダークテーマを使用" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "テキストレンダリング" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "システム監視には 'dgop' ツールが必要です。\nこの機能を使うには dgop をインストールしてください。" }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "このインストールはまだ 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.": "このインストールはまだ hyprland.conf を使っています。ディスプレイ設定を編集する前に dms setup を実行して移行してください。" - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "このインストールはまだ hyprland.conf を使っています。設定でウィンドウルールを編集する前に dms setup を実行して移行してください。" + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "これには数秒かかる場合があります" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "タイル" }, - "Tile H": { - "Tile H": "横にタイル" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "縦にタイル" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "タイムアウト進行バー" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "最優先通知のタイムアウト" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "低優先度通知のタイムアウト" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "通常優先度通知のタイムアウト" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "色合いの彩度" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "透明度" }, - "Transparency of the border": { - "Transparency of the border": "境界線の透明度" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "影レイヤーの透明度" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "ウィジェット輪郭線の透明度" - }, "Trash": { "Trash": "ゴミ箱" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "ドックから固定を解除" }, - "Unsaved Changes": { - "Unsaved Changes": "保存されていない変更" - }, "Unsaved changes": { "Unsaved changes": "保存されていない変更" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "稼働時間" }, - "Uptime:": { - "Uptime:": "稼働時間:" - }, "Urgent": { "Urgent": "緊急" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "カスタム境界線サイズを使用" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "カスタムの境界線/フォーカスリング幅を使用" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "システム設定からサウンドテーマを使用" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "すべてのディスプレイで同じ位置とサイズを使用" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "ロック時" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "白" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "ウィンドウルール" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "window_rules include が不足" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "ウィンドウルールは設定されていません" - }, "Wipe": { "Wipe": "ワイプ" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "ワークスペース" }, - "Workspace Appearance": { - "Workspace Appearance": "ワークスペースの外観" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "ワークスペースのインデックス番号" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "ワークスペースのパディング" }, - "Workspace Settings": { - "Workspace Settings": "ワークスペース設定" - }, "Workspace Switcher": { "Workspace Switcher": "ワークスペーススイッチャー" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "昨日" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "保存されていない変更があります。このタブを閉じる前に保存しますか?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "保存されていない変更があります。続行する前に保存しますか?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "保存されていない変更があります。新しいファイルを作成する前に保存しますか?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "保存されていない変更があります。ファイルを開く前に保存しますか?" - }, "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.": { "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\nqt6ct には qt6ct-kde のインストールが必要です。" }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "システムは最新です!" }, - "actions": { - "actions": "アクション" - }, "admin": { "admin": "管理者" }, "attached": { "attached": "接続済み" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "デバイス" }, - "devices connected": { - "devices connected": "接続中のデバイス" - }, "dgop not available": { "dgop not available": "dgop は利用できません" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "議論" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms は、Material 3 に着想を得たデザインを持つ、高度にカスタマイズ可能なモダンなデスクトップシェルです。

デスクトップシェルを構築するための QT6 フレームワークである Quickshell と、静的型付けのコンパイル言語である Go で構築されています。" }, @@ -9285,7 +8817,7 @@ "khal": "khal" }, "last seen %1": { - "last seen %1": "最後に確認されたのは 1%" + "last seen %1": "最終確認 %1" }, "leave empty for default": { "leave empty for default": "既定値を使うには空のままにしてください" @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "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 が利用できないか無効になっているため、Qtカラーを適用できません" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen が見つかりません - 動的テーマ設定には matugen パッケージをインストールしてください" @@ -9326,6 +8855,9 @@ "nav": { "nav": "ナビゲーション" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "Sway 上" }, - "open": { - "open": "開く" - }, "or run ": { "or run ": "または実行: " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon は利用できません" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "procs" }, @@ -9414,7 +8946,7 @@ "until %1": "%1まで" }, "up": { - "up": "上" + "up": "稼働時間" }, "update dms for NM integration.": { "update dms for NM integration.": "NM統合のためにDMSを更新します。" @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 by %2" }, - "verified": { - "verified": "検証済み" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• 信頼できるソースからのみインストールする" }, diff --git a/quickshell/translations/poexports/ko.json b/quickshell/translations/poexports/ko.json index 016b3defa..da70831c9 100644 --- a/quickshell/translations/poexports/ko.json +++ b/quickshell/translations/poexports/ko.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 애니메이션 속도" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 세션" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 복사됨" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 사용자 지정 애니메이션 지속 시간" - }, "%1 disconnected": { "%1 disconnected": "%1 연결 끊김" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 디스플레이" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "" - }, "%1 filtered": { "%1 filtered": "%1 필터링됨" }, @@ -119,9 +116,6 @@ "'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'는 암호나 지문을 먼저 요구한 뒤 키를 요구합니다." }, - "(Default)": { - "(Default)": "(기본값)" - }, "(Unnamed)": { "(Unnamed)": "(이름 없음)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24시간 형식" }, - "24-hour clock": { - "24-hour clock": "24시간 시계" - }, "25 seconds": { "25 seconds": "25초" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "오후" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "모두" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "인증 필요" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "인증 변경 사항이 적용되었습니다." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "인증 변경 사항은 자동으로 적용됩니다." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "인증 변경 사항은 자동으로 적용됩니다. 지문 전용 로그인은 Keyring의 잠금을 해제하지 못할 수 있습니다." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "인증 변경 사항에는 sudo가 필요합니다. 비밀번호나 지문을 사용할 수 있도록 터미널을 엽니다." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "인증 실패, 다시 시도해 주세요" - }, "Authorize": { "Authorize": "권한 부여" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "자동 절전" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "자동은 표시줄 간격과 일치시키고, 끄기는 Hyprland 구성에 간격을 맡깁니다" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "자동은 표시줄 간격과 일치시키고, 끄기는 MangoWC 구성에 간격을 맡깁니다" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "자동은 표시줄 간격과 일치시키고, 끄기는 niri 구성에 간격을 맡깁니다" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "자동 모드가 켜져 있습니다. 수동 프로필 선택이 비활성화되었습니다." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "자동 저장됨" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "이후 자동 지우기" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "상세 및 일기예보 보기 모드에서 사용 가능" }, - "Available.": { - "Available.": "사용 가능." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "백엔드" }, - "Backends: %1": { - "Backends: %1": "백엔드: %1" - }, "Background": { "Background": "배경" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "표시줄 %1" }, - "Bar Configurations": { - "Bar Configurations": "표시줄 구성" - }, "Bar Inset Padding": { "Bar Inset Padding": "표시줄 내부 패딩" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "표시줄 그림자, 테두리 및 모서리" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "그림자 기본 색상 (불투명도는 자동으로 적용됨)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "배터리 %1" }, - "Battery Alerts": { - "Battery Alerts": "배터리 알림" - }, "Battery Charge Limit": { "Battery Charge Limit": "배터리 충전 제한" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "배터리 전원" }, - "Battery Protection": { - "Battery Protection": "배터리 보호" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "배터리 상태" - }, "Battery and power management": { "Battery and power management": "배터리 및 전원 관리" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "배터리가 %1%입니다 - 곧 충전을 고려하세요" }, - "Battery level and power management": { - "Battery level and power management": "배터리 잔량 및 전원 관리" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "치명적인 알림을 트리거할 배터리 비율입니다." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "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.": "컴포지터 구성에서 spotlight IPC 작업을 바인딩합니다." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "컴포지터 구성에서 spotlight-bar IPC 작업을 바인딩합니다." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "바인딩 포함 추가됨" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "블러" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "배경화면 레이어 블러" }, "Blur on Overview": { "Blur on Overview": "오버뷰 시 블러" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "표시줄, 팝아웃, 모달 및 알림 뒤의 배경을 블러 처리합니다. 컴포지터 지원이 필요합니다. 그에 맞춰 불투명도를 조정하세요." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "테두리 너비" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "팝아웃, 모달 및 기타 셸 표면 주변의 테두리 색상" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "버튼 색상" }, - "By %1": { - "By %1": "%1 제작" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "설정 → 독 → 휴지통에서 사용자 지정 명령을 확인하세요." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "다크 모드 색상 선택" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "독 런처 로고 색상 선택" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "런처 로고 색상 선택" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "이 표시줄이 그림자 방향을 확인하는 방식을 선택하세요" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "위험 수준 배터리 알림을 받는 방식을 선택하세요." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "중립적 또는 강조 색상의 위젯 텍스트를 선택하세요" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "위젯 배경 색상을 선택하세요" - }, - "Choose the border accent color": { - "Choose the border accent color": "테두리 강조 색상을 선택하세요" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "DankBar의 런처 버튼에 표시되는 로고를 선택하세요" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "'설정'을 클릭하여 %1을(를) 생성하고 컴포지터 구성에 포함을 추가하세요." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "'설정'을 클릭하여 출력 구성을 생성하고 컴포지터 구성에 포함을 추가하세요." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": ".ovpn 또는 .conf를 추가하려면 가져오기를 클릭하세요" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "배경화면으로 덮이지 않은 영역에 표시되는 색상" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "주간 색온도" - }, "Color temperature for night mode": { "Color temperature for night mode": "야간 모드 색온도" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "이 디스플레이가 다시 연결될 때 구성이 보존됩니다" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "구성" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "연결 중..." }, - "Connecting…": { - "Connecting…": "연결 중…" - }, "Connection failed": { "Connection failed": "연결 실패" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "셸 표면, 팝아웃 및 모달의 불투명도 제어" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "표시줄 배경의 불투명도 제어" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "테두리의 불투명도 제어" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "그림자 레이어의 불투명도 제어" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "위젯 윤곽선의 불투명도 제어" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "위젯 배경의 불투명도 제어" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "전경 카드, 알약 버튼 및 알림 카드 주변의 윤곽선 제어" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "그림자의 기본 흐림 반경 및 오프셋 제어" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "그림자의 불투명도 제어" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "팝아웃, 모달 및 기타 셸 표면의 윤곽선 제어" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "로그인 화면 편의 옵션입니다. 동기화하여 적용하세요." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "모서리 및 배경" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "개수만 표시" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "새로운 %1 세션 생성 (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "" - }, "Create rule for:": { "Create rule for:": "규칙 생성 대상:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "사용자 지정..." }, - "Custom: ": { - "Custom: ": "사용자 지정:" - }, "Customizable empty space": { "Customizable empty space": "사용자 지정 가능한 빈 공간" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS 바로 가기" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS가 구버전임" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "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)." }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "사용자 삭제" }, - "Delete user?": { - "Delete user?": "사용자를 삭제하시겠습니까?" - }, "Demi Bold": { "Demi Bold": "데미 볼드" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "목록 대신 그리드에 전원 메뉴 작업 표시" }, - "Display seconds in the clock": { - "Display seconds in the clock": "시계에 초 표시" - }, "Display setup failed": { "Display setup failed": "디스플레이 설정 실패" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "디스플레이" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "오버플로가 활성화될 때 개수 표시" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "활성 키보드 레이아웃을 표시하고 전환 허용" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "독 불투명도" }, - "Dock Visibility": { - "Dock Visibility": "독 가시성" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "독 여백, 불투명도 및 테두리" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "독 창" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "휴지통 비우기 (%1)" }, - "Empty Trash?": { - "Empty Trash?": "휴지통을 비우시겠습니까?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "더 넓은 색 영역과 HDR 지원을 위해 10비트 색 심도 활성화" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "활성화됨" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "활성화되었지만 지문 사용 가능 여부를 확인할 수 없습니다." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "활성화되었지만 지문 인식기가 감지되지 않았습니다." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "활성화되었지만 아직 등록된 지문이 없습니다. 지문을 등록하면 인증 변경 사항이 자동으로 적용됩니다." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "활성화되었지만 아직 등록된 지문이 없습니다. 지문을 등록하고 동기화를 실행하세요." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "활성화되었지만 등록된 보안 키를 아직 찾을 수 없습니다. 키를 등록하거나 U2F 구성이 업데이트되면 인증 변경 사항이 자동으로 적용됩니다." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "활성화되었지만 등록된 보안 키를 아직 찾을 수 없습니다. 키를 등록하고 동기화를 실행하세요." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "활성화되었지만 보안 키 사용 가능 여부를 확인할 수 없습니다." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "활성화됨. PAM에서 이미 지문 인증을 제공합니다." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "활성화됨. PAM에서 이미 보안 키 인증을 제공합니다." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "활성화됨. PAM에서 지문 인증을 제공하지만 아직 등록된 지문이 없습니다." - }, "Enabling WiFi...": { "Enabling WiFi...": "Wi-Fi 켜는 중..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "정확히 일치" }, - "Excluded Media Players": { - "Excluded Media Players": "제외된 미디어 플레이어" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "독점 영역 오프셋" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "클래스에 프린터 추가 실패" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "GTK 색상 적용 실패" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Qt 색상 적용 실패" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "시스템에 충전 제한 적용 실패" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "야간 모드 활성화 실패" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "네트워크 QR 코드 가져오기 실패: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "휴지통으로 이동 실패" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "plugin_settings.json 파싱 실패" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "session.json 파싱 실패" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "settings.json 파싱 파싱 실패" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "프린터 일시 중지 실패" @@ -3368,8 +3188,8 @@ "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.": "휴지통을 열 때 사용되는 파일 관리자입니다. 자신만의 명령어를 입력하려면 \"사용자 지정\"을 선택하세요." }, - "File received from": { - "File received from": "다음으로부터 파일을 받음:" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "파일 검색에는 dsearch가 필요합니다\ngithub.com/AvengeMedia/danksearch에서 설치하세요" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "일반 텍스트 파일 편집용" }, - "For reading PDF files": { - "For reading PDF files": "PDF 파일 읽기용" - }, "Force HDR": { "Force HDR": "HDR 강제" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "간격" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "오버라이드 생성" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "권한 부여" }, - "Grant admin?": { - "Grant admin?": "관리자 권한을 부여하시겠습니까?" - }, "Grant administrator privileges": { "Grant administrator privileges": "관리자 권한 부여" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "로그인 화면" }, - "Greeter Appearance": { - "Greeter Appearance": "로그인 화면 모양" - }, - "Greeter Behavior": { - "Greeter Behavior": "로그인 화면 동작" - }, - "Greeter Status": { - "Greeter Status": "로그인 화면 상태" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "로그인 화면이 활성화되었습니다. 이제 greetd가 활성화됩니다." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "로그인 화면 그룹:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "로그인 화면 전용 — 기본 시계에 영향을 주지 않음" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "로그인 화면 전용 — 로그인 화면의 날짜 형식" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord 서버" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland 레이아웃 오버라이드" - }, "Hyprland Options": { "Hyprland Options": "Hyprland 옵션" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "잘못된 비밀번호" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "잘못된 비밀번호 - %1/%2회 시도(잠길 수 있음)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "잘못된 비밀번호 - 다음에 실패하면 계정이 잠길 수 있음" - }, "Incorrect password - try again": { "Incorrect password - try again": "잘못된 비밀번호 - 다시 시도하세요" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "작업" }, - "Jobs: ": { - "Jobs: ": "작업:" - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "레이아웃 오버라이드" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "" - }, "Left": { "Left": "왼쪽" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "로캘" }, - "Locale Settings": { - "Locale Settings": "로캘 설정" - }, "Location": { "Location": "위치" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "잠금 화면" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "잠금 화면 모양" - }, - "Lock Screen Display": { - "Lock Screen Display": "잠금 화면 표시" - }, "Lock Screen Format": { "Lock Screen Format": "잠금 화면 형식" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "잠금 화면 동작" - }, - "Lock Screen layout": { - "Lock Screen layout": "잠금 화면 레이아웃" - }, "Lock at startup": { "Lock at startup": "시작 시 잠금" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "잠금 페이드 유예 기간" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "잠금 화면 인증 변경 사항은 자동으로 적용되며 sudo 인증이 필요한 경우 터미널을 열 수 있습니다." - }, "Lock screen font": { "Lock screen font": "잠금 화면 글꼴" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "로그인" }, - "Login Authentication": { - "Login Authentication": "로그인 인증" - }, "Long": { "Long": "긺" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "연결된 모드에서 프레임이 관리" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "관리" }, - "Manages calendar events": { - "Manages calendar events": "캘린더 이벤트 관리" - }, "Manages files and directories": { "Manages files and directories": "파일 및 디렉터리 관리" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Mango 서비스를 사용할 수 없음" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC 레이아웃 오버라이드" - }, "Manual": { "Manual": "수동" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "최대 고정 항목 수에 도달함" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "클립보드 항목당 최대 크기" - }, "Media": { "Media": "미디어" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "미디어 플레이어" }, - "Media Player Settings": { - "Media Player Settings": "미디어 플레이어 설정" - }, "Media Players (": { "Media Players (": "미디어 플레이어 (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "모드" }, - "Mode:": { - "Mode:": "모드:" - }, "Model": { "Model": "모델" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "마우스 포인터 크기(픽셀)" }, - "Move": { - "Move": "이동" - }, "Move Widget": { "Move Widget": "위젯 이동" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "멀티미디어" }, - "Multiplexer": { - "Multiplexer": "멀티플렉서" - }, "Multiplexer Type": { "Multiplexer Type": "멀티플렉서 유형" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "네트워크 속도 모니터" }, - "Network Status": { - "Network Status": "네트워크 상태" - }, "Network Type": { "Network Type": "네트워크 유형" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri 통합" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri 레이아웃 오버라이드" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri 컴포지터 작업(포커스, 이동 등)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "플러그인을 찾을 수 없음" }, - "No plugins found.": { - "No plugins found.": "플러그인을 찾을 수 없습니다." - }, "No printer found": { "No printer found": "프린터를 찾을 수 없음" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "알림 팝업" }, - "Notification Rules": { - "Notification Rules": "알림 규칙" - }, "Notification Settings": { "Notification Settings": "알림 설정" }, - "Notification Timeouts": { - "Notification Timeouts": "알림 시간 초과" - }, "Notification Type": { "Notification Type": "알림 유형" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "시간 또는 위치 규칙에 따라서만 감마를 조정합니다." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "DMS 관리 PAM에만 영향을 줍니다. greetd에 이미 pam_fprintd가 포함된 경우 지문은 활성화된 상태로 유지됩니다." - }, "Only on Battery": { "Only on Battery": "배터리 사용 시만" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "불투명도" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "불투명" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "파일 브라우저 여는 중" }, - "Opening terminal to update greetd": { - "Opening terminal to update 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 image files": { - "Opens image files": "이미지 파일 열기" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "연결된 프레임 모드에서 연결된 런처를 엽니다." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM은 이미 보안 키 인증을 제공합니다. 로그인 시 표시하려면 활성화하세요." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM은 지문 인증을 제공하지만 가용성을 확인할 수 없습니다." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM은 지문 인증을 제공하지만 아직 등록된 지문이 없습니다." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM은 지문 인증을 제공하지만 판독기가 감지되지 않았습니다." - }, "PDF Reader": { "PDF Reader": "PDF 리더" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "시간 패딩" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "시간 패딩(02:00 대 2:00)" - }, "Padding": { "Padding": "여백" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "페어링됨" }, - "Pairing": { - "Pairing": "페어링 중" - }, "Pairing failed": { "Pairing failed": "페어링 실패" }, - "Pairing request from": { - "Pairing request from": "페어링 요청 발신자:" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "페어링 요청 보냄" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "휴대폰 연결을 사용할 수 없음" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "" - }, "Phone number": { "Phone number": "전화번호" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "핑" }, - "Ping sent to": { - "Ping sent to": "핑 보낸 대상:" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "고정됨" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "볼륨을 조정할 때 소리 재생" }, - "Play sounds for system events": { - "Play sounds for system events": "시스템 이벤트에 대한 소리 재생" - }, "Playback": { "Playback": "재생" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "오디오 파일 재생" }, - "Plays video files": { - "Plays video files": "비디오 파일 재생" - }, "Please wait...": { "Please wait...": "잠시 기다려 주십시오..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "팝업 동작, 위치" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "포트" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "전원 프로필 및 절약" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "절전" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "전원 프로필 관리 사용 가능" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "AC 전원이 연결되어 있을 때 사용할 전원 프로필." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "배터리 전원으로 실행할 때 사용할 전원 프로필." - }, "Power source": { "Power source": "전원" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "사전 설정 너비(%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "Ctrl+N을 누르거나 '새 세션'을 클릭하여 생성하세요" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "기본 컨테이너" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "인쇄 서버 관리" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "프린터" }, - "Printers: ": { - "Printers: ": "프린터:" - }, "Prioritize performance": { "Prioritize performance": "성능 우선" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "프로세스" }, - "Processes:": { - "Processes:": "프로세스:" - }, "Processing": { "Processing": "처리 중" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "배터리 사용 시 프로필" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "프로토콜" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "관리자 권한 제거" }, - "Remove admin?": { - "Remove admin?": "관리자 권한을 제거하시겠습니까?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "바에서 모서리 둥글게 처리 제거" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "크기 재설정" }, - "Reset to Default?": { - "Reset to Default?": "기본값으로 재설정하시겠습니까?" - }, "Reset to default": { "Reset to default": "기본값으로 재설정" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "벨 울리기" }, - "Ringing": { - "Ringing": "벨 울리는 중" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "파문 효과" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "규칙" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "규칙 이름" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "규칙(%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "저장 중..." }, - "Saving…": { - "Saving…": "저장 중…" - }, "Scale": { "Scale": "배율" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "스캔" }, - "Scanning": { - "Scanning": "스캔 중" - }, "Scanning...": { "Scanning...": "스캔 중..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "검색..." }, - "Searching": { - "Searching": "검색 중" - }, "Searching...": { "Searching...": "검색 중..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "보안 및 개인 정보 보호" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "보안 키 모드" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "잠금 화면 배경 이미지 선택" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "배경화면을 구성할 모니터 선택" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "프로세스 목록 및 기술 디스플레이에 사용할 고정폭 글꼴 선택" }, "Select network": { "Select network": "네트워크 선택" }, - "Select system sound theme": { - "Select system sound theme": "시스템 소리 테마 선택" - }, "Select the font family for UI text": { "Select the font family for UI text": "UI 텍스트의 글꼴 패밀리 선택" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "클립보드 보내기" }, - "Send File": { - "Send File": "" - }, "Send SMS": { "Send SMS": "SMS 보내기" }, - "Sending": { - "Sending": "보내는 중" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "분리" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "알림 본문 텍스트의 글꼴 크기 설정(htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "알림 요약 텍스트의 글꼴 크기 설정" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "배터리가 부족한 것으로 간주되는 백분율을 설정합니다." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "감마 제어 설정 공유" }, - "Share Text": { - "Share Text": "" - }, "Shared": { "Shared": "공유됨" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Niri 개요 중 표시" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "강한 대비를 위해 패널에 전경 표면 표시" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "마운트 경로 표시" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "현재 포커스된 모니터에만 알림 팝업 표시" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "현재 포커스된 모니터에만 알림 표시" - }, "Show on Last Display": { "Show on Last Display": "마지막 디스플레이에 표시" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "개요에만 표시" }, - "Show on all connected displays": { - "Show on all connected displays": "연결된 모든 디스플레이에 표시" - }, "Show on screens:": { "Show on screens:": "화면에 표시:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "밝기가 변경될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Caps Lock 상태가 변경될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "오디오 출력 장치를 순환할 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "대기 금지기 상태가 변경될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "미디어 플레이어 상태가 변경될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "미디어 플레이어 볼륨이 변경될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "마이크가 음소거/음소거 해제될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "전원 프로필이 변경될 때 온스크린 디스플레이 표시" - }, - "Show on-screen display when volume changes": { - "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": "열려 있는 창이 없을 때만 바 표시" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "상단 바 및 제어 센터에 날씨 정보 표시" }, - "Show week number in the calendar": { - "Show week number in the calendar": "캘린더에 주 번호 표시" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "상단 바 작업 공간 전환기에 작업 공간 인덱스 번호 표시" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "신호 강도" }, - "Signal:": { - "Signal:": "신호:" - }, "Silence for a while": { "Silence for a while": "잠시 무음" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "시작" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "이 플러그인을 사용하려면 KDE Connect 또는 Valent 시작" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "줄무늬" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "요약" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "터미널 대체를 실패했습니다. 지원되는 터미널 에뮬레이터 중 하나를 설치하거나 'dms greeter sync'를 수동으로 실행하세요." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "터미널 대체가 열렸습니다. 거기에서 인증 설정을 완료하세요. 완료되면 자동으로 닫힙니다." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "터미널 대체가 열렸습니다. 거기에서 동기화를 완료하세요. 완료되면 자동으로 닫힙니다." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "사용할 터미널 멀티플렉서 백엔드" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "터미널이 열렸습니다. 거기에서 인증 설정을 완료하세요. 완료되면 자동으로 닫힙니다." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "터미널이 열렸습니다. 거기에서 동기화 인증을 완료하세요. 완료되면 자동으로 닫힙니다." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "터미널 - 항상 다크 테마 사용" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "텍스트 렌더링" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "시스템 모니터링을 위해서는 'dgop' 도구가 필요합니다.\n이 기능을 사용하려면 dgop를 설치하세요." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "이 설치는 여전히 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.": "이 설치는 여전히 hyprland.conf를 사용하고 있습니다. 디스플레이 설정을 편집하기 전에 dms setup을 실행하여 마이그레이션하세요." - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "이 설치는 여전히 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.": "이 설치는 여전히 hyprland.conf를 사용하고 있습니다. 설정에서 창 규칙을 편집하기 전에 dms setup을 실행하여 마이그레이션하세요." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "몇 초 정도 걸릴 수 있습니다" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "타일" }, - "Tile H": { - "Tile H": "" - }, "Tile Horizontally": { "Tile Horizontally": "가로로 타일" }, - "Tile V": { - "Tile V": "" - }, "Tile Vertically": { "Tile Vertically": "세로로 타일" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "시간 초과 진행률 바" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "중요 우선순위 알림의 시간 초과" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "낮은 우선순위 알림의 시간 초과" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "보통 우선순위 알림의 시간 초과" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "색조 채도" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "투명도" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { "Trash": "휴지통" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "독에서 고정 해제" }, - "Unsaved Changes": { - "Unsaved Changes": "저장되지 않은 변경 사항" - }, "Unsaved changes": { "Unsaved changes": "저장되지 않은 변경 사항" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "가동 시간" }, - "Uptime:": { - "Uptime:": "가동 시간:" - }, "Urgent": { "Urgent": "긴급" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "사용자 지정 테두리 크기 사용" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "사용자 지정 테두리/포커스 링 너비 사용" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "시스템 설정의 소리 테마 사용" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "모든 디스플레이에 같은 위치 및 크기 사용" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "잠겼을 때" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "흰색" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "창 규칙" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "" - }, "Wipe": { "Wipe": "닦아내기" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "작업 공간" }, - "Workspace Appearance": { - "Workspace Appearance": "작업 공간 모양" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "작업 공간 인덱스 번호" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "작업 공간 여백" }, - "Workspace Settings": { - "Workspace Settings": "작업 공간 설정" - }, "Workspace Switcher": { "Workspace Switcher": "작업 공간 전환기" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "어제" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "저장하지 않은 변경 사항이 있습니다. 이 탭을 닫기 전에 저장하시겠습니까?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "저장하지 않은 변경 사항이 있습니다. 계속하기 전에 저장하시겠습니까?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "저장하지 않은 변경 사항이 있습니다. 새 파일을 만들기 전에 저장하시겠습니까?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "저장하지 않은 변경 사항이 있습니다. 파일을 열기 전에 저장하시겠습니까?" - }, "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.": { "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그런 다음 셸을 다시 시작하세요.\n\nqt6ct를 사용하려면 qt6ct-kde가 설치되어 있어야 합니다." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "시스템이 최신 상태입니다!" }, - "actions": { - "actions": "작업" - }, "admin": { "admin": "관리자" }, "attached": { "attached": "연결됨" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "기기" }, - "devices connected": { - "devices connected": "" - }, "dgop not available": { "dgop not available": "dgop를 사용할 수 없음" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "토론" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms는 material 3에서 영감을 받은 디자인의 고도로 사용자 지정 가능한 최신 데스크톱 셸입니다.

데스크톱 셸 구축을 위한 QT6 프레임워크인 Quickshell과 정적으로 타입이 지정된 컴파일 프로그래밍 언어인 Go로 구축되었습니다." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "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을 사용할 수 없거나 비활성화됨 - Qt 색상을 적용할 수 없음" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen을 찾을 수 없음 - 동적 테마 지정을 위해 matugen 패키지 설치" @@ -9326,6 +8855,9 @@ "nav": { "nav": "탐색" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "Sway에서" }, - "open": { - "open": "열기" - }, "or run ": { "or run ": "또는 실행" }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon을 사용할 수 없음" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "프로세스" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1(%2 제작)" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• 신뢰할 수 있는 소스에서만 설치하세요" }, diff --git a/quickshell/translations/poexports/nl.json b/quickshell/translations/poexports/nl.json index ddca561dd..ce1cb8ba8 100644 --- a/quickshell/translations/poexports/nl.json +++ b/quickshell/translations/poexports/nl.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 animatiesnelheid" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 sessies" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 gekopieerd" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 aangepaste animatieduur" - }, "%1 disconnected": { "%1 disconnected": "%1 verbroken" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 schermen" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 bestaat maar is niet opgenomen. Vensterregels zijn niet van toepassing." - }, "%1 filtered": { "%1 filtered": "%1 gefilterd" }, @@ -119,9 +116,6 @@ "'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.": "'Alternatief' laat de sleutel zelfstandig ontgrendelen. 'Tweede factor' vereist eerst een wachtwoord of vingerafdruk en daarna pas de sleutel." }, - "(Default)": { - "(Default)": "(Standaard)" - }, "(Unnamed)": { "(Unnamed)": "(Naamloos)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24-uursnotatie" }, - "24-hour clock": { - "24-hour clock": "24-uursklok" - }, "25 seconds": { "25 seconds": "25 seconden" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Middag" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Alles" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Authenticatie vereist" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "Verificatiewijzigingen toegepast." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "Verificatiewijzigingen worden automatisch toegepast." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Verificatiewijzigingen worden automatisch toegepast. Inloggen met alleen een vingerafdruk ontgrendelt de sleutelbos mogelijk niet." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Verificatiewijzigingen vereisen sudo. Terminal wordt geopend zodat u een wachtwoord of vingerafdruk kunt gebruiken." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Authenticatie mislukt, probeer het opnieuw" - }, "Authorize": { "Authorize": "Autoriseren" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "Automatische energiebesparing" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Automatische modus staat aan. Handmatige profielselectie is uitgeschakeld." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Autom. opgeslagen" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Automatisch wissen na" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Beschikbaar in weergavemodi Gedetailleerd en Voorspelling" }, - "Available.": { - "Available.": "Beschikbaar." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "Backends: %1" - }, "Background": { "Background": "Achtergrond" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "Balk %1" }, - "Bar Configurations": { - "Bar Configurations": "Balkconfiguraties" - }, "Bar Inset Padding": { "Bar Inset Padding": "Paneelinzet-opvulling" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Schaduw, rand en hoeken van de balk" }, - "Bar spacing and size": { - "Bar spacing and size": "Afstand en grootte van de balk" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Basiskleur voor schaduwen (dekking wordt automatisch toegepast)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Accu %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Batterijlaadlimiet" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "Accustroom" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "Accubescherming & opladen" - }, - "Battery Status": { - "Battery Status": "Batterijstatus" - }, "Battery and power management": { "Battery and power management": "Batterij- en energiebeheer" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "Accu op %1% - Overweeg om binnenkort op te laden" }, - "Battery level and power management": { - "Battery level and power management": "Batterijniveau en energiebeheer" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "Accupercentage waarbij een kritieke waarschuwing wordt gegeven." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Vergrendelscherm koppelen aan dbus-signalen van loginctl. Uitschakelen indien een extern vergrendelscherm wordt gebruikt" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Koppel de spotlight IPC-actie in de configuratie van je compositor." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Koppel de spotlight-balk IPC-actie in de configuratie van je compositor." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Binds-include toegevoegd" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Vervagen" }, - "Blur Border Color": { - "Blur Border Color": "Kleur van vervagingsrand" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Dekking van vervagingsrand" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Achtergrondlaag vervagen" }, "Blur on Overview": { "Blur on Overview": "Vervagen bij overzicht" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Vervaag de achtergrond achter balken, pop-ups, modale vensters en meldingen. Vereist ondersteuning van de compositor en configuratie." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Vervaag de achtergrond achter balken, pop-outs, vensters en notificaties. Vereist ondersteuning van de compositor. Pas de dekking dienovereenkomstig aan." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Randdikte" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Randkleur rondom vervaagde oppervlakken" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Knopkleur" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "Check on startup": { "Check on startup": "Controleren bij opstarten" }, - "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.": "Controleer de synchronisatiestatus op aanvraag. Sync (volledig) is voor de hoofdbeheerder: het kopieert je thema naar het inlogscherm en stelt de systeemconfiguratie van de greeter in. Op systemen met meerdere gebruikers voeg je andere accounts toe in Instellingen → Gebruikers en laat je hen elk 'dms greeter sync --profile' uitvoeren na het uit- en inloggen—geen volledige synchronisatie. Wijzigingen in authenticatie worden automatisch toegepast." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Controleer je aangepaste opdracht in Instellingen → Dock → Prullenbak." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Kleur donkere modus kiezen" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Kies kleur dockstartlogo" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Kleur startpictogram kiezen" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Kies hoe deze balk de schaduwrichting bepaalt" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "Kies hoe je meldingen over de accu wilt ontvangen." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "Kies voor neutrale of accentkleurige widgettekst" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Kies de achtergrondkleur voor widgets" - }, - "Choose the border accent color": { - "Choose the border accent color": "Kies de accentkleur voor de rand" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Kies het logo voor de startknop in DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Klik op 'Instellen' om %1 aan te maken en de include toe te voegen aan je compositor-configuratie." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Klik op 'Instellen' om de outputs-configuratie te maken en include toe te voegen aan uw compositor-configuratie." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Klik op Importeren om een .ovpn of .conf toe te voegen" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "Kleur weergegeven voor gebieden die niet door de achtergrond worden bedekt" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "Kleur weergegeven voor gebieden die niet door de achtergrond worden bedekt (bijv. 'Passend' of 'Opvullen')" - }, - "Color temperature for day time": { - "Color temperature for day time": "Kleurtemperatuur voor overdag" - }, "Color temperature for night mode": { "Color temperature for night mode": "Kleurtemperatuur voor nachtmodus" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Configuratie wordt bewaard wanneer dit beeldscherm opnieuw verbindt" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Configureren" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Verbinden..." }, - "Connecting…": { - "Connecting…": "Verbinden…" - }, "Connection failed": { "Connection failed": "Verbinding mislukt" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "Regelt de dekking van shell-oppervlakken, pop-outs en vensters" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "Regelt de dekking van de balkachtergrond" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "Regelt de dekking van de rand" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Regelt de dekking van de schaduwlaag" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "Regelt de dekking van de widget-omlijning" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "Regelt de dekking van widgetachtergronden" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Bepaalt omlijningen rond vervaagde voorgrondkaarten, pillen en meldingskaarten" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "Regelt de omlijningen rondom voorgrondkaarten, pillen en meldingen" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Bepaalt de basisvervagingsstraal en verschuiving van schaduwen" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Regelt de dekking van de schaduw" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Bepaalt de buitenrand van door het protocol vervaagde vensters" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Bepaalt de transparantie van de schaduw" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Gemaksopties voor het aanmeldscherm. Voer Sync uit om toe te passen." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Hoeken & Achtergrond" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "Kon geen terminal openen voor de update van automatisch inloggen." - }, "Count Only": { "Count Only": "Alleen aantal" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Maak een nieuwe %1-sessie aan (n)" - }, "Create rule for:": { "Create rule for:": "Regel aanmaken voor:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Aangepast..." }, - "Custom: ": { - "Custom: ": "Aangepast: " - }, "Customizable empty space": { "Customizable empty space": "Aanpasbare lege ruimte" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS-sneltoetsen" }, - "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 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-aanmeldscherm heeft nodig: greetd, dms-greeter. Vingerafdruk: fprintd, pam_fprintd. Beveiligingssleutels: pam_u2f. Voeg uw gebruiker toe aan de greeter-groep. Verificatiewijzigingen worden automatisch toegepast en kunnen een terminal openen wanneer sudo-verificatie vereist is." - }, - "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "DMS heeft beheerdersrechten nodig. De terminal sluit automatisch wanneer voltooid." - }, "DMS out of date": { "DMS out of date": "DMS verouderd" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "DMS-server is verouderd (API v%1, verwacht v%2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Gebruiker verwijderen" }, - "Delete user?": { - "Delete user?": "Gebruiker verwijderen?" - }, "Demi Bold": { "Demi Bold": "Halfvet" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Energiemenu-acties weergeven in een raster in plaats van een lijst" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Seconden tonen in de klok" - }, "Display setup failed": { "Display setup failed": "Scherminstelling mislukt" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Beeldschermen" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Toont aantal wanneer overloop actief is" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Toont de actieve toetsenbordindeling en maakt wisselen mogelijk" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Dock-dekking" }, - "Dock Visibility": { - "Dock Visibility": "Zichtbaarheid dock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Dock-marge, dekking en rand" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Marge, transparantie en rand van het dock" - }, "Dock window": { "Dock window": "Venster docken" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Prullenbak legen (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Prullenbak legen?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Schakel 10-bits kleurdiepte in voor een breder kleurengamma en HDR-ondersteuning" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Ingeschakeld" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Ingeschakeld, maar de beschikbaarheid van de vingerafdrukscanner kon niet worden bevestigd." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Ingeschakeld, maar er is geen vingerafdrukscanner gedetecteerd." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Ingeschakeld, maar er zijn nog geen afdrukken geregistreerd. Verificatiewijzigingen worden automatisch toegepast zodra u vingerafdrukken registreert." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Ingeschakeld, maar er zijn nog geen afdrukken geregistreerd. Registreer vingerafdrukken en voer Sync uit." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Ingeschakeld, maar er is nog geen geregistreerde beveiligingssleutel gevonden. Verificatiewijzigingen worden automatisch toegepast zodra uw sleutel is geregistreerd of uw U2F-configuratie is bijgewerkt." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Ingeschakeld, maar er is nog geen geregistreerde beveiligingssleutel gevonden. Registreer een sleutel en voer Sync uit." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Ingeschakeld, maar de beschikbaarheid van de beveiligingssleutel kon niet worden bevestigd." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Ingeschakeld. PAM biedt al vingerafdrukauthenticatie." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Ingeschakeld. PAM biedt al authenticatie via beveiligingssleutel." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Ingeschakeld. PAM biedt vingerafdrukauthenticatie, maar er zijn nog geen afdrukken geregistreerd." - }, "Enabling WiFi...": { "Enabling WiFi...": "Wifi inschakelen..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Exact" }, - "Excluded Media Players": { - "Excluded Media Players": "Uitgesloten mediaspelers" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Verschuiving exclusieve zone" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Toevoegen van printer aan klasse mislukt" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Toepassen van GTK-kleuren mislukt" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Toepassen van Qt-kleuren mislukt" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "Toepassen van laadlimiet op systeem mislukt" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Inschakelen van nachtmodus mislukt" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "Inschakelen van plugin mislukt: %1" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "Ophalen van netwerk-QR-code mislukt: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Verplaatsen naar prullenbak mislukt" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Ontleden van plugin_settings.json mislukt" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Ontleden van session.json mislukt" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Ontleden van settings.json mislukt" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Pauzeren van printer mislukt" @@ -3368,8 +3188,8 @@ "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.": "Bestandsbeheerder die wordt gebruikt om de prullenbak te openen. Kies \"aangepast\" om je eigen opdracht in te voeren." }, - "File received from": { - "File received from": "Bestand ontvangen van" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Bestandszoeken vereist dsearch\nInstalleer via github.com/morelazers/dsearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Voor het bewerken van tekstbestanden" }, - "For reading PDF files": { - "For reading PDF files": "Voor het lezen van PDF-bestanden" - }, "Force HDR": { "Force HDR": "HDR forceren" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Override genereren" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "Toekennen" }, - "Grant admin?": { - "Grant admin?": "Beheerder maken?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Beheerdersrechten verlenen" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Greeter" }, - "Greeter Appearance": { - "Greeter Appearance": "Uiterlijk Greeter" - }, - "Greeter Behavior": { - "Greeter Behavior": "Gedrag Greeter" - }, - "Greeter Status": { - "Greeter Status": "Status Greeter" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Greeter geactiveerd. greetd is nu ingeschakeld." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Greeter-groep:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Alleen Greeter — heeft geen invloed op de hoofdklok" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Alleen Greeter — indeling voor de datum op het aanmeldscherm" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord-server" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland-indelingsoverschrijvingen" - }, "Hyprland Options": { "Hyprland Options": "Hyprland-opties" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Onjuist wachtwoord" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Onjuist wachtwoord - poging %1 van %2 (blokkering kan volgen)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Onjuist wachtwoord - volgende fouten kunnen leiden tot blokkering van account" - }, "Incorrect password - try again": { "Incorrect password - try again": "Onjuist wachtwoord - probeer het opnieuw" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Taken" }, - "Jobs: ": { - "Jobs: ": "Taken: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Indeling overschrijven" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Lay-out en moduleposities op de Greeter worden gesynchroniseerd met je shell (bijv. balkconfiguratie). Voer Sync uit om toe te passen." - }, "Left": { "Left": "Links" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Locale" }, - "Locale Settings": { - "Locale Settings": "Locale-instellingen" - }, "Location": { "Location": "Locatie" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Vergrendelscherm" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Weergave vergrendelscherm" - }, "Lock Screen Format": { "Lock Screen Format": "Notatie vergrendelscherm" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Gedrag vergrendelscherm" - }, - "Lock Screen layout": { - "Lock Screen layout": "Indeling vergrendelscherm" - }, "Lock at startup": { "Lock at startup": "Vergrendelen bij opstarten" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Vervalperiode vergrendelvervaging" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Verificatiewijzigingen voor het vergrendelscherm worden automatisch toegepast en kunnen een terminal openen wanneer sudo-verificatie vereist is." - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Inloggen" }, - "Login Authentication": { - "Login Authentication": "Aanmeld-authenticatie" - }, "Long": { "Long": "Lang" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Beheerd door Frame in Verbonden Modus" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Beheer" }, - "Manages calendar events": { - "Manages calendar events": "Beheert agenda-afspraken" - }, "Manages files and directories": { "Manages files and directories": "Beheert bestanden en mappen" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Mango-service niet beschikbaar" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC-indelingsoverschrijvingen" - }, "Manual": { "Manual": "Handmatig" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Maximaal aantal vastgemaakte items bereikt" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Maximale grootte per klemborditem" - }, "Media": { "Media": "Media" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Mediaspeler" }, - "Media Player Settings": { - "Media Player Settings": "Instellingen mediaspeler" - }, "Media Players (": { "Media Players (": "Mediaspelers (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Modus" }, - "Mode:": { - "Mode:": "Modus:" - }, "Model": { "Model": "Model" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Grootte muisaanwijzer in pixels" }, - "Move": { - "Move": "Verplaatsen" - }, "Move Widget": { "Move Widget": "Widget verplaatsen" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "Multimedia" }, - "Multiplexer": { - "Multiplexer": "Multiplexer" - }, "Multiplexer Type": { "Multiplexer Type": "Multiplexer-type" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Netwerksnelheidsmeter" }, - "Network Status": { - "Network Status": "Netwerkstatus" - }, "Network Type": { "Network Type": "Netwerktype" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri-integratie" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri-indelingsoverschrijvingen" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri-compositoracties (focus, verplaatsen, enz.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Geen plug-ins gevonden" }, - "No plugins found.": { - "No plugins found.": "Geen plug-ins gevonden." - }, "No printer found": { "No printer found": "Geen printer gevonden" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Meldingen-popups" }, - "Notification Rules": { - "Notification Rules": "Meldingsregels" - }, "Notification Settings": { "Notification Settings": "Meldinginstellingen" }, - "Notification Timeouts": { - "Notification Timeouts": "Time-outs voor meldingen" - }, "Notification Type": { "Notification Type": "Meldingstype" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Gamma alleen aanpassen op basis van tijd- of locatieregels." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Heeft alleen invloed op door DMS beheerde PAM. Als greetd al pam_fprintd bevat, blijft de vingerafdruk ingeschakeld." - }, "Only on Battery": { "Only on Battery": "Alleen op accustroom" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Dekking" }, - "Opacity of the bar background": { - "Opacity of the bar background": "Dekking van de balkachtergrond" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "Dekking van widgetachtergronden" - }, "Opaque": { "Opaque": "Ondoorzichtig" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Bestandsbeheer openen" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "Terminal wordt geopend om greetd bij te werken" - }, "Opening terminal: ": { "Opening terminal: ": "Terminal openen: " }, "Opens a picker of other active sessions on this seat": { "Opens a picker of other active sessions on this seat": "Opent een selectievenster voor andere actieve sessies op deze seat" }, - "Opens image files": { - "Opens image files": "Opent afbeeldingsbestanden" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Opent de verbonden launcher in Connected Frame Mode." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM biedt al authenticatie via beveiligingssleutel. Schakel dit in om het te tonen bij het inloggen." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM biedt vingerafdrukauthenticatie, maar de beschikbaarheid kon niet worden bevestigd." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM biedt vingerafdrukauthenticatie, maar er zijn nog geen afdrukken geregistreerd." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM biedt vingerafdrukauthenticatie, maar er is geen scanner gedetecteerd." - }, "PDF Reader": { "PDF Reader": "PDF-lezer" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Uren opvullen" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Uren opvullen (02:00 in plaats van 2:00)" - }, "Padding": { "Padding": "Opvulling" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Gekoppeld" }, - "Pairing": { - "Pairing": "Koppelen" - }, "Pairing failed": { "Pairing failed": "Koppelen mislukt" }, - "Pairing request from": { - "Pairing request from": "Koppelingsverzoek van" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Koppelingsverzoek verzonden" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect niet beschikbaar" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Phone Connect niet beschikbaar" - }, "Phone number": { "Phone number": "Telefoonnummer" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Pingen" }, - "Ping sent to": { - "Ping sent to": "Ping verzonden naar" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Vastgemaakt" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Geluid afspelen wanneer volume wordt aangepast" }, - "Play sounds for system events": { - "Play sounds for system events": "Geluiden afspelen voor systeemgebeurtenissen" - }, "Playback": { "Playback": "Afspelen" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Speelt audiobestanden af" }, - "Plays video files": { - "Plays video files": "Speelt videobestanden af" - }, "Please wait...": { "Please wait...": "Even geduld..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Gedrag en positie pop-ups" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Poort" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "Automatisch wisselen van energieprofiel" - }, "Power Saver": { "Power Saver": "Energiebesparing" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Energieprofielbeheer beschikbaar" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "Te gebruiken energieprofiel wanneer netvoeding is aangesloten." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "Te gebruiken energieprofiel wanneer werkend op de accu." - }, "Power source": { "Power source": "Voedingsbron" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Voor ingestelde breedtes (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Druk op 'n' of klik op 'Nieuwe sessie' om er een aan te maken" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Primaire container" }, - "Primary Theme Color": { - "Primary Theme Color": "Primaire themakleur" - }, "Print Server Management": { "Print Server Management": "Printserverbeheer" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Printers" }, - "Printers: ": { - "Printers: ": "Printers: " - }, "Prioritize performance": { "Prioritize performance": "Prestaties prioriteren" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Processen" }, - "Processes:": { - "Processes:": "Processen:" - }, "Processing": { "Processing": "Verwerken" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "Profiel bij accugebruik" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protocol" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Beheerder ontnemen" }, - "Remove admin?": { - "Remove admin?": "Beheerder ontnemen?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Hoekafronding van de balk verwijderen" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Grootte herstellen" }, - "Reset to Default?": { - "Reset to Default?": "Terugzetten naar standaard?" - }, "Reset to default": { "Reset to default": "Terugzetten naar standaard" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Klingelen" }, - "Ringing": { - "Ringing": "Klingelen" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Rimpel-effecten" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Regel" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Regelnaam" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Regels (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Opslaan..." }, - "Saving…": { - "Saving…": "Opslaan…" - }, "Scale": { "Scale": "Schaal" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Scannen" }, - "Scanning": { - "Scanning": "Scannen" - }, "Scanning...": { "Scanning...": "Scannen..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Zoeken..." }, - "Searching": { - "Searching": "Zoeken" - }, "Searching...": { "Searching...": "Zoeken..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Beveiliging & privacy" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Beveiligingssleutel-modus" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Selecteer beeldscherm om achtergrond te configureren" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Selecteer monospace-lettertype voor proceslijst en technische weergaven" }, "Select network": { "Select network": "Selecteer netwerk" }, - "Select system sound theme": { - "Select system sound theme": "Selecteer systeemgeluidsthema" - }, "Select the font family for UI text": { "Select the font family for UI text": "Selecteer de lettertypefamilie voor UI-tekst" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Klembord verzenden" }, - "Send File": { - "Send File": "Bestand verzenden" - }, "Send SMS": { "Send SMS": "Sms verzenden" }, - "Sending": { - "Sending": "Verzenden" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Gescheiden" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Stel de lettergrootte in voor de berichttekst van notificaties (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Stel de lettergrootte in voor de samenvattingstekst van notificaties" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "Stel het percentage in waarbij de accu als 'bijna leeg' wordt beschouwd." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Gammaregeling-instellingen delen" }, - "Share Text": { - "Share Text": "Tekst delen" - }, "Shared": { "Shared": "Gedeeld" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Weergeven tijdens Niri-overzicht" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Toon voorgrondoppervlakken op vervaagde panelen voor een sterker contrast" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "Toon voorgrandoppervlakken op panelen voor sterker contrast" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "Mountpad tonen" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "Meldingspop-ups alleen op de momenteel actieve monitor tonen" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Meldingen alleen op de momenteel actieve monitor tonen" - }, "Show on Last Display": { "Show on Last Display": "Tonen op laatste beeldscherm" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Alleen tonen op overzicht" }, - "Show on all connected displays": { - "Show on all connected displays": "Tonen op alle aangesloten beeldschermen" - }, "Show on screens:": { "Show on screens:": "Tonen op schermen:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "On-screen display tonen wanneer helderheid wijzigt" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "On-screen display tonen wanneer Caps Lock-status wijzigt" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "On-screen display tonen bij wisselen van audio-uitvoerapparaten" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "On-screen display tonen wanneer status inactiviteitspreventie wijzigt" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "On-screen display (OSD) tonen wanneer de status van de mediaspeler wijzigt" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "On-screen display tonen wanneer volume mediaspeler wijzigt" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "On-screen display tonen wanneer microfoon wordt gedempt/ingeschakeld" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "On-screen display tonen wanneer energieprofiel wijzigt" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "On-screen display tonen wanneer volume wijzigt" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "Toon de balk alleen wanneer er geen vensters open zijn" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Weerinformatie tonen in bovenbalk en bedieningspaneel" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Toon weeknummer in de kalender" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Werkbladindexnummers tonen in de werkbladwisselaar in de bovenbalk" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "Signaalsterkte" }, - "Signal:": { - "Signal:": "Signaal:" - }, "Silence for a while": { "Silence for a while": "Tijdelijk dempen" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Start" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Start KDE Connect of Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Start KDE Connect of Valent om deze plug-in te gebruiken" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Strepen" }, - "Subtle Overlay": { - "Subtle Overlay": "Subtiele overlay" - }, "Summary": { "Summary": "Samenvatting" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminal fallback mislukt. Installeer een van de ondersteunde terminal-emulators of voer handmatig 'dms greeter sync' uit." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Terminal-terugval geopend. Voltooi de verificatie-instellingen daar; deze zal automatisch sluiten wanneer voltooid." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminal fallback geopend. Voltooi de synchronisatie daar; de terminal sluit automatisch wanneer dit is voltooid." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Te gebruiken terminal-multiplexer-backend" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Terminal geopend. Voltooi de verificatie-instellingen daar; deze zal automatisch sluiten wanneer voltooid." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminal geopend. Voltooi de sync-authenticatie daar; de terminal sluit automatisch wanneer dit is voltooid." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminals - Altijd donker thema gebruiken" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Tekstweergave" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "De tool 'boregard' is niet geïnstalleerd of staat niet in je PATH.\n\nInstalleer deze vanaf https://danklinux.com en schakel deze plugin vervolgens opnieuw in." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "De tool 'dgop' is vereist voor systeembewaking.\nInstalleer dgop om deze functie te gebruiken." }, @@ -8156,20 +7754,8 @@ "This device": { "This device": "Dit apparaat" }, - "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.": "Deze installatie gebruikt nog hyprland.conf. Voer 'dms setup' uit om te migreren voordat je cursorinstellingen bewerkt." - }, - "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.": "Deze installatie gebruikt nog hyprland.conf. Voer 'dms setup' uit om te migreren voordat je scherminstellingen bewerkt." - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": "Deze installatie gebruikt nog hyprland.conf. Voer 'dms setup' uit om te migreren voordat je de lay-outinstellingen bewerkt." - }, - "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.": "Deze installatie gebruikt nog hyprland.conf. Voer 'dms setup' uit om te migreren voordat je sneltoetsen bewerkt in Instellingen." - }, - "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.": "Deze installatie gebruikt nog hyprland.conf. Voer 'dms setup' uit om te migreren voordat je vensterregels bewerkt in Instellingen." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Dit kan enkele seconden duren" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Tegelen" }, - "Tile H": { - "Tile H": "Tegelen H" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "Tegelen V" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Voortgangsbalk voor time-out" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Time-out voor meldingen met kritieke prioriteit" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Time-out voor meldingen met lage prioriteit" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Time-out voor meldingen met normale prioriteit" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Tintverzadiging" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Transparantie" }, - "Transparency of the border": { - "Transparency of the border": "Transparantie van de rand" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Transparantie van de schaduwlaag" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "Transparantie van de widget-omlijning" - }, "Trash": { "Trash": "Prullenbak" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Van dock losmaken" }, - "Unsaved Changes": { - "Unsaved Changes": "Niet-opgeslagen wijzigingen" - }, "Unsaved changes": { "Unsaved changes": "Niet-opgeslagen wijzigingen" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Uptime" }, - "Uptime:": { - "Uptime:": "Uptime:" - }, "Urgent": { "Urgent": "Urgent" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Aangepaste randgrootte gebruiken" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Aangepaste rand-/focusringbreedte gebruiken" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Geluidsthema van systeeminstellingen gebruiken" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "Het uitgebreide oppervlak gebruiken voor launcher-inhoud" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "De overlay-laag gebruiken bij het openen van de launcher" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "Dezelfde positie en grootte gebruiken op alle beeldschermen" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Indien vergrendeld" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "Wit" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Vensterregels" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Vensterregels-include ontbreekt" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Vensterregels niet geconfigureerd" - }, "Wipe": { "Wipe": "Vegen" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Werkblad" }, - "Workspace Appearance": { - "Workspace Appearance": "Uiterlijk werkblad" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Indexnummers werkblad" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Werkblad-opvulling" }, - "Workspace Settings": { - "Workspace Settings": "Werkbladinstellingen" - }, "Workspace Switcher": { "Workspace Switcher": "Werkbladwisselaar" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Gisteren" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "U hebt niet-opgeslagen wijzigingen. Opslaan voordat u dit tabblad sluit?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "U hebt niet-opgeslagen wijzigingen. Opslaan voordat u doorgaat?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "U hebt niet-opgeslagen wijzigingen. Opslaan voordat u een nieuw bestand maakt?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "U hebt niet-opgeslagen wijzigingen. Opslaan voordat u een bestand opent?" - }, "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.": { "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.": "U moet het volgende instellen:\nQT_QPA_PLATFORMTHEME=gtk3 OF\nQT_QPA_PLATFORMTHEME=qt6ct\nals omgevingsvariabelen, en daarna de shell herstarten.\n\nqt6ct vereist dat qt6ct-kde is geïnstalleerd." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Uw systeem is bijgewerkt!" }, - "actions": { - "actions": "acties" - }, "admin": { "admin": "beheer" }, "attached": { "attached": "gekoppeld" }, - "boregard is required": { - "boregard is required": "boregard is vereist" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "apparaat" }, - "devices connected": { - "devices connected": "apparaten verbonden" - }, "dgop not available": { "dgop not available": "dgop niet beschikbaar" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "bespreken" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms is een zeer aanpasbare, moderne desktop-shell met een op Material 3 geïnspireerd ontwerp.

Het is gebouwd met Quickshell, een QT6-framework voor het bouwen van desktop-shells, en Go, een statisch getypeerde, gecompileerde programmeertaal." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "matugen niet beschikbaar of uitgeschakeld - kan GTK-kleuren niet toepassen" - }, - "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "matugen niet beschikbaar of uitgeschakeld - kan Qt-kleuren niet toepassen" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen niet gevonden - installeer matugen-pakket voor dynamische thema's" @@ -9326,6 +8855,9 @@ "nav": { "nav": "navigatie" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "op Sway" }, - "open": { - "open": "openen" - }, "or run ": { "or run ": "of voer uit: " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon niet beschikbaar" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "procs" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 door %2" }, - "verified": { - "verified": "geverifieerd" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Installeer alleen vanuit vertrouwde bronnen" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index 824e55aa4..1bcee8743 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "" }, - "%1 custom animation duration": { - "%1 custom animation duration": "" - }, "%1 disconnected": { "%1 disconnected": "" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "" - }, "%1 filtered": { "%1 filtered": "" }, @@ -119,9 +116,6 @@ "'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.": "" }, - "(Default)": { - "(Default)": "" - }, "(Unnamed)": { "(Unnamed)": "(Bez nazwy)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "Format 24-godzinny" }, - "24-hour clock": { - "24-hour clock": "" - }, "25 seconds": { "25 seconds": "" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Popołudnie" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Wszystkie" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Wymagane uwierzytelnienie" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Uwierzytelnianie nie powiodło się, spróbuj ponownie" - }, "Authorize": { "Authorize": "Autoryzuj" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Automatycznie czyść po" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "" }, - "Available.": { - "Available.": "" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "" - }, "Background": { "Background": "" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "Konfiguracje pasków" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Limit Ładowania Baterii" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Bateria i zarządzanie zasilaniem" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Poziom baterii i zarządzanie zasilaniem" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Powiąż ekran blokady z sygnałami dbus z loginctl. Wyłącz, jeśli używasz zewnętrznego ekranu blokady" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight 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.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Dodano powiązania" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Rozmyj Warstwę Tapety" }, "Blur on Overview": { "Blur on Overview": "Rozmycie w podglądzie" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Wybierz kolor logo launchera" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Wybierz kolor tła dla widżetów" - }, - "Choose the border accent color": { - "Choose the border accent color": "Wybierz kolor akcentu obramowania" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Wybierz logo wyświetlane na przycisku launchera w DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Kliknij 'Konfiguruj' by stworzyć konfigurację wyjść i dodać konfiguracji kompozytora." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Kliknij Importuj, aby dodać plik .ovpn lub .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Temperatura barwowa w ciągu dnia" - }, "Color temperature for night mode": { "Color temperature for night mode": "Temperatura barwowa dla trybu nocnego" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Konfiguracja zostanie zachowana gdy wyświetlacz połączy się ponownie" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Łączenie..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Rogi i tło" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "Tylko liczba" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "" - }, "Create rule for:": { "Create rule for:": "" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Niestandardowy..." }, - "Custom: ": { - "Custom: ": "Niestandardowy: " - }, "Customizable empty space": { "Customizable empty space": "Dostosowywalna pusta przestrzeń" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Skróty DMS" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS nieaktualny" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "" }, - "Delete user?": { - "Delete user?": "" - }, "Demi Bold": { "Demi Bold": "" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Wyświetl elementy menu zasilania w siatce zamiast listy" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Wyświetlanie sekund na zegarze" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Ekrany" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Wyświetla aktywny układ klawiatury i umożliwia przełączanie" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Widoczność doku" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "" }, - "Empty Trash?": { - "Empty Trash?": "" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Włącz 10 bitową głębię kolorów dla szerszej gamety kolorów i wsparcia HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Włączony" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, "Enabling WiFi...": { "Enabling WiFi...": "Włączanie WiFi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Przesunięcie strefy wyłączności" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Nie udało się dodać drukarki do klasy" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Włączenie trybu nocnego nie powiodło się" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Nie udało się przeczytać plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Nie udało się przeczytać session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Nie udało się przeczytać settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Wstrzymanie drukarki nie powiodło się" @@ -3368,8 +3188,8 @@ "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.": "" }, - "File received from": { - "File received from": "Otrzymano plik z" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "" }, - "For reading PDF files": { - "For reading PDF files": "" - }, "Force HDR": { "Force HDR": "Wymuś HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "" }, - "Grant admin?": { - "Grant admin?": "" - }, "Grant administrator privileges": { "Grant administrator privileges": "" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "" }, - "Greeter Appearance": { - "Greeter Appearance": "" - }, - "Greeter Behavior": { - "Greeter Behavior": "" - }, - "Greeter Status": { - "Greeter Status": "" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "" - }, "Hyprland Options": { "Hyprland Options": "" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Niepoprawne hasło" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "" - }, "Incorrect password - try again": { "Incorrect password - try again": "" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Zadania" }, - "Jobs: ": { - "Jobs: ": "Zadania: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Nadpisywanie Układu" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "" - }, "Left": { "Left": "Lewa" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "" }, - "Locale Settings": { - "Locale Settings": "" - }, "Location": { "Location": "Lokalizacja" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Ekran blokady" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Wyświetlanie ekranu blokady" - }, "Lock Screen Format": { "Lock Screen Format": "Format ekranu blokady" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Zachowanie ekranu blokady" - }, - "Lock Screen layout": { - "Lock Screen layout": "Układ ekranu blokady" - }, "Lock at startup": { "Lock at startup": "" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "" }, - "Login Authentication": { - "Login Authentication": "" - }, "Long": { "Long": "Długi" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Zarządzanie" }, - "Manages calendar events": { - "Manages calendar events": "" - }, "Manages files and directories": { "Manages files and directories": "" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "" - }, "Manual": { "Manual": "" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Osiągnięto maksymalną liczbę wpisów" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Maksymalny rozmiar per wpis schowka" - }, "Media": { "Media": "Media" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Odtwarzacz multimedialny" }, - "Media Player Settings": { - "Media Player Settings": "Ustawienia odtwarzacza multimediów" - }, "Media Players (": { "Media Players (": "Odtwarzacze multimediów (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Tryb" }, - "Mode:": { - "Mode:": "Tryb:" - }, "Model": { "Model": "Model" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "" }, - "Move": { - "Move": "" - }, "Move Widget": { "Move Widget": "Przesuń Widżet" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "" }, - "Multiplexer": { - "Multiplexer": "" - }, "Multiplexer Type": { "Multiplexer Type": "" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Monitor prędkości sieci" }, - "Network Status": { - "Network Status": "Stan sieci" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Integracja Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Nadpisywanie Układów Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Akcje kompozytora Niri (skupienie, ruch itp.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Nie znaleziono wtyczek" }, - "No plugins found.": { - "No plugins found.": "Nie znaleziono wtyczek." - }, "No printer found": { "No printer found": "Nie znaleziono drukarki" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Wyskakujące powiadomienia" }, - "Notification Rules": { - "Notification Rules": "" - }, "Notification Settings": { "Notification Settings": "Ustawienia powiadomień" }, - "Notification Timeouts": { - "Notification Timeouts": "Limity czasu powiadomień" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Dostosuj gamma tylko na podstawie reguł czasu lub lokalizacji." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "" - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Przezroczystość" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Otwieranie przeglądarki plików" }, - "Opening terminal to update greetd": { - "Opening terminal to update 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 image files": { - "Opens image files": "" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "" - }, "PDF Reader": { "PDF Reader": "" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "" - }, "Padding": { "Padding": "Dopełnienie" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Sparowane" }, - "Pairing": { - "Pairing": "" - }, "Pairing failed": { "Pairing failed": "Parowanie nieudane" }, - "Pairing request from": { - "Pairing request from": "" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "" - }, "Phone number": { "Phone number": "Numer telefonu" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "" }, - "Ping sent to": { - "Ping sent to": "Ping został wysłany na" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Przypięte" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Odtwarzaj dźwięk przy zmianie głośności" }, - "Play sounds for system events": { - "Play sounds for system events": "Odtwarzaj dźwięki zdarzeń systemowych" - }, "Playback": { "Playback": "Odtwarzanie" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "" }, - "Plays video files": { - "Plays video files": "" - }, "Please wait...": { "Please wait...": "" }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Zarządzanie profilami zasilania dostępne" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Źródło zasilania" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Predefiniowane szerokości (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Zarządzanie Serwerem Drukowania" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Drukarki" }, - "Printers: ": { - "Printers: ": "Drukarki: " - }, "Prioritize performance": { "Prioritize performance": "" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Procesy" }, - "Processes:": { - "Processes:": "Procesy:" - }, "Processing": { "Processing": "Przetwarzanie" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protokół" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "" }, - "Remove admin?": { - "Remove admin?": "" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Resetuj rozmiar" }, - "Reset to Default?": { - "Reset to Default?": "" - }, "Reset to default": { "Reset to default": "" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Zadzwoń" }, - "Ringing": { - "Ringing": "Dzwonienie" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "" }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "Skala" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Skanuj" }, - "Scanning": { - "Scanning": "Skanowanie" - }, "Scanning...": { "Scanning...": "Skanowanie..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Szukaj..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "Wyszukiwanie..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Bezpieczeństwo i prywatność" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Wybierz monitor, aby skonfigurować tapetę" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Wybierz czcionkę o stałej szerokości dla listy procesów i wyświetlaczy technicznych" }, "Select network": { "Select network": "" }, - "Select system sound theme": { - "Select system sound theme": "Wybierz motyw dźwiękowy systemu" - }, "Select the font family for UI text": { "Select the font family for UI text": "Wybierz rodzinę czcionek dla tekstu interfejsu użytkownika" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Wyślij schowek" }, - "Send File": { - "Send File": "" - }, "Send SMS": { "Send SMS": "Wyślij SMS" }, - "Sending": { - "Sending": "" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "" }, - "Share Text": { - "Share Text": "" - }, "Shared": { "Shared": "Udostępniono" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "" - }, "Show on Last Display": { "Show on Last Display": "Pokaż na ostatnim wyświetlaczu" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "" }, - "Show on all connected displays": { - "Show on all connected displays": "Pokaż na wszystkich podłączonych wyświetlaczach" - }, "Show on screens:": { "Show on screens:": "Pokaż na ekranach:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Wyświetlaj powiadomienie ekranowe przy zmianie jasności" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Wyświetlaj powiadomienie ekranowe przy zmianie stanu Caps Lock" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Pokaż powiadomienie podczas zmiany wyjścia audio" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Wyświetlaj powiadomienie ekranowe przy zmianie stanu inhibitora bezczynności" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Pokaż OSD przy zmianie głośności multimediów" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Wyświetlaj powiadomienie ekranowe przy wyciszaniu/włączaniu mikrofonu" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Wyświetlaj powiadomienie ekranowe przy zmianie profilu zasilania" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Wyświetlaj powiadomienie ekranowe przy zmianie głośności" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Wyświetl informacje o pogodzie na górnym pasku i w centrum sterowania" }, - "Show week number in the calendar": { - "Show week number in the calendar": "" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Pokaż numery indeksów obszarów roboczych na górnym pasku przełącznika obszarów roboczych" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Sygnał:" - }, "Silence for a while": { "Silence for a while": "" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Start" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminal - Zawsze używaj ciemnego motywu" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "" }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "" }, - "Tile H": { - "Tile H": "" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Przekroczenie limitu czasu powiadomień o krytycznym priorytecie" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Przekroczenie limitu czasu dla powiadomień o niskim priorytecie" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Przekroczenie limitu czasu dla powiadomień o normalnym priorytecie" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Przezroczystość" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { "Trash": "" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Odepnij z doku" }, - "Unsaved Changes": { - "Unsaved Changes": "Niezapisane zmiany" - }, "Unsaved changes": { "Unsaved changes": "Niezapisane zmiany" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "" }, - "Uptime:": { - "Uptime:": "" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Użyj niestandardowej szerokości obramowania" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Użyj niestandardowej szerokości obramowania/focus-ring" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Użyj motywu dźwiękowego z ustawień systemowych" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "" - }, "Wipe": { "Wipe": "" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Obszar roboczy" }, - "Workspace Appearance": { - "Workspace Appearance": "" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Numery indeksów obszarów roboczych" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Dopełnienie Obszarów Roboczych" }, - "Workspace Settings": { - "Workspace Settings": "Ustawienia obszaru roboczego" - }, "Workspace Switcher": { "Workspace Switcher": "Przełącznik obszarów roboczych" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Wczoraj" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Masz niezapisane zmiany. Zapisać przed zamknięciem tej karty?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Masz niezapisane zmiany. Zapisać przed kontynuowaniem?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Masz niezapisane zmiany. Zapisać przed utworzeniem nowego pliku?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Masz niezapisane zmiany. Zapisać przed otwarciem pliku?" - }, "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.": { "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.": "" }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "" }, - "actions": { - "actions": "" - }, "admin": { "admin": "" }, "attached": { "attached": "" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "" }, @@ -9236,9 +8768,6 @@ "device": { "device": "" }, - "devices connected": { - "devices connected": "" - }, "dgop not available": { "dgop not available": "dgop niedostępne" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9308,11 +8840,8 @@ "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 Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen nie znaleziony - zainstaluj matugen dla dynamicznych motywów" @@ -9326,6 +8855,9 @@ "nav": { "nav": "" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "" }, - "open": { - "open": "" - }, "or run ": { "or run ": "" }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Instaluj tylko z zaufanych źródeł" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index dc6f84af3..735cfec4a 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -5,17 +5,20 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 Velocidade de Animação" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { - "%1 Sessions": "" + "%1 Sessions": "%1 Sessões" }, "%1 Startup Failed": { "%1 Startup Failed": "" }, "%1 active session": { - "%1 active session": "" + "%1 active session": "%1 sessão ativa" }, "%1 active sessions": { - "%1 active sessions": "" + "%1 active sessions": "%1 sessões ativas" }, "%1 adapter, none connected": { "%1 adapter, none connected": "" @@ -24,7 +27,7 @@ "%1 adapters, none connected": "" }, "%1 character": { - "%1 character": "" + "%1 character": "%1 caractere" }, "%1 characters": { "%1 characters": "%1 caracteres" @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 duração de animação personalizada" - }, "%1 disconnected": { "%1 disconnected": "%1 desconectado" }, @@ -50,11 +50,8 @@ "%1 displays": { "%1 displays": "" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 existe mas não está incluído. Regras de janela não serão aplicadas." - }, "%1 filtered": { - "%1 filtered": "" + "%1 filtered": "%1 filtrado" }, "%1 h %2 m left": { "%1 h %2 m left": "" @@ -119,9 +116,6 @@ "'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.": "" }, - "(Default)": { - "(Default)": "(Padrão)" - }, "(Unnamed)": { "(Unnamed)": "(Sem nome)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "Formato de 24 Horas" }, - "24-hour clock": { - "24-hour clock": "" - }, "25 seconds": { "25 seconds": "25 segundos" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Tarde" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Todos" }, @@ -780,7 +774,7 @@ "Authenticated!": "" }, "Authenticating...": { - "Authenticating...": "" + "Authenticating...": "Autenticando..." }, "Authentication": { "Authentication": "Autenticação" @@ -788,20 +782,20 @@ "Authentication Required": { "Authentication Required": "Autenticação Necessária" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "" }, "Authentication error - try again": { - "Authentication error - try again": "" + "Authentication error - try again": "Erro de autenticação - tente novamente" }, "Authentication failed - attempt %1 of %2": { "Authentication failed - attempt %1 of %2": "" @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Erro ao autenticar, por favor tente novamente" - }, "Authorize": { "Authorize": "Autorizar" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Auto-Limpeza Depois" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Disponível em modos de visualização Detalhada e Previsão" }, - "Available.": { - "Available.": "" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "" - }, "Background": { "Background": "" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "Configurações da Barra" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Cor base para sombras (a opacidade é aplicada automaticamente)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Limite de Carga da Bateria" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Gerenciamento de bateria e energia" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Nível de bateria e manejamento de energia" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Vincular o bloqueio de tela aos sinais do DBus do loginctl. Desative se estiver usando um bloqueio de tela externo" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight 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.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Atalhos incluem adicionados" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Camada de Papel de Parede com Desfoque" }, "Blur on Overview": { "Blur on Overview": "Desfoque na Visão Geral" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Cor do Botão" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,20 +1379,17 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "" }, "Checking for updates...": { - "Checking for updates...": "" + "Checking for updates...": "Verificando por atualizações..." }, "Checking whether sudo authentication is needed...": { "Checking whether sudo authentication is needed...": "" }, "Checking...": { - "Checking...": "" + "Checking...": "Verificando..." }, "Choose Color": { "Choose Color": "Escolha a Cor" @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Escolher Cor do Modo Escuro" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Escolher Cor do Logotipo do Launcher do Dock" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Escolher a cor para a logo do Lançador" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Escolha a cor de fundo para os widgets" - }, - "Choose the border accent color": { - "Choose the border accent color": "Escolha a cor de realce da borda" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Escolher a logo que será exibida no botão do Lançador no DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Clique em 'Configurar' para criar %1 e adicionar inclusão na configuração do seu compositor" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Clique em 'Configurar' para criar a configuração de saídas e adicionar inclusão no seu configurador de compositor" - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Clique em Importar para adicionar um arquivo .ovpn ou .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Temperatura de cor durante o dia" - }, "Color temperature for night mode": { "Color temperature for night mode": "Temperatura da cor para o modo noturno" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "A configuração será mantida quando esse monitor reconectar" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Configurar" }, @@ -1853,11 +1775,8 @@ "Connecting...": { "Connecting...": "Conectando..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { - "Connection failed": "" + "Connection failed": "Falha na conexão" }, "Contains": { "Contains": "Contém" @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Controla a transparência da sombra" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Opções de conveniência para a tela de login. Sincronize para aplicar." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Cantos e Fundo" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "Apenas Contagem" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "" - }, "Create rule for:": { "Create rule for:": "Criar regra para:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Customizado..." }, - "Custom: ": { - "Custom: ": "Customizar: " - }, "Customizable empty space": { "Customizable empty space": "Espaço vazio customizável" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Atalhos DMS" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS desatualizado" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "" }, @@ -2301,7 +2181,7 @@ "Date Format": "Formatação de Data" }, "Date format on greeter": { - "Date format on greeter": "" + "Date format on greeter": "Formato da data no Greeter" }, "Dawn (Astronomical Twilight)": { "Dawn (Astronomical Twilight)": "Amanhecer (Crepúsculo Astronômico)" @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "" }, - "Delete user?": { - "Delete user?": "" - }, "Demi Bold": { "Demi Bold": "" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Mostra as ações do menu de energia em uma grade ao invés de uma lista" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Exibir segundos no relógio" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Telas" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Contagem de Exibições quando o estouro está ativo" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Exibir Layout ativo do teclado, e permitir alterações" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Visibilidade do Dock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "" }, @@ -2796,13 +2661,10 @@ "Empty": "Vázio" }, "Empty Trash": { - "Empty Trash": "" + "Empty Trash": "Lixeira Vazia" }, "Empty Trash (%1)": { - "Empty Trash (%1)": "" - }, - "Empty Trash?": { - "Empty Trash?": "" + "Empty Trash (%1)": "Lixeira Vazia (%1)" }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Ativar a profundidade de cores de 10 bits para uma gama de cores mais ampla e suporte HDR" @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Ativado" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, "Enabling WiFi...": { "Enabling WiFi...": "Ativando WiFi..." }, @@ -2925,13 +2757,13 @@ "Enter URI or text to share": "" }, "Enter a new name for session \"%1": { - "Enter a new name for session \"%1\"": "" + "Enter a new name for session \"%1\"": "Insira um novo nome para a sessão \"%1\"" }, "Enter a new name for this workspace": { "Enter a new name for this workspace": "Insira um novo nome para este espaço de trabalho" }, "Enter command or script path": { - "Enter command or script path": "" + "Enter command or script path": "Insira o comando ou caminho do script" }, "Enter credentials for ": { "Enter credentials for ": "Insira as credenciais para " @@ -2997,22 +2829,22 @@ "Event title": "" }, "Every 15 minutes": { - "Every 15 minutes": "" + "Every 15 minutes": "A cada 15 minutos" }, "Every 30 minutes": { - "Every 30 minutes": "" + "Every 30 minutes": "A cada 30 minutos" }, "Every 4 hours": { - "Every 4 hours": "" + "Every 4 hours": "A cada 4 horas" }, "Every hour": { - "Every hour": "" + "Every hour": "A cada hora" }, "Exact": { "Exact": "Exato" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Ajuste da Zona Exclusiva" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Falha ao adicionar impressora para a classe" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Falha ao ativar o modo noturno" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Falha ao analisar plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Falha ao analisar session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Falha ao analisar settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Falha ao pausar impressora" @@ -3368,8 +3188,8 @@ "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.": "" }, - "File received from": { - "File received from": "Arquivo recebido de" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Pesquisa de arquivo requer dsearch\nInstalar de github.com/morelazers/dsearch" @@ -3546,26 +3366,23 @@ "Font used on the login screen": "Fonte usada na tela de login" }, "For 1 hour": { - "For 1 hour": "" + "For 1 hour": "Por 1 hora" }, "For 15 minutes": { - "For 15 minutes": "" + "For 15 minutes": "Por 15 minutos" }, "For 3 hours": { - "For 3 hours": "" + "For 3 hours": "Por 3 horas" }, "For 30 minutes": { - "For 30 minutes": "" + "For 30 minutes": "Por 30 minutos" }, "For 8 hours": { - "For 8 hours": "" + "For 8 hours": "Por 8 horas" }, "For editing plain text files": { "For editing plain text files": "" }, - "For reading PDF files": { - "For reading PDF files": "" - }, "Force HDR": { "Force HDR": "Forçar HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "" }, - "Grant admin?": { - "Grant admin?": "" - }, "Grant administrator privileges": { "Grant administrator privileges": "" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "" }, - "Greeter Appearance": { - "Greeter Appearance": "" - }, - "Greeter Behavior": { - "Greeter Behavior": "" - }, - "Greeter Status": { - "Greeter Status": "" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Substituições de Layout Hyprland" - }, "Hyprland Options": { "Hyprland Options": "Opções do Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Senha incorreta" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "" - }, "Incorrect password - try again": { "Incorrect password - try again": "" }, @@ -4269,7 +4065,7 @@ "Install": "Instalar" }, "Install Greeter": { - "Install Greeter": "" + "Install Greeter": "Instalar Greeter" }, "Install Plugin": { "Install Plugin": "Instalar Plugin" @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Trabalhos" }, - "Jobs: ": { - "Jobs: ": "Trabalhos:" - }, "Join video call": { "Join video call": "" }, @@ -4431,13 +4224,13 @@ "Keys": "Teclas" }, "Kill": { - "Kill": "" + "Kill": "Encerrar" }, "Kill Process": { "Kill Process": "Matar Processo" }, "Kill Session": { - "Kill Session": "" + "Kill Session": "Encerrar Sessão" }, "Ko-fi": { "Ko-fi": "Ko-fi" @@ -4467,19 +4260,19 @@ "Last launched %1 day ago": "Lançado pela última vez %1 dia atrás" }, "Last launched %1 days ago": { - "Last launched %1 days ago": "" + "Last launched %1 days ago": "Última inicialização há %1 dias" }, "Last launched %1 hour ago": { - "Last launched %1 hour ago": "" + "Last launched %1 hour ago": "Última inicialização há %1 hora" }, "Last launched %1 hours ago": { - "Last launched %1 hours ago": "" + "Last launched %1 hours ago": "Última inicialização há %1 horas" }, "Last launched %1 minute ago": { - "Last launched %1 minute ago": "" + "Last launched %1 minute ago": "Última inicialização há %1 minuto" }, "Last launched %1 minutes ago": { - "Last launched %1 minutes ago": "" + "Last launched %1 minutes ago": "Última inicialização há %1 minutos" }, "Last launched just now": { "Last launched just now": "Lançado pela última vez agora" @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Substituições de Layout" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "" - }, "Left": { "Left": "Esquerda" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "" }, - "Locale Settings": { - "Locale Settings": "" - }, "Location": { "Location": "Localização" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Tela de Bloqueio" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Exibição da Tela de Boqueio" - }, "Lock Screen Format": { "Lock Screen Format": "Formato da Tela de Bloqueio" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Comportamento da Tela de Bloqueio" - }, - "Lock Screen layout": { - "Lock Screen layout": "Layout da Tela de Bloqueio" - }, "Lock at startup": { "Lock at startup": "Bloquear na inicialização" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Período de carência de fade de bloqueio" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "" }, - "Login Authentication": { - "Login Authentication": "" - }, "Long": { "Long": "Longo" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Gerenciamento" }, - "Manages calendar events": { - "Manages calendar events": "" - }, "Manages files and directories": { "Manages files and directories": "" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Substituições de Layout MangoWC" - }, "Manual": { "Manual": "Manual" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Máximo de entradas fixadas alcançado" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Tamanho máximo por entrada da área de transferência" - }, "Media": { "Media": "Mídia" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Reprodutor de Mídia" }, - "Media Player Settings": { - "Media Player Settings": "Configurações do Reprodutor de Mídia" - }, "Media Players (": { "Media Players (": "Reprodutores de Mídia(" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Modo" }, - "Mode:": { - "Mode:": "Modo:" - }, "Model": { "Model": "Modelo" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Tamanho do ponteiro do mouse em pixels" }, - "Move": { - "Move": "Mover" - }, "Move Widget": { "Move Widget": "Mover Widget" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "" }, - "Multiplexer": { - "Multiplexer": "" - }, "Multiplexer Type": { "Multiplexer Type": "" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Monitor de Velocidade da Rede" }, - "Network Status": { - "Network Status": "Status da Rede" - }, "Network Type": { "Network Type": "" }, @@ -5193,7 +4941,7 @@ "New Notification": "Nova Notificação" }, "New Session": { - "New Session": "" + "New Session": "Nova Sessão" }, "New Window Rule": { "New Window Rule": "Nova Regra de Janela" @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Integração com niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Substituições de Layout do Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Ações do compositor Niri (focar, mover, etc.)" }, @@ -5406,7 +5151,7 @@ "No info items": "Nenhum item de informação" }, "No information available": { - "No information available": "" + "No information available": "Nenhuma informação disponível" }, "No input device": { "No input device": "Sem dispositivo de entrada" @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Nenhum plugin encontrado" }, - "No plugins found.": { - "No plugins found.": "Nenhum plugin encontrado." - }, "No printer found": { "No printer found": "Nenhuma impressora encontrada" }, @@ -5499,7 +5241,7 @@ "No session selected": "" }, "No sessions found": { - "No sessions found": "" + "No sessions found": "Nenhuma sessão localizada" }, "No status output.": { "No status output.": "" @@ -5532,7 +5274,7 @@ "No wallpaper selected": "Nenhum papel de parede selecionado" }, "No wallpapers": { - "No wallpapers": "" + "No wallpapers": "Nenhum wallpaper" }, "No wallpapers found\n\nClick the folder icon below to browse": { "No wallpapers found\n\nClick the folder icon below to browse": "Nenhum papel de parede encontrado\n\nClique no ícone de pasta abaixo para navegar" @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Popups de Notificação" }, - "Notification Rules": { - "Notification Rules": "Regras de Notificação" - }, "Notification Settings": { "Notification Settings": "Configurações de Notificação" }, - "Notification Timeouts": { - "Notification Timeouts": "Tempo Máximo de Notificação" - }, "Notification Type": { "Notification Type": "" }, @@ -5715,14 +5451,11 @@ "Once a day": "" }, "Online": { - "Online": "" + "Online": "Online" }, "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Apenas ajustar gama baseada em regras de tempo ou localização." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "" - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opacidade" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "Opaco" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Abrindo navegador de arquivos" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" - }, "Opening terminal: ": { - "Opening terminal: ": "" + "Opening terminal: ": "Abrindo o terminal: " }, "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 the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "" - }, "PDF Reader": { "PDF Reader": "" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Adicionar Horas" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "" - }, "Padding": { "Padding": "Preenchimento" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Pareado" }, - "Pairing": { - "Pairing": "Pareando" - }, "Pairing failed": { "Pairing failed": "Erro ao emparelhar" }, - "Pairing request from": { - "Pairing request from": "Solicitação de pareamento de" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Solicitação de pareamento enviada" @@ -6000,7 +5706,7 @@ "Password updated": "" }, "Password...": { - "Password...": "" + "Password...": "Senha..." }, "Passwords do not match.": { "Passwords do not match.": "" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Conexão de Telefone Não Disponível" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Conexão de Telefone indisponível" - }, "Phone number": { "Phone number": "Número de telefone" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping enviado para" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Fixado" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Reproduzir som quando o volume é ajustado" }, - "Play sounds for system events": { - "Play sounds for system events": "Reproduzir sons para eventos do sistema" - }, "Playback": { "Playback": "Reprodução" }, @@ -6149,14 +5849,11 @@ "Plays audio files": { "Plays audio files": "" }, - "Plays video files": { - "Plays video files": "" - }, "Please wait...": { "Please wait...": "Aguarde..." }, "Please write a name for your new %1 session": { - "Please write a name for your new %1 session": "" + "Please write a name for your new %1 session": "Por favor, digite um nome para sua nova sessão %1" }, "Plugged In": { "Plugged In": "Conectado" @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Comportamento de pop-up, posição" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "Economia de Energia" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Gerenciamento de perfil de energia disponível" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Fonte de energia" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Larguras Predefinidas (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Contêiner Primário" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Gerenciamento do Servidor de Impressão" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Impressoras" }, - "Printers: ": { - "Printers: ": "Impressoras: " - }, "Prioritize performance": { "Prioritize performance": "Priorizar desempenho" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Processos" }, - "Processes:": { - "Processes:": "Processos:" - }, "Processing": { "Processing": "Processando" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protocolo" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "" }, - "Remove admin?": { - "Remove admin?": "" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "" }, @@ -6657,7 +6336,7 @@ "Rename": "Renomear" }, "Rename Session": { - "Rename Session": "" + "Rename Session": "Renomear Sessão" }, "Rename Workspace": { "Rename Workspace": "Renomear Espaço de Trabalho" @@ -6681,7 +6360,7 @@ "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Exigir manter o botão/tecla pressionado para confirmar desligamento, reinicialização, suspensão, hibernação e encerramento de sessão" }, "Required plugin: ": { - "Required plugin: ": "" + "Required plugin: ": "Plugin necessário:" }, "Requires %1": { "Requires %1": "Requer %1" @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Restaurar Tamanho" }, - "Reset to Default?": { - "Reset to Default?": "" - }, "Reset to default": { "Reset to default": "" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Tocar" }, - "Ringing": { - "Ringing": "Tocando" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Efeitos de Ondulação" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Regra" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Nome da Regra" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Regras (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Salvando..." }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "Escala" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Escanear" }, - "Scanning": { - "Scanning": "Scanning" - }, "Scanning...": { "Scanning...": "Escaneando..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Buscar..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "Pesquisando..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Segurança e privacidade" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Selecionar monitor para configurar papel de parede" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Selecionar fonte monoespaçada para a lista de processos e telas técnicas" }, "Select network": { "Select network": "Selecionar rede" }, - "Select system sound theme": { - "Select system sound theme": "Selecionar tema do som do sistema" - }, "Select the font family for UI text": { "Select the font family for UI text": "Selecione a família de fontes para o texto da UI" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Enviar Área de Transferência" }, - "Send File": { - "Send File": "Enviar Arquivo" - }, "Send SMS": { "Send SMS": "Enviar SMS" }, - "Sending": { - "Sending": "Enviando" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7263,13 +6927,13 @@ "Setup": "Configurar" }, "Shadow Color": { - "Shadow Color": "" + "Shadow Color": "Cor da Sombra" }, "Shadow Intensity": { - "Shadow Intensity": "" + "Shadow Intensity": "Intensidade da Sombra" }, "Shadow Opacity": { - "Shadow Opacity": "" + "Shadow Opacity": "Opacidade da Sombra" }, "Shadow Override": { "Shadow Override": "" @@ -7287,7 +6951,7 @@ "Shadow elevation on popouts, OSDs, and dropdowns": "" }, "Shadows": { - "Shadows": "" + "Shadows": "Sombras" }, "Share": { "Share": "Compartilhar" @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Compartilhar Configurações de Controle Gamma" }, - "Share Text": { - "Share Text": "Compartilhar Texto" - }, "Shared": { "Shared": "Compartilhado" }, @@ -7419,7 +7080,7 @@ "Show Memory Graph": "Mostrar Gráfico de Memória" }, "Show Memory in GB": { - "Show Memory in GB": "" + "Show Memory in GB": "Exibir a Memória em GB" }, "Show Mode Chips": { "Show Mode Chips": "" @@ -7500,13 +7161,13 @@ "Show Top Processes": "Mostrar Processos Principais" }, "Show Trash in Dock": { - "Show Trash in Dock": "" + "Show Trash in Dock": "Mostrar a Lixeira no Dock" }, "Show Weather Condition": { "Show Weather Condition": "Mostrar Condição do Tempo" }, "Show Week Number": { - "Show Week Number": "" + "Show Week Number": "Exibir o número da semana" }, "Show Welcome": { "Show Welcome": "Mostrar Boas-vindas" @@ -7553,14 +7214,11 @@ "Show during Niri overview": { "Show during Niri overview": "" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, "Show in GB": { - "Show in GB": "" + "Show in GB": "Exibir em GB" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Mostrar sobreposição do iniciador ao digitar na visão geral do Niri. Desative para usar outro iniciador." @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "" - }, "Show on Last Display": { "Show on Last Display": "Mostrar na Última Tela" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Mostrar Apenas na Visão Geral" }, - "Show on all connected displays": { - "Show on all connected displays": "Mostrar em todas as telas conectadas" - }, "Show on screens:": { "Show on screens:": "Mostrar nas telas:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Mostrar aviso na tela quando o brilho muda" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Mostrar aviso na tela quando o estado do caps lock muda" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Mostrar aviso na tela ao alternar dispositivos de saída de áudio" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Mostrar aviso na tela quando o estado do inibidor de ociosidade mudar" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Mostrar exibição na tela quando o status do reprodutor de mídia mudar" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Mostrar aviso na tela quando o volume do reprodutor de mídia mudar" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Mostrar aviso na tela quando o microfone for mutado/desmutado" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Mostrar aviso na tela quando o perfil de energia mudar" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Mostrar aviso na tela quando o volume mudar" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Mostrar informação de clima na barra superior e na central de controle" }, - "Show week number in the calendar": { - "Show week number in the calendar": "" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Mostrar números de índice das áreas de trabalho no seletor de áreas de trabalho" }, @@ -7667,14 +7286,11 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Sinal:" - }, "Silence for a while": { - "Silence for a while": "" + "Silence for a while": "Silenciar por um tempo" }, "Silence notifications": { - "Silence notifications": "" + "Silence notifications": "Silenciar notificações" }, "Silence system sounds while media is playing": { "Silence system sounds while media is playing": "" @@ -7796,9 +7412,6 @@ "Start": { "Start": "Iniciar" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Iniciar KDE Connect ou Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Inicie o KDE Connect ou Valent para usar este plugin" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Listras" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "Resumo" }, @@ -7920,7 +7530,7 @@ "Switch to power profile": "Trocar para perfil de energia" }, "Sync": { - "Sync": "" + "Sync": "Sincronização" }, "Sync Bar Inset Padding": { "Sync Bar Inset Padding": "" @@ -7938,7 +7548,7 @@ "Sync applies your theme and settings to the login screen. Other users should run dms greeter sync --profile instead of a full sync. Authentication changes apply automatically.": "" }, "Sync completed successfully.": { - "Sync completed successfully.": "" + "Sync completed successfully.": "A sincronização foi concluída com sucesso." }, "Sync dark mode with settings portals for system-wide theme hints": { "Sync dark mode with settings portals for system-wide theme hints": "Sincronize o modo escuro com os portais de configurações para ter indicações de temas em todo o sistema" @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminais - Sempre usar Tema Escuro" @@ -8070,7 +7671,7 @@ "Tertiary Container": "" }, "Test Connection": { - "Test Connection": "" + "Test Connection": "Testar a conexão" }, "Test Page": { "Test Page": "Página de Testes" @@ -8079,13 +7680,13 @@ "Test page sent to printer": "Página de testes enviada para a impressora" }, "Testing...": { - "Testing...": "" + "Testing...": "Testando..." }, "Text": { "Text": "Texto" }, "Text Color": { - "Text Color": "" + "Text Color": "Cor do Texto" }, "Text Editor": { "Text Editor": "" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "A ferramenta 'dgop' é necessária para monitoramento do sistema.\nPor favor, instale o dgop para usar este recurso." }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Isso pode levar alguns segundos" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Azulejo" }, - "Tile H": { - "Tile H": "Azulejo H" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "Azulejo V" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Tempo limite para notificações de prioridade crítica" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Tempo limite para notificações de baixa prioridade" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Tempo limite para notificações de prioridade normal" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "" @@ -8375,17 +7949,8 @@ "Transparency": { "Transparency": "Transparência" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { - "Trash": "" + "Trash": "Lixeira" }, "Trash command failed (exit %1)": { "Trash command failed (exit %1)": "" @@ -8418,10 +7983,10 @@ "Try a different search or switch filters.": "" }, "Turn off": { - "Turn off": "" + "Turn off": "Desativar" }, "Turn off Do Not Disturb": { - "Turn off Do Not Disturb": "" + "Turn off Do Not Disturb": "Desativar o modo Não Perturbe" }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "Desligar todos os monitores imediatamente quando a tela de bloqueio for ativada" @@ -8478,13 +8043,13 @@ "Uninstall": "Desinstalar" }, "Uninstall Greeter": { - "Uninstall Greeter": "" + "Uninstall Greeter": "Desinstalar o Greeter" }, "Uninstall Plugin": { "Uninstall Plugin": "Desinstalar Plugin" }, "Uninstall complete. Greeter has been removed.": { - "Uninstall complete. Greeter has been removed.": "" + "Uninstall complete. Greeter has been removed.": "Desinstalação concluída. O Greeter foi removido." }, "Uninstall failed: %1": { "Uninstall failed: %1": "Desinstalação falhou: %1" @@ -8502,7 +8067,7 @@ "Unknown": "Desconhecido" }, "Unknown App": { - "Unknown App": "" + "Unknown App": "Aplicativo Desconhecido" }, "Unknown Artist": { "Unknown Artist": "Artista Desconhecido" @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Desafixar do Dock" }, - "Unsaved Changes": { - "Unsaved Changes": "Mudanças não salvas" - }, "Unsaved changes": { "Unsaved changes": "Mudanças não salvas" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Tempo de Atividade" }, - "Uptime:": { - "Uptime:": "Tempo de Atividade:" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Usar tamanho de borda personalizado" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Usar largura de borda/anel de foco personalizada" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Usar tema de som das configurações do sistema" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "Usar a mesma posição e tamanho em todos os monitores" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Quando bloqueado" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Regras de Janela" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Regras de Janela Incluem Ausentes" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Regras de Janela Não Configuradas" - }, "Wipe": { "Wipe": "Limpar" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Área de Trabalho" }, - "Workspace Appearance": { - "Workspace Appearance": "Aparência do Espaço de Trabalho" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Índices das Áreas de Trabalho" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Mínimo de 3 Áreas de Trabalho" }, - "Workspace Settings": { - "Workspace Settings": "Configurações da Área de Trabalho" - }, "Workspace Switcher": { "Workspace Switcher": "Seletor de Áreas de Trabalho" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Ontem" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Você tem mudanças não salvas. Salvar antes de fechar esta guia?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Você tem mudanças não salvas. Deseja salvar antes de continuar?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Você tem mudanças não salvas. Deseja salvar antes de criar um novo arquivo?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Você tem mudanças não salvas. Deseja salvar antes de abrir um arquivo?" - }, "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.": { "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.": "Você precisa definir um dos seguintes:\nQT_QPA_PLATFORMTHEME=gtk3 OU\nQT_QPA_PLATFORMTHEME=qt6ct\ncomo variáveis de ambiente, e então reiniciar o shell.\n\nqt6ct requer qt6ct-kde para ser instalado." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "" }, - "actions": { - "actions": "ações" - }, "admin": { "admin": "" }, "attached": { "attached": "" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "dispositivo" }, - "devices connected": { - "devices connected": "dispositivos conectados" - }, "dgop not available": { "dgop not available": "dgop não disponível" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9308,11 +8840,8 @@ "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 Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen não encontrado - instale o pacote matugen para tematização dinâmica" @@ -9326,6 +8855,9 @@ "nav": { "nav": "nav" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "no Sway" }, - "open": { - "open": "abrir" - }, "or run ": { "or run ": "" }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "processos" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 por %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "Instale apenas de fontes confiáveis" }, diff --git a/quickshell/translations/poexports/ru.json b/quickshell/translations/poexports/ru.json index efdcfca2c..dbb316c45 100644 --- a/quickshell/translations/poexports/ru.json +++ b/quickshell/translations/poexports/ru.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "Скорость анимации %1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "Сеансы %1" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 скопировано" }, - "%1 custom animation duration": { - "%1 custom animation duration": "Пользовательская длительность анимации %1" - }, "%1 disconnected": { "%1 disconnected": "%1 отключен(о)" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 дисплей" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 существует, но не включен. Правила окон не будут применены." - }, "%1 filtered": { "%1 filtered": "%1 отфильтровано" }, @@ -119,9 +116,6 @@ "'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.": "«Альтернативный» позволяет ключу разблокировать систему самостоятельно. «Второй фактор» требует сначала пароль или отпечаток пальца, а затем ключ." }, - "(Default)": { - "(Default)": "(По умолчанию)" - }, "(Unnamed)": { "(Unnamed)": "(Без названия)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24-Часовой формат" }, - "24-hour clock": { - "24-hour clock": "24-часовой формат времени" - }, "25 seconds": { "25 seconds": "25 секунд" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "День" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Все" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Требуется авторизация" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "Изменения аутентификации применены." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "Изменения аутентификации применяются автоматически." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Изменения аутентификации применяются автоматически. Вход только по отпечатку пальца может не разблокировать связку ключей." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Для изменения аутентификации требуются права sudo. Открытие терминала для ввода пароля или сканирования отпечатка пальца." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Аутентификация не удалась, попробуйте снова" - }, "Authorize": { "Authorize": "Авторизовать" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Включён автоматический режим. Ручной выбор профиля отключён." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Автоматически сохранено" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Автоочистка через" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Доступно в режимах просмотра 'Подробно' и 'Прогноз'" }, - "Available.": { - "Available.": "Доступно." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Бэкенд" }, - "Backends: %1": { - "Backends: %1": "Бэкенды: %1" - }, "Background": { "Background": "Фон" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "Панель %1" }, - "Bar Configurations": { - "Bar Configurations": "Конфигурации бара" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Тень, рамка и углы бара" }, - "Bar spacing and size": { - "Bar spacing and size": "Отступы и размер бара" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Базовый цвет для теней (непрозрачность применяется автоматически)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Батарея %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Батарея Заряда Ограничение" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Батарея и управление питанием" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Уровень заряда батареи и управление питанием" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Привязать экран блокировки к DBus-сигналам от loginctl. Отключите при использовании внешнего экрана блокировки" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Привяжите IPC-действие spotlight в конфигурации композитора." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Привяжите IPC-действие spotlight-bar в конфигурации композитора." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Binds include добавлен" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Размытие" }, - "Blur Border Color": { - "Blur Border Color": "Цвет рамки размытия" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Непрозрачность рамки размытия" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Размытие Обоев слоя" }, "Blur on Overview": { "Blur on Overview": "Размытие в режиме обзора" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Размывать фон за барами, всплывающими окнами, модальными окнами и уведомлениями. Требуется поддержка и настройка композитора." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Размывать фон за панелями, всплывающими, модальными окнами и уведомлениями. Требуется поддержка композитора. Настройте прозрачность соответствующим образом." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Ширина рамки" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Цвет рамки вокруг размытых поверхностей" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Цвет кнопки" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "ЦП" }, @@ -1436,9 +1379,6 @@ "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.": "Проверяйте статус синхронизации по запросу. Синхронизация (полная) предназначена для главного администратора: она копирует вашу тему на экран входа и настраивает конфигурацию системного гритера. В многопользовательских системах добавьте другие учётные записи в Настройки → Пользователи, а затем пусть каждый из них запустит dms greeter sync --profile после выхода и повторного входа в систему — а не полную синхронизацию. Изменения аутентификации применяются автоматически." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Проверьте пользовательскую команду в Настройки → Док → Корзина." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Выбрать цвет тёмного режима" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Выбрать Док Лаунчер Логотипа Цвет" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Выбрать Цвет Логотипа Лаунчера" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Выберите, как эта панель определяет направление тени" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Выбрать цвет фона для виджетов" - }, - "Choose the border accent color": { - "Choose the border accent color": "Выбрать акцентный цвет рамки" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Выбрать логотип, отображаемый на кнопке запуска приложений в DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Нажмите «Setup» для создания %1 и добавления include в конфиг композитора." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Нажмите «Setup» для создания конфига outputs и добавления include в конфиг композитора." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Нажмите Import для добавления .ovpn или .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Цветовая температура для дневного времени" - }, "Color temperature for night mode": { "Color temperature for night mode": "Цветовая температура для ночного режима" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Конфигурация будет сохранена при переподключении этого дисплея" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Настроить" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Подключение..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "Сбой подключения" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "Управление прозрачностью поверхностей оболочки, всплывающих и модальных окон" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "Управление прозрачностью фона панели" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "Управление прозрачностью рамки" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Управление прозрачностью слоя тени" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "Управление прозрачностью контура виджета" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "Управление прозрачностью фона виджетов" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Управляет контурами вокруг размытых карточек переднего плана, плашек и карточек уведомлений" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Управляет базовым радиусом размытия и смещением теней" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Управление прозрачностью тени" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Управляет внешним краем окон с размытием по протоколу" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Управляет прозрачностью тени" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Удобные параметры для экрана входа. Синхронизируйте для применения." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Углы и фон" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "Не удалось открыть терминал для обновления автологина." - }, "Count Only": { "Count Only": "Полное содержимое" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Создать новую %1 сессию (n)" - }, "Create rule for:": { "Create rule for:": "Создать правило для:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Пользовательский..." }, - "Custom: ": { - "Custom: ": "Свой: " - }, "Customizable empty space": { "Customizable empty space": "Настраиваемое пустое пространство" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Комбинации клавиш DMS" }, - "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 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 необходимы: 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 требуется доступ администратора. Терминал закроется автоматически по завершении." - }, "DMS out of date": { "DMS out of date": "DMS устарел" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "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)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Удалить пользователя" }, - "Delete user?": { - "Delete user?": "Удалить пользователя?" - }, "Demi Bold": { "Demi Bold": "Среднежирный" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Отображать действия меню питания в виде сетки вместо списка" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Отображать секунды в часах" - }, "Display setup failed": { "Display setup failed": "Ошибка настройки дисплея" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Мониторы" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Количество дисплеев при активном переполнении" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Отображает активную раскладку клавиатуры и позволяет переключаться" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Прозрачность дока" }, - "Dock Visibility": { - "Dock Visibility": "Видимость дока" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Отступ, прозрачность и рамка дока" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Поля, прозрачность и рамка дока" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Очистить корзину (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Очистить корзину?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Включить 10-битную глубину цвета для более широкой цветовой гаммы и поддержки HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Включено" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Включено, но доступность отпечатков пальцев не удалось подтвердить." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Включено, но сканер отпечатков пальцев не обнаружен." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Включено, но отпечатки ещё не зарегистрированы. Изменения аутентификации применятся автоматически после регистрации отпечатков." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Включено, но отпечатки еще не зарегистрированы. Зарегистрируйте отпечатки пальцев и запустите Синхронизацию." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Включено, но зарегистрированный ключ безопасности пока не найден. Изменения аутентификации применятся автоматически после регистрации ключа или обновления конфигурации U2F." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Включено, но зарегистрированный ключ безопасности еще не найден. Зарегистрируйте ключ и запустите Синхронизацию." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Включено, но доступность ключа безопасности не удалось подтвердить." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Включено. PAM уже обеспечивает аутентификацию по отпечатку пальца." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Включено. PAM уже обеспечивает аутентификацию по ключу безопасности." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Включено. PAM обеспечивает аутентификацию по отпечатку пальца, но отпечатки еще не зарегистрированы." - }, "Enabling WiFi...": { "Enabling WiFi...": "Включение Wi-Fi…" }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Регулярное выражение" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Смещение Исключительной Зоны" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Не удалось добавить принтер в класс" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Не удалось применить цвета GTK" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Не удалось применить цвета Qt" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Не удалось включить ночной режим" }, - "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": "Не удалось получить QR-код сети: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Не удалось переместить в корзину" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Не удалось разобрать plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Не удалось разобрать session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Не удалось разобрать settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Не удалось приостановить принтер" @@ -3368,8 +3188,8 @@ "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.": "Файловый менеджер, используемый для открытия корзины. Выберите «custom», чтобы ввести собственную команду." }, - "File received from": { - "File received from": "Файл получен от" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Поиск файлов требует dsearch. Установите с github.com/morelazers/dsearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Для редактирования текстовых файлов" }, - "For reading PDF files": { - "For reading PDF files": "Для чтения PDF-файлов" - }, "Force HDR": { "Force HDR": "Принудительный HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Создать переопределение" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "Предоставить" }, - "Grant admin?": { - "Grant admin?": "Предоставить права администратора?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Предоставить права администратора" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Экран приветствия" }, - "Greeter Appearance": { - "Greeter Appearance": "Внешний вид экрана приветствия" - }, - "Greeter Behavior": { - "Greeter Behavior": "Поведение экрана приветствия" - }, - "Greeter Status": { - "Greeter Status": "Статус экрана приветствия" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Экран приветствия активирован. greetd теперь включен." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Группа greeter:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Только для экрана приветствия — не влияет на основные часы" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Только для экрана приветствия — формат даты на экране входа" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Discord-сервер Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Переопределения макета Hyprland" - }, "Hyprland Options": { "Hyprland Options": "Опции Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Неправильный пароль" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Неверный пароль — попытка %1 из %2 (возможна блокировка)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Неверный пароль — следующие неудачи могут привести к блокировке учетной записи" - }, "Incorrect password - try again": { "Incorrect password - try again": "Неверный пароль — попробуйте снова" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Задания" }, - "Jobs: ": { - "Jobs: ": "Задания: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Переопределения макета" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Расположение и позиции модулей на экране приветствия синхронизируются из вашей оболочки (например, конфигурации панели). Запустите Синхронизацию для применения." - }, "Left": { "Left": "Слева" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Локаль" }, - "Locale Settings": { - "Locale Settings": "Настройки локали" - }, "Location": { "Location": "Местоположение" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Экран Блокировки" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Дисплей экрана блокировки" - }, "Lock Screen Format": { "Lock Screen Format": "Формат Экрана Блокировки" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Поведение экрана блокировки" - }, - "Lock Screen layout": { - "Lock Screen layout": "Макет экрана блокировки" - }, "Lock at startup": { "Lock at startup": "Блокировка при запуске" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Льготный период затухания блокировки" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Изменения аутентификации экрана блокировки применяются автоматически и могут открыть терминал, если потребуется подтверждение прав sudo." - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Войти" }, - "Login Authentication": { - "Login Authentication": "Аутентификация при входе" - }, "Long": { "Long": "Длинный" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Управляется рамкой в сплошном режиме" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Управление" }, - "Manages calendar events": { - "Manages calendar events": "Управляет событиями календаря" - }, "Manages files and directories": { "Manages files and directories": "Управляет файлами и каталогами" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Служба Mango недоступна" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Переопределения макета MangoWC" - }, "Manual": { "Manual": "Вручную" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Достигнуто максимальное количество закреплённых записей" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Максимальный размер одной записи буфера обмена" - }, "Media": { "Media": "Медиа" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Медиаплеер" }, - "Media Player Settings": { - "Media Player Settings": "Настройки Медиаплеера" - }, "Media Players (": { "Media Players (": "Медиаплееры (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Режим" }, - "Mode:": { - "Mode:": "Режим:" - }, "Model": { "Model": "Модель" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Размер указателя мыши в пикселях" }, - "Move": { - "Move": "Переместить" - }, "Move Widget": { "Move Widget": "Переместить виджет" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "Мультимедиа" }, - "Multiplexer": { - "Multiplexer": "Мультиплексор" - }, "Multiplexer Type": { "Multiplexer Type": "Тип мультиплексора" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Отслеживание Скорости Сети" }, - "Network Status": { - "Network Status": "Статус сети" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Интеграция Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Переопределения макета Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Действия композитора Niri (фокус, перемещение и т.д.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Дополнения не найдены" }, - "No plugins found.": { - "No plugins found.": "Дополнения не найдены." - }, "No printer found": { "No printer found": "Принтер не найден" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Всплывающие уведомление" }, - "Notification Rules": { - "Notification Rules": "Правила уведомлений" - }, "Notification Settings": { "Notification Settings": "Настройки Уведомлений" }, - "Notification Timeouts": { - "Notification Timeouts": "Задержка Уведомлений" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Регулировать цветовую температуру только на основе правил времени или местоположения." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Влияет только на PAM, управляемый DMS. Если greetd уже включает pam_fprintd, вход по отпечатку останется включённым." - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Непрозрачность" }, - "Opacity of the bar background": { - "Opacity of the bar background": "Прозрачность фона панели" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "Прозрачность фона виджетов" - }, "Opaque": { "Opaque": "Непрозрачный" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Открытие файлового менеджера" }, - "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 image files": { - "Opens image files": "Открывает файлы изображений" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Открывает подключённый лаунчер в режиме связанной рамки." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM уже обеспечивает аутентификацию по ключу безопасности. Включите эту опцию, чтобы отображать её при входе." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM обеспечивает аутентификацию по отпечатку пальца, но её доступность не удалось подтвердить." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM обеспечивает аутентификацию по отпечатку пальца, но ни один отпечаток ещё не зарегистрирован." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM обеспечивает аутентификацию по отпечатку пальца, но сканер не обнаружен." - }, "PDF Reader": { "PDF Reader": "Просмотр PDF" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Пад часы" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Дополнять часы нулями (02:00 вместо 2:00)" - }, "Padding": { "Padding": "Отступ" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Сопряжено" }, - "Pairing": { - "Pairing": "Сопряжение" - }, "Pairing failed": { "Pairing failed": "Сопряжение не удалось" }, - "Pairing request from": { - "Pairing request from": "Запрос сопряжения от" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Запрос сопряжения отправлен" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect недоступен" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Phone Connect недоступен" - }, "Phone number": { "Phone number": "Номер телефона" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping отправлен на" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Закреплено" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Воспроизводить звук при регулировке громкости" }, - "Play sounds for system events": { - "Play sounds for system events": "Проигрывать звук при событиях системы" - }, "Playback": { "Playback": "Воспроизведение" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Воспроизводит аудиофайлы" }, - "Plays video files": { - "Plays video files": "Воспроизводит видеофайлы" - }, "Please wait...": { "Please wait...": "Пожалуйста, подождите…" }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Поведение всплывающих окон, позиция" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Порт" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "Экономия энергии" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Управление профилями питания доступно" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Источник питания" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Предустановленные ширины (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Нажмите 'n' или нажмите «Новый сеанс», чтобы создать его" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Вариант поверхности" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Управление Print Server" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Принтеры" }, - "Printers: ": { - "Printers: ": "Принтеры: " - }, "Prioritize performance": { "Prioritize performance": "Приоритет производительности" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Процессы" }, - "Processes:": { - "Processes:": "Процессы:" - }, "Processing": { "Processing": "Обработка" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Протокол" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Убрать права администратора" }, - "Remove admin?": { - "Remove admin?": "Убрать права администратора?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Убрать закругление углов панели" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Сбросить размер" }, - "Reset to Default?": { - "Reset to Default?": "Сбросить по умолчанию?" - }, "Reset to default": { "Reset to default": "Сбросить по умолчанию" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Вызов" }, - "Ringing": { - "Ringing": "Вызов" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Эффекты ряби" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Правило" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Имя правила" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Правила (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Сохранение..." }, - "Saving…": { - "Saving…": "Сохранение…" - }, "Scale": { "Scale": "Масштаб" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Сканировать" }, - "Scanning": { - "Scanning": "Сканирование" - }, "Scanning...": { "Scanning...": "Сканирование..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Поиск..." }, - "Searching": { - "Searching": "Поиск" - }, "Searching...": { "Searching...": "Поиск..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Безопасность и конфиденциальность" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Режим ключа безопасности" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Выберите монитор для настройки обоев" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Выбрать моноширинный шрифт для списка процессов и технических дисплеев" }, "Select network": { "Select network": "Подключено" }, - "Select system sound theme": { - "Select system sound theme": "Выбрать системную тему звуков" - }, "Select the font family for UI text": { "Select the font family for UI text": "Выбрать семейство шрифтов для текста UI" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Отправить буфер обмена" }, - "Send File": { - "Send File": "Отправить файл" - }, "Send SMS": { "Send SMS": "Отправить SMS" }, - "Sending": { - "Sending": "Отправка" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Раздельно" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Установить размер шрифта для основного текста уведомления (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Установить размер шрифта для краткого текста уведомления" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Поделиться настройками управления Gamma" }, - "Share Text": { - "Share Text": "Поделиться текстом" - }, "Shared": { "Shared": "Отправлено" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Показывать в режиме обзора Niri" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Показывать элементы переднего плана на размытых панелях для лучшего контраста" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "Показывать путь монтирования" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "Показывать всплывающие уведомления только на мониторе в фокусе" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Показывать уведомления только на мониторе в фокусе" - }, "Show on Last Display": { "Show on Last Display": "Показать на последнем дисплее" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Показать только на обзоре" }, - "Show on all connected displays": { - "Show on all connected displays": "Показать все подключенные дисплеи" - }, "Show on screens:": { "Show on screens:": "Показать на экранах:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Показывать OSD при изменении яркости" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Показывать on-screen отображение при изменении состояния Caps Lock" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Показывать on-screen отображение при переключении устройств аудиовыхода" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Показывать on-screen отображение при изменении состояния ингибитора бездействия" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Показывать on-screen отображение при изменении статуса медиаплеера" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Показывать on-screen отображение при изменении громкости медиаплеера" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Показывать on-screen отображение при отключении/включении микрофона" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Показывать on-screen отображение при изменении профиля питания" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Показывать on-screen отображение при изменении громкости" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "Показывать панель только когда нет открытых окон" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Показывать информацию о погоде в верхней панели и центре управления" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Показывать номер недели в календаре" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Показывать номера индексов рабочих пространств в переключателе рабочих пространств верхней панели" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Сигнал:" - }, "Silence for a while": { "Silence for a while": "Приглушить на время" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Старт" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Запустите KDE Connect или Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Запустите KDE Connect или Valent для использования этого плагина" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Стирание" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "Заголовок" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Сбой запуска терминала. Установите один из поддерживаемых эмуляторов терминала или запустите 'dms greeter sync' вручную." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Запущен терминал для резервного режима. Завершите настройку аутентификации в нём; окно закроется автоматически по окончании." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Запущен терминал для резервного режима. Завершите синхронизацию в нём; окно закроется автоматически по окончании." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Используемый бэкенд терминального мультиплексора" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Терминал открыт. Завершите настройку аутентификации в нём; окно закроется автоматически по окончании." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Терминал открыт. Завершите аутентификацию для синхронизации в нём; окно закроется автоматически по окончании." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Терминалы — всегда использовать тёмную тему" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Отрисовка текста" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "Инструмент 'dgop' требуется для системного мониторинга.\nУстановите dgop для использования этой функции." }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "Эта установка все еще использует 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.": "Эта установка все еще использует hyprland.conf. Запустите «dms setup» для миграции перед редактированием настроек дисплея." - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "Эта установка все еще использует hyprland.conf. Запустите «dms setup» для миграции перед редактированием правил окон в Настройках." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Это может занять несколько секунд" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Плитка вертикально" }, - "Tile H": { - "Tile H": "Плитка вертикально" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "Плитка вертикально" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Индикатор истечения времени" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Тайм-аут для уведомлений критического приоритета" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Тайм-аут для уведомлений низкого приоритета" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Тайм-аут для уведомлений нормального приоритета" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Насыщенность оттенка" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Прозрачность" }, - "Transparency of the border": { - "Transparency of the border": "Прозрачность границы" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Прозрачность слоя тени" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "Прозрачность контура виджета" - }, "Trash": { "Trash": "Корзина" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Открепить от дока" }, - "Unsaved Changes": { - "Unsaved Changes": "Несохранённые изменения" - }, "Unsaved changes": { "Unsaved changes": "Несохранённые изменения" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Время работы" }, - "Uptime:": { - "Uptime:": "Время работы:" - }, "Urgent": { "Urgent": "Срочное" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Использовать пользовательский размер границы" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Использовать пользовательскую ширину границы/кольца фокуса" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Использовать звуковую тему из системных настроек" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "Использовать одинаковую позицию и размер на всех дисплеях" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Когда заблокировано" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Правила окон" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Window Rules включают отсутствующие" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Правила окон не настроены" - }, "Wipe": { "Wipe": "Стирание" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Рабочее пространство" }, - "Workspace Appearance": { - "Workspace Appearance": "Внешний вид рабочей области" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Номера индексов рабочих областей" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Отступ рабочей области" }, - "Workspace Settings": { - "Workspace Settings": "Настройки рабочего пространства" - }, "Workspace Switcher": { "Workspace Switcher": "Переключатель рабочих областей" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Вчера" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "У вас есть несохранённые изменения. Сохранить перед закрытием этой вкладки?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "У вас есть несохранённые изменения. Сохранить перед продолжением?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "У вас есть несохранённые изменения. Сохранить перед созданием нового файла?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "У вас есть несохранённые изменения. Сохранить изменения перед открытием файла?" - }, "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.": { "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а затем перезапустить оболочку.\n\nДля qt6ct требуется qt6ct-kde." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Ваша система обновлена!" }, - "actions": { - "actions": "действия" - }, "admin": { "admin": "admin" }, "attached": { "attached": "Подключён" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "устройство" }, - "devices connected": { - "devices connected": "устройств подключено" - }, "dgop not available": { "dgop not available": "dgop недоступен" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "GitHub mangowc" }, - "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 недоступен или отключён — невозможно применить цвета Qt" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen не найден - установите пакет matugen для динамической тематизации" @@ -9326,6 +8855,9 @@ "nav": { "nav": "навигация" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "GitHub niri" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "на Sway" }, - "open": { - "open": "открыть" - }, "or run ": { "or run ": "или запустите " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon недоступен" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "проц." }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 от %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Устанавливайте только из доверенных источников" }, diff --git a/quickshell/translations/poexports/sv.json b/quickshell/translations/poexports/sv.json index ffdcf2d40..87b171cd8 100644 --- a/quickshell/translations/poexports/sv.json +++ b/quickshell/translations/poexports/sv.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 animeringshastighet" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 sessioner" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 anpassad animeringstid" - }, "%1 disconnected": { "%1 disconnected": "%1 frånkopplad" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 bildskärmar" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 finns men ingår inte. Fönsterregler tillämpas inte." - }, "%1 filtered": { "%1 filtered": "%1 filtrerade" }, @@ -119,9 +116,6 @@ "'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.": "'Alternativ' låter nyckeln låsa upp på egen hand. 'Andra faktor' kräver lösenord eller fingeravtryck först, sedan nyckeln." }, - "(Default)": { - "(Default)": "(Standard)" - }, "(Unnamed)": { "(Unnamed)": "(Inget namn)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24-timmarsklocka" }, - "24-hour clock": { - "24-hour clock": "24-timmarsklocka" - }, "25 seconds": { "25 seconds": "25 sekunder" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Eftermiddag" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Alla" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Autentisering krävs" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Autentisering misslyckades, försök igen" - }, "Authorize": { "Authorize": "Auktorisera" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Rensa automatiskt efter" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Tillgänglig i detaljerade och prognosvyer" }, - "Available.": { - "Available.": "Tillgängligt." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Bakgrundstjänst" }, - "Backends: %1": { - "Backends: %1": "" - }, "Background": { "Background": "Bakgrund" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "Menyradskonfigurationer" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Basfärg för skuggor (opacitet tillämpas automatiskt)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Batteri %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Laddningsgräns" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Batteri och energihantering" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Energi och batteri" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Koppla låsskärmen till dbus-signaler från loginctl. Avaktivera om du använder en extern låsskärm" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight 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.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Inkludering av kortkommandon tillagd" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Oskärpa bakgrundsbildslager" }, "Blur on Overview": { "Blur on Overview": "Oskärpa i översikt" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Knappfärg" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Välj mörkt läge-färg" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Välj färg på dockens startarikon" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Välj färgen på appstartarens ikon" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Välj hur denna menyrad hanterar skuggriktning" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Välj bakgrundsfärg för widgetar" - }, - "Choose the border accent color": { - "Choose the border accent color": "Välj accentfärg på kantlinjen" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Välj ikonen som visas på appstartarknappen i DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Klicka på 'Konfiguration' för att skapa %1 och lägga till inkludering i din kompositorkonfiguration." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Klicka på 'Konfiguration' för att skapa utgångskonfigurationen och lägga till inkludering i din kompositorkonfiguration." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Klicka på Importera för att lägga till en .ovpn- eller .conf-fil" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Färgtemperatur för dagtid" - }, "Color temperature for night mode": { "Color temperature for night mode": "Färgtemperatur för nattläge" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Konfigurationen bevaras när denna bildskärm återansluts" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Konfigurera" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Ansluter..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "Anslutning misslyckades" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Styr grundoskärperadien och förskjutningen av skuggor" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Styr skuggans genomskinlighet" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Bekvämlighetsalternativ för inloggningsskärmen. Synka för att tillämpa." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Hörn & bakgrund" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "Bara antal" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Skapa en ny %1-session (n)" - }, "Create rule for:": { "Create rule for:": "Skapa regel för:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Anpassad..." }, - "Custom: ": { - "Custom: ": "Anpassat: " - }, "Customizable empty space": { "Customizable empty space": "Anpassningsbart mellanrum" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS-kortkommandon" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS är utdaterat" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "" }, - "Delete user?": { - "Delete user?": "" - }, "Demi Bold": { "Demi Bold": "" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Visa strömmenyn i rutnätsform istället för lista" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Visa sekunder i klockan" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Bildskärmar" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Antal bildskärmar när overflow är aktivt" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Visa aktiv tangentbordslayout och växla tangentbordslayouter" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Docksynlighet" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "" }, - "Empty Trash?": { - "Empty Trash?": "" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Aktivera 10-bitars färgdjup för bredare färgomfång och HDR-stöd" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Aktiverat" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Aktiverat, men fingeravtryckstillgänglighet kunde inte bekräftas." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Aktiverat, men ingen fingeravtrycksläsare hittades." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Aktiverat, men inga fingeravtryck har registrerats ännu. Registrera fingeravtryck och kör Synka." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Aktiverat, men ingen registrerad säkerhetsnyckel hittades ännu. Registrera en nyckel och kör Synka." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Aktiverat, men säkerhetsnyckelns tillgänglighet kunde inte bekräftas." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Aktiverat. PAM tillhandahåller redan fingeravtrycksautentisering." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Aktiverat. PAM tillhandahåller redan säkerhetsnyckelautentisering." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Aktiverat. PAM tillhandahåller fingeravtrycksautentisering, men inga fingeravtryck har registrerats ännu." - }, "Enabling WiFi...": { "Enabling WiFi...": "Aktiverar Wi-Fi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Exakt" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Avstånd från fönster" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Misslyckades med att lägga till skrivare i klass" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Misslyckades med att aktivera nattläge" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Misslyckades med att tolka plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Misslyckades med att tolka session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Misslyckades med att tolka settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Misslyckades med att pausa skrivaren" @@ -3368,8 +3188,8 @@ "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.": "" }, - "File received from": { - "File received from": "Fil mottagen från" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Filsökning kräver dsearch\nInstallera från github.com/AvengeMedia/danksearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "" }, - "For reading PDF files": { - "For reading PDF files": "" - }, "Force HDR": { "Force HDR": "Tvinga HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "" }, - "Grant admin?": { - "Grant admin?": "" - }, "Grant administrator privileges": { "Grant administrator privileges": "" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Välkomstskärm" }, - "Greeter Appearance": { - "Greeter Appearance": "Välkomstskärmens utseende" - }, - "Greeter Behavior": { - "Greeter Behavior": "Välkomstskärmens beteende" - }, - "Greeter Status": { - "Greeter Status": "Välkomstskärmens status" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Välkomstskärmen aktiverad. greetd är nu aktiverat." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Gäller bara välkomstskärmen – påverkar inte huvudklockan" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Gäller bara välkomstskärmen – format för datumet på inloggningsskärmen" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord-server" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland-layoutöverstyrningar" - }, "Hyprland Options": { "Hyprland Options": "Hyprland-alternativ" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Felaktigt lösenord" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Felaktigt lösenord – försök %1 av %2 (utelåsning kan följa)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Felaktigt lösenord – nästa misslyckanden kan utlösa kontoutelåsning" - }, "Incorrect password - try again": { "Incorrect password - try again": "" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Jobb" }, - "Jobs: ": { - "Jobs: ": "Jobb: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Layoutöverstyrningar" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Layout och modulpositioner på välkomstskärmen synkroniseras från ditt skal (t.ex. menyradskonfiguration). Kör Synka för att tillämpa." - }, "Left": { "Left": "Vänster" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Språk" }, - "Locale Settings": { - "Locale Settings": "Språkinställningar" - }, "Location": { "Location": "Plats" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Låsskärm" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Låsskärmsvisning" - }, "Lock Screen Format": { "Lock Screen Format": "Datumformat på låsskärm" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Låsskärmsbeteende" - }, - "Lock Screen layout": { - "Lock Screen layout": "Låsskärmslayout" - }, "Lock at startup": { "Lock at startup": "Lås vid start" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Fördröjning för låstonande" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "" }, - "Login Authentication": { - "Login Authentication": "Inloggningsautentisering" - }, "Long": { "Long": "Lång" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Hantering" }, - "Manages calendar events": { - "Manages calendar events": "" - }, "Manages files and directories": { "Manages files and directories": "" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC-layoutöverstyrningar" - }, "Manual": { "Manual": "Manuell" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Maximalt antal fästa poster uppnått" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Maximal storlek per urklippspost" - }, "Media": { "Media": "Medier" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Mediespelare" }, - "Media Player Settings": { - "Media Player Settings": "Inställningar för mediespelaren" - }, "Media Players (": { "Media Players (": "Mediespelare (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Läge" }, - "Mode:": { - "Mode:": "Läge:" - }, "Model": { "Model": "Modell" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Muspekarens storlek i pixlar" }, - "Move": { - "Move": "Flytta" - }, "Move Widget": { "Move Widget": "Flytta widget" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "" }, - "Multiplexer": { - "Multiplexer": "Multiplexer" - }, "Multiplexer Type": { "Multiplexer Type": "Multiplexertyp" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Övervakning för nätverkshastighet" }, - "Network Status": { - "Network Status": "Nätverksstatus" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri-integration" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri-layoutöverstyrningar" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri-kompositorsåtgärder (fokus, flytta, o.s.v.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Inga tillägg hittades" }, - "No plugins found.": { - "No plugins found.": "Inga tillägg hittades." - }, "No printer found": { "No printer found": "Ingen skrivare hittades" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Banderoller" }, - "Notification Rules": { - "Notification Rules": "Notisregler" - }, "Notification Settings": { "Notification Settings": "Notisinställningar" }, - "Notification Timeouts": { - "Notification Timeouts": "Tidsgräns för notiser" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Justera bara gamma baserat på tids- eller platsregler." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Påverkar bara DMS-hanterad PAM. Om greetd redan inkluderar pam_fprintd förblir fingeravtrycksläsaren aktiverad." - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opacitet" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "Ogenomskinlig" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Öppnar filbläddraren" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "" - }, "Opening terminal: ": { "Opening terminal: ": "Öppnar terminal: " }, "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 the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM tillhandahåller redan säkerhetsnyckelautentisering. Aktivera detta för att visa det vid inloggning." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM tillhandahåller fingeravtrycksautentisering, men tillgängligheten kunde inte bekräftas." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM tillhandahåller fingeravtrycksautentisering, men inga fingeravtryck har registrerats ännu." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM tillhandahåller fingeravtrycksautentisering, men ingen läsare hittades." - }, "PDF Reader": { "PDF Reader": "" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Fyll ut timmar" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Fyll ut timmar (02:00 vs 2:00)" - }, "Padding": { "Padding": "Utfyllnad" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Parkopplad" }, - "Pairing": { - "Pairing": "Parkopplar" - }, "Pairing failed": { "Pairing failed": "Parkoppling misslyckades" }, - "Pairing request from": { - "Pairing request from": "Parkopplingsförfrågan från" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Parkopplingsförfrågan skickad" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Phone Connect är inte tillgängligt" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Phone Connect är inte tillgängligt" - }, "Phone number": { "Phone number": "Telefonnummer" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping skickat till" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Fäst" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Spela upp ljud när volymen justeras" }, - "Play sounds for system events": { - "Play sounds for system events": "Spela upp ljud för systemhändelser" - }, "Playback": { "Playback": "Uppspelning" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "" }, - "Plays video files": { - "Plays video files": "" - }, "Please wait...": { "Please wait...": "Vänta..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Popupbeteende, position" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Port" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "Energisparläge" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Energiprofilhantering tillgänglig" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Strömkälla" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Förinställda bredder (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Tryck på 'n' eller klicka på 'Ny session' för att skapa en" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Primär behållare" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Skrivarserverhantering" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Skrivare" }, - "Printers: ": { - "Printers: ": "Skrivare: " - }, "Prioritize performance": { "Prioritize performance": "Prioritera prestanda" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Processer" }, - "Processes:": { - "Processes:": "Processer:" - }, "Processing": { "Processing": "Bearbetar" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protokoll" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "" }, - "Remove admin?": { - "Remove admin?": "" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Återställ storlek" }, - "Reset to Default?": { - "Reset to Default?": "" - }, "Reset to default": { "Reset to default": "" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Ring" }, - "Ringing": { - "Ringing": "Ringer" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Rippeleffekter" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Regel" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Regelnamn" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Regler (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Sparar..." }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "Skala" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Skanna" }, - "Scanning": { - "Scanning": "Söker" - }, "Scanning...": { "Scanning...": "Söker..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Sök..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "Söker..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Säkerhet och integritet" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Säkerhetsnyckelläge" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Ställ in bakgrundsbild på den här bildskärmen" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Välj monospaceteckensnitt för processlistan och övriga tekniska funktioner" }, "Select network": { "Select network": "Välj nätverk" }, - "Select system sound theme": { - "Select system sound theme": "Välj systemljudtema" - }, "Select the font family for UI text": { "Select the font family for UI text": "Välj teckensnitts­familj för gränssnittstext" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Skicka urklipp" }, - "Send File": { - "Send File": "Skicka fil" - }, "Send SMS": { "Send SMS": "Skicka SMS" }, - "Sending": { - "Sending": "Skickar" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Dela gammakontrollinställningar" }, - "Share Text": { - "Share Text": "Dela text" - }, "Shared": { "Shared": "Delat" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "Visa notisbanderoller bara på den aktuellt fokuserade bildskärmen" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Visa notiser bara på den aktuellt fokuserade bildskärmen" - }, "Show on Last Display": { "Show on Last Display": "Visa på sista bildskärm" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Visa bara i översikt" }, - "Show on all connected displays": { - "Show on all connected displays": "Visa på alla anslutna bildskärmar" - }, "Show on screens:": { "Show on screens:": "Visa på bildskärm:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Visa skärmvisning när ljusstyrkan ändras" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Visa skärmvisning när Caps Lock-status ändras" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Visa skärmvisning när ljudutgångsenheter växlas" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Visa skärmvisning när inaktivitetsstatus ändras" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Visa skärmvisning när mediaspecelarens status ändras" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Visa skärmvisning när mediaspelaren ändrar volym" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Visa skärmvisning när mikrofonen tystas/aktiveras" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Visa skärmvisning när energiprofilen ändras" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Visa skärmvisning när volymen ändras" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Visa väderinformation i menyraden och kontrollcentret" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Visa veckonummer i kalendern" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Visa indexnummer på arbetsytan på växlaren i menyraden" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Signal:" - }, "Silence for a while": { "Silence for a while": "" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Start" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Starta KDE Connect eller Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Starta KDE Connect eller Valent för att använda detta tillägg" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Ränder" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "Sammanfattning" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminalåterfall misslyckades. Installera en av de stödda terminalemulatorerna eller kör 'dms greeter sync' manuellt." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminalåterfall öppnat. Slutför synkroniseringen där; det stängs automatiskt när det är klart." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Terminalmultiplexerbakgrundstjänst att använda" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminal öppnad. Slutför synkroniseringsautentiseringen där; det stängs automatiskt när det är klart." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminaler – Använd alltid mörkt tema" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "Verktyget 'dgop' krävs för systemövervakning.\nInstallera dgop för att använda den här funktionen." }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Detta kan ta några sekunder" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Kakla" }, - "Tile H": { - "Tile H": "Kakla H" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "Kakla V" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Tidsgräns för aviseringar med kritisk prioritet" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Tidsgräns för aviseringar med låg prioritet" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Tidsgräns för aviseringar med normal prioritet" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Genomskinlighet" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { "Trash": "" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Ta bort från Dock" }, - "Unsaved Changes": { - "Unsaved Changes": "Osparade ändringar" - }, "Unsaved changes": { "Unsaved changes": "Osparade ändringar" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Drifttid" }, - "Uptime:": { - "Uptime:": "Drifttid:" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Använd anpassad ramstorlek" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Använd anpassad ram/fokusring-bredd" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Använd ljudtemat från systeminställningarna" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "Använd samma position och storlek på alla bildskärmar" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "När låst" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Fönsterregler" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Inkludering av fönsterregler saknas" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Fönsterregler inte konfigurerade" - }, "Wipe": { "Wipe": "Sudda" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Arbetsyta" }, - "Workspace Appearance": { - "Workspace Appearance": "Utseende på arbetsyta" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Indexnummer på arbetsyta" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Minst antal alltid synliga arbetsytor" }, - "Workspace Settings": { - "Workspace Settings": "Inställningar för arbetsytor" - }, "Workspace Switcher": { "Workspace Switcher": "Växla arbetsytor" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Igår" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Du har osparade ändringar. Vill du spara dem innan du stänger fliken?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Du har osparade ändringar. Vill du spara dem innan du fortsätter?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Du har osparade ändringar. Vill du spara dem innan du skapar en ny fil?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Du har osparade ändringar. Vill du spara dem innan du öppnar en fil?" - }, "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.": { "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.": "Du måste ange antingen:\nQT_QPA_PLATFORMTHEME=gtk3 ELLER\nQT_QPA_PLATFORMTHEME=qt6ct\nsom miljövariabler och sedan starta om skalet.\n\nqt6ct kräver att qt6ct-kde är installerat." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Ditt system är uppdaterat!" }, - "actions": { - "actions": "åtgärder" - }, "admin": { "admin": "" }, "attached": { "attached": "ansluten" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "enhet" }, - "devices connected": { - "devices connected": "enheter anslutna" - }, "dgop not available": { "dgop not available": "dgop är inte tillgängligt" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms är ett mycket anpassningsbart, modernt skrivbordsskal med en Material 3-inspirerad design.

Det är byggt med Quickshell, ett QT6-ramverk för att bygga skrivbordsskal, och Go, ett statiskt typat kompilerat programmeringsspråk." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "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 Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "Matugen hittades inte – installera matugen-paketet för dynamisk tematisering" @@ -9326,6 +8855,9 @@ "nav": { "nav": "nav" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "på Sway" }, - "open": { - "open": "öppna" - }, "or run ": { "or run ": "eller kör " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon är inte tillgänglig" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "proc." }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 av %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Installera endast från trovärdiga källor." }, diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index 41ff72c49..c9b95d021 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "" }, - "%1 custom animation duration": { - "%1 custom animation duration": "" - }, "%1 disconnected": { "%1 disconnected": "" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "" - }, "%1 filtered": { "%1 filtered": "" }, @@ -119,9 +116,6 @@ "'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.": "" }, - "(Default)": { - "(Default)": "" - }, "(Unnamed)": { "(Unnamed)": "(İsimsiz)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24-Saat Biçimi" }, - "24-hour clock": { - "24-hour clock": "" - }, "25 seconds": { "25 seconds": "" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Öğleden Sonra" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Tümü" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Kimlik Doğrulama Gerekli" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Kimlik doğrulama başarısız, lütfen tekrar deneyin" - }, "Authorize": { "Authorize": "Yetkilendir" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Sonra Otomatik Sil" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "" }, - "Available.": { - "Available.": "" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Arka Uç" }, - "Backends: %1": { - "Backends: %1": "" - }, "Background": { "Background": "" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "Bar Ayarları" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "" }, - "Bar spacing and size": { - "Bar spacing and size": "" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "Batarya Şarj Sınırı" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "Batarya ve güç yönetimi" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "Batarya seviyesi ve güç yönetimi" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Kilit ekranını loginctl'den gelen dbus sinyallerine bağlayın. Harici bir kilit ekranı kullanıyorsanız devre dışı bırakın" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight 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.": "" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Bağlantı dahili eklendi" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "" }, - "Blur Border Color": { - "Blur Border Color": "" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Bulanık Duvar Kağıdı Katmanı" }, "Blur on Overview": { "Blur on Overview": "Genel Görünümde Bulanıklık" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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 your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Başlatıcı Logo Rengini Seçin" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Widgetlar için arkaplan rengini seç" - }, - "Choose the border accent color": { - "Choose the border accent color": "Kenarlık vurgu rengini seç" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "DankBar'daki başlatıcı düğmesinde görüntülenen logoyu seçin" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Çıktı yapılandırmasını oluşturmak ve kompozitör yapılandırmanıza dahil etmek için 'Kur'a tıklayın." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": ".ovpn veya .conf dosyası eklemek için İçe Aktar'ı tıklayın." }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "Gündüz için renk sıcaklığı" - }, "Color temperature for night mode": { "Color temperature for night mode": "Gece modu için renk sıcaklığı" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Bu ekran yeniden bağlandığında yapılandırma korunacaktır" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Bağlanıyor..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Köşeler & Arkaplan" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "" - }, "Count Only": { "Count Only": "" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "" - }, "Create rule for:": { "Create rule for:": "" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Özel..." }, - "Custom: ": { - "Custom: ": "Özel: " - }, "Customizable empty space": { "Customizable empty space": "Özelleştirilebilir boş alan" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "" }, - "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 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 needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "" - }, "DMS out of date": { "DMS out of date": "DMS güncel değil" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "" }, - "Delete user?": { - "Delete user?": "" - }, "Demi Bold": { "Demi Bold": "" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Güç menüsü eylemlerini liste yerine ızgara şeklinde göster" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Saatte saniyeleri göster" - }, "Display setup failed": { "Display setup failed": "" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Ekranlar" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Etkin klavye düzenini gösterir ve değiştirmeye izin verir" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Dock Görünürlüğü" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "" }, - "Empty Trash?": { - "Empty Trash?": "" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Daha geniş renk gamı ve HDR desteği için 10 bit renk derinliğini etkinleştirin" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Etkin" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, "Enabling WiFi...": { "Enabling WiFi...": "WiFi açılıyor..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Özel Bölge Ofseti" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Yazıcı sınıfa eklenemedi" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Gece modu etkinleştiremedi" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "plugin_settings.json ayrıştırılamadı" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "session.json ayrıştırılamadı" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "settings.json ayrıştırılamadı" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Yazıcıyı duraklatma başarısız" @@ -3368,8 +3188,8 @@ "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.": "" }, - "File received from": { - "File received from": "" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "" }, - "For reading PDF files": { - "For reading PDF files": "" - }, "Force HDR": { "Force HDR": "Zorla HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "" }, - "Grant admin?": { - "Grant admin?": "" - }, "Grant administrator privileges": { "Grant administrator privileges": "" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "" }, - "Greeter Appearance": { - "Greeter Appearance": "" - }, - "Greeter Behavior": { - "Greeter Behavior": "" - }, - "Greeter Status": { - "Greeter Status": "" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "" - }, "Hyprland Options": { "Hyprland Options": "" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Hatalı parola" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "" - }, "Incorrect password - try again": { "Incorrect password - try again": "" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "İşler" }, - "Jobs: ": { - "Jobs: ": "İşler:" - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Düzen geçersiz kılmaları" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "" - }, "Left": { "Left": "Sol" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "" }, - "Locale Settings": { - "Locale Settings": "" - }, "Location": { "Location": "Konum" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Kilit Ekranı" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "Kilit Ekranı Görüntüsü" - }, "Lock Screen Format": { "Lock Screen Format": "Kilit Ekranı Biçimi" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Kilit Ekranı davranışı" - }, - "Lock Screen layout": { - "Lock Screen layout": "Kilit Ekranı düzeni" - }, "Lock at startup": { "Lock at startup": "" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "" }, - "Login Authentication": { - "Login Authentication": "" - }, "Long": { "Long": "Uzun" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Yönetim" }, - "Manages calendar events": { - "Manages calendar events": "" - }, "Manages files and directories": { "Manages files and directories": "" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "" - }, "Manual": { "Manual": "" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Pano kaydı başına maksimum boyut" - }, "Media": { "Media": "Medya" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Medya Oynatıcı" }, - "Media Player Settings": { - "Media Player Settings": "Medya Oynatıcı Ayarları" - }, "Media Players (": { "Media Players (": "Medya Oynatıcıları (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Mod" }, - "Mode:": { - "Mode:": "Mod:" - }, "Model": { "Model": "Model" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "" }, - "Move": { - "Move": "" - }, "Move Widget": { "Move Widget": "Widget Taşı" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "" }, - "Multiplexer": { - "Multiplexer": "" - }, "Multiplexer Type": { "Multiplexer Type": "" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Ağ Hız Monitörü" }, - "Network Status": { - "Network Status": "Ağ Durumu" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri Entegrasyonu" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri Düzeni Geçersiz Kılmaları" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri kompozitör (focus, move, vb.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Eklenti bulunamadı" }, - "No plugins found.": { - "No plugins found.": "Eklenti bulunamadı." - }, "No printer found": { "No printer found": "Yazıcı Bulunamadı" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Bildirim Balonları" }, - "Notification Rules": { - "Notification Rules": "" - }, "Notification Settings": { "Notification Settings": "Bildirim Ayarları" }, - "Notification Timeouts": { - "Notification Timeouts": "Bildirim Zaman Aşımları" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Gamayı yalnızca zaman veya konum kurallarına göre ayarlayın." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "" - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Opaklık" }, - "Opacity of the bar background": { - "Opacity of the bar background": "" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "" - }, "Opaque": { "Opaque": "" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "" }, - "Opening terminal to update greetd": { - "Opening terminal to update 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 image files": { - "Opens image files": "" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "" - }, "PDF Reader": { "PDF Reader": "" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "" - }, "Padding": { "Padding": "Dolgu" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Eşleşti" }, - "Pairing": { - "Pairing": "" - }, "Pairing failed": { "Pairing failed": "Eşleşme başarısız" }, - "Pairing request from": { - "Pairing request from": "" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "" - }, "Phone number": { "Phone number": "" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "" }, - "Ping sent to": { - "Ping sent to": "" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Sabitlendi" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Ses seviyesi ayarlandığında ses çal" }, - "Play sounds for system events": { - "Play sounds for system events": "Sistem etkinlikleri için ses çal" - }, "Playback": { "Playback": "Oynatma" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "" }, - "Plays video files": { - "Plays video files": "" - }, "Please wait...": { "Please wait...": "" }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Güç profili yönetimi mevcut" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "Güç kaynağı" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Ön Ayarlı Genişlik (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "Yazdırma Sunucusu Yönetimi" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Yazıcılar" }, - "Printers: ": { - "Printers: ": "Yazıcılar:" - }, "Prioritize performance": { "Prioritize performance": "" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "" }, - "Processes:": { - "Processes:": "" - }, "Processing": { "Processing": "İşleniyor" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Protokol" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "" }, - "Remove admin?": { - "Remove admin?": "" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Boyutu Sıfırla" }, - "Reset to Default?": { - "Reset to Default?": "" - }, "Reset to default": { "Reset to default": "" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "" }, - "Ringing": { - "Ringing": "" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "" }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "Ölçek" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Tara" }, - "Scanning": { - "Scanning": "Taranıyor" - }, "Scanning...": { "Scanning...": "Taranıyor..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Ara..." }, - "Searching": { - "Searching": "" - }, "Searching...": { "Searching...": "Arıyor..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Duvar kağıdını ayarlamak için monitör seçin" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Süreç listesi ve teknik göstergeler için sabit aralıklı yazı tipi seçin" }, "Select network": { "Select network": "" }, - "Select system sound theme": { - "Select system sound theme": "Sistem ses temasını seç" - }, "Select the font family for UI text": { "Select the font family for UI text": "Arayüz metni için yazı tipi ailesini seç" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "" }, - "Send File": { - "Send File": "" - }, "Send SMS": { "Send SMS": "" }, - "Sending": { - "Sending": "" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "" }, - "Share Text": { - "Share Text": "" - }, "Shared": { "Shared": "" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "" - }, "Show on Last Display": { "Show on Last Display": "Son Ekranda Göster" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "" }, - "Show on all connected displays": { - "Show on all connected displays": "Tüm bağlı ekranlarda göster" - }, "Show on screens:": { "Show on screens:": "Şu ekranda göster:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Parlaklık değiştiğinde ekran gösterimi göster" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Caps lock durumu değiştiğinde ekran gösterimi göster" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Ses çıkış cihazları arasında geçiş yaparken ekran gösterimi göster" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Boşta kalma engelleyici durumu değiştiğinde ekran gösterimi göster" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Medya oynatıcının ses seviyesi değiştiğinde ekran üstü görüntü göster" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Mikrofon sessize alındığında/sessizden çıkarıldığında ekran gösterimi göster" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Güç profili değiştiğinde ekran gösterimi göster" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Ses değiştiğinde ekran gösterimi göster" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Üst çubuk ve kontrol merkezinde hava durumu bilgisini göster" }, - "Show week number in the calendar": { - "Show week number in the calendar": "" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Üst çubuktaki çalışma alanı değiştiricide çalışma alanı dizin numaralarını göster" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "Sinyal:" - }, "Silence for a while": { "Silence for a while": "" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Başlat" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminaller - Her zaman Karanlı Tema kullan" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "" }, @@ -8156,20 +7754,8 @@ "This device": { "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 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 layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "" - }, - "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 changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "" }, - "Tile H": { - "Tile H": "" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Kritik öncelikli bildirimler için zaman aşımı" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Düşük öncelikli bildirimler için zaman aşımı" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Normal öncelikli bildirimler için zaman aşımı" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Transparanlık" }, - "Transparency of the border": { - "Transparency of the border": "" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "" - }, "Trash": { "Trash": "" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Dock'tan Sabitlemeyi Kaldır" }, - "Unsaved Changes": { - "Unsaved Changes": "Kaydedilmemiş Değişiklikler" - }, "Unsaved changes": { "Unsaved changes": "Kaydedilmemiş değişiklikler" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "" }, - "Uptime:": { - "Uptime:": "" - }, "Urgent": { "Urgent": "" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Sistem ayarlarındaki ses temasını kullan" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "" - }, "Wipe": { "Wipe": "" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Çalışma Alanı" }, - "Workspace Appearance": { - "Workspace Appearance": "" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Çalışma Alanı Sıra Numarası" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Çalışma Alanı Dolgusu" }, - "Workspace Settings": { - "Workspace Settings": "Çalışma Alanı Ayarları" - }, "Workspace Switcher": { "Workspace Switcher": "Çalışma Alanı Değiştirici" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Kaydedilmemiş değişiklikleriniz var. Sekmeyi kapatmadan önce kaydedelim mi?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Kaydedilmemiş değişiklikleriniz var. Devam etmeden önce kaydedelim mi?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Kaydedilmemiş değişiklikleriniz var. Yeni dosya oluşturmadan önce kaydedelim mi?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Kaydedilmemiş değişiklikleriniz var. Yeni dosya açmadan önce kaydedelim mi?" - }, "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.": { "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.": "" }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "" }, - "actions": { - "actions": "" - }, "admin": { "admin": "" }, "attached": { "attached": "" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "" }, @@ -9236,9 +8768,6 @@ "device": { "device": "" }, - "devices connected": { - "devices connected": "" - }, "dgop not available": { "dgop not available": "dgop mevcut değil" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9308,11 +8840,8 @@ "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 Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "matugen bulunamadı - dinamik tema için matugen paketini yükleyin" @@ -9326,6 +8855,9 @@ "nav": { "nav": "" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "" }, - "open": { - "open": "" - }, "or run ": { "or run ": "" }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Yalnızca güvenilir kaynaklardan yükle" }, diff --git a/quickshell/translations/poexports/vi.json b/quickshell/translations/poexports/vi.json index 0a1368adb..0ce9dea60 100644 --- a/quickshell/translations/poexports/vi.json +++ b/quickshell/translations/poexports/vi.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "Tốc độ ảnh động %1" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 phiên làm việc" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "Đã sao chép %1" }, - "%1 custom animation duration": { - "%1 custom animation duration": "Thời lượng ảnh động tùy chỉnh %1" - }, "%1 disconnected": { "%1 disconnected": "%1 đã ngắt kết nối" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 màn hình" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 tồn tại nhưng không được bao gồm. Quy tắc cửa sổ sẽ không được áp dụng." - }, "%1 filtered": { "%1 filtered": "%1 đã được lọc" }, @@ -119,9 +116,6 @@ "'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.": "'Thay thế' cho phép khóa tự mở. 'Yếu tố thứ hai' yêu cầu mật khẩu hoặc vân tay trước, sau đó mới dùng khóa." }, - "(Default)": { - "(Default)": "(Mặc định)" - }, "(Unnamed)": { "(Unnamed)": "(Chưa có tên)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "Định dạng 24 giờ" }, - "24-hour clock": { - "24-hour clock": "Đồng hồ 24 giờ" - }, "25 seconds": { "25 seconds": "25 giây" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "Buổi chiều" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "Tất cả" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "Yêu cầu xác thực" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "Đã áp dụng các thay đổi xác thực." }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "Các thay đổi xác thực được áp dụng tự động." }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Các thay đổi xác thực được áp dụng tự động. Chỉ đăng nhập bằng vân tay có thể không mở khóa được Keyring." - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Các thay đổi xác thực cần sudo. Đang mở cửa sổ dòng lệnh để bạn có thể sử dụng mật khẩu hoặc vân tay." }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "Xác thực không thành công, vui lòng thử lại" - }, "Authorize": { "Authorize": "Ủy quyền" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "Tiết kiệm Pin Tự động" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "Tự động khớp khoảng cách thanh; Tắt để lại khoảng trống cho cấu hình Hyprland của bạn" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "Tự động khớp khoảng cách thanh; Tắt để lại khoảng trống cho cấu hình MangoWC của bạn" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "Tự động khớp khoảng cách thanh; Tắt để lại khoảng trống cho cấu hình niri của bạn" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "Chế độ tự động đang bật. Lựa chọn cấu hình thủ công đã bị tắt." @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "Đã tự động lưu" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "Tự động xóa sau" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "Có sẵn trong chế độ xem Chi tiết và Dự báo" }, - "Available.": { - "Available.": "Có sẵn." - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "Backend" }, - "Backends: %1": { - "Backends: %1": "Backend: %1" - }, "Background": { "Background": "Nền" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "Thanh %1" }, - "Bar Configurations": { - "Bar Configurations": "Cấu hình thanh" - }, "Bar Inset Padding": { "Bar Inset Padding": "Khoảng Cách Lề Thanh" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "Bóng, viền và góc của thanh" }, - "Bar spacing and size": { - "Bar spacing and size": "Kích thước và khoảng cách của thanh" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "Màu cơ bản cho bóng (độ mờ được áp dụng tự động)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "Pin %1" }, - "Battery Alerts": { - "Battery Alerts": "Cảnh báo pin" - }, "Battery Charge Limit": { "Battery Charge Limit": "Giới hạn sạc pin" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "Dùng Pin" }, - "Battery Protection": { - "Battery Protection": "Bảo vệ pin" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "Bảo vệ & Sạc Pin" - }, - "Battery Status": { - "Battery Status": "Trạng Thái Pin" - }, "Battery and power management": { "Battery and power management": "Quản lý pin và điện năng" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "Pin ở mức %1% - Hãy cân nhắc sạc sớm" }, - "Battery level and power management": { - "Battery level and power management": "Mức pin và quản lý năng lượng" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "Phần trăm pin để kích hoạt cảnh báo quan trọng." }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Liên kết khóa màn hình với tín hiệu dbus từ loginctl. Tắt nếu dùng khóa màn hình bên ngoài" }, - "Bind the spotlight IPC action in your compositor config.": { - "Bind the spotlight IPC action in your compositor config.": "Gán hành động spotlight IPC trong cấu hình compositor của bạn." - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "Gán hành động spotlight-bar IPC trong cấu hình compositor của bạn." + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "Bao gồm các phím tắt đã thêm" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "Làm mờ" }, - "Blur Border Color": { - "Blur Border Color": "Màu viền làm mờ" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "Độ mờ viền làm mờ" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "Làm mờ lớp hình nền" }, "Blur on Overview": { "Blur on Overview": "Làm mờ trên Tổng quan" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Làm mờ nền đằng sau các thanh, cửa sổ nổi, bảng thông báo. Yêu cầu sự hỗ trợ và cấu hình của compositor." - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "Làm mờ nền phía sau các thanh, cửa sổ bật, hộp thoại modal và thông báo. Yêu cầu hỗ trợ từ compositor. Điều chỉnh Độ mờ cho phù hợp." }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "Độ rộng viền" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "Màu viền xung quanh các bề mặt bị làm mờ" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "Màu đường viền xung quanh các pop-out, modal và các bề mặt shell khác" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "Màu nút" }, - "By %1": { - "By %1": "Bởi %1" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "Check on startup": { "Check on startup": "Kiểm tra khi khởi động" }, - "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.": "Kiểm tra trạng thái đồng bộ theo yêu cầu. Đồng bộ (đầy đủ) dành cho quản trị viên chính: nó sao chép chủ đề của bạn vào màn hình đăng nhập và thiết lập cấu hình màn hình chào của hệ thống. Trên các hệ thống nhiều người dùng, hãy thêm các tài khoản khác trong Cài đặt → Người dùng, sau đó yêu cầu từng người dùng chạy dms greeter sync --profile sau khi đăng xuất và đăng nhập lại — không phải đồng bộ đầy đủ. Các thay đổi xác thực được áp dụng tự động." - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "Kiểm tra lệnh tùy chỉnh của bạn trong Cài đặt → Dock → Thùng rác." }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "Chọn màu chế độ tối" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "Chọn màu logo trình khởi chạy dock" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Chọn màu biểu tượng launcher" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "Chọn cách thanh này xử lý hướng bóng" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "Chọn cách bạn muốn được thông báo về cảnh báo pin." - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "Chọn cách bạn muốn nhận thông báo về các cảnh báo pin quan trọng." }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "Chọn văn bản widget màu trung tính hoặc nhấn mạnh" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "Chọn màu nền cho các tiện ích" - }, - "Choose the border accent color": { - "Choose the border accent color": "Chọn màu nổi bật cho viền" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Chọn logo hiển thị trên nút launcher trong DankBar" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "Nhấp 'Thiết lập' để tạo %1 và thêm phần bao gồm vào cấu hình compositor của bạn." }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "Nhấp 'Thiết lập' để tạo cấu hình đầu ra và thêm phần bao gồm vào cấu hình compositor của bạn." - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "Nhấp Nhập để thêm tệp .ovpn hoặc .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "Màu hiển thị cho các vùng không được bao phủ bởi hình nền" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "Màu hiển thị cho các vùng không được bao phủ bởi hình nền (ví dụ: chế độ Fit hoặc Pad)" - }, - "Color temperature for day time": { - "Color temperature for day time": "Nhiệt độ màu trong ngày" - }, "Color temperature for night mode": { "Color temperature for night mode": "Nhiệt độ màu cho chế độ ban đêm" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "Cấu hình sẽ được giữ lại khi màn hình này kết nối lại" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "Cấu hình" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "Đang kết nối..." }, - "Connecting…": { - "Connecting…": "Đang kết nối..." - }, "Connection failed": { "Connection failed": "Kết nối thất bại" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "Điều khiển độ mờ của bề mặt shell, cửa sổ bật và hộp thoại modal" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "Điều khiển độ mờ của nền thanh" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "Điều khiển độ mờ của viền" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "Điều khiển độ mờ của lớp bóng đổ" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "Điều khiển độ mờ của đường viền widget" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "Điều khiển độ mờ của nền widget" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "Điều khiển đường viền xung quanh các thẻ phía trước bị làm mờ, các nút dạng thuốc và thẻ thông báo" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "Kiểm soát đường viền xung quanh các thẻ nền trước, viên và thẻ thông báo" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "Điều khiển bán kính làm mờ cơ bản và độ lệch của bóng" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "Điều khiển độ mờ của bóng đổ" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "Điều khiển cạnh ngoài của các cửa sổ bị làm mờ theo giao thức" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "Kiểm soát đường viền của các pop-out, modal và các bề mặt shell khác" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "Điều khiển độ trong suốt của bóng" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "Các tùy chọn tiện ích cho màn hình đăng nhập. Đồng bộ để áp dụng." }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "Góc & Nền" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "Không thể mở thiết bị đầu cuối để cập nhật đăng nhập tự động." - }, "Count Only": { "Count Only": "Chỉ đếm" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "Tạo phiên %1 mới (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "Tạo một phiên %1 mới (n)" - }, "Create rule for:": { "Create rule for:": "Tạo quy tắc cho:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "Tùy chỉnh..." }, - "Custom: ": { - "Custom: ": "Tuỳ chỉnh: " - }, "Customizable empty space": { "Customizable empty space": "Tuỳ chỉnh khoảng trống" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "Phím tắt DMS" }, - "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 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 màn hình chào cần: greetd, dms-màn hình chào. Vân tay: fprintd, pam_fprintd. Khóa bảo mật: pam_u2f. Thêm người dùng của bạn vào nhóm màn hình chào. Các thay đổi xác thực được áp dụng tự động và có thể mở cửa sổ dòng lệnh khi cần xác thực sudo." - }, - "DMS needs administrator access. The terminal closes automatically when done.": { - "DMS needs administrator access. The terminal closes automatically when done.": "DMS cần quyền truy cập của quản trị viên. Thiết bị đầu cuối sẽ tự động đóng lại khi hoàn tất." - }, "DMS out of date": { "DMS out of date": "DMS đã lỗi thời" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "DMS server is outdated (API v%1, expected v%2)": { "DMS server is outdated (API v%1, expected v%2)": "Máy chủ DMS đã cũ (API v%1, mong đợi v%2)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "Xóa người dùng" }, - "Delete user?": { - "Delete user?": "Xóa người dùng?" - }, "Demi Bold": { "Demi Bold": "Bán đậm" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Hiển thị các hành động trong menu nguồn dưới dạng lưới thay vì danh sách" }, - "Display seconds in the clock": { - "Display seconds in the clock": "Hiển thị giây trên đồng hồ" - }, "Display setup failed": { "Display setup failed": "Thiết lập hiển thị không thành công" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "Hiển thị" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "Hiển thị số lượng khi chế độ tràn hoạt động" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "Hiển thị bố cục bàn phím đang dùng và cho phép chuyển đổi" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Độ mờ thanh Dock" }, - "Dock Visibility": { - "Dock Visibility": "Chế độ hiển thị của Dock" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Căn lề, độ mờ và viền thanh Dock" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Lề, độ trong suốt và viền của Dock" - }, "Dock window": { "Dock window": "Cửa sổ Dock" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "Dọn sạch thùng rác (%1)" }, - "Empty Trash?": { - "Empty Trash?": "Dọn sạch thùng rác?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "Bật độ sâu màu 10-bit cho gam màu rộng hơn và hỗ trợ HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "Đã bật" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "Đã bật, nhưng tính khả dụng của vân tay không thể được xác nhận." - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "Đã bật, nhưng không phát hiện thấy trình đọc vân tay nào." - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Đã bật, nhưng chưa có vân tay nào được đăng ký. Các thay đổi xác thực sẽ được áp dụng tự động sau khi bạn đăng ký vân tay." - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Đã bật, nhưng chưa có vân tay nào được đăng ký. Hãy đăng ký vân tay và chạy Đồng bộ." - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Đã bật, nhưng chưa tìm thấy khóa bảo mật đã đăng ký. Các thay đổi xác thực sẽ được áp dụng tự động sau khi khóa của bạn được đăng ký hoặc cấu hình U2F được cập nhật." - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Đã bật, nhưng chưa tìm thấy khóa bảo mật đã đăng ký. Hãy đăng ký một khóa và chạy Đồng bộ." - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "Đã bật, nhưng tính khả dụng của khóa bảo mật không thể được xác nhận." - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "Đã bật. PAM đã cung cấp xác thực vân tay." - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "Đã bật. PAM đã cung cấp xác thực khóa bảo mật." - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Đã bật. PAM cung cấp xác thực vân tay, nhưng chưa có vân tay nào được đăng ký." - }, "Enabling WiFi...": { "Enabling WiFi...": "Đang bật WiFi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "Chính xác" }, - "Excluded Media Players": { - "Excluded Media Players": "Trình phát Phương tiện Bị loại trừ" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Độ lệch vùng độc quyền" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "Thêm máy in vào lớp thất bại" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "Áp dụng màu GTK thất bại" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "Áp dụng màu Qt thất bại" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "Không thể áp dụng giới hạn sạc cho hệ thống" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "Bật chế độ ban đêm thất bại" }, - "Failed to enable plugin: %1": { - "Failed to enable plugin: %1": "Bật plugin thất bại: %1" - }, "Failed to fetch network QR code: %1": { "Failed to fetch network QR code: %1": "Lấy mã QR mạng thất bại: %1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "Di chuyển vào thùng rác thất bại" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "Phân tích plugin_settings.json thất bại" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "Phân tích session.json thất bại" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "Phân tích settings.json thất bại" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "Không thể tạm dừng máy in" @@ -3368,8 +3188,8 @@ "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.": "Trình quản lý tệp dùng để mở thùng rác. Chọn \"tùy chỉnh\" để nhập lệnh của riêng bạn." }, - "File received from": { - "File received from": "Tệp nhận được từ" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Tìm kiếm tệp yêu cầu dsearch\nHãy cài đặt từ github.com/AvengeMedia/danksearch" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "Để chỉnh sửa các tệp văn bản thuần túy" }, - "For reading PDF files": { - "For reading PDF files": "Để đọc các tệp PDF" - }, "Force HDR": { "Force HDR": "Bắt buộc HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "Khoảng Cách" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "Tạo ghi đè" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "Cấp quyền" }, - "Grant admin?": { - "Grant admin?": "Cấp quyền quản trị?" - }, "Grant administrator privileges": { "Grant administrator privileges": "Cấp quyền quản trị viên" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "Màn hình chào" }, - "Greeter Appearance": { - "Greeter Appearance": "Giao diện Màn hình chào" - }, - "Greeter Behavior": { - "Greeter Behavior": "Hành vi Màn hình chào" - }, - "Greeter Status": { - "Greeter Status": "Trạng thái Màn hình chào" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "Màn hình chào đã được kích hoạt. greetd hiện đã được bật." }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "Nhóm Màn hình chào:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "Chỉ dành cho Màn hình chào — không ảnh hưởng đến đồng hồ chính" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "Chỉ dành cho Màn hình chào — định dạng cho ngày trên màn hình đăng nhập" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Máy chủ Discord Hyprland" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Ghi đè bố cục Hyprland" - }, "Hyprland Options": { "Hyprland Options": "Tùy chọn Hyprland" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "Sai mật khẩu" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "Mật khẩu không chính xác - lần thử %1 trên %2 (có thể bị khóa)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "Mật khẩu không chính xác - những lần thất bại tiếp theo có thể khiến tài khoản bị khóa" - }, "Incorrect password - try again": { "Incorrect password - try again": "Mật khẩu không chính xác - hãy thử lại" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "Công việc" }, - "Jobs: ": { - "Jobs: ": "Công việc: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "Ghi đè bố cục" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Bố cục và vị trí các mô-đun trên màn hình chào được đồng bộ từ shell của bạn (vd: cấu hình thanh). Chạy Đồng bộ để áp dụng." - }, "Left": { "Left": "Trái" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "Ngôn ngữ" }, - "Locale Settings": { - "Locale Settings": "Cài đặt ngôn ngữ" - }, "Location": { "Location": "Vị trí" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "Khóa màn hình" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "Giao Diện Màn Hình Khóa" - }, - "Lock Screen Display": { - "Lock Screen Display": "Hiển thị màn hình khóa" - }, "Lock Screen Format": { "Lock Screen Format": "Định dạng màn hình khóa" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "Hành vi màn hình khóa" - }, - "Lock Screen layout": { - "Lock Screen layout": "Bố cục màn hình khóa" - }, "Lock at startup": { "Lock at startup": "Khóa khi khởi động" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "Thời gian chờ làm mờ khi khóa" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Các thay đổi xác thực màn hình khóa được áp dụng tự động và có thể mở cửa sổ dòng lệnh khi cần xác thực sudo." - }, "Lock screen font": { "Lock screen font": "Phông chữ màn hình khóa" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "Đăng nhập" }, - "Login Authentication": { - "Login Authentication": "Xác thực đăng nhập" - }, "Long": { "Long": "Dài" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "Được quản lý bởi Khung trong Chế độ kết nối" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "Quản lý" }, - "Manages calendar events": { - "Manages calendar events": "Quản lý các sự kiện lịch" - }, "Manages files and directories": { "Manages files and directories": "Quản lý các tệp và thư mục" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Dịch vụ Mango không khả dụng" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "Ghi đè bố cục MangoWC" - }, "Manual": { "Manual": "Thủ công" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "Đã đạt đến số lượng mục ghim tối đa" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "Kích thước tối đa cho mỗi mục bảng nhớ tạm" - }, "Media": { "Media": "Phương tiện" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "Trình phát phương tiện" }, - "Media Player Settings": { - "Media Player Settings": "Cài đặt trình phát phương tiện" - }, "Media Players (": { "Media Players (": "Trình phát phương tiện (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "Chế độ" }, - "Mode:": { - "Mode:": "Chế độ:" - }, "Model": { "Model": "Kiểu máy" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "Kích thước con trỏ chuột theo pixel" }, - "Move": { - "Move": "Di chuyển" - }, "Move Widget": { "Move Widget": "Di chuyển tiện ích" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "Đa phương tiện" }, - "Multiplexer": { - "Multiplexer": "Bộ ghép kênh (Multiplexer)" - }, "Multiplexer Type": { "Multiplexer Type": "Loại bộ ghép kênh" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "Trình giám sát tốc độ mạng" }, - "Network Status": { - "Network Status": "Trạng thái mạng" - }, "Network Type": { "Network Type": "Loại Mạng" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Tích hợp Niri" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Ghi đè bố cục Niri" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Các hành động compositor Niri (tập trung, di chuyển, v.v.)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "Không tìm thấy plugin nào" }, - "No plugins found.": { - "No plugins found.": "Không tìm thấy plugin nào." - }, "No printer found": { "No printer found": "Không tìm thấy máy in" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "Thông báo nổi" }, - "Notification Rules": { - "Notification Rules": "Các quy tắc thông báo" - }, "Notification Settings": { "Notification Settings": "Cài đặt thông báo" }, - "Notification Timeouts": { - "Notification Timeouts": "Quá thời gian chờ thông báo" - }, "Notification Type": { "Notification Type": "Loại Thông báo" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "Chỉ điều chỉnh gamma dựa trên quy tắc thời gian hoặc địa điểm." }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Chỉ ảnh hưởng đến PAM do DMS quản lý. Nếu greetd đã bao gồm pam_fprintd, vân tay vẫn sẽ được bật." - }, "Only on Battery": { "Only on Battery": "Chỉ Trên Pin" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "Độ mờ" }, - "Opacity of the bar background": { - "Opacity of the bar background": "Độ mờ của nền thanh" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "Độ mờ của nền tiện ích" - }, "Opaque": { "Opaque": "Đục (Không trong suốt)" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "Đang mở trình duyệt tệp" }, - "Opening terminal to update greetd": { - "Opening terminal to update greetd": "Đang mở terminal để cập nhật greetd" - }, "Opening terminal: ": { "Opening terminal: ": "Đang mở cửa sổ dòng lệnh: " }, "Opens a picker of other active sessions on this seat": { "Opens a picker of other active sessions on this seat": "Mở trình chọn các phiên hoạt động khác trên ghế (seat) này" }, - "Opens image files": { - "Opens image files": "Mở các tệp hình ảnh" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "Mở trình khởi chạy đã kết nối trong Chế độ khung kết nối." }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM đã cung cấp xác thực khóa bảo mật. Bật tính năng này để hiển thị khi đăng nhập." }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM cung cấp xác thực vân tay, nhưng tính khả dụng không thể được xác nhận." - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM cung cấp xác thực vân tay, nhưng chưa có vân tay nào được đăng ký." - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM cung cấp xác thực vân tay, nhưng không phát hiện thấy trình đọc nào." - }, "PDF Reader": { "PDF Reader": "Trình đọc PDF" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "Thêm số 0 cho giờ" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "Thêm số 0 cho giờ (02:00 so với 2:00)" - }, "Padding": { "Padding": "Lề trong" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "Đã ghép đôi" }, - "Pairing": { - "Pairing": "Đang ghép đôi" - }, "Pairing failed": { "Pairing failed": "Ghép nối không thành công" }, - "Pairing request from": { - "Pairing request from": "Yêu cầu ghép đôi từ" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "Yêu cầu ghép đôi đã được gửi" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "Kết nối điện thoại không khả dụng" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "Kết nối điện thoại không khả dụng" - }, "Phone number": { "Phone number": "Số điện thoại" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Đã gửi ping tới" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "Đã ghim" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Phát âm thanh khi tăng giảm âm lượng" }, - "Play sounds for system events": { - "Play sounds for system events": "Phát âm thanh cho các sự kiện hệ thống" - }, "Playback": { "Playback": "Phát lại" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "Phát các tệp âm thanh" }, - "Plays video files": { - "Plays video files": "Phát các tệp video" - }, "Please wait...": { "Please wait...": "Vui lòng chờ..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "Hành vi, vị trí cửa sổ nổi" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "Cổng" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "Cấu hình nguồn điện và tiết kiệm" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "Chuyển đổi Hồ sơ Năng lượng Tự động" - }, "Power Saver": { "Power Saver": "Tiết kiệm điện" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "Quản lý cấu hình nguồn khả dụng" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "Hồ sơ năng lượng sử dụng khi kết nối điện AC." - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "Hồ sơ năng lượng sử dụng khi chạy bằng pin." - }, "Power source": { "Power source": "Nguồn điện" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "Các chiều rộng đặt trước (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "Nhấn 'n' hoặc nhấp 'Phiên mới' để tạo một cái" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "Nhấn Ctrl+N hoặc nhấp vào 'Phiên Mới' để tạo một phiên" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "Container chính" }, - "Primary Theme Color": { - "Primary Theme Color": "Màu Chủ đề Chính" - }, "Print Server Management": { "Print Server Management": "Quản lý máy chủ in" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "Máy in" }, - "Printers: ": { - "Printers: ": "Máy in: " - }, "Prioritize performance": { "Prioritize performance": "Ưu tiên hiệu năng" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "Các tiến trình" }, - "Processes:": { - "Processes:": "Các tiến trình:" - }, "Processing": { "Processing": "Xử lý" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "Hồ sơ Khi Sử dụng Pin" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "Giao thức" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "Gỡ quyền quản trị" }, - "Remove admin?": { - "Remove admin?": "Gỡ quyền quản trị?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "Gỡ bo góc khỏi thanh" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "Đặt lại kích thước" }, - "Reset to Default?": { - "Reset to Default?": "Đặt lại về mặc định?" - }, "Reset to default": { "Reset to default": "Đặt lại về mặc định" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "Đổ chuông" }, - "Ringing": { - "Ringing": "Đang đổ chuông" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "Hiệu ứng gợn sóng" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "Quy tắc" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "Tên quy tắc" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "Quy tắc (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "Đang lưu..." }, - "Saving…": { - "Saving…": "Đang lưu…" - }, "Scale": { "Scale": "Tỷ lệ" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "Quét" }, - "Scanning": { - "Scanning": "Đang quét" - }, "Scanning...": { "Scanning...": "Đang quét..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "Tìm kiếm..." }, - "Searching": { - "Searching": "Đang tìm kiếm" - }, "Searching...": { "Searching...": "Đang tìm kiếm..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "Bảo mật & riêng tư" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "Chế độ khóa bảo mật" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "Chọn hình ảnh nền màn hình khóa" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Chọn màn hình áp dụng hình nền" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Chọn phông chữ đơn cách cho danh sách tiến trình và hiển thị kỹ thuật" }, "Select network": { "Select network": "Chọn mạng" }, - "Select system sound theme": { - "Select system sound theme": "Chọn chủ đề âm thanh hệ thống" - }, "Select the font family for UI text": { "Select the font family for UI text": "Chọn nhóm phông chữ cho văn bản giao diện" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "Gửi bảng nhớ tạm" }, - "Send File": { - "Send File": "Gửi tệp" - }, "Send SMS": { "Send SMS": "Gửi SMS" }, - "Sending": { - "Sending": "Đang gửi" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "Riêng biệt" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "Đặt kích thước phông chữ cho phần thân văn bản thông báo (htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "Đặt kích thước phông chữ cho văn bản tóm tắt thông báo" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "Đặt phần trăm mà pin được coi là yếu." }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "Chia sẻ cài đặt điều khiển Gamma" }, - "Share Text": { - "Share Text": "Chia sẻ văn bản" - }, "Shared": { "Shared": "Đã chia sẻ" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "Hiển thị trong phần tổng quan Niri" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "Hiển thị các bề mặt phía trước trên các bảng bị làm mờ để có độ tương phản mạnh hơn" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "Hiển thị bề mặt nền trước trên bảng để tương phản mạnh hơn" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "Hiển thị đường dẫn mount" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "Chỉ hiện thông báo nổi trên màn hình đang chọn" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "Chỉ hiện thông báo trên màn hình đang chọn" - }, "Show on Last Display": { "Show on Last Display": "Hiển thị trên màn hình cuối cùng" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "Chỉ hiển thị khi Tổng quan" }, - "Show on all connected displays": { - "Show on all connected displays": "Hiển thị trong tất cả màn hình đã kết nối" - }, "Show on screens:": { "Show on screens:": "Hiển thị trong các màn hình:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Hiển thị OSD khi độ sáng thay đổi" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Hiển thị OSD khi trạng thái Caps Lock thay đổi" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Hiển thị OSD khi xoay vòng các thiết bị đầu ra âm thanh" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Hiển thị OSD khi trạng thái chặn chế độ rảnh thay đổi" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "Hiển thị OSD khi trạng thái trình phát phương tiện thay đổi" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Hiển thị OSD khi âm lượng trình phát phương tiện thay đổi" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Hiển thị OSD khi micro được tắt/bật âm" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Hiển thị OSD khi cấu hình nguồn thay đổi" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Hiển thị OSD khi âm lượng thay đổi" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "Chỉ hiển thị thanh khi không có cửa sổ nào đang mở" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Hiển thị thông tin thời tiết trên thanh trên và trung tâm điều khiển" }, - "Show week number in the calendar": { - "Show week number in the calendar": "Hiển thị số tuần trong lịch" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "Hiển thị số thứ tự không gian làm việc trên nút chuyển đổi không gian làm việc trong thanh trên" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "Cường độ Tín hiệu" }, - "Signal:": { - "Signal:": "Tín hiệu:" - }, "Silence for a while": { "Silence for a while": "Tắt tiếng một lúc" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "Bắt đầu" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "Khởi động KDE Connect hoặc Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "Khởi động KDE Connect hoặc Valent để sử dụng plugin này" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "Sọc" }, - "Subtle Overlay": { - "Subtle Overlay": "Lớp Phủ Tinh tế" - }, "Summary": { "Summary": "Tóm tắt" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Chế độ dự phòng dòng lệnh thất bại. Hãy cài đặt một trong những trình giả lập dòng lệnh được hỗ trợ hoặc chạy 'dms greeter sync' thủ công." }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Đã mở chế độ dự phòng dòng lệnh. Hãy hoàn tất thiết lập xác thực tại đó; nó sẽ tự động đóng khi xong." + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Đã mở chế độ dự phòng dòng lệnh. Hãy hoàn tất đồng bộ tại đó; nó sẽ tự động đóng khi xong." - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "Backend bộ ghép kênh dòng lệnh cần dùng" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Đã mở cửa sổ dòng lệnh. Hãy hoàn tất thiết lập xác thực tại đó; nó sẽ tự động đóng khi xong." - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Đã mở cửa sổ dòng lệnh. Hãy hoàn tất xác thực đồng bộ tại đó; nó sẽ tự động đóng khi xong." + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminal - Luôn sử dụng giao diện tối" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "Kết xuất văn bản" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "Công cụ 'boregard' không được cài đặt hoặc không có trong PATH của bạn.\n\nCài đặt nó từ https://danklinux.com, sau đó bật lại plugin này." - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "Công cụ 'dgop' là bắt buộc để giám sát hệ thống.\nVui lòng cài đặt dgop để sử dụng tính năng này." }, @@ -8156,20 +7754,8 @@ "This device": { "This device": "Thiết bị này" }, - "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.": "Bản cài đặt này vẫn đang dùng hyprland.conf. Chạy dms setup để migrate trước khi chỉnh sửa cài đặt con trỏ." - }, - "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.": "Bản cài đặt này vẫn đang dùng hyprland.conf. Chạy dms setup để migrate trước khi chỉnh sửa cài đặt màn hình." - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": "Cài đặt này vẫn đang sử dụng hyprland.conf. Chạy dms setup để di chuyển trước khi chỉnh sửa cài đặt bố cục." - }, - "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.": "Bản cài đặt này vẫn đang dùng hyprland.conf. Chạy dms setup để migrate trước khi chỉnh sửa phím tắt trong Cài đặt." - }, - "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.": "Bản cài đặt này vẫn đang dùng hyprland.conf. Chạy dms setup để migrate trước khi chỉnh sửa quy tắc cửa sổ trong Cài đặt." + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "Việc này có thể mất vài giây" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "Ô (Tile)" }, - "Tile H": { - "Tile H": "Chiều cao ô" - }, "Tile Horizontally": { "Tile Horizontally": "Xếp gạch theo chiều ngang" }, - "Tile V": { - "Tile V": "Chiều dọc ô" - }, "Tile Vertically": { "Tile Vertically": "Gạch lát theo chiều dọc" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "Thanh tiến trình thời gian chờ" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "Thời gian chờ cho thông báo ưu tiên khẩn cấp" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "Thời gian chờ cho thông báo ưu tiên thấp" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "Thời gian chờ cho thông báo ưu tiên bình thường" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "Độ bão hòa màu nhuộm" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "Độ trong suốt" }, - "Transparency of the border": { - "Transparency of the border": "Độ trong suốt của viền" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "Độ trong suốt của lớp bóng" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "Độ trong suốt của đường viền tiện ích" - }, "Trash": { "Trash": "Thùng rác" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "Bỏ ghim khỏi dock" }, - "Unsaved Changes": { - "Unsaved Changes": "Thay đổi chưa lưu" - }, "Unsaved changes": { "Unsaved changes": "Thay đổi chưa lưu" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "Thời gian hoạt động" }, - "Uptime:": { - "Uptime:": "Thời gian hoạt động:" - }, "Urgent": { "Urgent": "Khẩn cấp" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "Sử dụng kích thước viền tùy chỉnh" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "Sử dụng độ rộng viền/vòng tiêu điểm tùy chỉnh" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "Dùng chủ đề âm thanh từ cài đặt hệ thống" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "Use the extended surface for launcher content": "Sử dụng bề mặt mở rộng cho nội dung trình khởi chạy" }, - "Use the overlay layer when opening the launcher": { - "Use the overlay layer when opening the launcher": "Sử dụng lớp phủ khi mở trình khởi chạy" - }, "Use the same position and size on all displays": { "Use the same position and size on all displays": "Sử dụng cùng vị trí và kích thước trên tất cả màn hình" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "Khi đã khóa" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "Trắng" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "Các quy tắc cửa sổ" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "Thiếu phần bao gồm các quy tắc cửa sổ" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "Các quy tắc cửa sổ chưa được cấu hình" - }, "Wipe": { "Wipe": "Xóa sạch" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "Không gian làm việc" }, - "Workspace Appearance": { - "Workspace Appearance": "Giao diện không gian làm việc" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "Số thứ tự không gian làm việc" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "Khoảng đệm không gian làm việc" }, - "Workspace Settings": { - "Workspace Settings": "Cài đặt không gian làm việc" - }, "Workspace Switcher": { "Workspace Switcher": "Chuyển không gian làm việc" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "Hôm qua" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "Bạn có những thay đổi chưa lưu. Lưu trước khi đóng tab?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "Bạn có những thay đổi chưa lưu. Lưu trước khi tiếp tục?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "Bạn có những thay đổi chưa lưu. Lưu trước khi tạo tệp mới?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "Bạn có những thay đổi chưa lưu. Lưu trước khi mở tệp?" - }, "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.": { "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.": "Bạn cần đặt một trong hai:\nQT_QPA_PLATFORMTHEME=gtk3 HOẶC\nQT_QPA_PLATFORMTHEME=qt6ct\nlàm biến môi trường, sau đó khởi động lại shell.\n\nqt6ct yêu cầu cài đặt qt6ct-kde." }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "Hệ thống của bạn đã được cập nhật!" }, - "actions": { - "actions": "thao tác" - }, "admin": { "admin": "quản trị viên" }, "attached": { "attached": "đã đính kèm" }, - "boregard is required": { - "boregard is required": "boregard là bắt buộc" - }, "brandon": { "brandon": "brandon (Kiểu)" }, @@ -9236,9 +8768,6 @@ "device": { "device": "thiết bị" }, - "devices connected": { - "devices connected": "thiết bị đã kết nối" - }, "dgop not available": { "dgop not available": "dgop không khả dụng" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "thảo luận" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms là một shell desktop hiện đại, có khả năng tùy chỉnh cao với thiết kế lấy cảm hứng từ material 3.

Nó được xây dựng bằng Quickshell, một framework QT6 để xây dựng shell desktop, và Go, một ngôn ngữ lập trình biên dịch, định kiểu tĩnh." }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "GitHub mangowc" }, - "matugen not available or disabled - cannot apply GTK colors": { - "matugen not available or disabled - cannot apply GTK colors": "matugen không khả dụng hoặc bị tắt - không thể áp dụng màu GTK" - }, - "matugen not available or disabled - cannot apply Qt colors": { - "matugen not available or disabled - cannot apply Qt colors": "matugen không khả dụng hoặc bị tắt - không thể áp dụng màu Qt" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "không tìm thấy matugen - hãy cài đặt gói matugen cho tạo chủ đề động" @@ -9326,6 +8855,9 @@ "nav": { "nav": "điều hướng" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "GitHub niri" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "trên Sway" }, - "open": { - "open": "mở" - }, "or run ": { "or run ": "hoặc chạy " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon không khả dụng" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "tiến trình" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 bởi %2" }, - "verified": { - "verified": "xác minh" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Chỉ cài đặt từ nguồn đáng tin" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index ba87a24c0..dfc25b7e2 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 动画速度" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 个会话" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "已复制 RGB 颜色 %1" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 自定义动画持续时间" - }, "%1 disconnected": { "%1 disconnected": "%1 已断开连接" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 个显示器" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 配置存在,但未被合成器配置文件引用。窗口规则将不会生效。" - }, "%1 filtered": { "%1 filtered": "已筛选 %1 个" }, @@ -119,9 +116,6 @@ "'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)则需要先输入密码或指纹,然后再使用密钥。" }, - "(Default)": { - "(Default)": "(默认)" - }, "(Unnamed)": { "(Unnamed)": "(未命名)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24 小时制" }, - "24-hour clock": { - "24-hour clock": "24 小时制时钟" - }, "25 seconds": { "25 seconds": "25 秒" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "下午" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "全部" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "需要认证" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "认证变更已应用。" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "认证变更自动应用。" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "认证变更自动应用。仅指纹登录可能无法解锁密钥环。" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "认证变更需要 sudo 权限。正在打开终端,你可以使用密码或指纹通过验证。" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "认证失败,请重试" - }, "Authorize": { "Authorize": "授权" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "自动省电" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "自动匹配状态栏间距;关闭则使用 Hyprland 配置的间距" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "自动匹配状态栏间距;关闭则使用 MangoWC 配置的间距" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "自动匹配状态栏间距;关闭则使用 niri 配置的间距" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "自动模式已开启。手动选择配置已禁用。" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "已自动保存" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "自动清除" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "提供详细视图和预测视图两种模式" }, - "Available.": { - "Available.": "可用。" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "后端" }, - "Backends: %1": { - "Backends: %1": "后端:%1" - }, "Background": { "Background": "背景" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "状态栏 %1" }, - "Bar Configurations": { - "Bar Configurations": "状态栏设置" - }, "Bar Inset Padding": { "Bar Inset Padding": "状态栏内嵌边距" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "状态栏阴影、边框与圆角" }, - "Bar spacing and size": { - "Bar spacing and size": "状态栏间隙与尺寸" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "阴影基础颜色(不透明度会自动应用)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "剩余电量 %1" }, - "Battery Alerts": { - "Battery Alerts": "电池提醒" - }, "Battery Charge Limit": { "Battery Charge Limit": "电池充电限制" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "电池电量" }, - "Battery Protection": { - "Battery Protection": "电池保护" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "电池保护与充电" - }, - "Battery Status": { - "Battery Status": "电池状态" - }, "Battery and power management": { "Battery and power management": "电池与电源管理" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "电池电量 %1% - 请考虑尽快充电" }, - "Battery level and power management": { - "Battery level and power management": "电池电量与电源管理" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "触发警报的电量百分比" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "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.": "请在合成器配置中绑定 spotlight IPC 动作。" - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "请在合成器配置中绑定 spotlight-bar IPC 动作。" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "快捷键绑定引用已添加" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "模糊" }, - "Blur Border Color": { - "Blur Border Color": "模糊边框颜色" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "模糊边框不透明度" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "模糊壁纸层" }, "Blur on Overview": { "Blur on Overview": "在概览中模糊" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "模糊状态栏、弹窗、模态框以及通知的背景。需要合成器支持与配置。" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "模糊状态栏、弹窗、模态框和通知的背景。需要合成器支持,以及调整相应的不透明度。" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "边框宽度" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "模糊平面周围的边框颜色" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "弹出窗口、模态框及其他 Shell 表面周围的边框颜色" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "按钮颜色" }, - "By %1": { - "By %1": "来自 %1" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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.": "按需检查同步状态。「同步(完整)」供主管理员使用:它会将你的主题复制到登录屏幕,并设置系统登录界面配置。在多用户系统上,请在「设置 → 用户」中添加其他账户,然后让各用户注销并重新登录后运行 dms greeter sync --profile,而不是执行完整同步。认证变更会自动应用。" - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "在「设置 → Dock → 回收站」中检查你的自定义命令。" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "选择深色模式颜色" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "选择 Dock 启动器 Logo 颜色" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "设置启动器 Logo 颜色" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "选择此状态栏解析阴影方向的方式" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "选择电量警报通知方式" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "选择关键电池警报的通知方式。" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "选择中性色或强调色部件文字" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "选择部件背景色" - }, - "Choose the border accent color": { - "Choose the border accent color": "选择边框强调色" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "选择在 Dank 状态栏上启动器按钮显示的 Logo" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "点击“设置”以创建 %1 配置,并添加引用至合成器配置文件。" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "点击“设置”以创建输出配置,并添加引用至合成器配置文件。" - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "点击导入添加 .ovpn 或 .conf 文件" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "未被壁纸覆盖区域显示的颜色" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "壁纸未覆盖区域显示的颜色(例如适应或填充模式)" - }, - "Color temperature for day time": { - "Color temperature for day time": "白天模式色温" - }, "Color temperature for night mode": { "Color temperature for night mode": "夜间模式色温" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "当该显示器重新连接时,配置将被保留" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "配置" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "正在连接..." }, - "Connecting…": { - "Connecting…": "正在连接..." - }, "Connection failed": { "Connection failed": "连接失败" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "控制 shell 平面、弹窗及模态框的不透明度" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "控制状态栏背景的不透明度" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "控制边框的不透明度" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "控制阴影层的不透明度" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "控制部件轮廓的不透明度" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "控制部件背景不透明度" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "控制已模糊处理的前景卡片、按钮和通知卡片的轮廓" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "控制围绕前景卡片、胶囊按钮及通知卡片的轮廓" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "控制阴影的基础模糊半径和偏移量" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "控制阴影不透明度" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "控制协议模糊窗口的边缘" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "控制弹出窗口、模态框及其他 Shell 表面的轮廓" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "控制阴影的透明度" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "登录界面的便捷选项。同步以应用。" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "圆角与背景" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "无法为自动登录更新打开终端。" - }, "Count Only": { "Count Only": "仅数量" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "创建新 %1 会话 (^N)" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "创建新的 %1 会话(n)" - }, "Create rule for:": { "Create rule for:": "为此创建规则:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "自定义..." }, - "Custom: ": { - "Custom: ": "自定义:" - }, "Customizable empty space": { "Customizable empty space": "可调节留白" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS 快捷键" }, - "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 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 需要管理员权限。完成后终端会自动关闭。" - }, "DMS out of date": { "DMS out of date": "DMS 已过期" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "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)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "删除用户" }, - "Delete user?": { - "Delete user?": "删除用户吗?" - }, "Demi Bold": { "Demi Bold": "半粗" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "通过网格而非列表显示电源菜单" }, - "Display seconds in the clock": { - "Display seconds in the clock": "在时钟中显示秒数" - }, "Display setup failed": { "Display setup failed": "显示器设置失败" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "显示器" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "当溢出激活时显示计数" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "显示当前键盘布局并支持切换" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "Dock 不透明度" }, - "Dock Visibility": { - "Dock Visibility": "Dock 可见性" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "Dock 边距、不透明度和边框" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Dock 边距、透明度和边框" - }, "Dock window": { "Dock window": "Dock 窗口" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "清空回收站(%1)" }, - "Empty Trash?": { - "Empty Trash?": "清空回收站?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "启用 10 位颜色以支持更广色域和 HDR" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "已启用" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "已启用,但无法确认指纹识别的可用性。" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "已启用,但无法检测到指纹识别的读取器。" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "已启用,但还没有指纹记录。一旦你注册指纹,认证变更会自动生效。" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "已启用,但尚无指印注册。请注册指纹后执行同步。" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "已启用,但尚未找到注册的安全密钥。一旦你的密钥注册或 U2F 配置更新,认证变更会自动生效。" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "已启用,但未找到任何已注册安全密钥。请注册后执行“同步”。" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "已启用,但无法确认安全密钥的可用性。" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "已启用。PAM 已提供指纹认证。" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "已启用。PAM 已提供安全密钥认证。" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "已启用。PAM 将提供指纹认证,但尚未注册指纹。" - }, "Enabling WiFi...": { "Enabling WiFi...": "正在启用 Wi-Fi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "精确" }, - "Excluded Media Players": { - "Excluded Media Players": "排除的媒体播放器" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "独占区域偏移量" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "将打印机添加到类别失败" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "应用 GTK 配色失败" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "应用 Qt 配色失败" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "充电限制应用到系统失败" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "启用夜间模式失败" }, - "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": "获取网络二维码失败:%1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "移动至回收站失败" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "无法解析 plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "无法解析 session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "无法解析 settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "暂停打印机失败" @@ -3368,8 +3188,8 @@ "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.": "打开回收站的文件管理器。点击“自定义”以输入自定义命令。" }, - "File received from": { - "File received from": "已从此处接收文件" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "文件搜索需要 dsearch\n请从 github.com/AvengeMedia/danksearch 安装" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "用于编辑纯文本文件" }, - "For reading PDF files": { - "For reading PDF files": "用于阅读 PDF 文件" - }, "Force HDR": { "Force HDR": "强制 HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "间距" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "生成 Override" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "授予" }, - "Grant admin?": { - "Grant admin?": "授予管理员权限吗?" - }, "Grant administrator privileges": { "Grant administrator privileges": "授予管理员权限" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "登录界面" }, - "Greeter Appearance": { - "Greeter Appearance": "登录界面外观" - }, - "Greeter Behavior": { - "Greeter Behavior": "登录界面行为" - }, - "Greeter Status": { - "Greeter Status": "登录界面状态" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "登录界面已激活。greetd 已启用。" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "greeter 组:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "仅登录界面 - 不影响主时钟" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "仅登录界面 - 登录屏幕上的日期格式" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord 服务器" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland 布局覆盖" - }, "Hyprland Options": { "Hyprland Options": "Hyprland 配置选项" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "密码错误" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "密码错误 - 尝试 %1 / %2(随后可能锁定)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "密码错误 - 下一次失败将触发账号锁定" - }, "Incorrect password - try again": { "Incorrect password - try again": "密码错误 - 请重试" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "作业" }, - "Jobs: ": { - "Jobs: ": "作业:" - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "布局覆盖" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "登录界面上的布局和模块位置会从你的 Shell 同步(例如:状态栏配置)。运行“同步”以应用。" - }, "Left": { "Left": "左侧" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "区域" }, - "Locale Settings": { - "Locale Settings": "区域设置" - }, "Location": { "Location": "位置" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "锁屏" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "锁屏外观" - }, - "Lock Screen Display": { - "Lock Screen Display": "锁屏显示" - }, "Lock Screen Format": { "Lock Screen Format": "锁屏格式" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "锁屏行为" - }, - "Lock Screen layout": { - "Lock Screen layout": "锁屏布局" - }, "Lock at startup": { "Lock at startup": "启动时锁定" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "锁屏渐变时间" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "锁屏认证变更会自动生效,当需要 sudo 认证时可能会打开终端。" - }, "Lock screen font": { "Lock screen font": "锁屏字体" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "登录" }, - "Login Authentication": { - "Login Authentication": "登录认证" - }, "Long": { "Long": "较长" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "受连接模式下的框架管理" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "管理" }, - "Manages calendar events": { - "Manages calendar events": "管理日历事务" - }, "Manages files and directories": { "Manages files and directories": "管理文件和目录" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "Mango 服务不可用" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC 布局覆盖" - }, "Manual": { "Manual": "手动" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "已达固定项目最多数量" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "每个剪贴板项目的最高磁盘占用" - }, "Media": { "Media": "媒体" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "媒体播放器" }, - "Media Player Settings": { - "Media Player Settings": "媒体播放器设置" - }, "Media Players (": { "Media Players (": "媒体播放器 (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "模式" }, - "Mode:": { - "Mode:": "模式:" - }, "Model": { "Model": "型号" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "鼠标指针尺寸(px)" }, - "Move": { - "Move": "移动" - }, "Move Widget": { "Move Widget": "移动部件" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "多媒体" }, - "Multiplexer": { - "Multiplexer": "终端复用器" - }, "Multiplexer Type": { "Multiplexer Type": "终端复用器类型" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "实时网速显示" }, - "Network Status": { - "Network Status": "网络状态" - }, "Network Type": { "Network Type": "网络类型" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri 集成" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri 布局覆盖" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri 合成器操作(聚焦、移动等)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "未找到插件" }, - "No plugins found.": { - "No plugins found.": "未找到插件" - }, "No printer found": { "No printer found": "未找到打印机" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "通知弹窗" }, - "Notification Rules": { - "Notification Rules": "通知规则" - }, "Notification Settings": { "Notification Settings": "通知设置" }, - "Notification Timeouts": { - "Notification Timeouts": "通知超时" - }, "Notification Type": { "Notification Type": "通知类型" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "根据时间或位置调节伽马值。" }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "仅影响受 DMS 管理的 PAM。如果 greetd 已经包含了 pam_fprintd,则指纹认证将依旧保持启用。" - }, "Only on Battery": { "Only on Battery": "仅使用电池时" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "不透明度" }, - "Opacity of the bar background": { - "Opacity of the bar background": "状态栏背景的不透明度" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "部件背景的不透明度" - }, "Opaque": { "Opaque": "不透明" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "正在打开文件浏览器" }, - "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": "打开此 seat 上其他活动会话的选择器" }, - "Opens image files": { - "Opens image files": "打开图像文件" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "在连接框架模式中打开连接式启动器。" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM 已提供安全密钥认证。启用以在登录时显示。" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM 提供了指纹认证,但无法确认其可用性。" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM 提供了指纹认证,但尚无注册指纹。" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM 提供了指纹认证,但无法检测到读取器。" - }, "PDF Reader": { "PDF Reader": "PDF 阅读器" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "补齐小时数" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "固定时间宽度(02:00 vs 2:00)" - }, "Padding": { "Padding": "内边距" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "已配对" }, - "Pairing": { - "Pairing": "正在配对" - }, "Pairing failed": { "Pairing failed": "配对失败" }, - "Pairing request from": { - "Pairing request from": "配对请求" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "配对请求已发送" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "手机连接不可用" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "手机连接不可用" - }, "Phone number": { "Phone number": "电话号码" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping 已发送至" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "已固定" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "调节音量时播放声音" }, - "Play sounds for system events": { - "Play sounds for system events": "为系统事件播放声音" - }, "Playback": { "Playback": "播放" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "播放音频文件" }, - "Plays video files": { - "Plays video files": "播放视频文件" - }, "Please wait...": { "Please wait...": "请稍候..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "弹窗行为与位置" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "端口" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "电源模式与节能" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "性能模式自动切换" - }, "Power Saver": { "Power Saver": "省电" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "电源配置管理可用" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "交流电源连接时使用性能模式" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "电池供电时使用性能模式" - }, "Power source": { "Power source": "电源" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "预设宽度(%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "按 n 或点击“新建会话”以创建" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "按 Ctrl+N 或单击「新建会话」创建一个" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "主色容器" }, - "Primary Theme Color": { - "Primary Theme Color": "主要主题色" - }, "Print Server Management": { "Print Server Management": "打印服务器管理" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "打印机" }, - "Printers: ": { - "Printers: ": "打印机: " - }, "Prioritize performance": { "Prioritize performance": "性能优先" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "进程" }, - "Processes:": { - "Processes:": "进程:" - }, "Processing": { "Processing": "处理中" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "电池供电配置模式" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "协议" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "移除管理员权限" }, - "Remove admin?": { - "Remove admin?": "移除管理员权限吗?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "移除状态栏圆角" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "重置尺寸" }, - "Reset to Default?": { - "Reset to Default?": "重置为默认值吗?" - }, "Reset to default": { "Reset to default": "重置为默认值" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "响铃" }, - "Ringing": { - "Ringing": "正在响铃" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "波纹效果" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "规则" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "规则名称" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "规则(%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "正在保存..." }, - "Saving…": { - "Saving…": "正在保存..." - }, "Scale": { "Scale": "缩放" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "扫描" }, - "Scanning": { - "Scanning": "扫描中" - }, "Scanning...": { "Scanning...": "正在扫描..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "搜索..." }, - "Searching": { - "Searching": "正在搜索" - }, "Searching...": { "Searching...": "正在搜索..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "安全与隐私" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "安全密钥模式" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "选择锁屏背景图片" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "选择要设置壁纸的显示器" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "使用等宽字体显示进程和技术内容" }, "Select network": { "Select network": "选择网络" }, - "Select system sound theme": { - "Select system sound theme": "选择系统声音主题" - }, "Select the font family for UI text": { "Select the font family for UI text": "选择 UI 文本的字族" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "发送剪贴板" }, - "Send File": { - "Send File": "发送文件" - }, "Send SMS": { "Send SMS": "发送短信" }, - "Sending": { - "Sending": "正在发送" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "分离" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "设置通知内容字号(htmlBody)" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "设置通知标题字号" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "设置低电量百分比" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "共享伽马控制设置" }, - "Share Text": { - "Share Text": "共享文本" - }, "Shared": { "Shared": "已共享" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "在 Niri 概览中显示" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "在模糊面板上显示前景平面,以增强对比度" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "在面板上显示前台表面以增强对比度" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "显示挂载路径" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "仅在当前聚焦的显示器上显示通知弹窗" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "仅在当前聚焦的显示器上显示通知" - }, "Show on Last Display": { "Show on Last Display": "在最后使用的显示器上显示" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "仅在概览中显示" }, - "Show on all connected displays": { - "Show on all connected displays": "在所有已连接的显示器上显示" - }, "Show on screens:": { "Show on screens:": "选择显示的屏幕:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "当亮度改变时显示 OSD" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "当大写锁状态变化时显示 OSD" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "当切换音频输出设备时显示 OSD" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "当待机抑制状态改变时显示 OSD" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "当媒体播放器状态改变时显示 OSD" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "当媒体音量改变时显示 OSD" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "当麦克风静音状态切换时显示 OSD" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "当电源配置改变时显示 OSD" - }, - "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "当音量变化时显示 OSD" - }, "Show the bar only when no windows are open": { "Show the bar only when no windows are open": "仅在没有窗口打开时显示状态栏" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "在状态栏和控制中心显示天气信息" }, - "Show week number in the calendar": { - "Show week number in the calendar": "在日历中显示周数" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "在状态栏工作区切换器中显示工作区索引号" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "信号强度" }, - "Signal:": { - "Signal:": "信号:" - }, "Silence for a while": { "Silence for a while": "静默一会儿" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "开始" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "启动 KDE Connect 或 Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "启动 KDE Connect 或 Valent 以使用此插件" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "条纹" }, - "Subtle Overlay": { - "Subtle Overlay": "轻微叠加" - }, "Summary": { "Summary": "概要" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "终端回退失败。请安装受支持的终端模拟器之一,或手动运行“dms greeter sync”。" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "终端回退已打开。请在那里完成认证配置,结束时会自动关闭。" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "终端回退已打开。同步将在该处完成;完成后将自动关闭。" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "要使用的终端复用器后端" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "终端已打开。请在那里完成认证配置,结束时会自动关闭。" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "终端已打开。请在终端完成同步身份验证;完成后将自动关闭。" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "终端总使用深色主题" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "文本渲染" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "未安装 'boregard' 工具或不在 PATH 中。\n\n请从 https://danklinux.com 安装,然后重新启用此插件。" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "系统监视器功能需要 dgop。\n请安装 dgop 以使用此功能。" }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "当前安装仍在使用 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.": "当前安装仍在使用 hyprland.conf。请先运行 dms setup 完成迁移,再编辑显示设置。" - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "当前安装仍在使用 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.": "当前安装仍在使用 hyprland.conf。请先运行 dms setup 完成迁移,再在设置中编辑窗口规则。" + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "此操作可能会花费一些时间" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "平铺" }, - "Tile H": { - "Tile H": "水平平铺" - }, "Tile Horizontally": { "Tile Horizontally": "水平平铺" }, - "Tile V": { - "Tile V": "垂直平铺" - }, "Tile Vertically": { "Tile Vertically": "垂直平铺" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "超时进度条" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "关键优先级通知的超时时间" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "次要优先级通知的超时时间" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "普通优先级通知的超时时间" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "色调饱和度" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "透明度" }, - "Transparency of the border": { - "Transparency of the border": "边框透明度" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "阴影层透明度" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "部件轮廓透明度" - }, "Trash": { "Trash": "回收站" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "从 Dock 取消固定" }, - "Unsaved Changes": { - "Unsaved Changes": "未保存更改" - }, "Unsaved changes": { "Unsaved changes": "未保存更改" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "运行时间" }, - "Uptime:": { - "Uptime:": "运行时间:" - }, "Urgent": { "Urgent": "紧急" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "使用自定义边框尺寸" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "使用自定义边框/聚焦环宽度" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "使用系统设置中的声音主题" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "在所有显示器上使用同样的位置与大小" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "何时锁定" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "白色" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "窗口规则" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "窗口规则文件未引用" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "未配置窗口规则" - }, "Wipe": { "Wipe": "擦除" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "工作区" }, - "Workspace Appearance": { - "Workspace Appearance": "工作区外观" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "工作区序号" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "工作区填充" }, - "Workspace Settings": { - "Workspace Settings": "工作区设置" - }, "Workspace Switcher": { "Workspace Switcher": "工作区切换器" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "昨天" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "检测到未保存的更改,是否在关闭此标签页前保存?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "检测到未保存的更改,是否在执行此操作前保存?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "检测到未保存的更改,是否在创建新文件前保存?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "检测到未保存的更改,是否在打开文件前保存?" - }, "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.": { "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。" }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "您的系统已是最新!" }, - "actions": { - "actions": "操作" - }, "admin": { "admin": "管理员" }, "attached": { "attached": "已附加" }, - "boregard is required": { - "boregard is required": "需要 boregard" - }, "brandon": { "brandon": "brandon" }, @@ -9236,9 +8768,6 @@ "device": { "device": "设备" }, - "devices connected": { - "devices connected": "设备已连接" - }, "dgop not available": { "dgop not available": "dgop 不可用" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "讨论" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "DMS 是一款高度可自定义的现代桌面 Shell,采用受 Material 3 启发的设计。

DMS 基于 Quickshell(用于构建桌面 Shell 的 Qt6 框架)和 Go(静态类型编译型编程语言)开发。" }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "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 不可用或已禁用,无法应用 Qt 配色" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "未找到 Matugen - 请为动态主题安装 matugen 包" @@ -9326,6 +8855,9 @@ "nav": { "nav": "导航" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "Niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "在 Sway 上" }, - "open": { - "open": "打开" - }, "or run ": { "or run ": "或运行 " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon 不可用" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "进程" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 by %2" }, - "verified": { - "verified": "已验证" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• 仅从可信来源安装" }, diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index b6115f436..e46129f9c 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -5,6 +5,9 @@ "%1 Animation Speed": { "%1 Animation Speed": "%1 動畫速度" }, + "%1 Layout Overrides": { + "%1 Layout Overrides": "" + }, "%1 Sessions": { "%1 Sessions": "%1 個會話" }, @@ -35,9 +38,6 @@ "%1 copied": { "%1 copied": "%1 已複製" }, - "%1 custom animation duration": { - "%1 custom animation duration": "%1 自訂動畫持續時間" - }, "%1 disconnected": { "%1 disconnected": "%1 已中斷連線" }, @@ -50,9 +50,6 @@ "%1 displays": { "%1 displays": "%1 個顯示器" }, - "%1 exists but is not included. Window rules won't apply.": { - "%1 exists but is not included. Window rules won't apply.": "%1 存在但未納入。視窗規則將不適用。" - }, "%1 filtered": { "%1 filtered": "%1 個已篩選" }, @@ -119,9 +116,6 @@ "'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.": "「替代」讓密鑰自行解鎖。「第二因素」需要先輸入密碼或指紋,然後再輸入密鑰。" }, - "(Default)": { - "(Default)": "(預設)" - }, "(Unnamed)": { "(Unnamed)": "(未命名)" }, @@ -212,9 +206,6 @@ "24-Hour Format": { "24-Hour Format": "24 小時制" }, - "24-hour clock": { - "24-hour clock": "24 小時制" - }, "25 seconds": { "25 seconds": "25 秒" }, @@ -509,6 +500,9 @@ "Afternoon": { "Afternoon": "下午" }, + "Alerts": { + "Alerts": "" + }, "All": { "All": "所有" }, @@ -788,15 +782,15 @@ "Authentication Required": { "Authentication Required": "需要驗證" }, + "Authentication Source": { + "Authentication Source": "" + }, "Authentication changes applied.": { "Authentication changes applied.": "身份驗證變更已套用。" }, "Authentication changes apply automatically.": { "Authentication changes apply automatically.": "身份驗證變更會自動套用。" }, - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": { - "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "身份驗證變更會自動套用。僅限指紋登入可能無法解鎖金鑰圈。" - }, "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": { "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "身份驗證變更需要 sudo。正在開啟終端機,以便您使用密碼或指紋。" }, @@ -812,9 +806,6 @@ "Authentication failed - try again": { "Authentication failed - try again": "" }, - "Authentication failed, please try again": { - "Authentication failed, please try again": "驗證失敗,請重試" - }, "Authorize": { "Authorize": "授權" }, @@ -848,14 +839,8 @@ "Auto Power Saver": { "Auto Power Saver": "" }, - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": { - "Auto matches bar spacing; Off leaves gaps to your Hyprland config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": { - "Auto matches bar spacing; Off leaves gaps to your MangoWC config": "" - }, - "Auto matches bar spacing; Off leaves gaps to your niri config": { - "Auto matches bar spacing; Off leaves gaps to your niri config": "" + "Auto matches bar spacing; Off leaves gaps to your %1 config": { + "Auto matches bar spacing; Off leaves gaps to your %1 config": "" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "自動模式已開啟。手動選擇設定檔已停用。" @@ -863,6 +848,9 @@ "Auto saved": { "Auto saved": "" }, + "Auto uses an installed or bundled key-only service.": { + "Auto uses an installed or bundled key-only service.": "" + }, "Auto-Clear After": { "Auto-Clear After": "自動清除於" }, @@ -983,9 +971,6 @@ "Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": "可於詳細和預報檢視模式中顯示" }, - "Available.": { - "Available.": "可用。" - }, "Awaiting fingerprint authentication": { "Awaiting fingerprint authentication": "" }, @@ -1007,9 +992,6 @@ "Backend": { "Backend": "後端" }, - "Backends: %1": { - "Backends: %1": "後端:%1" - }, "Background": { "Background": "背景" }, @@ -1049,9 +1031,6 @@ "Bar %1": { "Bar %1": "" }, - "Bar Configurations": { - "Bar Configurations": "欄設定" - }, "Bar Inset Padding": { "Bar Inset Padding": "" }, @@ -1070,9 +1049,6 @@ "Bar shadow, border, and corners": { "Bar shadow, border, and corners": "長條陰影、邊界和角落" }, - "Bar spacing and size": { - "Bar spacing and size": "長條間距和大小" - }, "Base color for shadows (opacity is applied automatically)": { "Base color for shadows (opacity is applied automatically)": "陰影的基礎顏色 (不透明度會自動套用)" }, @@ -1085,9 +1061,6 @@ "Battery %1": { "Battery %1": "電量 %1" }, - "Battery Alerts": { - "Battery Alerts": "" - }, "Battery Charge Limit": { "Battery Charge Limit": "電池充電上限" }, @@ -1097,15 +1070,6 @@ "Battery Power": { "Battery Power": "" }, - "Battery Protection": { - "Battery Protection": "" - }, - "Battery Protection & Charging": { - "Battery Protection & Charging": "" - }, - "Battery Status": { - "Battery Status": "" - }, "Battery and power management": { "Battery and power management": "電池與電源管理" }, @@ -1118,9 +1082,6 @@ "Battery is at %1% - Consider charging soon": { "Battery is at %1% - Consider charging soon": "" }, - "Battery level and power management": { - "Battery level and power management": "電量與電源管理" - }, "Battery percentage to trigger a critical alert.": { "Battery percentage to trigger a critical alert.": "" }, @@ -1130,11 +1091,8 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "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.": "在您的合成器設定中綁定 spotlight IPC 操作。" - }, - "Bind the spotlight-bar IPC action in your compositor config.": { - "Bind the spotlight-bar IPC action in your compositor config.": "在您的合成器設定中綁定 spotlight-bar IPC 操作。" + "Bind the %1 IPC action in your compositor config.": { + "Bind the %1 IPC action in your compositor config.": "" }, "Binds include added": { "Binds include added": "綁定包含已新增" @@ -1175,21 +1133,12 @@ "Blur": { "Blur": "模糊" }, - "Blur Border Color": { - "Blur Border Color": "模糊邊框顏色" - }, - "Blur Border Opacity": { - "Blur Border Opacity": "模糊邊框不透明度" - }, "Blur Wallpaper Layer": { "Blur Wallpaper Layer": "模糊桌布圖層" }, "Blur on Overview": { "Blur on Overview": "模糊概覽" }, - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": { - "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "模糊 bar、彈出視窗、模態視窗和通知後面的背景。需要合成器支援和配置。" - }, "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": { "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.": "" }, @@ -1232,9 +1181,6 @@ "Border Width": { "Border Width": "邊框寬度" }, - "Border color around blurred surfaces": { - "Border color around blurred surfaces": "模糊表面周圍的邊框顏色" - }, "Border color around popouts, modals, and other shell surfaces": { "Border color around popouts, modals, and other shell surfaces": "" }, @@ -1295,9 +1241,6 @@ "Button Color": { "Button Color": "按鈕顏色" }, - "By %1": { - "By %1": "" - }, "CPU": { "CPU": "CPU" }, @@ -1436,9 +1379,6 @@ "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.": "按需檢查同步狀態。同步(完整)適用於主要管理員:它會將您的主題複製到登入畫面並設定系統歡迎畫面配置。在多使用者系統上,請在「設定」→「使用者」中加入其他帳戶,然後讓每位使用者在登出並重新登入後執行 dms greeter sync --profile,而非完整同步。驗證變更會自動套用。" - }, "Check your custom command in Settings → Dock → Trash.": { "Check your custom command in Settings → Dock → Trash.": "請在「設定」→「Dock」→「垃圾桶」中檢查您的自訂指令。" }, @@ -1457,9 +1397,6 @@ "Choose Dark Mode Color": { "Choose Dark Mode Color": "選擇深色模式顏色" }, - "Choose Dock Launcher Logo Color": { - "Choose Dock Launcher Logo Color": "選擇工作列啟動器標誌顏色" - }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "選擇啟動器 Logo 顏色" }, @@ -1484,9 +1421,6 @@ "Choose how this bar resolves shadow direction": { "Choose how this bar resolves shadow direction": "選擇此列如何解析陰影方向" }, - "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" - }, "Choose how to be notified about critical battery alerts.": { "Choose how to be notified about critical battery alerts.": "" }, @@ -1505,12 +1439,6 @@ "Choose neutral or accent-colored widget text": { "Choose neutral or accent-colored widget text": "" }, - "Choose the background color for widgets": { - "Choose the background color for widgets": "選擇部件的背景顏色" - }, - "Choose the border accent color": { - "Choose the border accent color": "選擇邊框強調色" - }, "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "選擇 DankBar 啟動器按鈕上顯示的 logo" }, @@ -1574,9 +1502,6 @@ "Click 'Setup' to create %1 and add include to your compositor config.": { "Click 'Setup' to create %1 and add include to your compositor config.": "點擊「設定」以建立 %1 並將其納入您的合成器設定中。" }, - "Click 'Setup' to create the outputs config and add include to your compositor config.": { - "Click 'Setup' to create the outputs config and add include to your compositor config.": "按一下「設定」以建立輸出組態並將其包含至合成器組態中。" - }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "點擊匯入以新增 .ovpn 或 .conf" }, @@ -1682,12 +1607,6 @@ "Color shown for areas not covered by wallpaper": { "Color shown for areas not covered by wallpaper": "" }, - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": { - "Color shown for areas not covered by wallpaper (e.g. Fit or Pad modes)": "" - }, - "Color temperature for day time": { - "Color temperature for day time": "白天螢幕的顏色溫度" - }, "Color temperature for night mode": { "Color temperature for night mode": "夜晚螢幕的顏色溫度" }, @@ -1772,6 +1691,9 @@ "Configuration will be preserved when this display reconnects": { "Configuration will be preserved when this display reconnects": "此顯示器重新連線時將保留配置" }, + "Configurations": { + "Configurations": "" + }, "Configure": { "Configure": "設定" }, @@ -1853,9 +1775,6 @@ "Connecting...": { "Connecting...": "連線中..." }, - "Connecting…": { - "Connecting…": "" - }, "Connection failed": { "Connection failed": "連線失敗" }, @@ -1904,24 +1823,6 @@ "Controls opacity of shell surfaces, popouts, and modals": { "Controls opacity of shell surfaces, popouts, and modals": "" }, - "Controls opacity of the bar background": { - "Controls opacity of the bar background": "" - }, - "Controls opacity of the border": { - "Controls opacity of the border": "" - }, - "Controls opacity of the shadow layer": { - "Controls opacity of the shadow layer": "" - }, - "Controls opacity of the widget outline": { - "Controls opacity of the widget outline": "" - }, - "Controls opacity of widget backgrounds": { - "Controls opacity of widget backgrounds": "" - }, - "Controls outlines around blurred foreground cards, pills, and notification cards": { - "Controls outlines around blurred foreground cards, pills, and notification cards": "控制模糊前景卡片、藥丸狀元素和通知卡片周圍的輪廓" - }, "Controls outlines around foreground cards, pills, and notification cards": { "Controls outlines around foreground cards, pills, and notification cards": "" }, @@ -1931,18 +1832,9 @@ "Controls the base blur radius and offset of shadows": { "Controls the base blur radius and offset of shadows": "控制陰影的基本模糊半徑和偏移" }, - "Controls the opacity of the shadow": { - "Controls the opacity of the shadow": "" - }, - "Controls the outer edge of protocol-blurred windows": { - "Controls the outer edge of protocol-blurred windows": "控制協定模糊視窗的外邊緣" - }, "Controls the outline of popouts, modals, and other shell surfaces": { "Controls the outline of popouts, modals, and other shell surfaces": "" }, - "Controls the transparency of the shadow": { - "Controls the transparency of the shadow": "控制陰影的透明度" - }, "Convenience options for the login screen. Sync to apply.": { "Convenience options for the login screen. Sync to apply.": "登入畫面的便捷選項。同步以套用。" }, @@ -2000,9 +1892,6 @@ "Corners & Background": { "Corners & Background": "邊角與背景" }, - "Couldn't open a terminal for the auto-login update.": { - "Couldn't open a terminal for the auto-login update.": "無法為自動登入更新開啟終端機。" - }, "Count Only": { "Count Only": "僅計數" }, @@ -2027,9 +1916,6 @@ "Create a new %1 session (^N)": { "Create a new %1 session (^N)": "" }, - "Create a new %1 session (n)": { - "Create a new %1 session (n)": "建立一個新的 %1 會話 (n)" - }, "Create rule for:": { "Create rule for:": "建立規則:" }, @@ -2192,9 +2078,6 @@ "Custom...": { "Custom...": "自訂..." }, - "Custom: ": { - "Custom: ": "自訂: " - }, "Customizable empty space": { "Customizable empty space": "可自訂空白空間" }, @@ -2225,15 +2108,12 @@ "DMS Shortcuts": { "DMS Shortcuts": "DMS 捷徑" }, - "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 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 需要管理員權限。完成後終端機會自動關閉。" - }, "DMS out of date": { "DMS out of date": "DMS 已過期" }, + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": { + "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it": "" + }, "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)" }, @@ -2405,9 +2285,6 @@ "Delete user": { "Delete user": "刪除使用者" }, - "Delete user?": { - "Delete user?": "刪除使用者嗎?" - }, "Demi Bold": { "Demi Bold": "中粗" }, @@ -2609,9 +2486,6 @@ "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "以網格而非列表顯示電源選單操作" }, - "Display seconds in the clock": { - "Display seconds in the clock": "在時鐘中顯示秒數" - }, "Display setup failed": { "Display setup failed": "顯示設定失敗" }, @@ -2624,9 +2498,6 @@ "Displays": { "Displays": "螢幕" }, - "Displays count when overflow is active": { - "Displays count when overflow is active": "當溢出啟用時的顯示計數" - }, "Displays the active keyboard layout and allows switching": { "Displays the active keyboard layout and allows switching": "顯示目前鍵盤布局且允許切換" }, @@ -2648,15 +2519,9 @@ "Dock Opacity": { "Dock Opacity": "" }, - "Dock Visibility": { - "Dock Visibility": "Dock 可見性" - }, "Dock margin, opacity, and border": { "Dock margin, opacity, and border": "" }, - "Dock margin, transparency, and border": { - "Dock margin, transparency, and border": "Dock 邊距、透明度和邊框" - }, "Dock window": { "Dock window": "" }, @@ -2801,9 +2666,6 @@ "Empty Trash (%1)": { "Empty Trash (%1)": "清空垃圾桶 (%1)" }, - "Empty Trash?": { - "Empty Trash?": "清空垃圾桶?" - }, "Enable 10-bit color depth for wider color gamut and HDR support": { "Enable 10-bit color depth for wider color gamut and HDR support": "啟用 10 位元色彩深度以獲得更寬廣的色域和 HDR 支援" }, @@ -2867,36 +2729,6 @@ "Enabled": { "Enabled": "已啟用" }, - "Enabled, but fingerprint availability could not be confirmed.": { - "Enabled, but fingerprint availability could not be confirmed.": "已啟用,但無法確認指紋可用性。" - }, - "Enabled, but no fingerprint reader was detected.": { - "Enabled, but no fingerprint reader was detected.": "已啟用,但未偵測到指紋讀取器。" - }, - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": { - "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "已啟用,但尚未註冊指紋。一旦您註冊指紋,身份驗證變更會自動套用。" - }, - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": { - "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "已啟用,但尚未註冊指紋。請註冊指紋並執行同步。" - }, - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": { - "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "已啟用,但尚未找到已註冊的安全金鑰。一旦您的金鑰註冊或 U2F 配置更新,身份驗證變更會自動套用。" - }, - "Enabled, but no registered security key was found yet. Register a key and run Sync.": { - "Enabled, but no registered security key was found yet. Register a key and run Sync.": "已啟用,但尚未找到已註冊的安全金鑰。請註冊金鑰並執行同步。" - }, - "Enabled, but security-key availability could not be confirmed.": { - "Enabled, but security-key availability could not be confirmed.": "已啟用,但無法確認安全金鑰可用性。" - }, - "Enabled. PAM already provides fingerprint auth.": { - "Enabled. PAM already provides fingerprint auth.": "已啟用。PAM 已提供指紋驗證。" - }, - "Enabled. PAM already provides security-key auth.": { - "Enabled. PAM already provides security-key auth.": "已啟用。PAM 已提供安全金鑰驗證。" - }, - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": { - "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "已啟用。PAM 提供指紋驗證,但尚未註冊指紋。" - }, "Enabling WiFi...": { "Enabling WiFi...": "正在啟用 Wi-Fi..." }, @@ -3011,8 +2843,8 @@ "Exact": { "Exact": "精確" }, - "Excluded Media Players": { - "Excluded Media Players": "" + "Excluded Players": { + "Excluded Players": "" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "獨佔區域偏移" @@ -3080,11 +2912,8 @@ "Failed to add printer to class": { "Failed to add printer to class": "無法將印表機新增至類別" }, - "Failed to apply GTK colors": { - "Failed to apply GTK colors": "套用 GTK 顏色失敗" - }, - "Failed to apply Qt colors": { - "Failed to apply Qt colors": "套用 Qt 顏色失敗" + "Failed to apply %1 colors": { + "Failed to apply %1 colors": "" }, "Failed to apply charge limit to system": { "Failed to apply charge limit to system": "" @@ -3158,9 +2987,6 @@ "Failed to enable night mode": { "Failed to enable night mode": "無法啟用夜間模式" }, - "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": "擷取網路 QR 碼失敗:%1" }, @@ -3188,14 +3014,8 @@ "Failed to move to trash": { "Failed to move to trash": "移動到垃圾桶失敗" }, - "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "無法解析 plugin_settings.json" - }, - "Failed to parse session.json": { - "Failed to parse session.json": "無法解析 session.json" - }, - "Failed to parse settings.json": { - "Failed to parse settings.json": "無法解析 settings.json" + "Failed to parse %1": { + "Failed to parse %1": "" }, "Failed to pause printer": { "Failed to pause printer": "無法暫停印表機" @@ -3368,8 +3188,8 @@ "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.": "檔案管理器用於開啟垃圾桶。選擇「自訂」以輸入您自己的指令。" }, - "File received from": { - "File received from": "檔案接收自" + "File received from %1": { + "File received from %1": "" }, "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": { "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "檔案搜尋需要 dsearch\n從 github.com/morelazers/dsearch 安裝" @@ -3563,9 +3383,6 @@ "For editing plain text files": { "For editing plain text files": "用於編輯純文字檔案" }, - "For reading PDF files": { - "For reading PDF files": "用於閱讀 PDF 檔案" - }, "Force HDR": { "Force HDR": "強制 HDR" }, @@ -3719,6 +3536,9 @@ "Gaps": { "Gaps": "" }, + "General": { + "General": "" + }, "Generate Override": { "Generate Override": "產生覆蓋檔" }, @@ -3764,9 +3584,6 @@ "Grant": { "Grant": "授與" }, - "Grant admin?": { - "Grant admin?": "授與管理員權限?" - }, "Grant administrator privileges": { "Grant administrator privileges": "授與管理員權限" }, @@ -3785,15 +3602,6 @@ "Greeter": { "Greeter": "歡迎畫面" }, - "Greeter Appearance": { - "Greeter Appearance": "歡迎畫面外觀" - }, - "Greeter Behavior": { - "Greeter Behavior": "歡迎畫面行為" - }, - "Greeter Status": { - "Greeter Status": "歡迎畫面狀態" - }, "Greeter activated. greetd is now enabled.": { "Greeter activated. greetd is now enabled.": "歡迎畫面已啟用。greetd 現已啟用。" }, @@ -3806,9 +3614,6 @@ "Greeter group:": { "Greeter group:": "歡迎畫面群組:" }, - "Greeter only — does not affect main clock": { - "Greeter only — does not affect main clock": "僅限歡迎畫面 — 不影響主時鐘" - }, "Greeter only — format for the date on the login screen": { "Greeter only — format for the date on the login screen": "僅限歡迎畫面 — 登入畫面上日期的格式" }, @@ -4067,9 +3872,6 @@ "Hyprland Discord Server": { "Hyprland Discord Server": "Hyprland Discord 伺服器" }, - "Hyprland Layout Overrides": { - "Hyprland Layout Overrides": "Hyprland 版面配置覆寫" - }, "Hyprland Options": { "Hyprland Options": "Hyprland 選項" }, @@ -4208,12 +4010,6 @@ "Incorrect password": { "Incorrect password": "密碼錯誤" }, - "Incorrect password - attempt %1 of %2 (lockout may follow)": { - "Incorrect password - attempt %1 of %2 (lockout may follow)": "密碼不正確 - 第 %1 次嘗試(共 %2 次,之後可能會鎖定帳戶)" - }, - "Incorrect password - next failures may trigger account lockout": { - "Incorrect password - next failures may trigger account lockout": "密碼不正確 - 接下來的失敗可能會觸發帳戶鎖定" - }, "Incorrect password - try again": { "Incorrect password - try again": "密碼不正確 - 請再試一次" }, @@ -4370,9 +4166,6 @@ "Jobs": { "Jobs": "工作" }, - "Jobs: ": { - "Jobs: ": "工作: " - }, "Join video call": { "Join video call": "" }, @@ -4517,9 +4310,6 @@ "Layout Overrides": { "Layout Overrides": "版面配置覆寫" }, - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": { - "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "歡迎畫面的佈局和模組位置與您的 Shell(例如 bar 配置)同步。執行同步以應用。" - }, "Left": { "Left": "左" }, @@ -4604,9 +4394,6 @@ "Locale": { "Locale": "地區設定" }, - "Locale Settings": { - "Locale Settings": "地區設定" - }, "Location": { "Location": "位置" }, @@ -4619,21 +4406,9 @@ "Lock Screen": { "Lock Screen": "鎖定螢幕" }, - "Lock Screen Appearance": { - "Lock Screen Appearance": "" - }, - "Lock Screen Display": { - "Lock Screen Display": "鎖定畫面顯示" - }, "Lock Screen Format": { "Lock Screen Format": "鎖定螢幕格式" }, - "Lock Screen behaviour": { - "Lock Screen behaviour": "鎖定螢幕行為" - }, - "Lock Screen layout": { - "Lock Screen layout": "鎖定螢幕版面配置" - }, "Lock at startup": { "Lock at startup": "開機時鎖定" }, @@ -4643,9 +4418,6 @@ "Lock fade grace period": { "Lock fade grace period": "鎖定淡出緩衝期" }, - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": { - "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "鎖定畫面身份驗證變更會自動套用,當需要 sudo 身份驗證時可能會開啟終端機。" - }, "Lock screen font": { "Lock screen font": "" }, @@ -4661,9 +4433,6 @@ "Login": { "Login": "登入" }, - "Login Authentication": { - "Login Authentication": "登入驗證" - }, "Long": { "Long": "長" }, @@ -4721,12 +4490,12 @@ "Managed by Frame in Connected Mode": { "Managed by Frame in Connected Mode": "在連接模式下由框架管理" }, + "Managed by the primary PAM source.": { + "Managed by the primary PAM source.": "" + }, "Management": { "Management": "管理" }, - "Manages calendar events": { - "Manages calendar events": "管理日曆事件" - }, "Manages files and directories": { "Manages files and directories": "管理檔案和目錄" }, @@ -4736,9 +4505,6 @@ "Mango service not available": { "Mango service not available": "" }, - "MangoWC Layout Overrides": { - "MangoWC Layout Overrides": "MangoWC 版面配置覆寫" - }, "Manual": { "Manual": "手動" }, @@ -4895,9 +4661,6 @@ "Maximum pinned entries reached": { "Maximum pinned entries reached": "已達最大釘選項目數量" }, - "Maximum size per clipboard entry": { - "Maximum size per clipboard entry": "每個剪貼簿項目的最大大小" - }, "Media": { "Media": "媒體播放器" }, @@ -4922,9 +4685,6 @@ "Media Player": { "Media Player": "媒體播放器" }, - "Media Player Settings": { - "Media Player Settings": "媒體播放設定" - }, "Media Players (": { "Media Players (": "媒體播放 (" }, @@ -5006,9 +4766,6 @@ "Mode": { "Mode": "模式" }, - "Mode:": { - "Mode:": "模式:" - }, "Model": { "Model": "型號" }, @@ -5063,9 +4820,6 @@ "Mouse pointer size in pixels": { "Mouse pointer size in pixels": "滑鼠指標像素大小" }, - "Move": { - "Move": "移動" - }, "Move Widget": { "Move Widget": "移動小工具" }, @@ -5081,9 +4835,6 @@ "Multimedia": { "Multimedia": "多媒體" }, - "Multiplexer": { - "Multiplexer": "多工器" - }, "Multiplexer Type": { "Multiplexer Type": "多工器類型" }, @@ -5159,9 +4910,6 @@ "Network Speed Monitor": { "Network Speed Monitor": "網速監視" }, - "Network Status": { - "Network Status": "網路狀態" - }, "Network Type": { "Network Type": "" }, @@ -5234,9 +4982,6 @@ "Niri Integration": { "Niri Integration": "Niri 整合" }, - "Niri Layout Overrides": { - "Niri Layout Overrides": "Niri 版面配置覆寫" - }, "Niri compositor actions (focus, move, etc.)": { "Niri compositor actions (focus, move, etc.)": "Niri 合成器動作 (焦點、移動等)" }, @@ -5462,9 +5207,6 @@ "No plugins found": { "No plugins found": "找不到插件" }, - "No plugins found.": { - "No plugins found.": "找不到插件。" - }, "No printer found": { "No printer found": "未找到印表機" }, @@ -5639,15 +5381,9 @@ "Notification Popups": { "Notification Popups": "通知彈窗" }, - "Notification Rules": { - "Notification Rules": "通知規則" - }, "Notification Settings": { "Notification Settings": "通知設定" }, - "Notification Timeouts": { - "Notification Timeouts": "通知持續時間" - }, "Notification Type": { "Notification Type": "" }, @@ -5720,9 +5456,6 @@ "Only adjust gamma based on time or location rules.": { "Only adjust gamma based on time or location rules.": "僅根據時間或位置規則調整 gamma。" }, - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": { - "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "僅影響 DMS 管理的 PAM。如果 greetd 已包含 pam_fprintd,指紋驗證會保持啟用。" - }, "Only on Battery": { "Only on Battery": "" }, @@ -5735,12 +5468,6 @@ "Opacity": { "Opacity": "不透明度" }, - "Opacity of the bar background": { - "Opacity of the bar background": "工具列背景透明度" - }, - "Opacity of widget backgrounds": { - "Opacity of widget backgrounds": "小工具背景透明度" - }, "Opaque": { "Opaque": "不透明" }, @@ -5807,18 +5534,12 @@ "Opening file browser": { "Opening file browser": "正在開啟檔案瀏覽器" }, - "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 image files": { - "Opens image files": "開啟圖片檔案" - }, "Opens the connected launcher in Connected Frame Mode.": { "Opens the connected launcher in Connected Frame Mode.": "以連線框架模式開啟已連線的啟動器。" }, @@ -5921,15 +5642,6 @@ "PAM already provides security-key auth. Enable this to show it at login.": { "PAM already provides security-key auth. Enable this to show it at login.": "PAM 已提供安全金鑰驗證。啟用此選項以在登入時顯示。" }, - "PAM provides fingerprint auth, but availability could not be confirmed.": { - "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM 提供指紋驗證,但無法確認可用性。" - }, - "PAM provides fingerprint auth, but no prints are enrolled yet.": { - "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM 提供指紋驗證,但尚未註冊任何指紋。" - }, - "PAM provides fingerprint auth, but no reader was detected.": { - "PAM provides fingerprint auth, but no reader was detected.": "PAM 提供指紋驗證,但未檢測到讀取器。" - }, "PDF Reader": { "PDF Reader": "PDF 閱讀器" }, @@ -5945,9 +5657,6 @@ "Pad Hours": { "Pad Hours": "填充小時" }, - "Pad hours (02:00 vs 2:00)": { - "Pad hours (02:00 vs 2:00)": "小時補零 (02:00 vs 2:00)" - }, "Padding": { "Padding": "內距" }, @@ -5960,14 +5669,11 @@ "Paired": { "Paired": "已配對" }, - "Pairing": { - "Pairing": "正在配對" - }, "Pairing failed": { "Pairing failed": "配對失敗" }, - "Pairing request from": { - "Pairing request from": "來自 的配對要求" + "Pairing request from %1": { + "Pairing request from %1": "" }, "Pairing request sent": { "Pairing request sent": "已送出配對要求" @@ -6062,9 +5768,6 @@ "Phone Connect Not Available": { "Phone Connect Not Available": "手機連線無法使用" }, - "Phone Connect unavailable": { - "Phone Connect unavailable": "手機連線無法使用" - }, "Phone number": { "Phone number": "電話號碼" }, @@ -6092,8 +5795,8 @@ "Ping": { "Ping": "Ping" }, - "Ping sent to": { - "Ping sent to": "Ping 已送至" + "Ping sent to %1": { + "Ping sent to %1": "" }, "Pinned": { "Pinned": "已釘選" @@ -6137,9 +5840,6 @@ "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "調整音量時播放音效" }, - "Play sounds for system events": { - "Play sounds for system events": "播放系統事件的音效" - }, "Playback": { "Playback": "播放" }, @@ -6149,9 +5849,6 @@ "Plays audio files": { "Plays audio files": "播放音訊檔案" }, - "Plays video files": { - "Plays video files": "播放視訊檔案" - }, "Please wait...": { "Please wait...": "請稍候..." }, @@ -6227,6 +5924,9 @@ "Popup behavior, position": { "Popup behavior, position": "彈出視窗行為與位置" }, + "Popups": { + "Popups": "" + }, "Port": { "Port": "連接埠" }, @@ -6275,9 +5975,6 @@ "Power Profiles & Saving": { "Power Profiles & Saving": "" }, - "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" - }, "Power Saver": { "Power Saver": "省電模式" }, @@ -6287,12 +5984,6 @@ "Power profile management available": { "Power profile management available": "電源設定檔管理功能可用" }, - "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" - }, - "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" - }, "Power source": { "Power source": "電源" }, @@ -6317,9 +6008,6 @@ "Preset Widths (%)": { "Preset Widths (%)": "預設寬度 (%)" }, - "Press 'n' or click 'New Session' to create one": { - "Press 'n' or click 'New Session' to create one": "按下 'n' 或點擊 '新會話' 即可創建一個" - }, "Press Ctrl+N or click 'New Session' to create one": { "Press Ctrl+N or click 'New Session' to create one": "" }, @@ -6359,9 +6047,6 @@ "Primary Container": { "Primary Container": "主要容器" }, - "Primary Theme Color": { - "Primary Theme Color": "" - }, "Print Server Management": { "Print Server Management": "列印伺服器管理" }, @@ -6389,9 +6074,6 @@ "Printers": { "Printers": "印表機" }, - "Printers: ": { - "Printers: ": "印表機:" - }, "Prioritize performance": { "Prioritize performance": "優先效能" }, @@ -6416,9 +6098,6 @@ "Processes": { "Processes": "處理程序" }, - "Processes:": { - "Processes:": "處理程序:" - }, "Processing": { "Processing": "正在處理" }, @@ -6455,6 +6134,9 @@ "Profile when on Battery": { "Profile when on Battery": "" }, + "Protection": { + "Protection": "" + }, "Protocol": { "Protocol": "協定" }, @@ -6620,9 +6302,6 @@ "Remove admin": { "Remove admin": "移除管理員" }, - "Remove admin?": { - "Remove admin?": "移除管理員?" - }, "Remove corner rounding from the bar": { "Remove corner rounding from the bar": "移除工具列的圓角" }, @@ -6719,9 +6398,6 @@ "Reset Size": { "Reset Size": "重設大小" }, - "Reset to Default?": { - "Reset to Default?": "重設為預設值?" - }, "Reset to default": { "Reset to default": "重設為預設值" }, @@ -6800,8 +6476,8 @@ "Ring": { "Ring": "響鈴" }, - "Ringing": { - "Ringing": "正在響鈴" + "Ringing %1...": { + "Ringing %1...": "" }, "Ripple Effects": { "Ripple Effects": "漣漪效果" @@ -6815,9 +6491,15 @@ "Rule": { "Rule": "規則" }, + "Rule %1": { + "Rule %1": "" + }, "Rule Name": { "Rule Name": "規則名稱" }, + "Rules": { + "Rules": "" + }, "Rules (%1)": { "Rules (%1)": "規則 (%1)" }, @@ -6923,9 +6605,6 @@ "Saving...": { "Saving...": "儲存中..." }, - "Saving…": { - "Saving…": "" - }, "Scale": { "Scale": "縮放" }, @@ -6941,9 +6620,6 @@ "Scan": { "Scan": "掃描" }, - "Scanning": { - "Scanning": "正在掃描" - }, "Scanning...": { "Scanning...": "掃描中..." }, @@ -7028,9 +6704,6 @@ "Search...": { "Search...": "搜尋..." }, - "Searching": { - "Searching": "正在搜尋" - }, "Searching...": { "Searching...": "搜尋中..." }, @@ -7052,6 +6725,9 @@ "Security & privacy": { "Security & privacy": "安全與隱私" }, + "Security Key PAM Source": { + "Security Key PAM Source": "" + }, "Security key mode": { "Security key mode": "安全金鑰模式" }, @@ -7139,18 +6815,12 @@ "Select lock screen background image": { "Select lock screen background image": "" }, - "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "選擇指定螢幕桌布" - }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "寬字體用於處理程序列表和技術顯示" }, "Select network": { "Select network": "選取網路" }, - "Select system sound theme": { - "Select system sound theme": "選擇系統音效主題" - }, "Select the font family for UI text": { "Select the font family for UI text": "為使用者介面文字選擇字體家族" }, @@ -7178,14 +6848,11 @@ "Send Clipboard": { "Send Clipboard": "傳送剪貼簿" }, - "Send File": { - "Send File": "傳送檔案" - }, "Send SMS": { "Send SMS": "傳送簡訊" }, - "Sending": { - "Sending": "傳送中" + "Sending %1...": { + "Sending %1...": "" }, "Separate": { "Separate": "分離" @@ -7238,9 +6905,6 @@ "Set the font size for notification body text (htmlBody)": { "Set the font size for notification body text (htmlBody)": "" }, - "Set the font size for notification summary text": { - "Set the font size for notification summary text": "" - }, "Set the percentage at which the battery is considered low.": { "Set the percentage at which the battery is considered low.": "" }, @@ -7295,9 +6959,6 @@ "Share Gamma Control Settings": { "Share Gamma Control Settings": "分享 Gamma 控制設定" }, - "Share Text": { - "Share Text": "分享文字" - }, "Shared": { "Shared": "已分享" }, @@ -7553,9 +7214,6 @@ "Show during Niri overview": { "Show during Niri overview": "在 Niri 概覽期間顯示" }, - "Show foreground surfaces on blurred panels for stronger contrast": { - "Show foreground surfaces on blurred panels for stronger contrast": "在模糊面板上顯示前景表面以增強對比度" - }, "Show foreground surfaces on panels for stronger contrast": { "Show foreground surfaces on panels for stronger contrast": "" }, @@ -7571,12 +7229,6 @@ "Show mount path": { "Show mount path": "顯示掛載路徑" }, - "Show notification popups only on the currently focused monitor": { - "Show notification popups only on the currently focused monitor": "僅在當前焦點顯示器上顯示通知彈出視窗" - }, - "Show notifications only on the currently focused monitor": { - "Show notifications only on the currently focused monitor": "僅在當前焦點顯示器上顯示通知" - }, "Show on Last Display": { "Show on Last Display": "在最後顯示幕上顯示" }, @@ -7589,39 +7241,9 @@ "Show on Overview Only": { "Show on Overview Only": "僅在總覽中顯示" }, - "Show on all connected displays": { - "Show on all connected displays": "在所有連接的螢幕上顯示" - }, "Show on screens:": { "Show on screens:": "在螢幕上顯示:" }, - "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "亮度改變時顯示螢幕顯示" - }, - "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "大小寫鎖定狀態改變時顯示螢幕顯示" - }, - "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "切換音訊輸出裝置時顯示螢幕顯示器" - }, - "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "閒置抑制器狀態改變時顯示螢幕顯示" - }, - "Show on-screen display when media player status changes": { - "Show on-screen display when media player status changes": "媒體播放器狀態變更時顯示螢幕顯示" - }, - "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "媒體播放器音量變化時顯示螢幕疊加" - }, - "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "麥克風靜音/取消靜音時顯示螢幕顯示" - }, - "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "電源設定檔改變時顯示螢幕顯示" - }, - "Show on-screen display when volume changes": { - "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": "僅在沒有視窗開啟時顯示工具列" }, @@ -7631,9 +7253,6 @@ "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "在頂部欄和控制中心顯示天氣資訊" }, - "Show week number in the calendar": { - "Show week number in the calendar": "在日曆中顯示週數" - }, "Show workspace index numbers in the top bar workspace switcher": { "Show workspace index numbers in the top bar workspace switcher": "在頂部欄工作區切換器中顯示工作區編號" }, @@ -7667,9 +7286,6 @@ "Signal Strength": { "Signal Strength": "" }, - "Signal:": { - "Signal:": "訊號:" - }, "Silence for a while": { "Silence for a while": "靜音一會兒" }, @@ -7796,9 +7412,6 @@ "Start": { "Start": "開始" }, - "Start KDE Connect or Valent": { - "Start KDE Connect or Valent": "啟動 KDE Connect 或 Valent" - }, "Start KDE Connect or Valent to use this plugin": { "Start KDE Connect or Valent to use this plugin": "啟動 KDE Connect 或 Valent 以使用此外掛" }, @@ -7838,9 +7451,6 @@ "Stripes": { "Stripes": "條紋" }, - "Subtle Overlay": { - "Subtle Overlay": "" - }, "Summary": { "Summary": "摘要" }, @@ -8045,20 +7655,11 @@ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": { "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "終端機回退失敗。請安裝受支援的終端模擬器之一,或手動執行 'dms greeter sync'。" }, - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "終端機備用已開啟。請在那裡完成身份驗證設定;完成後它會自動關閉。" + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": { + "Terminal fallback opened. Complete authentication there; it will close automatically when done.": "" }, - "Terminal fallback opened. Complete sync there; it will close automatically when done.": { - "Terminal fallback opened. Complete sync there; it will close automatically when done.": "終端機回退已開啟。請在那裡完成同步;完成後它將自動關閉。" - }, - "Terminal multiplexer backend to use": { - "Terminal multiplexer backend to use": "要使用的終端多工器後端" - }, - "Terminal opened. Complete authentication setup there; it will close automatically when done.": { - "Terminal opened. Complete authentication setup there; it will close automatically when done.": "終端機已開啟。請在那裡完成身份驗證設定;完成後它會自動關閉。" - }, - "Terminal opened. Complete sync authentication there; it will close automatically when done.": { - "Terminal opened. Complete sync authentication there; it will close automatically when done.": "終端機已開啟。請在那裡完成同步驗證;完成後它將自動關閉。" + "Terminal opened. Complete authentication there; it will close automatically when done.": { + "Terminal opened. Complete authentication there; it will close automatically when done.": "" }, "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "終端 - 始終使用深色主題" @@ -8093,9 +7694,6 @@ "Text Rendering": { "Text Rendering": "文字渲染" }, - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": { - "The 'boregard' tool is not installed or not on your PATH.\n\nInstall it from https://danklinux.com, then re-enable this plugin.": "" - }, "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": { "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.": "系統監控需要 'dgop' 工具。\n請安裝 dgop 以使用此功能。" }, @@ -8156,20 +7754,8 @@ "This device": { "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.": "此安裝仍在使用 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.": "此安裝仍在使用 hyprland.conf。在編輯顯示設定前,請執行 dms setup 進行遷移。" - }, - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.": { - "This install is still using hyprland.conf. Run dms setup to migrate before editing layout 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.": "此安裝仍在使用 hyprland.conf。在編輯設定中的視窗規則前,請執行 dms setup 進行遷移。" + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": { + "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.": "" }, "This may take a few seconds": { "This may take a few seconds": "這可能需要幾秒鐘" @@ -8201,15 +7787,9 @@ "Tile": { "Tile": "拼貼" }, - "Tile H": { - "Tile H": "水平拼貼" - }, "Tile Horizontally": { "Tile Horizontally": "" }, - "Tile V": { - "Tile V": "垂直拼貼" - }, "Tile Vertically": { "Tile Vertically": "" }, @@ -8252,14 +7832,8 @@ "Timeout Progress Bar": { "Timeout Progress Bar": "" }, - "Timeout for critical priority notifications": { - "Timeout for critical priority notifications": "緊急優先級通知的超時" - }, - "Timeout for low priority notifications": { - "Timeout for low priority notifications": "低優先級通知的超時" - }, - "Timeout for normal priority notifications": { - "Timeout for normal priority notifications": "正常優先級通知的超時" + "Timeouts": { + "Timeouts": "" }, "Tint Saturation": { "Tint Saturation": "著色飽和度" @@ -8375,15 +7949,6 @@ "Transparency": { "Transparency": "透明度" }, - "Transparency of the border": { - "Transparency of the border": "邊框透明度" - }, - "Transparency of the shadow layer": { - "Transparency of the shadow layer": "陰影層透明度" - }, - "Transparency of the widget outline": { - "Transparency of the widget outline": "小工具輪廓透明度" - }, "Trash": { "Trash": "垃圾桶" }, @@ -8555,9 +8120,6 @@ "Unpin from Dock": { "Unpin from Dock": "取消 Dock 釘選" }, - "Unsaved Changes": { - "Unsaved Changes": "未儲存變更" - }, "Unsaved changes": { "Unsaved changes": "未儲存變更" }, @@ -8609,9 +8171,6 @@ "Uptime": { "Uptime": "開機時間" }, - "Uptime:": { - "Uptime:": "開機時間:" - }, "Urgent": { "Urgent": "緊急" }, @@ -8681,9 +8240,6 @@ "Use colors extracted from album art instead of system theme colors": { "Use colors extracted from album art instead of system theme colors": "" }, - "Use custom border size": { - "Use custom border size": "使用自訂邊框大小" - }, "Use custom border/focus-ring width": { "Use custom border/focus-ring width": "使用自訂邊框/焦點環寬度" }, @@ -8720,12 +8276,12 @@ "Use sound theme from system settings": { "Use sound theme from system settings": "使用系統設定中的音效主題" }, + "Use system PAM authentication": { + "Use system PAM authentication": "" + }, "Use the extended surface for launcher content": { "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 same position and size on all displays": { "Use the same position and size on all displays": "在所有螢幕上使用相同的位置與大小" }, @@ -8975,6 +8531,9 @@ "When locked": { "When locked": "鎖定時" }, + "Which PAM service the lock screen uses to authenticate": { + "Which PAM service the lock screen uses to authenticate": "" + }, "White": { "White": "" }, @@ -9083,12 +8642,6 @@ "Window Rules": { "Window Rules": "視窗規則" }, - "Window Rules Include Missing": { - "Window Rules Include Missing": "視窗規則包含遺失項目" - }, - "Window Rules Not Configured": { - "Window Rules Not Configured": "視窗規則未設定" - }, "Wipe": { "Wipe": "清除" }, @@ -9098,9 +8651,6 @@ "Workspace": { "Workspace": "工作區" }, - "Workspace Appearance": { - "Workspace Appearance": "工作區外觀" - }, "Workspace Index Numbers": { "Workspace Index Numbers": "工作區編號" }, @@ -9110,9 +8660,6 @@ "Workspace Padding": { "Workspace Padding": "工作區內距" }, - "Workspace Settings": { - "Workspace Settings": "工作區設定" - }, "Workspace Switcher": { "Workspace Switcher": "工作區切換器" }, @@ -9161,18 +8708,9 @@ "Yesterday": { "Yesterday": "昨天" }, - "You have unsaved changes. Save before closing this tab?": { - "You have unsaved changes. Save before closing this tab?": "您有未儲存的變更。是否要儲存?" - }, "You have unsaved changes. Save before continuing?": { "You have unsaved changes. Save before continuing?": "您有未儲存的變更。是否先保存再繼續?" }, - "You have unsaved changes. Save before creating a new file?": { - "You have unsaved changes. Save before creating a new file?": "您有未儲存的變更。是否先保存再創新檔案?" - }, - "You have unsaved changes. Save before opening a file?": { - "You have unsaved changes. Save before opening a file?": "您有未儲存的變更。是否先保存再開檔案?" - }, "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.": { "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。" }, @@ -9191,18 +8729,12 @@ "Your system is up to date!": { "Your system is up to date!": "您的系統是最新版本!" }, - "actions": { - "actions": "動作" - }, "admin": { "admin": "管理員" }, "attached": { "attached": "已附加" }, - "boregard is required": { - "boregard is required": "" - }, "brandon": { "brandon": "布蘭登" }, @@ -9236,9 +8768,6 @@ "device": { "device": "裝置" }, - "devices connected": { - "devices connected": "已連接裝置" - }, "dgop not available": { "dgop not available": "dgop 無法使用" }, @@ -9248,6 +8777,9 @@ "discuss": { "discuss": "" }, + "display rotation option": { + "Normal": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms 是一個高度可自訂的現代桌面外殼,其設計靈感來自 material 3

它使用 Quickshell(一個用於構建桌面外殼的 QT6 框架)和 Go(一種靜態類型、編譯式程式語言)構建。" }, @@ -9308,11 +8840,8 @@ "mangowc GitHub": { "mangowc GitHub": "mangowc GitHub" }, - "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 無法使用或已停用 - 無法套用 Qt 顏色" + "matugen not available or disabled - cannot apply %1 colors": { + "matugen not available or disabled - cannot apply %1 colors": "" }, "matugen not found - install matugen package for dynamic theming": { "matugen not found - install matugen package for dynamic theming": "找不到 matugen - 請安裝 matugen 套件以實現動態主題" @@ -9326,6 +8855,9 @@ "nav": { "nav": "導覽" }, + "network security type": { + "Open": "" + }, "niri GitHub": { "niri GitHub": "niri GitHub" }, @@ -9368,15 +8900,15 @@ "on Sway": { "on Sway": "在 Sway 上" }, - "open": { - "open": "開啟" - }, "or run ": { "or run ": "或執行 " }, "power-profiles-daemon not available": { "power-profiles-daemon not available": "power-profiles-daemon 不可用" }, + "primary network connection label": { + "Primary": "" + }, "procs": { "procs": "處理程序" }, @@ -9431,9 +8963,6 @@ "v%1 by %2": { "v%1 by %2": "v%1 由 %2" }, - "verified": { - "verified": "" - }, "• Install only from trusted sources": { "• Install only from trusted sources": "• 僅從受信任的來源安裝" }, diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index ea0c47960..862a0e244 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -396,7 +396,6 @@ "appearance", "background", "bg", - "configure", "custom", "customize", "desktop", @@ -407,10 +406,8 @@ "personalization", "picture", "screen", - "select", "wallpaper" - ], - "description": "Select monitor to configure wallpaper" + ] }, { "section": "useAutoLocation", @@ -463,19 +460,12 @@ "calendar", "clock", "date", - "day", "forecast", "format", - "month", - "number", - "show", "time", - "weather", - "week", - "year" + "weather" ], - "icon": "calendar_today", - "description": "Show week number in the calendar" + "icon": "calendar_today" }, { "section": "weatherEnabled", @@ -567,18 +557,12 @@ "keywords": [ "clock", "date", - "display", "forecast", - "monitor", - "output", - "screen", "seconds", "show", "time", - "watch", "weather" - ], - "description": "Display seconds in the clock" + ] }, { "section": "showWeekNumber", @@ -586,20 +570,15 @@ "tabIndex": 1, "category": "Time & Weather", "keywords": [ - "calendar", "clock", "date", - "day", "forecast", - "month", "number", "show", "time", "weather", - "week", - "year" - ], - "description": "Show week number in the calendar" + "week" + ] }, { "section": "_tab_1", @@ -758,7 +737,7 @@ }, { "section": "barConfigurations", - "label": "Bar Configurations", + "label": "Configurations", "tabIndex": 3, "category": "Dank Bar", "keywords": [ @@ -770,7 +749,6 @@ "panel", "setup", "statusbar", - "taskbar", "topbar" ], "icon": "dashboard" @@ -894,6 +872,33 @@ "icon": "visibility", "description": "Automatically hide the bar when the pointer moves away" }, + { + "section": "workspaceAppearance", + "label": "Appearance", + "tabIndex": 4, + "category": "Dank Bar", + "keywords": [ + "appearance", + "around", + "bar", + "color", + "custom", + "dank", + "desktop", + "focused", + "indicator", + "outline", + "panel", + "ring", + "show", + "statusbar", + "topbar", + "virtual", + "workspace" + ], + "icon": "palette", + "description": "Show an outline ring around the focused workspace indicator" + }, { "section": "workspaceDragReorder", "label": "Drag to Reorder", @@ -994,6 +999,32 @@ "description": "Show workspaces of the currently focused monitor", "conditionKey": "isNiri" }, + { + "section": "workspaceSettings", + "label": "General", + "tabIndex": 4, + "category": "Dank Bar", + "keywords": [ + "bar", + "dank", + "desktop", + "general", + "index", + "labels", + "numbers", + "panel", + "show", + "statusbar", + "switcher", + "taskbar", + "topbar", + "virtual", + "workspace" + ], + "icon": "view_module", + "description": "Show workspace index numbers in the top bar workspace switcher", + "conditionKey": "isNiri" + }, { "section": "groupActiveWorkspaceApps", "label": "Group Active Workspace", @@ -1240,33 +1271,6 @@ "description": "Display application icons in workspace indicators", "conditionKey": "isNiri" }, - { - "section": "workspaceAppearance", - "label": "Workspace Appearance", - "tabIndex": 4, - "category": "Dank Bar", - "keywords": [ - "appearance", - "around", - "bar", - "color", - "custom", - "dank", - "desktop", - "focused", - "indicator", - "outline", - "panel", - "ring", - "show", - "statusbar", - "topbar", - "virtual", - "workspace" - ], - "icon": "palette", - "description": "Show an outline ring around the focused workspace indicator" - }, { "section": "showWorkspaceIndex", "label": "Workspace Index Numbers", @@ -1343,32 +1347,6 @@ ], "description": "Always show a minimum of 3 workspaces, even if fewer are available" }, - { - "section": "workspaceSettings", - "label": "Workspace Settings", - "tabIndex": 4, - "category": "Dank Bar", - "keywords": [ - "bar", - "dank", - "desktop", - "index", - "labels", - "numbers", - "panel", - "settings", - "show", - "statusbar", - "switcher", - "taskbar", - "topbar", - "virtual", - "workspace" - ], - "icon": "view_module", - "description": "Show workspace index numbers in the top bar workspace switcher", - "conditionKey": "isNiri" - }, { "section": "_tab_4", "label": "Workspaces", @@ -1499,39 +1477,6 @@ ], "icon": "shelf_auto_hide" }, - { - "section": "dockVisibility", - "label": "Dock Visibility", - "tabIndex": 5, - "category": "Dock", - "keywords": [ - "app", - "applications", - "apps", - "auto-hide", - "autohide", - "display", - "dock", - "enable", - "hidden", - "hide", - "launcher bar", - "monitor", - "output", - "panel", - "pinned", - "program", - "programs", - "running", - "screen", - "show", - "taskbar", - "visibility", - "visible" - ], - "icon": "dock_to_bottom", - "description": "Display a dock with pinned and running applications" - }, { "section": "dockGroupByApp", "label": "Group by App", @@ -1811,24 +1756,15 @@ "tabIndex": 5, "category": "Dock", "keywords": [ - "active", "badge", "count", - "displays", "dock", "indicator", "launcher bar", - "monitor", - "monitors", - "output", - "outputs", "overflow", - "screen", - "screens", "show", "taskbar" - ], - "description": "Displays count when overflow is active" + ] }, { "section": "dockShowTrash", @@ -1952,6 +1888,39 @@ ], "description": "Place the dock on the Wayland overlay layer" }, + { + "section": "dockVisibility", + "label": "Visibility", + "tabIndex": 5, + "category": "Dock", + "keywords": [ + "app", + "applications", + "apps", + "auto-hide", + "autohide", + "display", + "dock", + "enable", + "hidden", + "hide", + "launcher bar", + "monitor", + "output", + "panel", + "pinned", + "program", + "programs", + "running", + "screen", + "show", + "taskbar", + "visibility", + "visible" + ], + "icon": "dock_to_bottom", + "description": "Display a dock with pinned and running applications" + }, { "section": "barBorder", "label": "Border", @@ -2103,18 +2072,14 @@ "tabIndex": 6, "category": "Dank Bar", "keywords": [ - "background", "bar", - "controls", "dank", "opacity", "panel", "statusbar", - "taskbar", "topbar" ], - "icon": "opacity", - "description": "Controls opacity of the bar background" + "icon": "opacity" }, { "section": "barShadow", @@ -2241,20 +2206,15 @@ }, { "section": "networkStatus", - "label": "Network Status", + "label": "Status", "tabIndex": 7, "category": "Network", "keywords": [ - "connection", "connectivity", - "ethernet", "internet", "network", "online", - "status", - "wi-fi", - "wifi", - "wireless" + "status" ], "icon": "lan" }, @@ -2387,18 +2347,14 @@ "drawer", "full", "launcher", - "layer", "menu", "minimal", - "opening", - "overlay", "spotlight", "start", "start menu", "style" ], - "icon": "search", - "description": "Use the overlay layer when opening the launcher" + "icon": "search" }, { "section": "launcherStyleSelector", @@ -3000,20 +2956,14 @@ "tabIndex": 9, "category": "Launcher", "keywords": [ - "app drawer", - "app menu", - "applications", "drawer", "fullscreen", "launcher", "layer", "menu", - "opening", "overlay", - "start", - "start menu" - ], - "description": "Use the overlay layer when opening the launcher" + "start" + ] }, { "section": "matugenTemplateAlacritty", @@ -4047,7 +3997,6 @@ "keywords": [ "appearance", "colors", - "controls", "elevation", "look", "m3", @@ -4057,8 +4006,7 @@ "style", "theme", "transparency" - ], - "description": "Controls the opacity of the shadow" + ] }, { "section": "m3ElevationEnabled", @@ -4634,6 +4582,29 @@ "zenbrowser" ] }, + { + "section": "lockAppearance", + "label": "Appearance", + "tabIndex": 11, + "category": "Lock Screen", + "keywords": [ + "appearance", + "clock", + "date", + "font", + "lock", + "lockscreen", + "login", + "password", + "screen", + "security", + "time", + "typography", + "watch" + ], + "icon": "palette", + "description": "Font used for the clock and date on the lock screen" + }, { "section": "lockAuthSource", "label": "Authentication", @@ -4702,6 +4673,48 @@ ], "description": "Pick a different random video each time from the same folder" }, + { + "section": "lockBehavior", + "label": "Behavior", + "tabIndex": 11, + "category": "Lock Screen", + "keywords": [ + "behavior", + "bind", + "dbus", + "disable", + "external", + "integration", + "lock", + "lockscreen", + "login", + "loginctl", + "password", + "screen", + "security", + "signals" + ], + "icon": "lock", + "description": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen" + }, + { + "section": "lockDisplay", + "label": "Display Assignment", + "tabIndex": 11, + "category": "Lock Screen", + "keywords": [ + "assignment", + "display", + "lock", + "login", + "monitor", + "output", + "password", + "screen", + "security" + ], + "icon": "monitor" + }, { "section": "lockScreenVideoEnabled", "label": "Enable Video Screensaver", @@ -4792,6 +4805,31 @@ ], "description": "Managed by the primary PAM source." }, + { + "section": "lockLayout", + "label": "Layout", + "tabIndex": 11, + "category": "Lock Screen", + "keywords": [ + "actions", + "appear", + "field", + "hidden", + "layout", + "lock", + "login", + "password", + "power", + "pressed", + "reboot", + "screen", + "security", + "shutdown", + "soon" + ], + "icon": "lock", + "description": "If the field is hidden, it will appear as soon as a key is pressed." + }, { "section": "_tab_11", "label": "Lock Screen", @@ -4807,97 +4845,6 @@ ], "icon": "lock" }, - { - "section": "lockAppearance", - "label": "Lock Screen Appearance", - "tabIndex": 11, - "category": "Lock Screen", - "keywords": [ - "appearance", - "clock", - "date", - "font", - "lock", - "lockscreen", - "login", - "password", - "screen", - "security", - "time", - "typography", - "watch" - ], - "icon": "palette", - "description": "Font used for the clock and date on the lock screen" - }, - { - "section": "lockDisplay", - "label": "Lock Screen Display", - "tabIndex": 11, - "category": "Lock Screen", - "keywords": [ - "display", - "lock", - "lockscreen", - "login", - "monitor", - "output", - "password", - "screen", - "security" - ], - "icon": "monitor" - }, - { - "section": "lockBehavior", - "label": "Lock Screen behaviour", - "tabIndex": 11, - "category": "Lock Screen", - "keywords": [ - "behaviour", - "bind", - "dbus", - "disable", - "external", - "integration", - "lock", - "lockscreen", - "login", - "loginctl", - "password", - "screen", - "security", - "signals" - ], - "icon": "lock", - "description": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen" - }, - { - "section": "lockLayout", - "label": "Lock Screen layout", - "tabIndex": 11, - "category": "Lock Screen", - "keywords": [ - "actions", - "appear", - "field", - "hidden", - "layout", - "lock", - "lockscreen", - "login", - "password", - "power", - "pressed", - "reboot", - "screen", - "security", - "shutdown", - "soon" - ], - "icon": "lock", - "description": "If the field is hidden, it will appear as soon as a key is pressed." - }, { "section": "lockAtStartup", "label": "Lock at startup", @@ -5214,10 +5161,8 @@ "policy", "screen", "security", - "sets", "system" - ], - "description": "System PAM sets the authentication policy." + ] }, { "section": "videoScreensaver", @@ -5278,7 +5223,6 @@ "animate", "animation", "animations", - "custom", "duration", "fonts", "modal", @@ -5289,8 +5233,7 @@ "transition", "typography" ], - "icon": "web_asset", - "description": "%1 custom animation duration" + "icon": "web_asset" }, { "section": "popoutAnimationSpeed", @@ -5301,7 +5244,6 @@ "animate", "animation", "animations", - "custom", "duration", "fonts", "motion", @@ -5312,8 +5254,7 @@ "transition", "typography" ], - "icon": "open_in_new", - "description": "%1 custom animation duration" + "icon": "open_in_new" }, { "section": "customAnimationDuration", @@ -5389,9 +5330,7 @@ "tabIndex": 14, "category": "Typography & Motion", "keywords": [ - "animate", "animation", - "animations", "custom", "duration", "fonts", @@ -5399,10 +5338,8 @@ "motion", "speed", "text", - "transition", "typography" - ], - "description": "%1 custom animation duration" + ] }, { "section": "popoutCustomAnimationDuration", @@ -5410,9 +5347,7 @@ "tabIndex": 14, "category": "Typography & Motion", "keywords": [ - "animate", "animation", - "animations", "custom", "duration", "fonts", @@ -5420,10 +5355,8 @@ "popout", "speed", "text", - "transition", "typography" - ], - "description": "%1 custom animation duration" + ] }, { "section": "fontScale", @@ -5651,14 +5584,11 @@ "audio", "effects", "enable", - "events", - "play", "sfx", "sound", "sounds", "system" - ], - "description": "Play sounds for system events" + ] }, { "section": "soundLogin", @@ -5766,10 +5696,8 @@ "sound", "sounds", "style", - "system", "theme" - ], - "description": "Select system sound theme" + ] }, { "section": "_tab_15", @@ -5791,18 +5719,23 @@ "tabIndex": 15, "category": "Sounds", "keywords": [ + "appearance", "audio", + "colors", + "colour", "effects", - "events", + "look", "notification", - "play", + "settings", "sfx", "sound", "sounds", + "style", "system", + "theme", "volume" ], - "description": "Play sounds for system events", + "description": "Use sound theme from system settings", "conditionKey": "soundsAvailable" }, { @@ -5849,24 +5782,48 @@ }, { "section": "mediaExcludePlayers", - "label": "Excluded Media Players", + "label": "Excluded Players", "tabIndex": 16, "category": "Media Player", "keywords": [ - "audio", "exclude", "excluded", "ignore", "media", "mpris", "music", - "playback", "player", "players", "spotify" ], "icon": "do_not_disturb_on" }, + { + "section": "mediaPlayer", + "label": "General", + "tabIndex": 16, + "category": "Media Player", + "keywords": [ + "animated", + "bars", + "general", + "media", + "mpris", + "music", + "panel", + "playback", + "player", + "progress", + "scroll", + "spotify", + "statusbar", + "taskbar", + "topbar", + "wave" + ], + "icon": "music_note", + "description": "Use animated wave progress bars for media playback" + }, { "section": "_tab_16", "label": "Media Player", @@ -5883,33 +5840,6 @@ ], "icon": "music_note" }, - { - "section": "mediaPlayer", - "label": "Media Player Settings", - "tabIndex": 16, - "category": "Media Player", - "keywords": [ - "animated", - "audio", - "bars", - "media", - "mpris", - "music", - "panel", - "playback", - "player", - "progress", - "scroll", - "settings", - "spotify", - "statusbar", - "taskbar", - "topbar", - "wave" - ], - "icon": "music_note", - "description": "Use animated wave progress bars for media playback" - }, { "section": "audioScrollMode", "label": "Scroll Wheel", @@ -5997,20 +5927,16 @@ "tabIndex": 17, "category": "Notifications", "keywords": [ - "alert", "alerts", "critical", "duration", "messages", - "notif", "notification", "notifications", - "notifs", "priority", "timeout", "toast" - ], - "description": "Timeout for critical priority notifications" + ] }, { "section": "doNotDisturb", @@ -6090,23 +6016,17 @@ "category": "Notifications", "keywords": [ "active", - "alert", "alerts", - "currently", "display", "focused", "messages", "monitor", - "notif", "notification", "notifications", "popup", - "popups", "screen", - "show", "toast" - ], - "description": "Show notification popups only on the currently focused monitor" + ] }, { "section": "notificationHistoryMaxAgeDays", @@ -6211,20 +6131,16 @@ "tabIndex": 17, "category": "Notifications", "keywords": [ - "alert", "alerts", "duration", "low", "messages", - "notif", "notification", "notifications", - "notifs", "priority", "timeout", "toast" - ], - "description": "Timeout for low priority notifications" + ] }, { "section": "notificationHistoryMaxCount", @@ -6296,20 +6212,16 @@ "tabIndex": 17, "category": "Notifications", "keywords": [ - "alert", "alerts", "duration", "messages", "normal", - "notif", "notification", "notifications", - "notifs", "priority", "timeout", "toast" - ], - "description": "Timeout for normal priority notifications" + ] }, { "section": "notificationOverlayEnabled", @@ -6337,73 +6249,6 @@ ], "description": "Display all priorities over fullscreen apps" }, - { - "section": "notificationPopups", - "label": "Notification Popups", - "tabIndex": 17, - "category": "Notifications", - "keywords": [ - "alert", - "alerts", - "font", - "messages", - "notif", - "notification", - "notifications", - "popups", - "size", - "summary", - "text", - "toast" - ], - "icon": "notifications", - "description": "Set the font size for notification summary text" - }, - { - "section": "notificationRules", - "label": "Notification Rules", - "tabIndex": 17, - "category": "Notifications", - "keywords": [ - "alert", - "alerts", - "history", - "ignore", - "messages", - "mute", - "notif", - "notification", - "notifications", - "priority", - "regex", - "rules", - "toast" - ], - "icon": "rule_settings" - }, - { - "section": "notificationTimeouts", - "label": "Notification Timeouts", - "tabIndex": 17, - "category": "Notifications", - "keywords": [ - "alert", - "alerts", - "duration", - "low", - "messages", - "notif", - "notification", - "notifications", - "notifs", - "priority", - "timeout", - "timeouts", - "toast" - ], - "icon": "timer", - "description": "Timeout for low priority notifications" - }, { "section": "_tab_17", "label": "Notifications", @@ -6480,6 +6325,29 @@ ], "description": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors." }, + { + "section": "notificationPopups", + "label": "Popups", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "body", + "font", + "messages", + "notif", + "notification", + "notifications", + "popups", + "size", + "summary", + "text", + "toast" + ], + "icon": "notifications", + "description": "Set the font size for notification body text (htmlBody)" + }, { "section": "notificationPopupPrivacyMode", "label": "Privacy Mode", @@ -6507,25 +6375,41 @@ ], "description": "Hide notification content until expanded; popups show collapsed by default" }, + { + "section": "notificationRules", + "label": "Rules", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alerts", + "history", + "ignore", + "messages", + "mute", + "notification", + "notifications", + "priority", + "regex", + "rules", + "toast" + ], + "icon": "rule_settings" + }, { "section": "notificationSummaryFontSize", "label": "Summary Font Size", "tabIndex": 17, "category": "Notifications", "keywords": [ - "alert", "alerts", "font", "messages", - "notif", "notification", "notifications", "size", "summary", - "text", "toast" - ], - "description": "Set the font size for notification summary text" + ] }, { "section": "notificationDedupeEnabled", @@ -6580,6 +6464,25 @@ ], "description": "Show a bar that drains as the popup" }, + { + "section": "notificationTimeouts", + "label": "Timeouts", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alerts", + "duration", + "low", + "messages", + "notification", + "notifications", + "priority", + "timeout", + "timeouts", + "toast" + ], + "icon": "timer" + }, { "section": "osdAlwaysShowValue", "label": "Always Show Percentage", @@ -6618,20 +6521,14 @@ "category": "On-screen Displays", "keywords": [ "audio", - "cycling", - "devices", - "display", "displays", "indicator", - "monitor", "osd", "output", "popup", "screen", - "show", "switch" - ], - "description": "Show on-screen display when cycling audio output devices" + ] }, { "section": "osdBrightnessEnabled", @@ -6642,19 +6539,13 @@ "backlight", "bright", "brightness", - "changes", "dim", - "display", "displays", "indicator", - "monitor", "osd", - "output", "popup", - "screen", - "show" - ], - "description": "Show on-screen display when brightness changes" + "screen" + ] }, { "section": "osdCapsLockEnabled", @@ -6663,20 +6554,13 @@ "category": "On-screen Displays", "keywords": [ "caps", - "changes", - "display", "displays", "indicator", "lock", - "monitor", "osd", - "output", "popup", - "screen", - "show", - "state" - ], - "description": "Show on-screen display when caps lock state changes" + "screen" + ] }, { "section": "osdIdleInhibitorEnabled", @@ -6685,24 +6569,17 @@ "category": "On-screen Displays", "keywords": [ "afk", - "changes", - "display", "displays", "idle", "inactive", "indicator", "inhibitor", - "monitor", "osd", - "output", "popup", "screen", "screensaver", - "show", - "state", "timeout" - ], - "description": "Show on-screen display when idle inhibitor state changes" + ] }, { "section": "osdMediaPlaybackEnabled", @@ -6710,25 +6587,14 @@ "tabIndex": 18, "category": "On-screen Displays", "keywords": [ - "audio", - "changes", - "display", "displays", "indicator", "media", - "monitor", - "mpris", - "music", "osd", - "output", "playback", - "player", "popup", - "screen", - "show", - "status" - ], - "description": "Show on-screen display when media player status changes" + "screen" + ] }, { "section": "osdMediaVolumeEnabled", @@ -6737,27 +6603,17 @@ "category": "On-screen Displays", "keywords": [ "audio", - "changes", - "display", "displays", "indicator", "loudness", "media", - "monitor", - "mpris", - "music", "osd", - "output", - "playback", - "player", "popup", "screen", - "show", "sound", "speaker", "volume" - ], - "description": "Show on-screen display when media player volume changes" + ] }, { "section": "osdMicMuteEnabled", @@ -6765,21 +6621,14 @@ "tabIndex": 18, "category": "On-screen Displays", "keywords": [ - "display", "displays", "indicator", "microphone", - "monitor", "mute", - "muted", "osd", - "output", "popup", - "screen", - "show", - "unmuted" - ], - "description": "Show on-screen display when microphone is muted/unmuted" + "screen" + ] }, { "section": "osdPosition", @@ -6833,26 +6682,20 @@ "tabIndex": 18, "category": "On-screen Displays", "keywords": [ - "changes", - "display", "displays", "hibernate", "indicator", - "monitor", "osd", - "output", "popup", "power", "profile", "reboot", "restart", "screen", - "show", "shutdown", "sleep", "suspend" - ], - "description": "Show on-screen display when power profile changes" + ] }, { "section": "osdVolumeEnabled", @@ -6861,22 +6704,16 @@ "category": "On-screen Displays", "keywords": [ "audio", - "changes", - "display", "displays", "indicator", "loudness", - "monitor", "osd", - "output", "popup", "screen", - "show", "sound", "speaker", "volume" - ], - "description": "Show on-screen display when volume changes" + ] }, { "section": "appIdSubstitutions", @@ -7554,19 +7391,14 @@ "category": "System", "keywords": [ "clipboard", - "cliphist", - "copy", "entry", - "history", "limit", "linux", "maximum", "os", - "paste", "size", "system" - ], - "description": "Maximum size per clipboard entry" + ] }, { "section": "maxPinned", @@ -7666,22 +7498,17 @@ "keywords": [ "celsius", "color", - "colour", "day", "displays", "fahrenheit", "gamma", - "hue", "kelvin", "monitor", "resolution", "screen", "temp", - "temperature", - "time", - "tint" - ], - "description": "Color temperature for day time" + "temperature" + ] }, { "section": "_tab_25", @@ -7816,6 +7643,22 @@ ], "icon": "memory" }, + { + "section": "locale", + "label": "General", + "tabIndex": 30, + "category": "Locale", + "keywords": [ + "change", + "country", + "general", + "interface", + "language", + "locale" + ], + "icon": "language", + "description": "Change the locale used by the DMS interface." + }, { "section": "_tab_30", "label": "Locale", @@ -7828,22 +7671,6 @@ ], "icon": "language" }, - { - "section": "locale", - "label": "Locale Settings", - "tabIndex": 30, - "category": "Locale", - "keywords": [ - "change", - "country", - "interface", - "language", - "locale", - "settings" - ], - "icon": "language", - "description": "Change the locale used by the DMS interface." - }, { "section": "timeLocale", "label": "Time & Date Locale", @@ -7864,6 +7691,47 @@ ], "description": "Change the locale used for date and time formatting, independent of the interface language." }, + { + "section": "greeterAppearance", + "label": "Appearance", + "tabIndex": 31, + "category": "Greeter", + "keywords": [ + "appearance", + "display manager", + "font", + "greetd", + "greeter", + "login", + "screen", + "typography" + ], + "icon": "palette", + "description": "Font used on the login screen" + }, + { + "section": "greeterAuth", + "label": "Authentication", + "tabIndex": 31, + "category": "Greeter", + "keywords": [ + "auth", + "authentication", + "block", + "display manager", + "external", + "greetd", + "greeter", + "login", + "managed", + "pam", + "removes", + "stops", + "writing" + ], + "icon": "fingerprint", + "description": "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it" + }, { "section": "greeterAutoLogin", "label": "Auto-login on startup", @@ -7897,6 +7765,25 @@ ], "description": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync." }, + { + "section": "greeterBehavior", + "label": "Behavior", + "tabIndex": 31, + "category": "Greeter", + "keywords": [ + "behavior", + "display manager", + "greetd", + "greeter", + "last", + "login", + "remember", + "select", + "session" + ], + "icon": "history", + "description": "Pre-select the last used session on the greeter" + }, { "section": "greeterLockDateFormat", "label": "Date Format", @@ -7974,57 +7861,6 @@ ], "icon": "login" }, - { - "section": "greeterAppearance", - "label": "Greeter Appearance", - "tabIndex": 31, - "category": "Greeter", - "keywords": [ - "appearance", - "display manager", - "font", - "greetd", - "greeter", - "login", - "screen", - "typography" - ], - "icon": "palette", - "description": "Font used on the login screen" - }, - { - "section": "greeterBehavior", - "label": "Greeter Behavior", - "tabIndex": 31, - "category": "Greeter", - "keywords": [ - "behavior", - "display manager", - "greetd", - "greeter", - "last", - "login", - "remember", - "select", - "session" - ], - "icon": "history", - "description": "Pre-select the last used session on the greeter" - }, - { - "section": "greeterStatus", - "label": "Greeter Status", - "tabIndex": 31, - "category": "Greeter", - "keywords": [ - "display manager", - "greetd", - "greeter", - "login", - "status" - ], - "icon": "info" - }, { "section": "greeterFontFamily", "label": "Greeter font", @@ -8041,29 +7877,6 @@ ], "description": "Font used on the login screen" }, - { - "section": "greeterAuth", - "label": "Login Authentication", - "tabIndex": 31, - "category": "Greeter", - "keywords": [ - "auth", - "authentication", - "block", - "display manager", - "external", - "greetd", - "greeter", - "login", - "managed", - "pam", - "removes", - "stops", - "writing" - ], - "icon": "fingerprint", - "description": "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it" - }, { "section": "greeterRememberLastSession", "label": "Remember last session", @@ -8100,6 +7913,20 @@ ], "description": "Pre-fill the last successful username on the greeter" }, + { + "section": "greeterStatus", + "label": "Status", + "tabIndex": 31, + "category": "Greeter", + "keywords": [ + "display manager", + "greetd", + "greeter", + "login", + "status" + ], + "icon": "info" + }, { "section": "greeterPamExternallyManaged", "label": "Use system PAM authentication", @@ -8125,11 +7952,11 @@ }, { "section": "muxType", - "label": "Multiplexer", + "label": "General", "tabIndex": 32, "category": "Multiplexers", "keywords": [ - "backend", + "general", "multiplexer", "multiplexers", "mux", @@ -8138,8 +7965,7 @@ "type", "zellij" ], - "icon": "terminal", - "description": "Terminal multiplexer backend to use" + "icon": "terminal" }, { "section": "_tab_32", @@ -8425,28 +8251,17 @@ "description": "Reveal the arcs where surfaces meet the frame" }, { - "section": "frameEnabled", + "section": "_tab_33", "label": "Frame", "tabIndex": 33, "category": "Frame", "keywords": [ - "around", "border", - "connected", "decoration", - "display", - "draw", - "entire", "frame", - "monitor", - "outline", - "output", - "picture", - "screen", "window" ], - "icon": "frame_source", - "description": "Draw a connected picture-frame border around the entire display" + "icon": "frame_source" }, { "section": "frameBlurEnabled", @@ -8470,6 +8285,31 @@ ], "description": "Requires a newer version of Quickshell" }, + { + "section": "frameEnabled", + "label": "General", + "tabIndex": 33, + "category": "Frame", + "keywords": [ + "around", + "border", + "connected", + "decoration", + "display", + "draw", + "entire", + "frame", + "general", + "monitor", + "outline", + "output", + "picture", + "screen", + "window" + ], + "icon": "frame_source", + "description": "Draw a connected picture-frame border around the entire display" + }, { "section": "frameBarIntegration", "label": "Integrations", @@ -8762,6 +8602,114 @@ ], "icon": "line_start" }, + { + "section": "hyprlandLayout", + "label": "%1 Layout Overrides", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "auto", + "border", + "config", + "custom", + "customize", + "gap", + "gaps", + "hyprland", + "layout", + "leaves", + "margin", + "margins", + "matches", + "overrides", + "padding", + "panel", + "personal", + "personalization", + "radius", + "rounding", + "statusbar", + "taskbar", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Auto matches bar spacing; Off leaves gaps to your %1 config", + "conditionKey": "isHyprland" + }, + { + "section": "mangoLayout", + "label": "%1 Layout Overrides", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "auto", + "border", + "config", + "custom", + "customize", + "dwl", + "gap", + "gaps", + "layout", + "leaves", + "mango", + "mangowc", + "margin", + "margins", + "matches", + "overrides", + "padding", + "panel", + "personal", + "personalization", + "radius", + "statusbar", + "taskbar", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Auto matches bar spacing; Off leaves gaps to your %1 config", + "conditionKey": "isMango" + }, + { + "section": "niriLayout", + "label": "%1 Layout Overrides", + "tabIndex": 37, + "category": "Personalization", + "keywords": [ + "appearance", + "auto", + "border", + "config", + "custom", + "customize", + "gap", + "gaps", + "layout", + "leaves", + "margin", + "margins", + "matches", + "niri", + "overrides", + "padding", + "panel", + "personal", + "personalization", + "radius", + "statusbar", + "taskbar", + "topbar", + "window" + ], + "icon": "layers", + "description": "Auto matches bar spacing; Off leaves gaps to your %1 config", + "conditionKey": "isNiri" + }, { "section": "hyprlandLayoutBorderSize", "label": "Border Size", @@ -8915,7 +8863,7 @@ "topbar", "unmanaged" ], - "description": "Auto matches bar spacing; Off leaves gaps to your Hyprland config" + "description": "Auto matches bar spacing; Off leaves gaps to your %1 config" }, { "section": "mangoLayoutGapsMode", @@ -8948,7 +8896,7 @@ "topbar", "unmanaged" ], - "description": "Auto matches bar spacing; Off leaves gaps to your MangoWC config" + "description": "Auto matches bar spacing; Off leaves gaps to your %1 config" }, { "section": "niriLayoutGapsMode", @@ -8978,43 +8926,7 @@ "topbar", "unmanaged" ], - "description": "Auto matches bar spacing; Off leaves gaps to your niri config" - }, - { - "section": "hyprlandLayout", - "label": "Hyprland Layout Overrides", - "tabIndex": 37, - "category": "Personalization", - "keywords": [ - "appearance", - "auto", - "border", - "config", - "custom", - "customize", - "gap", - "gaps", - "hyprland", - "layout", - "leaves", - "margin", - "margins", - "matches", - "overrides", - "padding", - "panel", - "personal", - "personalization", - "radius", - "rounding", - "statusbar", - "taskbar", - "topbar", - "window" - ], - "icon": "crop_square", - "description": "Auto matches bar spacing; Off leaves gaps to your Hyprland config", - "conditionKey": "isHyprland" + "description": "Auto matches bar spacing; Off leaves gaps to your %1 config" }, { "section": "hyprlandLayoutGapsOverride", @@ -9059,78 +8971,6 @@ ], "description": "Space between windows" }, - { - "section": "mangoLayout", - "label": "MangoWC Layout Overrides", - "tabIndex": 37, - "category": "Personalization", - "keywords": [ - "appearance", - "auto", - "border", - "config", - "custom", - "customize", - "dwl", - "gap", - "gaps", - "layout", - "leaves", - "mango", - "mangowc", - "margin", - "margins", - "matches", - "overrides", - "padding", - "panel", - "personal", - "personalization", - "radius", - "statusbar", - "taskbar", - "topbar", - "window" - ], - "icon": "crop_square", - "description": "Auto matches bar spacing; Off leaves gaps to your MangoWC config", - "conditionKey": "isMango" - }, - { - "section": "niriLayout", - "label": "Niri Layout Overrides", - "tabIndex": 37, - "category": "Personalization", - "keywords": [ - "appearance", - "auto", - "border", - "config", - "custom", - "customize", - "gap", - "gaps", - "layout", - "leaves", - "margin", - "margins", - "matches", - "niri", - "overrides", - "padding", - "panel", - "personal", - "personalization", - "radius", - "statusbar", - "taskbar", - "topbar", - "window" - ], - "icon": "layers", - "description": "Auto matches bar spacing; Off leaves gaps to your niri config", - "conditionKey": "isNiri" - }, { "section": "hyprlandLayoutGapsOutOverride", "label": "Outer Gaps", @@ -9195,8 +9035,7 @@ "personal", "personalization", "size" - ], - "description": "Use custom border size" + ] }, { "section": "mangoLayoutBorderSizeEnabled", @@ -9214,8 +9053,7 @@ "personal", "personalization", "size" - ], - "description": "Use custom border size" + ] }, { "section": "niriLayoutBorderSizeEnabled", @@ -9598,6 +9436,26 @@ ], "icon": "vpn_key" }, + { + "section": "batteryAlerts", + "label": "Alerts", + "tabIndex": 42, + "category": "Power & Security", + "keywords": [ + "alerts", + "battery", + "charge", + "charging", + "considered", + "low", + "percentage", + "power", + "security", + "warning" + ], + "icon": "notifications", + "description": "Set the percentage at which the battery is considered low." + }, { "section": "batteryAutoPowerSaver", "label": "Auto Power Saver", @@ -9623,24 +9481,6 @@ ], "description": "Automatically turn on Power Saver profile when battery is low." }, - { - "section": "batteryAlerts", - "label": "Battery Alerts", - "tabIndex": 42, - "category": "Power & Security", - "keywords": [ - "alerts", - "battery", - "charge", - "charging", - "considered", - "percentage", - "power", - "security" - ], - "icon": "notifications", - "description": "Set the percentage at which the battery is considered low." - }, { "section": "batteryChargeLimit", "label": "Battery Charge Limit", @@ -9660,42 +9500,6 @@ ], "description": "Limit the maximum battery charge level to extend lifespan." }, - { - "section": "batteryProtection", - "label": "Battery Protection", - "tabIndex": 42, - "category": "Power & Security", - "keywords": [ - "battery", - "charge", - "charging", - "extend", - "level", - "lifespan", - "limit", - "maximum", - "power", - "protection", - "security" - ], - "icon": "tune", - "description": "Limit the maximum battery charge level to extend lifespan." - }, - { - "section": "batteryStatusCard", - "label": "Battery Status", - "tabIndex": 42, - "category": "Power & Security", - "keywords": [ - "battery", - "charge", - "charging", - "power", - "security", - "status" - ], - "icon": "battery_charging_full" - }, { "section": "batteryNotifyCritical", "label": "Critical Battery Notifications", @@ -9919,19 +9723,11 @@ "category": "Power & Security", "keywords": [ "(ac)", - "connected", - "hibernate", "plugged", "power", "profile", - "reboot", - "restart", - "security", - "shutdown", - "sleep", - "suspend" - ], - "description": "Power profile to use when AC power is connected." + "security" + ] }, { "section": "batteryProfileName", @@ -9942,18 +9738,46 @@ "battery", "charge", "charging", - "hibernate", "power", "profile", - "reboot", - "restart", - "running", - "security", - "shutdown", - "sleep", - "suspend" + "security" + ] + }, + { + "section": "batteryProtection", + "label": "Protection", + "tabIndex": 42, + "category": "Power & Security", + "keywords": [ + "battery", + "charge", + "charging", + "extend", + "level", + "lifespan", + "limit", + "maximum", + "power", + "protection", + "security" ], - "description": "Power profile to use when running on battery power." + "icon": "tune", + "description": "Limit the maximum battery charge level to extend lifespan." + }, + { + "section": "batteryStatusCard", + "label": "Status", + "tabIndex": 42, + "category": "Power & Security", + "keywords": [ + "battery", + "charge", + "health", + "power", + "security", + "status" + ], + "icon": "battery_charging_full" }, { "section": "_tab_43", diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index c809fbc34..330c07910 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -2,3031 +2,2975 @@ { "term": "%1 (+%2 more)", "translation": "", - "context": "", + "context": "%1 (+%2 more)", "reference": "", "comment": "" }, { "term": "%1 Animation Speed", "translation": "", - "context": "", + "context": "%1 Animation Speed", + "reference": "", + "comment": "" + }, + { + "term": "%1 Layout Overrides", + "translation": "", + "context": "%1 Layout Overrides", "reference": "", "comment": "" }, { "term": "%1 Sessions", "translation": "", - "context": "", + "context": "%1 Sessions", "reference": "", "comment": "" }, { "term": "%1 Startup Failed", "translation": "", - "context": "", + "context": "%1 Startup Failed", "reference": "", "comment": "" }, { "term": "%1 active session", "translation": "", - "context": "", + "context": "%1 active session", "reference": "", "comment": "" }, { "term": "%1 active sessions", "translation": "", - "context": "", + "context": "%1 active sessions", "reference": "", "comment": "" }, { "term": "%1 adapter, none connected", "translation": "", - "context": "", + "context": "%1 adapter, none connected", "reference": "", "comment": "" }, { "term": "%1 adapters, none connected", "translation": "", - "context": "", + "context": "%1 adapters, none connected", "reference": "", "comment": "" }, { "term": "%1 character", "translation": "", - "context": "", + "context": "%1 character", "reference": "", "comment": "" }, { "term": "%1 characters", "translation": "", - "context": "", + "context": "%1 characters", "reference": "", "comment": "" }, { "term": "%1 connected", "translation": "", - "context": "", + "context": "%1 connected", "reference": "", "comment": "" }, { "term": "%1 copied", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "%1 custom animation duration", - "translation": "", - "context": "", + "context": "%1 copied", "reference": "", "comment": "" }, { "term": "%1 disconnected", "translation": "", - "context": "", + "context": "%1 disconnected", "reference": "", "comment": "" }, { "term": "%1 disconnected (hidden)", "translation": "", - "context": "", + "context": "%1 disconnected (hidden)", "reference": "", "comment": "" }, { "term": "%1 display", "translation": "", - "context": "", + "context": "%1 display", "reference": "", "comment": "" }, { "term": "%1 displays", "translation": "", - "context": "", + "context": "%1 displays", "reference": "", "comment": "" }, { "term": "%1 filtered", "translation": "", - "context": "", + "context": "%1 filtered", "reference": "", "comment": "" }, { "term": "%1 h %2 m left", "translation": "", - "context": "", + "context": "%1 h %2 m left", "reference": "", "comment": "" }, { "term": "%1 h left", "translation": "", - "context": "", + "context": "%1 h left", "reference": "", "comment": "" }, { "term": "%1 is now included in config", "translation": "", - "context": "", + "context": "%1 is now included in config", "reference": "", "comment": "" }, { "term": "%1 issue found", "translation": "", - "context": "greeter doctor page error count", + "context": "%1 issue found", "reference": "", - "comment": "" + "comment": "greeter doctor page error count" }, { "term": "%1 issues found", "translation": "", - "context": "greeter doctor page error count", + "context": "%1 issues found", "reference": "", - "comment": "" + "comment": "greeter doctor page error count" }, { "term": "%1 min left", "translation": "", - "context": "", + "context": "%1 min left", "reference": "", "comment": "" }, { "term": "%1 notifications", "translation": "", - "context": "", + "context": "%1 notifications", "reference": "", "comment": "" }, { "term": "%1 online", "translation": "", - "context": "Number of online Tailscale peers", + "context": "%1 online", "reference": "", - "comment": "" + "comment": "Number of online Tailscale peers" }, { "term": "%1 tasks", "translation": "", - "context": "task count next to a date, %1 is the number of tasks", + "context": "%1 tasks", "reference": "", - "comment": "" + "comment": "task count next to a date, %1 is the number of tasks" }, { "term": "%1 update", "translation": "", - "context": "", + "context": "%1 update", "reference": "", "comment": "" }, { "term": "%1 updates", "translation": "", - "context": "", + "context": "%1 updates", "reference": "", "comment": "" }, { "term": "%1 variants", "translation": "", - "context": "", + "context": "%1 variants", "reference": "", "comment": "" }, { "term": "%1 wallpaper • %2 / %3", "translation": "", - "context": "", + "context": "%1 wallpaper • %2 / %3", "reference": "", "comment": "" }, { "term": "%1 wallpapers • %2 / %3", "translation": "", - "context": "", + "context": "%1 wallpapers • %2 / %3", "reference": "", "comment": "" }, { "term": "%1 widgets", "translation": "", - "context": "", + "context": "%1 widgets", "reference": "", "comment": "" }, { "term": "%1 window", "translation": "", - "context": "", + "context": "%1 window", "reference": "", "comment": "" }, { "term": "%1 windows", "translation": "", - "context": "", + "context": "%1 windows", "reference": "", "comment": "" }, { "term": "%1: %2", "translation": "", - "context": "", + "context": "%1: %2", "reference": "", "comment": "" }, { "term": "%1m ago", "translation": "", - "context": "", + "context": "%1m ago", "reference": "", "comment": "" }, { "term": "%command%", "translation": "", - "context": "", + "context": "%command%", "reference": "", "comment": "" }, { "term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", "translation": "", - "context": "lock screen U2F security key mode setting", + "context": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.", "reference": "", - "comment": "" - }, - { - "term": "(Default)", - "translation": "", - "context": "default monitor label suffix", - "reference": "", - "comment": "" + "comment": "lock screen U2F security key mode setting" }, { "term": "(Unnamed)", "translation": "", - "context": "", + "context": "(Unnamed)", "reference": "", "comment": "" }, { "term": "+ %1 more", "translation": "", - "context": "", + "context": "+ %1 more", "reference": "", "comment": "" }, { "term": "/path/to/videos", "translation": "", - "context": "", + "context": "/path/to/videos", "reference": "", "comment": "" }, { "term": "0 = square corners", "translation": "", - "context": "", + "context": "0 = square corners", "reference": "", "comment": "" }, { "term": "1 day", "translation": "", - "context": "notification history retention option", + "context": "1 day", "reference": "", - "comment": "" + "comment": "notification history retention option" }, { "term": "1 day before", "translation": "", - "context": "", + "context": "1 day before", "reference": "", "comment": "" }, { "term": "1 hour", "translation": "", - "context": "wallpaper interval", + "context": "1 hour", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "1 hour 30 minutes", "translation": "", - "context": "wallpaper interval", + "context": "1 hour 30 minutes", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "1 hour before", "translation": "", - "context": "", + "context": "1 hour before", "reference": "", "comment": "" }, { "term": "1 minute", "translation": "", - "context": "wallpaper interval", + "context": "1 minute", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "1 notification", "translation": "", - "context": "", + "context": "1 notification", "reference": "", "comment": "" }, { "term": "1 second", "translation": "", - "context": "", + "context": "1 second", "reference": "", "comment": "" }, { "term": "1 task", "translation": "", - "context": "task count next to a date", + "context": "1 task", "reference": "", - "comment": "" + "comment": "task count next to a date" }, { "term": "10 min before", "translation": "", - "context": "", + "context": "10 min before", "reference": "", "comment": "" }, { "term": "10 minutes", "translation": "", - "context": "", + "context": "10 minutes", "reference": "", "comment": "" }, { "term": "10 seconds", "translation": "", - "context": "wallpaper interval", + "context": "10 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "10-bit Color", "translation": "", - "context": "", + "context": "10-bit Color", "reference": "", "comment": "" }, { "term": "12 hours", "translation": "", - "context": "wallpaper interval", + "context": "12 hours", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "14 days", "translation": "", - "context": "notification history retention option", + "context": "14 days", "reference": "", - "comment": "" + "comment": "notification history retention option" }, { "term": "15 min", "translation": "", - "context": "", + "context": "15 min", "reference": "", "comment": "" }, { "term": "15 min before", "translation": "", - "context": "", + "context": "15 min before", "reference": "", "comment": "" }, { "term": "15 minutes", "translation": "", - "context": "wallpaper interval", + "context": "15 minutes", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "15 seconds", "translation": "", - "context": "wallpaper interval", + "context": "15 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "180°", "translation": "", - "context": "", + "context": "180°", "reference": "", "comment": "" }, { "term": "2 hours", "translation": "", - "context": "wallpaper interval", + "context": "2 hours", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "2 minutes", "translation": "", - "context": "", + "context": "2 minutes", "reference": "", "comment": "" }, { "term": "2 seconds", "translation": "", - "context": "", + "context": "2 seconds", "reference": "", "comment": "" }, { "term": "20 minutes", "translation": "", - "context": "", + "context": "20 minutes", "reference": "", "comment": "" }, { "term": "20 seconds", "translation": "", - "context": "wallpaper interval", + "context": "20 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "24-Hour Format", "translation": "", - "context": "", + "context": "24-Hour Format", "reference": "", "comment": "" }, { "term": "25 seconds", "translation": "", - "context": "wallpaper interval", + "context": "25 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "250 ms", "translation": "", - "context": "", + "context": "250 ms", "reference": "", "comment": "" }, { "term": "270°", "translation": "", - "context": "", + "context": "270°", "reference": "", "comment": "" }, { "term": "3 days", "translation": "", - "context": "notification history retention option", + "context": "3 days", "reference": "", - "comment": "" + "comment": "notification history retention option" }, { "term": "3 hours", "translation": "", - "context": "wallpaper interval", + "context": "3 hours", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "3 minutes", "translation": "", - "context": "", + "context": "3 minutes", "reference": "", "comment": "" }, { "term": "3 seconds", "translation": "", - "context": "", + "context": "3 seconds", "reference": "", "comment": "" }, { "term": "30 days", "translation": "", - "context": "notification history filter | notification history retention option", + "context": "30 days", "reference": "", - "comment": "" + "comment": "notification history filter | notification history retention option" }, { "term": "30 min", "translation": "", - "context": "", + "context": "30 min", "reference": "", "comment": "" }, { "term": "30 min before", "translation": "", - "context": "", + "context": "30 min before", "reference": "", "comment": "" }, { "term": "30 minutes", "translation": "", - "context": "wallpaper interval", + "context": "30 minutes", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "30 seconds", "translation": "", - "context": "wallpaper interval", + "context": "30 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "35 seconds", "translation": "", - "context": "wallpaper interval", + "context": "35 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "3rd party", "translation": "", - "context": "", + "context": "3rd party", "reference": "", "comment": "" }, { "term": "4 hours", "translation": "", - "context": "wallpaper interval", + "context": "4 hours", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "4 seconds", "translation": "", - "context": "", + "context": "4 seconds", "reference": "", "comment": "" }, { "term": "40 seconds", "translation": "", - "context": "wallpaper interval", + "context": "40 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "45 seconds", "translation": "", - "context": "wallpaper interval", + "context": "45 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "5 min before", "translation": "", - "context": "", + "context": "5 min before", "reference": "", "comment": "" }, { "term": "5 minutes", "translation": "", - "context": "wallpaper interval", + "context": "5 minutes", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "5 seconds", "translation": "", - "context": "wallpaper interval", + "context": "5 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "50 seconds", "translation": "", - "context": "wallpaper interval", + "context": "50 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "500 ms", "translation": "", - "context": "", + "context": "500 ms", "reference": "", "comment": "" }, { "term": "55 seconds", "translation": "", - "context": "wallpaper interval", + "context": "55 seconds", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "6 hours", "translation": "", - "context": "wallpaper interval", + "context": "6 hours", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "7 days", "translation": "", - "context": "notification history filter | notification history retention option", + "context": "7 days", "reference": "", - "comment": "" + "comment": "notification history filter | notification history retention option" }, { "term": "750 ms", "translation": "", - "context": "", + "context": "750 ms", "reference": "", "comment": "" }, { "term": "8 hours", "translation": "", - "context": "wallpaper interval", + "context": "8 hours", "reference": "", - "comment": "" + "comment": "wallpaper interval" }, { "term": "8 seconds", "translation": "", - "context": "", + "context": "8 seconds", "reference": "", "comment": "" }, { "term": "90 days", "translation": "", - "context": "", + "context": "90 days", "reference": "", "comment": "" }, { "term": "90°", "translation": "", - "context": "", + "context": "90°", "reference": "", "comment": "" }, { "term": "MIT License", "translation": "", - "context": "", + "context": "MIT License", "reference": "", "comment": "" }, { "term": "A file with this name already exists. Do you want to overwrite it?", "translation": "", - "context": "", + "context": "A file with this name already exists. Do you want to overwrite it?", "reference": "", "comment": "" }, { "term": "A modern desktop shell for Wayland compositors", "translation": "", - "context": "greeter welcome page tagline", + "context": "A modern desktop shell for Wayland compositors", "reference": "", - "comment": "" + "comment": "greeter welcome page tagline" }, { "term": "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.", "translation": "", - "context": "", + "context": "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.", "reference": "", "comment": "" }, { "term": "A user with that name already exists.", "translation": "", - "context": "", + "context": "A user with that name already exists.", "reference": "", "comment": "" }, { "term": "AC Adapter (Plugged In)", "translation": "", - "context": "", + "context": "AC Adapter (Plugged In)", "reference": "", "comment": "" }, { "term": "AC Power", "translation": "", - "context": "", + "context": "AC Power", "reference": "", "comment": "" }, { "term": "API", "translation": "", - "context": "", + "context": "API", "reference": "", "comment": "" }, { "term": "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.", "translation": "", - "context": "", + "context": "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.", "reference": "", "comment": "" }, { "term": "Aborted", "translation": "", - "context": "", + "context": "Aborted", "reference": "", "comment": "" }, { "term": "About", "translation": "", - "context": "", + "context": "About", "reference": "", "comment": "" }, { "term": "Accent Color", "translation": "", - "context": "", + "context": "Accent Color", "reference": "", "comment": "" }, { "term": "Accept", "translation": "", - "context": "KDE Connect accept pairing button", + "context": "Accept", "reference": "", - "comment": "" + "comment": "KDE Connect accept pairing button" }, { "term": "Accept Jobs", "translation": "", - "context": "", + "context": "Accept Jobs", "reference": "", "comment": "" }, { "term": "Accepting", "translation": "", - "context": "", + "context": "Accepting", "reference": "", "comment": "" }, { "term": "Access clipboard history", "translation": "", - "context": "", + "context": "Access clipboard history", "reference": "", "comment": "" }, { "term": "Access to notifications and do not disturb", "translation": "", - "context": "", + "context": "Access to notifications and do not disturb", "reference": "", "comment": "" }, { "term": "Access to system controls and settings", "translation": "", - "context": "", + "context": "Access to system controls and settings", "reference": "", "comment": "" }, { "term": "Action", "translation": "", - "context": "", + "context": "Action", "reference": "", "comment": "" }, { "term": "Action failed or terminal was closed.", "translation": "", - "context": "", + "context": "Action failed or terminal was closed.", "reference": "", "comment": "" }, { "term": "Action performed when scrolling horizontally on the bar", "translation": "", - "context": "", + "context": "Action performed when scrolling horizontally on the bar", "reference": "", "comment": "" }, { "term": "Action performed when scrolling vertically on the bar", "translation": "", - "context": "", + "context": "Action performed when scrolling vertically on the bar", "reference": "", "comment": "" }, { "term": "Actions", "translation": "", - "context": "", + "context": "Actions", "reference": "", "comment": "" }, { "term": "Activate", "translation": "", - "context": "", + "context": "Activate", "reference": "", "comment": "" }, { "term": "Activate Greeter", "translation": "", - "context": "greeter action confirmation", + "context": "Activate Greeter", "reference": "", - "comment": "" + "comment": "greeter action confirmation" }, { "term": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", "translation": "", - "context": "", + "context": "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.", "reference": "", "comment": "" }, { "term": "Activation", "translation": "", - "context": "", + "context": "Activation", "reference": "", "comment": "" }, { "term": "Active", "translation": "", - "context": "", + "context": "Active", "reference": "", - "comment": "" + "comment": "active state label" }, { "term": "Active Color", "translation": "", - "context": "", + "context": "Active Color", "reference": "", "comment": "" }, { "term": "Active VPN", "translation": "", - "context": "", + "context": "Active VPN", "reference": "", "comment": "" }, { "term": "Active in Column", "translation": "", - "context": "", + "context": "Active in Column", "reference": "", "comment": "" }, { "term": "Active tile background and icon color", "translation": "", - "context": "control center tile color setting description", + "context": "Active tile background and icon color", "reference": "", - "comment": "" + "comment": "control center tile color setting description" }, { "term": "Active: %1", "translation": "", - "context": "", + "context": "Active: %1", "reference": "", "comment": "" }, { "term": "Active: %1 +%2", "translation": "", - "context": "", + "context": "Active: %1 +%2", "reference": "", "comment": "" }, { "term": "Active: None", "translation": "", - "context": "", + "context": "Active: None", "reference": "", "comment": "" }, { "term": "Adapters", "translation": "", - "context": "", + "context": "Adapters", "reference": "", "comment": "" }, { "term": "Adaptive Media Width", "translation": "", - "context": "", + "context": "Adaptive Media Width", "reference": "", "comment": "" }, { "term": "Add", "translation": "", - "context": "", + "context": "Add", "reference": "", "comment": "" }, { "term": "Add \"%1\" to the %2 group?", "translation": "", - "context": "", + "context": "Add \"%1\" to the %2 group?", "reference": "", "comment": "" }, { "term": "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.", "translation": "", - "context": "", + "context": "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.", "reference": "", "comment": "" }, { "term": "Add Bar", "translation": "", - "context": "", + "context": "Add Bar", "reference": "", "comment": "" }, { "term": "Add Desktop Widget", "translation": "", - "context": "", + "context": "Add Desktop Widget", "reference": "", "comment": "" }, { "term": "Add Entry", "translation": "", - "context": "", + "context": "Add Entry", "reference": "", "comment": "" }, { "term": "Add Printer", "translation": "", - "context": "", + "context": "Add Printer", "reference": "", "comment": "" }, { "term": "Add Title", "translation": "", - "context": "", + "context": "Add Title", "reference": "", "comment": "" }, { "term": "Add Widget", "translation": "", - "context": "", + "context": "Add Widget", "reference": "", "comment": "" }, { "term": "Add Widget to %1", "translation": "", - "context": "", + "context": "Add Widget to %1", "reference": "", "comment": "" }, { "term": "Add Window Rule", "translation": "", - "context": "", + "context": "Add Window Rule", "reference": "", "comment": "" }, { "term": "Add a border around the dock", "translation": "", - "context": "", + "context": "Add a border around the dock", "reference": "", "comment": "" }, { "term": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", "translation": "", - "context": "", + "context": "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.", "reference": "", "comment": "" }, { "term": "Add a task...", "translation": "", - "context": "placeholder in the new-task input field", + "context": "Add a task...", "reference": "", - "comment": "" + "comment": "placeholder in the new-task input field" }, { "term": "Add and configure widgets that appear on your desktop", "translation": "", - "context": "", + "context": "Add and configure widgets that appear on your desktop", "reference": "", "comment": "" }, { "term": "Add by Address", "translation": "", - "context": "Toggle button to manually add a printer by IP or hostname", + "context": "Add by Address", "reference": "", - "comment": "" + "comment": "Toggle button to manually add a printer by IP or hostname" }, { "term": "Add location", "translation": "", - "context": "", + "context": "Add location", "reference": "", "comment": "" }, { "term": "Add match", "translation": "", - "context": "", + "context": "Add match", "reference": "", "comment": "" }, { "term": "Add notes", "translation": "", - "context": "", + "context": "Add notes", "reference": "", "comment": "" }, { "term": "Add the new user to the %1 group so they can run dms greeter sync --profile.", "translation": "", - "context": "", + "context": "Add the new user to the %1 group so they can run dms greeter sync --profile.", "reference": "", "comment": "" }, { "term": "Add the new user to the %1 group so they can use sudo.", "translation": "", - "context": "", + "context": "Add the new user to the %1 group so they can use sudo.", "reference": "", "comment": "" }, { "term": "Add to Autostart", "translation": "", - "context": "", + "context": "Add to Autostart", "reference": "", "comment": "" }, { "term": "Adjust the bar height via inner padding", "translation": "", - "context": "", + "context": "Adjust the bar height via inner padding", "reference": "", "comment": "" }, { "term": "Adjust the number of columns in grid view mode.", "translation": "", - "context": "", + "context": "Adjust the number of columns in grid view mode.", "reference": "", "comment": "" }, { "term": "Adjust volume per scroll indent", "translation": "", - "context": "", + "context": "Adjust volume per scroll indent", "reference": "", "comment": "" }, { "term": "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)", "translation": "", - "context": "", + "context": "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)", "reference": "", "comment": "" }, { "term": "Administrator access is required. Use the Sync button in Settings → Greeter to apply.", "translation": "", - "context": "", + "context": "Administrator access is required. Use the Sync button in Settings → Greeter to apply.", "reference": "", "comment": "" }, { "term": "Administrator group:", "translation": "", - "context": "", + "context": "Administrator group:", "reference": "", "comment": "" }, { "term": "Advanced", "translation": "", - "context": "", + "context": "Advanced", "reference": "", "comment": "" }, { "term": "Afternoon", "translation": "", - "context": "", + "context": "Afternoon", + "reference": "", + "comment": "" + }, + { + "term": "Alerts", + "translation": "", + "context": "Alerts", "reference": "", "comment": "" }, { "term": "All", "translation": "", - "context": "Tailscale filter: all devices | notification history filter | plugin browser category filter", + "context": "All", "reference": "", - "comment": "" + "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter" }, { "term": "All checks passed", "translation": "", - "context": "greeter doctor page success", + "context": "All checks passed", "reference": "", - "comment": "" + "comment": "greeter doctor page success" }, { "term": "All day", "translation": "", - "context": "calendar task with no specific time", + "context": "All day", "reference": "", - "comment": "" + "comment": "calendar task with no specific time" }, { "term": "All displays", "translation": "", - "context": "", + "context": "All displays", "reference": "", "comment": "" }, { "term": "Allow", "translation": "", - "context": "", + "context": "Allow", "reference": "", "comment": "" }, { "term": "Allow LAN access", "translation": "", - "context": "Tailscale allow LAN access toggle", + "context": "Allow LAN access", "reference": "", - "comment": "" + "comment": "Tailscale allow LAN access toggle" }, { "term": "Allow adjusting device volume by scrolling on the right half of items in the device list", "translation": "", - "context": "", + "context": "Allow adjusting device volume by scrolling on the right half of items in the device list", "reference": "", "comment": "" }, { "term": "Allow clicks to pass through the widget", "translation": "", - "context": "", + "context": "Allow clicks to pass through the widget", "reference": "", "comment": "" }, { "term": "Allow greeter access?", "translation": "", - "context": "", + "context": "Allow greeter access?", "reference": "", "comment": "" }, { "term": "Allow greeter login access", "translation": "", - "context": "", + "context": "Allow greeter login access", "reference": "", "comment": "" }, { "term": "Already on that session", "translation": "", - "context": "", + "context": "Already on that session", "reference": "", "comment": "" }, { "term": "Also group repeated application icons on the active workspace", "translation": "", - "context": "", + "context": "Also group repeated application icons on the active workspace", "reference": "", "comment": "" }, { "term": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", "translation": "", - "context": "", + "context": "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close", "reference": "", "comment": "" }, { "term": "Alternative (OR)", "translation": "", - "context": "U2F mode option: key works as standalone unlock method", + "context": "Alternative (OR)", "reference": "", - "comment": "" + "comment": "U2F mode option: key works as standalone unlock method" }, { "term": "Always Active", "translation": "", - "context": "", + "context": "Always Active", "reference": "", "comment": "" }, { "term": "Always Show Percentage", "translation": "", - "context": "", + "context": "Always Show Percentage", "reference": "", "comment": "" }, { "term": "Always blur against the wallpaper, even with Xray off", "translation": "", - "context": "", + "context": "Always blur against the wallpaper, even with Xray off", "reference": "", "comment": "" }, { "term": "Always hide the dock and reveal it when hovering near the dock area", "translation": "", - "context": "", + "context": "Always hide the dock and reveal it when hovering near the dock area", "reference": "", "comment": "" }, { "term": "Always on icons", "translation": "", - "context": "", + "context": "Always on icons", "reference": "", "comment": "" }, { "term": "Always show a minimum of 3 workspaces, even if fewer are available", "translation": "", - "context": "", + "context": "Always show a minimum of 3 workspaces, even if fewer are available", "reference": "", "comment": "" }, { "term": "Always show the dock when niri's overview is open", "translation": "", - "context": "", + "context": "Always show the dock when niri's overview is open", "reference": "", "comment": "" }, { "term": "Always show when there's only one connected display", "translation": "", - "context": "", + "context": "Always show when there's only one connected display", "reference": "", "comment": "" }, { "term": "Always use this app for %1", "translation": "", - "context": "", + "context": "Always use this app for %1", "reference": "", "comment": "" }, { "term": "Amount", "translation": "", - "context": "", + "context": "Amount", "reference": "", "comment": "" }, { "term": "An xray rule at %1 may conflict with the Xray settings below", "translation": "", - "context": "", + "context": "An xray rule at %1 may conflict with the Xray settings below", "reference": "", "comment": "" }, { "term": "Analog", "translation": "", - "context": "", + "context": "Analog", "reference": "", "comment": "" }, { "term": "Analog, digital, or stacked clock display", "translation": "", - "context": "Desktop clock widget description", + "context": "Analog, digital, or stacked clock display", "reference": "", - "comment": "" + "comment": "Desktop clock widget description" }, { "term": "Analyzing configuration...", "translation": "", - "context": "greeter doctor page loading text", + "context": "Analyzing configuration...", "reference": "", - "comment": "" + "comment": "greeter doctor page loading text" }, { "term": "Anchor", "translation": "", - "context": "", + "context": "Anchor", "reference": "", "comment": "" }, { "term": "Animation Duration", "translation": "", - "context": "", + "context": "Animation Duration", "reference": "", "comment": "" }, { "term": "Animation Speed", "translation": "", - "context": "", + "context": "Animation Speed", "reference": "", "comment": "" }, { "term": "Animation Style", "translation": "", - "context": "", + "context": "Animation Style", "reference": "", "comment": "" }, { "term": "Anonymous Identity", "translation": "", - "context": "", + "context": "Anonymous Identity", "reference": "", "comment": "" }, { "term": "Anonymous Identity (optional)", "translation": "", - "context": "", + "context": "Anonymous Identity (optional)", "reference": "", "comment": "" }, { "term": "Any window", "translation": "", - "context": "", + "context": "Any window", "reference": "", "comment": "" }, { "term": "App Customizations", "translation": "", - "context": "", + "context": "App Customizations", "reference": "", "comment": "" }, { "term": "App ID", "translation": "", - "context": "", + "context": "App ID", "reference": "", "comment": "" }, { "term": "App ID (e.g. firefox)", "translation": "", - "context": "", + "context": "App ID (e.g. firefox)", "reference": "", "comment": "" }, { "term": "App ID Substitutions", "translation": "", - "context": "", + "context": "App ID Substitutions", "reference": "", "comment": "" }, { "term": "App ID regex", "translation": "", - "context": "", + "context": "App ID regex", "reference": "", "comment": "" }, { "term": "App ID regex (e.g. ^firefox$)", "translation": "", - "context": "", + "context": "App ID regex (e.g. ^firefox$)", "reference": "", "comment": "" }, { "term": "App Launcher", "translation": "", - "context": "", + "context": "App Launcher", "reference": "", "comment": "" }, { "term": "App Names", "translation": "", - "context": "lock screen notification mode option | notification rule match field option", + "context": "App Names", "reference": "", - "comment": "" + "comment": "lock screen notification mode option | notification rule match field option" }, { "term": "App Theming", "translation": "", - "context": "greeter feature card title", + "context": "App Theming", "reference": "", - "comment": "" + "comment": "greeter feature card title" }, { "term": "App name or identity (e.g., firefox)", "translation": "", - "context": "", + "context": "App name or identity (e.g., firefox)", "reference": "", "comment": "" }, { "term": "Appearance", "translation": "", - "context": "launcher appearance settings", + "context": "Appearance", "reference": "", - "comment": "" + "comment": "launcher appearance settings" }, { "term": "Application", "translation": "", - "context": "", + "context": "Application", "reference": "", "comment": "" }, { "term": "Application Dock", "translation": "", - "context": "", + "context": "Application Dock", "reference": "", "comment": "" }, { "term": "Applications", "translation": "", - "context": "", + "context": "Applications", "reference": "", "comment": "" }, { "term": "Applications and commands to start automatically when you log in", "translation": "", - "context": "", + "context": "Applications and commands to start automatically when you log in", "reference": "", "comment": "" }, { "term": "Apply Changes", "translation": "", - "context": "validate and apply custom PAM authentication source", + "context": "Apply Changes", "reference": "", - "comment": "" + "comment": "validate and apply custom PAM authentication source | validate and apply custom U2F PAM authentication source" }, { "term": "Apply Flatpak updates alongside system updates when running 'Update All'.", "translation": "", - "context": "", + "context": "Apply Flatpak updates alongside system updates when running 'Update All'.", "reference": "", "comment": "" }, { "term": "Apply GTK Colors", "translation": "", - "context": "", + "context": "Apply GTK Colors", "reference": "", "comment": "" }, { "term": "Apply Qt Colors", "translation": "", - "context": "", + "context": "Apply Qt Colors", "reference": "", "comment": "" }, { "term": "Apply compositor blur behind the frame border", "translation": "", - "context": "", + "context": "Apply compositor blur behind the frame border", "reference": "", "comment": "" }, { "term": "Apply inverse concave corner cutouts to the bar", "translation": "", - "context": "", + "context": "Apply inverse concave corner cutouts to the bar", "reference": "", "comment": "" }, { "term": "Apply to Hardware", "translation": "", - "context": "", + "context": "Apply to Hardware", "reference": "", "comment": "" }, { "term": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.", "translation": "", - "context": "", + "context": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.", "reference": "", "comment": "" }, { "term": "Applying authentication changes...", "translation": "", - "context": "", + "context": "Applying authentication changes...", "reference": "", "comment": "" }, { "term": "Applying auto-login on startup...", "translation": "", - "context": "", + "context": "Applying auto-login on startup...", "reference": "", "comment": "" }, { "term": "Apps", "translation": "", - "context": "", + "context": "Apps", "reference": "", "comment": "" }, { "term": "Apps Dock", "translation": "", - "context": "", + "context": "Apps Dock", "reference": "", "comment": "" }, { "term": "Apps Dock Settings", "translation": "", - "context": "", + "context": "Apps Dock Settings", "reference": "", "comment": "" }, { "term": "Apps Icon", "translation": "", - "context": "", + "context": "Apps Icon", "reference": "", "comment": "" }, { "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", "translation": "", - "context": "", + "context": "Apps are ordered by usage frequency, then last used, then alphabetically.", "reference": "", "comment": "" }, { "term": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", "translation": "", - "context": "", + "context": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", "reference": "", "comment": "" }, { "term": "Apps with notification popups muted. Unmute or delete to remove.", "translation": "", - "context": "", + "context": "Apps with notification popups muted. Unmute or delete to remove.", "reference": "", "comment": "" }, { "term": "Arc Extender", "translation": "", - "context": "", + "context": "Arc Extender", "reference": "", "comment": "" }, { "term": "Architecture", "translation": "", - "context": "system info label", + "context": "Architecture", "reference": "", - "comment": "" + "comment": "system info label" }, { "term": "Are you sure you want to kill session \"%1\"?", "translation": "", - "context": "", + "context": "Are you sure you want to kill session \"%1\"?", "reference": "", "comment": "" }, { "term": "Arrange displays and configure resolution, refresh rate, and VRR", "translation": "", - "context": "", + "context": "Arrange displays and configure resolution, refresh rate, and VRR", "reference": "", "comment": "" }, { "term": "At Startup", "translation": "", - "context": "", + "context": "At Startup", "reference": "", "comment": "" }, { "term": "At least one output must remain enabled", "translation": "", - "context": "", + "context": "At least one output must remain enabled", "reference": "", "comment": "" }, { "term": "At start", "translation": "", - "context": "", + "context": "At start", "reference": "", "comment": "" }, { "term": "Attach", "translation": "", - "context": "", + "context": "Attach", "reference": "", "comment": "" }, { "term": "Audio", "translation": "", - "context": "", + "context": "Audio", "reference": "", "comment": "" }, { "term": "Audio Codec", "translation": "", - "context": "", + "context": "Audio Codec", "reference": "", "comment": "" }, { "term": "Audio Codec Selection", "translation": "", - "context": "", + "context": "Audio Codec Selection", "reference": "", "comment": "" }, { "term": "Audio Devices", "translation": "", - "context": "", + "context": "Audio Devices", "reference": "", "comment": "" }, { "term": "Audio Input", "translation": "", - "context": "", + "context": "Audio Input", "reference": "", "comment": "" }, { "term": "Audio Output", "translation": "", - "context": "", + "context": "Audio Output", "reference": "", "comment": "" }, { "term": "Audio Output Devices (", "translation": "", - "context": "", + "context": "Audio Output Devices (", "reference": "", "comment": "" }, { "term": "Audio Output Switch", "translation": "", - "context": "", + "context": "Audio Output Switch", "reference": "", "comment": "" }, { "term": "Audio Visualizer", "translation": "", - "context": "", + "context": "Audio Visualizer", "reference": "", "comment": "" }, { "term": "Audio system restarted", "translation": "", - "context": "", + "context": "Audio system restarted", "reference": "", "comment": "" }, { "term": "Audio volume control", "translation": "", - "context": "", + "context": "Audio volume control", "reference": "", "comment": "" }, { "term": "Auth", "translation": "", - "context": "", + "context": "Auth", "reference": "", "comment": "" }, { "term": "Auth Type", "translation": "", - "context": "", + "context": "Auth Type", "reference": "", "comment": "" }, { "term": "Authenticate", "translation": "", - "context": "", + "context": "Authenticate", "reference": "", "comment": "" }, { "term": "Authenticated!", "translation": "", - "context": "", + "context": "Authenticated!", "reference": "", "comment": "" }, { "term": "Authenticating...", "translation": "", - "context": "", + "context": "Authenticating...", "reference": "", "comment": "" }, { "term": "Authentication", "translation": "", - "context": "", + "context": "Authentication", "reference": "", "comment": "" }, { "term": "Authentication Required", "translation": "", - "context": "", + "context": "Authentication Required", "reference": "", "comment": "" }, + { + "term": "Authentication Source", + "translation": "", + "context": "Authentication Source", + "reference": "", + "comment": "lock screen PAM source setting" + }, { "term": "Authentication changes applied.", "translation": "", - "context": "", + "context": "Authentication changes applied.", "reference": "", "comment": "" }, { "term": "Authentication changes apply automatically.", "translation": "", - "context": "greeter auth setting description", + "context": "Authentication changes apply automatically.", "reference": "", - "comment": "" + "comment": "greeter auth setting description" }, { "term": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.", "translation": "", - "context": "", + "context": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.", "reference": "", "comment": "" }, { "term": "Authentication error - try again", "translation": "", - "context": "", + "context": "Authentication error - try again", "reference": "", "comment": "" }, { "term": "Authentication failed - attempt %1 of %2", "translation": "", - "context": "", + "context": "Authentication failed - attempt %1 of %2", "reference": "", "comment": "" }, { "term": "Authentication failed - lockout can occur", "translation": "", - "context": "", + "context": "Authentication failed - lockout can occur", "reference": "", "comment": "" }, { "term": "Authentication failed - try again", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Authentication failed, please try again", - "translation": "", - "context": "", + "context": "Authentication failed - try again", "reference": "", "comment": "" }, { "term": "Authorize", "translation": "", - "context": "", + "context": "Authorize", "reference": "", "comment": "" }, { "term": "Authorize pairing with ", "translation": "", - "context": "", + "context": "Authorize pairing with ", "reference": "", "comment": "" }, { "term": "Authorize service for ", "translation": "", - "context": "", + "context": "Authorize service for ", "reference": "", "comment": "" }, { "term": "Auto", "translation": "", - "context": "automatic PAM authentication source option | calendar backend option | theme category option", + "context": "Auto", "reference": "", - "comment": "" + "comment": "automatic PAM authentication source option | calendar backend option | theme category option" }, { "term": "Auto (Bar-aware)", "translation": "", - "context": "bar shadow direction source option | shadow direction option", + "context": "Auto (Bar-aware)", "reference": "", - "comment": "" + "comment": "bar shadow direction source option | shadow direction option" }, { "term": "Auto (Wide)", "translation": "", - "context": "", + "context": "Auto (Wide)", "reference": "", "comment": "" }, { "term": "Auto Compositor Gaps", "translation": "", - "context": "", + "context": "Auto Compositor Gaps", "reference": "", "comment": "" }, { "term": "Auto Location", "translation": "", - "context": "", + "context": "Auto Location", "reference": "", "comment": "" }, { "term": "Auto Overflow", "translation": "", - "context": "", + "context": "Auto Overflow", "reference": "", "comment": "" }, { "term": "Auto Popup Gaps", "translation": "", - "context": "", + "context": "Auto Popup Gaps", "reference": "", "comment": "" }, { "term": "Auto Power Saver", "translation": "", - "context": "", + "context": "Auto Power Saver", "reference": "", "comment": "" }, { - "term": "Auto matches bar spacing; Off leaves gaps to your Hyprland config", + "term": "Auto matches bar spacing; Off leaves gaps to your %1 config", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Auto matches bar spacing; Off leaves gaps to your MangoWC config", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Auto matches bar spacing; Off leaves gaps to your niri config", - "translation": "", - "context": "", + "context": "Auto matches bar spacing; Off leaves gaps to your %1 config", "reference": "", "comment": "" }, { "term": "Auto mode is on. Manual profile selection is disabled.", "translation": "", - "context": "", + "context": "Auto mode is on. Manual profile selection is disabled.", "reference": "", "comment": "" }, { "term": "Auto saved", "translation": "", - "context": "", + "context": "Auto saved", "reference": "", "comment": "" }, + { + "term": "Auto uses an installed or bundled key-only service.", + "translation": "", + "context": "Auto uses an installed or bundled key-only service.", + "reference": "", + "comment": "lock screen dedicated U2F PAM source setting" + }, { "term": "Auto-Clear After", "translation": "", - "context": "", + "context": "Auto-Clear After", "reference": "", "comment": "" }, { "term": "Auto-Hide Timeout", "translation": "", - "context": "", + "context": "Auto-Hide Timeout", "reference": "", "comment": "" }, { "term": "Auto-close Niri overview when launching apps.", "translation": "", - "context": "", + "context": "Auto-close Niri overview when launching apps.", "reference": "", "comment": "" }, { "term": "Auto-delete notifications older than this", "translation": "", - "context": "notification history setting", + "context": "Auto-delete notifications older than this", "reference": "", - "comment": "" + "comment": "notification history setting" }, { "term": "Auto-hide", "translation": "", - "context": "", + "context": "Auto-hide", "reference": "", "comment": "" }, { "term": "Auto-hide Dock", "translation": "", - "context": "", + "context": "Auto-hide Dock", "reference": "", "comment": "" }, { "term": "Auto-login", "translation": "", - "context": "", + "context": "Auto-login", "reference": "", "comment": "" }, { "term": "Auto-login change needs a sync", "translation": "", - "context": "", + "context": "Auto-login change needs a sync", "reference": "", "comment": "" }, { "term": "Auto-login disabled", "translation": "", - "context": "", + "context": "Auto-login disabled", "reference": "", "comment": "" }, { "term": "Auto-login enabled", "translation": "", - "context": "", + "context": "Auto-login enabled", "reference": "", "comment": "" }, { "term": "Auto-login on startup", "translation": "", - "context": "", + "context": "Auto-login on startup", "reference": "", "comment": "" }, { "term": "Auto-save to disk", "translation": "", - "context": "", + "context": "Auto-save to disk", "reference": "", "comment": "" }, { "term": "Autoconnect", "translation": "", - "context": "", + "context": "Autoconnect", "reference": "", "comment": "" }, { "term": "Autoconnect disabled", "translation": "", - "context": "", + "context": "Autoconnect disabled", "reference": "", "comment": "" }, { "term": "Autoconnect enabled", "translation": "", - "context": "", + "context": "Autoconnect enabled", "reference": "", "comment": "" }, { "term": "Autofill last remembered query when opened", "translation": "", - "context": "", + "context": "Autofill last remembered query when opened", "reference": "", "comment": "" }, { "term": "Automatic Color Mode", "translation": "", - "context": "", + "context": "Automatic Color Mode", "reference": "", "comment": "" }, { "term": "Automatic Control", "translation": "", - "context": "", + "context": "Automatic Control", "reference": "", "comment": "" }, { "term": "Automatic Cycling", "translation": "", - "context": "", + "context": "Automatic Cycling", "reference": "", "comment": "" }, { "term": "Automatically calculate popup gap based on bar spacing", "translation": "", - "context": "", + "context": "Automatically calculate popup gap based on bar spacing", "reference": "", "comment": "" }, { "term": "Automatically cycle through wallpapers in the same folder", "translation": "", - "context": "", + "context": "Automatically cycle through wallpapers in the same folder", "reference": "", "comment": "" }, { "term": "Automatically delete entries older than this", "translation": "", - "context": "", + "context": "Automatically delete entries older than this", "reference": "", "comment": "" }, { "term": "Automatically detect location based on IP address", "translation": "", - "context": "", + "context": "Automatically detect location based on IP address", "reference": "", "comment": "" }, { "term": "Automatically determine your location using your IP address", "translation": "", - "context": "", + "context": "Automatically determine your location using your IP address", "reference": "", "comment": "" }, { "term": "Automatically hide the bar when the pointer moves away", "translation": "", - "context": "", + "context": "Automatically hide the bar when the pointer moves away", "reference": "", "comment": "" }, { "term": "Automatically lock after", "translation": "", - "context": "", + "context": "Automatically lock after", "reference": "", "comment": "" }, { "term": "Automatically lock the screen when DMS starts", "translation": "", - "context": "", + "context": "Automatically lock the screen when DMS starts", "reference": "", "comment": "" }, { "term": "Automatically lock the screen when the system prepares to suspend", "translation": "", - "context": "", + "context": "Automatically lock the screen when the system prepares to suspend", "reference": "", "comment": "" }, { "term": "Automatically save changes to opened files as you type", "translation": "", - "context": "", + "context": "Automatically save changes to opened files as you type", "reference": "", "comment": "" }, { "term": "Automatically turn on Power Saver profile when battery is low.", "translation": "", - "context": "", + "context": "Automatically turn on Power Saver profile when battery is low.", "reference": "", "comment": "" }, { "term": "Automation", "translation": "", - "context": "", + "context": "Automation", "reference": "", "comment": "" }, { "term": "Autostart Apps", "translation": "", - "context": "", + "context": "Autostart Apps", "reference": "", "comment": "" }, { "term": "Autostart Entries", "translation": "", - "context": "", + "context": "Autostart Entries", "reference": "", "comment": "" }, { "term": "Available", "translation": "", - "context": "", + "context": "Available", "reference": "", "comment": "" }, { "term": "Available Layouts", "translation": "", - "context": "", + "context": "Available Layouts", "reference": "", "comment": "" }, { "term": "Available Networks", "translation": "", - "context": "", + "context": "Available Networks", "reference": "", "comment": "" }, { "term": "Available Plugins", "translation": "", - "context": "", + "context": "Available Plugins", "reference": "", "comment": "" }, { "term": "Available Screens (%1)", "translation": "", - "context": "", + "context": "Available Screens (%1)", "reference": "", "comment": "" }, { "term": "Available Updates (%1)", "translation": "", - "context": "", + "context": "Available Updates (%1)", "reference": "", "comment": "" }, { "term": "Available in Detailed and Forecast view modes", "translation": "", - "context": "", + "context": "Available in Detailed and Forecast view modes", "reference": "", "comment": "" }, { "term": "Awaiting fingerprint authentication", "translation": "", - "context": "", + "context": "Awaiting fingerprint authentication", "reference": "", "comment": "" }, { "term": "Awaiting fingerprint or security key authentication", "translation": "", - "context": "", + "context": "Awaiting fingerprint or security key authentication", "reference": "", "comment": "" }, { "term": "Awaiting security key authentication", "translation": "", - "context": "", + "context": "Awaiting security key authentication", "reference": "", "comment": "" }, { "term": "BSSID", "translation": "", - "context": "", + "context": "BSSID", "reference": "", "comment": "" }, { "term": "Back", "translation": "", - "context": "greeter back button", + "context": "Back", "reference": "", - "comment": "" + "comment": "greeter back button" }, { "term": "Back to user list", "translation": "", - "context": "greeter link to return from manual username entry to user picker", + "context": "Back to user list", "reference": "", - "comment": "" + "comment": "greeter link to return from manual username entry to user picker" }, { "term": "Backend", "translation": "", - "context": "", + "context": "Backend", "reference": "", "comment": "" }, { "term": "Background", "translation": "", - "context": "", + "context": "Background", "reference": "", "comment": "" }, { "term": "Background Blur", "translation": "", - "context": "", + "context": "Background Blur", "reference": "", "comment": "" }, { "term": "Background Color", "translation": "", - "context": "", + "context": "Background Color", "reference": "", "comment": "" }, { "term": "Background Effect", "translation": "", - "context": "", + "context": "Background Effect", "reference": "", "comment": "" }, { "term": "Background Opacity", "translation": "", - "context": "", + "context": "Background Opacity", "reference": "", "comment": "" }, { "term": "Background authentication sync failed. Trying terminal mode.", "translation": "", - "context": "", + "context": "Background authentication sync failed. Trying terminal mode.", "reference": "", "comment": "" }, { "term": "Background image", "translation": "", - "context": "greeter wallpaper description", + "context": "Background image", "reference": "", - "comment": "" + "comment": "greeter wallpaper description" }, { "term": "Backlight device", "translation": "", - "context": "", + "context": "Backlight device", "reference": "", "comment": "" }, { "term": "Balance power and performance", "translation": "", - "context": "power profile description", + "context": "Balance power and performance", "reference": "", - "comment": "" + "comment": "power profile description" }, { "term": "Balanced", "translation": "", - "context": "power profile option", + "context": "Balanced", "reference": "", - "comment": "" + "comment": "power profile option" }, { "term": "Balanced palette with focused accents (default).", "translation": "", - "context": "", + "context": "Balanced palette with focused accents (default).", "reference": "", "comment": "" }, { "term": "Bar", "translation": "", - "context": "fallback name for an unnamed bar", + "context": "Bar", "reference": "", - "comment": "" + "comment": "fallback name for an unnamed bar" }, { "term": "Bar %1", "translation": "", - "context": "numbered name for an unnamed bar, %1 is its position", + "context": "Bar %1", "reference": "", - "comment": "" - }, - { - "term": "Bar Configurations", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "numbered name for an unnamed bar, %1 is its position" }, { "term": "Bar Inset Padding", "translation": "", - "context": "", + "context": "Bar Inset Padding", "reference": "", "comment": "" }, { "term": "Bar Opacity", "translation": "", - "context": "", + "context": "Bar Opacity", "reference": "", "comment": "" }, { "term": "Bar Shadows", "translation": "", - "context": "", + "context": "Bar Shadows", "reference": "", "comment": "" }, { "term": "Bar Spacing", "translation": "", - "context": "", + "context": "Bar Spacing", "reference": "", "comment": "" }, { "term": "Bar corners and background", "translation": "", - "context": "", + "context": "Bar corners and background", "reference": "", "comment": "" }, { "term": "Bar shadow, border, and corners", "translation": "", - "context": "", + "context": "Bar shadow, border, and corners", "reference": "", "comment": "" }, { "term": "Base color for shadows (opacity is applied automatically)", "translation": "", - "context": "", + "context": "Base color for shadows (opacity is applied automatically)", "reference": "", "comment": "" }, { "term": "Base duration for animations (drag to use Custom)", "translation": "", - "context": "", + "context": "Base duration for animations (drag to use Custom)", "reference": "", "comment": "" }, { "term": "Battery", "translation": "", - "context": "KDE Connect battery label", + "context": "Battery", "reference": "", - "comment": "" + "comment": "KDE Connect battery label" }, { "term": "Battery %1", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Battery Alerts", - "translation": "", - "context": "", + "context": "Battery %1", "reference": "", "comment": "" }, { "term": "Battery Charge Limit", "translation": "", - "context": "", + "context": "Battery Charge Limit", "reference": "", "comment": "" }, { "term": "Battery Health", "translation": "", - "context": "", + "context": "Battery Health", "reference": "", "comment": "" }, { "term": "Battery Power", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Battery Protection", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Battery Status", - "translation": "", - "context": "", + "context": "Battery Power", "reference": "", "comment": "" }, { "term": "Battery and power management", "translation": "", - "context": "", + "context": "Battery and power management", "reference": "", "comment": "" }, { "term": "Battery has charged to your set limit of %1%", "translation": "", - "context": "", + "context": "Battery has charged to your set limit of %1%", "reference": "", "comment": "" }, { "term": "Battery is at %1% - Connect charger immediately!", "translation": "", - "context": "", + "context": "Battery is at %1% - Connect charger immediately!", "reference": "", "comment": "" }, { "term": "Battery is at %1% - Consider charging soon", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Battery level and power management", - "translation": "", - "context": "", + "context": "Battery is at %1% - Consider charging soon", "reference": "", "comment": "" }, { "term": "Battery percentage to trigger a critical alert.", "translation": "", - "context": "", + "context": "Battery percentage to trigger a critical alert.", "reference": "", "comment": "" }, { "term": "Behavior", "translation": "", - "context": "", + "context": "Behavior", "reference": "", "comment": "" }, { "term": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "translation": "", - "context": "", + "context": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "reference": "", "comment": "" }, { - "term": "Bind the spotlight IPC action in your compositor config.", + "term": "Bind the %1 IPC action in your compositor config.", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Bind the spotlight-bar IPC action in your compositor config.", - "translation": "", - "context": "", + "context": "Bind the %1 IPC action in your compositor config.", "reference": "", "comment": "" }, { "term": "Binds include added", "translation": "", - "context": "", + "context": "Binds include added", "reference": "", "comment": "" }, { "term": "Bit Depth", "translation": "", - "context": "", + "context": "Bit Depth", "reference": "", "comment": "" }, { "term": "Black", "translation": "", - "context": "font weight", + "context": "Black", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Blend between Surface High and the selected custom color", "translation": "", - "context": "", + "context": "Blend between Surface High and the selected custom color", "reference": "", "comment": "" }, { "term": "Block Out", "translation": "", - "context": "", + "context": "Block Out", "reference": "", "comment": "" }, { "term": "Block Out From", "translation": "", - "context": "", + "context": "Block Out From", "reference": "", "comment": "" }, { "term": "Block notifications", "translation": "", - "context": "", + "context": "Block notifications", "reference": "", "comment": "" }, { "term": "Blocked", "translation": "", - "context": "", + "context": "Blocked", "reference": "", "comment": "" }, { "term": "Blue light filter", "translation": "", - "context": "", + "context": "Blue light filter", "reference": "", "comment": "" }, { "term": "Bluetooth", "translation": "", - "context": "bluetooth status", + "context": "Bluetooth", "reference": "", - "comment": "" + "comment": "bluetooth status" }, { "term": "Bluetooth Settings", "translation": "", - "context": "", + "context": "Bluetooth Settings", "reference": "", "comment": "" }, { "term": "Bluetooth not available", "translation": "", - "context": "", + "context": "Bluetooth not available", "reference": "", "comment": "" }, { "term": "Blur", "translation": "", - "context": "", + "context": "Blur", "reference": "", "comment": "" }, { "term": "Blur Wallpaper Layer", "translation": "", - "context": "", + "context": "Blur Wallpaper Layer", "reference": "", "comment": "" }, { "term": "Blur on Overview", "translation": "", - "context": "", + "context": "Blur on Overview", "reference": "", "comment": "" }, { "term": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.", "translation": "", - "context": "", + "context": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support. Adjust Opacity accordingly.", "reference": "", "comment": "" }, { "term": "Blur wallpaper when niri overview is open", "translation": "", - "context": "", + "context": "Blur wallpaper when niri overview is open", "reference": "", "comment": "" }, { "term": "Blurred surfaces show the wallpaper instead of the content beneath", "translation": "", - "context": "", + "context": "Blurred surfaces show the wallpaper instead of the content beneath", "reference": "", "comment": "" }, { "term": "Body", "translation": "", - "context": "notification rule match field option", + "context": "Body", "reference": "", - "comment": "" + "comment": "notification rule match field option" }, { "term": "Body Font Size", "translation": "", - "context": "", + "context": "Body Font Size", "reference": "", "comment": "" }, { "term": "Bold", "translation": "", - "context": "font weight", + "context": "Bold", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Border", "translation": "", - "context": "launcher border option", + "context": "Border", "reference": "", - "comment": "" + "comment": "launcher border option" }, { "term": "Border Color", "translation": "", - "context": "", + "context": "Border Color", "reference": "", "comment": "" }, { "term": "Border Off", "translation": "", - "context": "", + "context": "Border Off", "reference": "", "comment": "" }, { "term": "Border Opacity", "translation": "", - "context": "", + "context": "Border Opacity", "reference": "", "comment": "" }, { "term": "Border Radius", "translation": "", - "context": "", + "context": "Border Radius", "reference": "", "comment": "" }, { "term": "Border Size", "translation": "", - "context": "", + "context": "Border Size", "reference": "", "comment": "" }, { "term": "Border Thickness", "translation": "", - "context": "", + "context": "Border Thickness", "reference": "", "comment": "" }, { "term": "Border Width", "translation": "", - "context": "", + "context": "Border Width", "reference": "", "comment": "" }, { "term": "Border color around popouts, modals, and other shell surfaces", "translation": "", - "context": "", + "context": "Border color around popouts, modals, and other shell surfaces", "reference": "", "comment": "" }, { "term": "Border w/ Bg", "translation": "", - "context": "", + "context": "Border w/ Bg", "reference": "", "comment": "" }, { "term": "Border with Background", "translation": "", - "context": "", + "context": "Border with Background", "reference": "", "comment": "" }, { "term": "Bottom", "translation": "", - "context": "shadow direction option", + "context": "Bottom", "reference": "", - "comment": "" + "comment": "screen edge position | shadow direction option" }, { "term": "Bottom Center", "translation": "", - "context": "screen position option", + "context": "Bottom Center", "reference": "", - "comment": "" + "comment": "screen position option" }, { "term": "Bottom Left", "translation": "", - "context": "screen position option", + "context": "Bottom Left", "reference": "", - "comment": "" + "comment": "screen position option" }, { "term": "Bottom Right", "translation": "", - "context": "screen position option", + "context": "Bottom Right", "reference": "", - "comment": "" + "comment": "screen position option" }, { "term": "Bottom Section", "translation": "", - "context": "", + "context": "Bottom Section", "reference": "", "comment": "" }, { "term": "Bottom dock for pinned and running applications", "translation": "", - "context": "", + "context": "Bottom dock for pinned and running applications", "reference": "", "comment": "" }, { "term": "Brightness", "translation": "", - "context": "", + "context": "Brightness", "reference": "", "comment": "" }, { "term": "Brightness Slider", "translation": "", - "context": "", + "context": "Brightness Slider", "reference": "", "comment": "" }, { "term": "Brightness Value", "translation": "", - "context": "", + "context": "Brightness Value", "reference": "", "comment": "" }, { "term": "Brightness control not available", "translation": "", - "context": "", + "context": "Brightness control not available", "reference": "", "comment": "" }, { "term": "Browse", "translation": "", - "context": "theme category option", + "context": "Browse", "reference": "", - "comment": "" + "comment": "theme category option" }, { "term": "Browse Files", "translation": "", - "context": "KDE Connect browse tooltip", + "context": "Browse Files", "reference": "", - "comment": "" + "comment": "KDE Connect browse tooltip" }, { "term": "Browse Plugins", "translation": "", - "context": "plugin browser header | plugin browser window title", + "context": "Browse Plugins", "reference": "", - "comment": "" + "comment": "plugin browser header | plugin browser window title" }, { "term": "Browse Themes", "translation": "", - "context": "browse themes button | theme browser header | theme browser window title", + "context": "Browse Themes", "reference": "", - "comment": "" + "comment": "browse themes button | theme browser header | theme browser window title" }, { "term": "Browse and set wallpapers", "translation": "", - "context": "", + "context": "Browse and set wallpapers", "reference": "", "comment": "" }, { "term": "Browse or search plugins", "translation": "", - "context": "", + "context": "Browse or search plugins", "reference": "", "comment": "" }, { "term": "Button Color", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "By %1", - "translation": "", - "context": "", + "context": "Button Color", "reference": "", "comment": "" }, { "term": "CPU", "translation": "", - "context": "", + "context": "CPU", "reference": "", "comment": "" }, { "term": "CPU Graph", "translation": "", - "context": "", + "context": "CPU Graph", "reference": "", "comment": "" }, { "term": "CPU Temperature", "translation": "", - "context": "", + "context": "CPU Temperature", "reference": "", "comment": "" }, { "term": "CPU Usage", "translation": "", - "context": "", + "context": "CPU Usage", "reference": "", "comment": "" }, { "term": "CPU temperature display", "translation": "", - "context": "", + "context": "CPU temperature display", "reference": "", "comment": "" }, { "term": "CPU usage indicator", "translation": "", - "context": "", + "context": "CPU usage indicator", "reference": "", "comment": "" }, { "term": "CPU, memory, network, and disk monitoring", "translation": "", - "context": "System monitor widget description", + "context": "CPU, memory, network, and disk monitoring", "reference": "", - "comment": "" + "comment": "System monitor widget description" }, { "term": "CUPS Insecure Filter Warning", "translation": "", - "context": "", + "context": "CUPS Insecure Filter Warning", "reference": "", "comment": "" }, { "term": "CUPS Missing Filter Warning", "translation": "", - "context": "", + "context": "CUPS Missing Filter Warning", "reference": "", "comment": "" }, { "term": "CUPS Print Server", "translation": "", - "context": "", + "context": "CUPS Print Server", "reference": "", "comment": "" }, { "term": "CUPS not available", "translation": "", - "context": "", + "context": "CUPS not available", "reference": "", "comment": "" }, @@ -3035,4576 +2979,4443 @@ "translation": "", "context": "Calendar", "reference": "", - "comment": "" + "comment": "Calendar" }, { "term": "Calendar Backend", "translation": "", - "context": "", + "context": "Calendar Backend", "reference": "", "comment": "" }, { "term": "Camera", "translation": "", - "context": "", + "context": "Camera", "reference": "", "comment": "" }, { "term": "Cancel", "translation": "", - "context": "", + "context": "Cancel", "reference": "", "comment": "" }, { "term": "Cancel all jobs for \"%1\"?", "translation": "", - "context": "", + "context": "Cancel all jobs for \"%1\"?", "reference": "", "comment": "" }, { "term": "Canceled", "translation": "", - "context": "", + "context": "Canceled", "reference": "", "comment": "" }, { "term": "Cannot delete the only administrator", "translation": "", - "context": "", + "context": "Cannot delete the only administrator", "reference": "", "comment": "" }, { "term": "Cannot disable the only output", "translation": "", - "context": "", + "context": "Cannot disable the only output", "reference": "", "comment": "" }, { "term": "Cannot open trash: '%1' is not installed", "translation": "", - "context": "", + "context": "Cannot open trash: '%1' is not installed", "reference": "", "comment": "" }, { "term": "Cannot open trash: no custom command set", "translation": "", - "context": "", + "context": "Cannot open trash: no custom command set", "reference": "", "comment": "" }, { "term": "Cannot pair", "translation": "", - "context": "", + "context": "Cannot pair", "reference": "", "comment": "" }, { "term": "Cannot remove the only administrator", "translation": "", - "context": "", + "context": "Cannot remove the only administrator", "reference": "", "comment": "" }, { "term": "Capabilities", "translation": "", - "context": "plugin detail section", + "context": "Capabilities", "reference": "", - "comment": "" + "comment": "plugin detail section" }, { "term": "Capacity", "translation": "", - "context": "", + "context": "Capacity", "reference": "", "comment": "" }, { "term": "Caps Lock", "translation": "", - "context": "", + "context": "Caps Lock", "reference": "", "comment": "" }, { "term": "Caps Lock Indicator", "translation": "", - "context": "", + "context": "Caps Lock Indicator", "reference": "", "comment": "" }, { "term": "Caps Lock is on", "translation": "", - "context": "", + "context": "Caps Lock is on", "reference": "", "comment": "" }, { "term": "Cast Target", "translation": "", - "context": "", + "context": "Cast Target", "reference": "", "comment": "" }, { "term": "Category", "translation": "", - "context": "plugin browser sort option", + "context": "Category", "reference": "", - "comment": "" + "comment": "plugin browser sort option" }, { "term": "Center Section", "translation": "", - "context": "", + "context": "Center Section", "reference": "", "comment": "" }, { "term": "Center Single Column", "translation": "", - "context": "", + "context": "Center Single Column", "reference": "", "comment": "" }, { "term": "Center Tiling", "translation": "", - "context": "", + "context": "Center Tiling", "reference": "", "comment": "" }, { "term": "Certificate Password", "translation": "", - "context": "", + "context": "Certificate Password", "reference": "", "comment": "" }, { "term": "Change Song", "translation": "", - "context": "media scroll wheel option", + "context": "Change Song", "reference": "", - "comment": "" + "comment": "media scroll wheel option" }, { "term": "Change Volume", "translation": "", - "context": "media scroll wheel option", + "context": "Change Volume", "reference": "", - "comment": "" + "comment": "media scroll wheel option" }, { "term": "Change the locale used by the DMS interface.", "translation": "", - "context": "", + "context": "Change the locale used by the DMS interface.", "reference": "", "comment": "" }, { "term": "Change the locale used for date and time formatting, independent of the interface language.", "translation": "", - "context": "", + "context": "Change the locale used for date and time formatting, independent of the interface language.", "reference": "", "comment": "" }, { "term": "Channel", "translation": "", - "context": "", + "context": "Channel", "reference": "", "comment": "" }, { "term": "Charge Level", "translation": "", - "context": "", + "context": "Charge Level", "reference": "", "comment": "" }, { "term": "Charge Limit Reached", "translation": "", - "context": "", + "context": "Charge Limit Reached", "reference": "", "comment": "" }, { "term": "Charge limit applied successfully", "translation": "", - "context": "", + "context": "Charge limit applied successfully", "reference": "", "comment": "" }, { "term": "Charging", "translation": "", - "context": "battery status", + "context": "Charging", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Check for system updates", "translation": "", - "context": "", + "context": "Check for system updates", "reference": "", "comment": "" }, { "term": "Check interval", "translation": "", - "context": "", + "context": "Check interval", "reference": "", "comment": "" }, { "term": "Check on startup", "translation": "", - "context": "", + "context": "Check on startup", "reference": "", "comment": "" }, { "term": "Check your custom command in Settings → Dock → Trash.", "translation": "", - "context": "", + "context": "Check your custom command in Settings → Dock → Trash.", "reference": "", "comment": "" }, { "term": "Checking for updates...", "translation": "", - "context": "", + "context": "Checking for updates...", "reference": "", "comment": "" }, { "term": "Checking whether sudo authentication is needed...", "translation": "", - "context": "", + "context": "Checking whether sudo authentication is needed...", "reference": "", "comment": "" }, { "term": "Checking...", "translation": "", - "context": "greeter status loading", + "context": "Checking...", "reference": "", - "comment": "" + "comment": "greeter status loading" }, { "term": "Choose Color", "translation": "", - "context": "", + "context": "Choose Color", "reference": "", "comment": "" }, { "term": "Choose Dark Mode Color", "translation": "", - "context": "dark mode wallpaper color picker title", + "context": "Choose Dark Mode Color", "reference": "", - "comment": "" - }, - { - "term": "Choose Dock Launcher Logo Color", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "dark mode wallpaper color picker title" }, { "term": "Choose Launcher Logo Color", "translation": "", - "context": "", + "context": "Choose Launcher Logo Color", "reference": "", "comment": "" }, { "term": "Choose Light Mode Color", "translation": "", - "context": "light mode wallpaper color picker title", + "context": "Choose Light Mode Color", "reference": "", - "comment": "" + "comment": "light mode wallpaper color picker title" }, { "term": "Choose Wallpaper Color", "translation": "", - "context": "wallpaper color picker title", + "context": "Choose Wallpaper Color", "reference": "", - "comment": "" + "comment": "wallpaper color picker title" }, { "term": "Choose a color", "translation": "", - "context": "", + "context": "Choose a color", "reference": "", "comment": "" }, { "term": "Choose a power profile", "translation": "", - "context": "", + "context": "Choose a power profile", "reference": "", "comment": "" }, { "term": "Choose colors from palette", "translation": "", - "context": "", + "context": "Choose colors from palette", "reference": "", "comment": "" }, { "term": "Choose how the weather widget is displayed", "translation": "", - "context": "", + "context": "Choose how the weather widget is displayed", "reference": "", "comment": "" }, { "term": "Choose how this bar resolves shadow direction", "translation": "", - "context": "", + "context": "Choose how this bar resolves shadow direction", "reference": "", "comment": "" }, { "term": "Choose how to be notified about critical battery alerts.", "translation": "", - "context": "", + "context": "Choose how to be notified about critical battery alerts.", "reference": "", "comment": "" }, { "term": "Choose how to be notified about low battery alerts.", "translation": "", - "context": "", + "context": "Choose how to be notified about low battery alerts.", "reference": "", "comment": "" }, { "term": "Choose how to be notified when charge limit is reached.", "translation": "", - "context": "", + "context": "Choose how to be notified when charge limit is reached.", "reference": "", "comment": "" }, { "term": "Choose icon", "translation": "", - "context": "", + "context": "Choose icon", "reference": "", "comment": "" }, { "term": "Choose monochrome or a theme color tint for system tray icons", "translation": "", - "context": "", + "context": "Choose monochrome or a theme color tint for system tray icons", "reference": "", "comment": "" }, { "term": "Choose neutral or accent-colored widget text", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Choose the background color for widgets", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Choose the border accent color", - "translation": "", - "context": "", + "context": "Choose neutral or accent-colored widget text", "reference": "", "comment": "" }, { "term": "Choose the logo displayed on the launcher button in DankBar", "translation": "", - "context": "", + "context": "Choose the logo displayed on the launcher button in DankBar", "reference": "", "comment": "" }, { "term": "Choose wallpaper folder", "translation": "", - "context": "", + "context": "Choose wallpaper folder", "reference": "", "comment": "" }, { "term": "Choose where notification popups appear on screen", "translation": "", - "context": "", + "context": "Choose where notification popups appear on screen", "reference": "", "comment": "" }, { "term": "Choose where on-screen displays appear on screen", "translation": "", - "context": "", + "context": "Choose where on-screen displays appear on screen", "reference": "", "comment": "" }, { "term": "Choose whether to launch a desktop app or a command", "translation": "", - "context": "", + "context": "Choose whether to launch a desktop app or a command", "reference": "", "comment": "" }, { "term": "Choose which action buttons appear on clipboard entries", "translation": "", - "context": "", + "context": "Choose which action buttons appear on clipboard entries", "reference": "", "comment": "" }, { "term": "Choose which displays show this widget", "translation": "", - "context": "", + "context": "Choose which displays show this widget", "reference": "", "comment": "" }, { "term": "Choose which monitors show the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "translation": "", - "context": "", + "context": "Choose which monitors show the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "reference": "", "comment": "" }, { "term": "Chroma Style", "translation": "", - "context": "", + "context": "Chroma Style", "reference": "", "comment": "" }, { "term": "Cipher", "translation": "", - "context": "", + "context": "Cipher", "reference": "", "comment": "" }, { "term": "Circle", "translation": "", - "context": "dock indicator style option", + "context": "Circle", "reference": "", - "comment": "" + "comment": "dock indicator style option" }, { "term": "Class regex", "translation": "", - "context": "", + "context": "Class regex", "reference": "", "comment": "" }, { "term": "Class regex (e.g. ^firefox$)", "translation": "", - "context": "", + "context": "Class regex (e.g. ^firefox$)", "reference": "", "comment": "" }, { "term": "Clear", "translation": "", - "context": "", + "context": "Clear", "reference": "", "comment": "" }, { "term": "Clear All", "translation": "", - "context": "", + "context": "Clear All", "reference": "", "comment": "" }, { "term": "Clear All Jobs", "translation": "", - "context": "", + "context": "Clear All Jobs", "reference": "", "comment": "" }, { "term": "Clear History?", "translation": "", - "context": "", + "context": "Clear History?", "reference": "", "comment": "" }, { "term": "Clear Sky", "translation": "", - "context": "", + "context": "Clear Sky", "reference": "", "comment": "" }, { "term": "Clear all history when server starts", "translation": "", - "context": "", + "context": "Clear all history when server starts", "reference": "", "comment": "" }, { "term": "Clear at Startup", "translation": "", - "context": "", + "context": "Clear at Startup", "reference": "", "comment": "" }, { "term": "Click 'Setup' to create %1 and add include to your compositor config.", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Click 'Setup' to create the outputs config and add include to your compositor config.", - "translation": "", - "context": "", + "context": "Click 'Setup' to create %1 and add include to your compositor config.", "reference": "", "comment": "" }, { "term": "Click Import to add a .ovpn or .conf", "translation": "", - "context": "", + "context": "Click Import to add a .ovpn or .conf", "reference": "", "comment": "" }, { "term": "Click Refresh to check status.", "translation": "", - "context": "greeter status placeholder", + "context": "Click Refresh to check status.", "reference": "", - "comment": "" + "comment": "greeter status placeholder" }, { "term": "Click Through", "translation": "", - "context": "", + "context": "Click Through", "reference": "", "comment": "" }, { "term": "Click an entry to paste directly instead of copying", "translation": "", - "context": "Clipboard behavior setting description", + "context": "Click an entry to paste directly instead of copying", "reference": "", - "comment": "" + "comment": "Clipboard behavior setting description" }, { "term": "Click any shortcut to edit. Changes save to %1", "translation": "", - "context": "", + "context": "Click any shortcut to edit. Changes save to %1", "reference": "", "comment": "" }, { "term": "Click to Paste", "translation": "", - "context": "", + "context": "Click to Paste", "reference": "", "comment": "" }, { "term": "Click to capture", "translation": "", - "context": "", + "context": "Click to capture", "reference": "", "comment": "" }, { "term": "Click to select a custom theme JSON file", "translation": "", - "context": "custom theme file hint", + "context": "Click to select a custom theme JSON file", "reference": "", - "comment": "" + "comment": "custom theme file hint" }, { "term": "Clip", "translation": "", - "context": "", + "context": "Clip", "reference": "", "comment": "" }, { "term": "Clip to Geometry", "translation": "", - "context": "", + "context": "Clip to Geometry", "reference": "", "comment": "" }, { "term": "Clipboard", "translation": "", - "context": "", + "context": "Clipboard", "reference": "", "comment": "" }, { "term": "Clipboard History", "translation": "", - "context": "", + "context": "Clipboard History", "reference": "", "comment": "" }, { "term": "Clipboard Manager", "translation": "", - "context": "", + "context": "Clipboard Manager", "reference": "", "comment": "" }, { "term": "Clipboard Saved", "translation": "", - "context": "", + "context": "Clipboard Saved", "reference": "", "comment": "" }, { "term": "Clipboard sent", "translation": "", - "context": "Phone Connect clipboard action", + "context": "Clipboard sent", "reference": "", - "comment": "" + "comment": "Phone Connect clipboard action" }, { "term": "Clipboard works but nothing saved to disk", "translation": "", - "context": "", + "context": "Clipboard works but nothing saved to disk", "reference": "", "comment": "" }, { "term": "Clock", "translation": "", - "context": "", + "context": "Clock", "reference": "", "comment": "" }, { "term": "Clock Style", "translation": "", - "context": "", + "context": "Clock Style", "reference": "", "comment": "" }, { "term": "Clock, calendar, system info and profile", "translation": "", - "context": "", + "context": "Clock, calendar, system info and profile", "reference": "", "comment": "" }, { "term": "Close", "translation": "", - "context": "", + "context": "Close", "reference": "", "comment": "" }, { "term": "Close All Windows", "translation": "", - "context": "", + "context": "Close All Windows", "reference": "", "comment": "" }, { "term": "Close Overview on Launch", "translation": "", - "context": "", + "context": "Close Overview on Launch", "reference": "", "comment": "" }, { "term": "Close Window", "translation": "", - "context": "", + "context": "Close Window", "reference": "", "comment": "" }, { "term": "Codec switching is unavailable because pactl was not found", "translation": "", - "context": "", + "context": "Codec switching is unavailable because pactl was not found", "reference": "", "comment": "" }, { "term": "Color", "translation": "", - "context": "border color", + "context": "Color", "reference": "", - "comment": "" + "comment": "border color" }, { "term": "Color %1 copied", "translation": "", - "context": "", + "context": "Color %1 copied", "reference": "", "comment": "" }, { "term": "Color Gamut", "translation": "", - "context": "", + "context": "Color Gamut", "reference": "", "comment": "" }, { "term": "Color Management", "translation": "", - "context": "", + "context": "Color Management", "reference": "", "comment": "" }, { "term": "Color Mode", "translation": "", - "context": "", + "context": "Color Mode", "reference": "", "comment": "" }, { "term": "Color Override", "translation": "", - "context": "", + "context": "Color Override", "reference": "", "comment": "" }, { "term": "Color Picker", "translation": "", - "context": "", + "context": "Color Picker", "reference": "", "comment": "" }, { "term": "Color Temperature", "translation": "", - "context": "", + "context": "Color Temperature", "reference": "", "comment": "" }, { "term": "Color displayed on monitors without the lock screen", "translation": "", - "context": "", + "context": "Color displayed on monitors without the lock screen", "reference": "", "comment": "" }, { "term": "Color for primary action buttons", "translation": "", - "context": "", + "context": "Color for primary action buttons", "reference": "", "comment": "" }, { "term": "Color shown for areas not covered by wallpaper", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Color temperature for day time", - "translation": "", - "context": "", + "context": "Color shown for areas not covered by wallpaper", "reference": "", "comment": "" }, { "term": "Color temperature for night mode", "translation": "", - "context": "", + "context": "Color temperature for night mode", "reference": "", "comment": "" }, { "term": "Color theme for syntax highlighting.", "translation": "", - "context": "", + "context": "Color theme for syntax highlighting.", "reference": "", "comment": "" }, { "term": "Color theme for syntax highlighting. %1 themes available.", "translation": "", - "context": "", + "context": "Color theme for syntax highlighting. %1 themes available.", "reference": "", "comment": "" }, { "term": "Color theme from DMS registry", "translation": "", - "context": "registry theme description", + "context": "Color theme from DMS registry", "reference": "", - "comment": "" + "comment": "registry theme description" }, { "term": "Colorful", "translation": "", - "context": "widget style option", + "context": "Colorful", "reference": "", - "comment": "" + "comment": "widget style option" }, { "term": "Colorful mix of bright contrasting accents.", "translation": "", - "context": "", + "context": "Colorful mix of bright contrasting accents.", "reference": "", "comment": "" }, { "term": "Colorize Active", "translation": "", - "context": "", + "context": "Colorize Active", "reference": "", "comment": "" }, { "term": "Colors from wallpaper", "translation": "", - "context": "greeter feature card description", + "context": "Colors from wallpaper", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "Column", "translation": "", - "context": "", + "context": "Column", "reference": "", "comment": "" }, { "term": "Column Display", "translation": "", - "context": "", + "context": "Column Display", "reference": "", "comment": "" }, { "term": "Column Width", "translation": "", - "context": "", + "context": "Column Width", "reference": "", "comment": "" }, { "term": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", "translation": "", - "context": "", + "context": "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).", "reference": "", "comment": "" }, { "term": "Command", "translation": "", - "context": "", + "context": "Command", "reference": "", "comment": "" }, { "term": "Command Line", "translation": "", - "context": "", + "context": "Command Line", "reference": "", "comment": "" }, { "term": "Commands", "translation": "", - "context": "", + "context": "Commands", "reference": "", "comment": "" }, { "term": "Communication", "translation": "", - "context": "", + "context": "Communication", "reference": "", "comment": "" }, { "term": "Community themes", "translation": "", - "context": "greeter feature card description", + "context": "Community themes", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "Compact", "translation": "", - "context": "", + "context": "Compact", "reference": "", "comment": "" }, { "term": "Compact Mode", "translation": "", - "context": "", + "context": "Compact Mode", "reference": "", "comment": "" }, { "term": "Completed", "translation": "", - "context": "", + "context": "Completed", "reference": "", "comment": "" }, { "term": "Compositor", "translation": "", - "context": "", + "context": "Compositor", "reference": "", "comment": "" }, { "term": "Compositor Settings", "translation": "", - "context": "", + "context": "Compositor Settings", "reference": "", "comment": "" }, { "term": "Config Format", "translation": "", - "context": "", + "context": "Config Format", "reference": "", "comment": "" }, { "term": "Config action: %1", "translation": "", - "context": "", + "context": "Config action: %1", "reference": "", "comment": "" }, { "term": "Config validation failed", "translation": "", - "context": "", + "context": "Config validation failed", "reference": "", "comment": "" }, { "term": "Configuration", "translation": "", - "context": "", + "context": "Configuration", "reference": "", "comment": "" }, { "term": "Configuration activated", "translation": "", - "context": "", + "context": "Configuration activated", "reference": "", "comment": "" }, { "term": "Configuration will be preserved when this display reconnects", "translation": "", - "context": "", + "context": "Configuration will be preserved when this display reconnects", + "reference": "", + "comment": "" + }, + { + "term": "Configurations", + "translation": "", + "context": "Configurations", "reference": "", "comment": "" }, { "term": "Configure", "translation": "", - "context": "greeter settings section header", + "context": "Configure", "reference": "", - "comment": "" + "comment": "greeter settings section header" }, { "term": "Configure Keybinds", "translation": "", - "context": "greeter configure keybinds link", + "context": "Configure Keybinds", "reference": "", - "comment": "" + "comment": "greeter configure keybinds link" }, { "term": "Configure a new printer", "translation": "", - "context": "", + "context": "Configure a new printer", "reference": "", "comment": "" }, { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "translation": "", - "context": "", + "context": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "reference": "", "comment": "" }, { "term": "Configure match criteria and actions", "translation": "", - "context": "", + "context": "Configure match criteria and actions", "reference": "", "comment": "" }, { "term": "Configure one in Settings → Dock → Trash.", "translation": "", - "context": "", + "context": "Configure one in Settings → Dock → Trash.", "reference": "", "comment": "" }, { "term": "Configure which displays show \"%1\"", "translation": "", - "context": "", + "context": "Configure which displays show \"%1\"", "reference": "", "comment": "" }, { "term": "Configure which displays show shell components", "translation": "", - "context": "", + "context": "Configure which displays show shell components", "reference": "", "comment": "" }, { "term": "Confirm", "translation": "", - "context": "", + "context": "Confirm", "reference": "", "comment": "" }, { "term": "Confirm Delete", "translation": "", - "context": "", + "context": "Confirm Delete", "reference": "", "comment": "" }, { "term": "Confirm Display Changes", "translation": "", - "context": "", + "context": "Confirm Display Changes", "reference": "", "comment": "" }, { "term": "Confirm passkey for ", "translation": "", - "context": "", + "context": "Confirm passkey for ", "reference": "", "comment": "" }, { "term": "Confirm password", "translation": "", - "context": "", + "context": "Confirm password", "reference": "", "comment": "" }, { "term": "Conflicts with: %1", "translation": "", - "context": "", + "context": "Conflicts with: %1", "reference": "", "comment": "" }, { "term": "Connect", "translation": "", - "context": "Tailscale connect button", + "context": "Connect", "reference": "", - "comment": "" + "comment": "Tailscale connect button" }, { "term": "Connect to Hidden Network", "translation": "", - "context": "", + "context": "Connect to Hidden Network", "reference": "", "comment": "" }, { "term": "Connect to VPN", "translation": "", - "context": "", + "context": "Connect to VPN", "reference": "", "comment": "" }, { "term": "Connect to Wi-Fi", "translation": "", - "context": "", + "context": "Connect to Wi-Fi", "reference": "", "comment": "" }, { "term": "Connected", "translation": "", - "context": "Tailscale connection status: connected | network status", + "context": "Connected", "reference": "", - "comment": "" + "comment": "Tailscale connection status: connected | network status" }, { "term": "Connected Device", "translation": "", - "context": "bluetooth status", + "context": "Connected Device", "reference": "", - "comment": "" + "comment": "bluetooth status" }, { "term": "Connected Displays", "translation": "", - "context": "", + "context": "Connected Displays", "reference": "", "comment": "" }, { "term": "Connected Frame Mode uses the connected launcher for default launcher shortcuts.", "translation": "", - "context": "", + "context": "Connected Frame Mode uses the connected launcher for default launcher shortcuts.", "reference": "", "comment": "" }, { "term": "Connected Options", "translation": "", - "context": "", + "context": "Connected Options", "reference": "", "comment": "" }, { "term": "Connected to %1", "translation": "", - "context": "", + "context": "Connected to %1", "reference": "", "comment": "" }, { "term": "Connecting to Device", "translation": "", - "context": "", + "context": "Connecting to Device", "reference": "", "comment": "" }, { "term": "Connecting to clipboard service...", "translation": "", - "context": "", + "context": "Connecting to clipboard service...", "reference": "", "comment": "" }, { "term": "Connecting...", "translation": "", - "context": "bluetooth status | network status", + "context": "Connecting...", "reference": "", - "comment": "" - }, - { - "term": "Connecting…", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "bluetooth status | network status" }, { "term": "Connection failed", "translation": "", - "context": "Status message when test connection to printer fails", + "context": "Connection failed", "reference": "", - "comment": "" + "comment": "Status message when test connection to printer fails" }, { "term": "Contains", "translation": "", - "context": "notification rule match type option", + "context": "Contains", "reference": "", - "comment": "" + "comment": "notification rule match type option" }, { "term": "Content", "translation": "", - "context": "matugen color scheme option", + "context": "Content", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Content copied", "translation": "", - "context": "", + "context": "Content copied", "reference": "", "comment": "" }, { "term": "Contrast", "translation": "", - "context": "", + "context": "Contrast", "reference": "", "comment": "" }, { "term": "Contributor", "translation": "", - "context": "plugin browser sort option", + "context": "Contributor", "reference": "", - "comment": "" + "comment": "plugin browser sort option" }, { "term": "Control Center", "translation": "", - "context": "greeter feature card title", + "context": "Control Center", "reference": "", - "comment": "" + "comment": "greeter feature card title" }, { "term": "Control Center Tile Color", "translation": "", - "context": "", + "context": "Control Center Tile Color", "reference": "", "comment": "" }, { "term": "Control animation duration for notification popups and history", "translation": "", - "context": "", + "context": "Control animation duration for notification popups and history", "reference": "", "comment": "" }, { "term": "Control currently playing media", "translation": "", - "context": "", + "context": "Control currently playing media", "reference": "", "comment": "" }, { "term": "Control what notification information is shown on the lock screen", "translation": "", - "context": "lock screen notification privacy setting", + "context": "Control what notification information is shown on the lock screen", "reference": "", - "comment": "" + "comment": "lock screen notification privacy setting" }, { "term": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", "translation": "", - "context": "", + "context": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", "reference": "", "comment": "" }, { "term": "Control workspaces and columns by scrolling on the bar", "translation": "", - "context": "", + "context": "Control workspaces and columns by scrolling on the bar", "reference": "", "comment": "" }, { "term": "Controls how much original icon color is removed before applying tint", "translation": "", - "context": "", + "context": "Controls how much original icon color is removed before applying tint", "reference": "", "comment": "" }, { "term": "Controls how strongly the selected tint color is applied", "translation": "", - "context": "", + "context": "Controls how strongly the selected tint color is applied", "reference": "", "comment": "" }, { "term": "Controls opacity of shell surfaces, popouts, and modals", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Controls opacity of the bar background", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Controls opacity of the border", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Controls opacity of the shadow layer", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Controls opacity of the widget outline", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Controls opacity of widget backgrounds", - "translation": "", - "context": "", + "context": "Controls opacity of shell surfaces, popouts, and modals", "reference": "", "comment": "" }, { "term": "Controls outlines around foreground cards, pills, and notification cards", "translation": "", - "context": "", + "context": "Controls outlines around foreground cards, pills, and notification cards", "reference": "", "comment": "" }, { "term": "Controls shadow cast direction for elevation layers", "translation": "", - "context": "", + "context": "Controls shadow cast direction for elevation layers", "reference": "", "comment": "" }, { "term": "Controls the base blur radius and offset of shadows", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Controls the opacity of the shadow", - "translation": "", - "context": "", + "context": "Controls the base blur radius and offset of shadows", "reference": "", "comment": "" }, { "term": "Controls the outline of popouts, modals, and other shell surfaces", "translation": "", - "context": "", + "context": "Controls the outline of popouts, modals, and other shell surfaces", "reference": "", "comment": "" }, { "term": "Convenience options for the login screen. Sync to apply.", "translation": "", - "context": "", + "context": "Convenience options for the login screen. Sync to apply.", "reference": "", "comment": "" }, { "term": "Convert to DMS", "translation": "", - "context": "", + "context": "Convert to DMS", "reference": "", "comment": "" }, { "term": "Cooldown", "translation": "", - "context": "", + "context": "Cooldown", "reference": "", "comment": "" }, { "term": "Copied GIF", "translation": "", - "context": "", + "context": "Copied GIF", "reference": "", "comment": "" }, { "term": "Copied MP4", "translation": "", - "context": "", + "context": "Copied MP4", "reference": "", "comment": "" }, { "term": "Copied WebP", "translation": "", - "context": "", + "context": "Copied WebP", "reference": "", "comment": "" }, { "term": "Copied to clipboard", "translation": "", - "context": "", + "context": "Copied to clipboard", "reference": "", "comment": "" }, { "term": "Copied!", "translation": "", - "context": "", + "context": "Copied!", "reference": "", "comment": "" }, { "term": "Copy", "translation": "", - "context": "Copy to clipboard", + "context": "Copy", "reference": "", - "comment": "" + "comment": "Copy to clipboard" }, { "term": "Copy Content", "translation": "", - "context": "", + "context": "Copy Content", "reference": "", "comment": "" }, { "term": "Copy Full Command", "translation": "", - "context": "", + "context": "Copy Full Command", "reference": "", "comment": "" }, { "term": "Copy HTML", "translation": "", - "context": "", + "context": "Copy HTML", "reference": "", "comment": "" }, { "term": "Copy Name", "translation": "", - "context": "", + "context": "Copy Name", "reference": "", "comment": "" }, { "term": "Copy PID", "translation": "", - "context": "", + "context": "Copy PID", "reference": "", "comment": "" }, { "term": "Copy Text", "translation": "", - "context": "", + "context": "Copy Text", "reference": "", "comment": "" }, { "term": "Copy path", "translation": "", - "context": "", + "context": "Copy path", "reference": "", "comment": "" }, { "term": "Corner Radius", "translation": "", - "context": "", + "context": "Corner Radius", "reference": "", "comment": "" }, { "term": "Corner Radius Override", "translation": "", - "context": "", + "context": "Corner Radius Override", "reference": "", "comment": "" }, { "term": "Corners & Background", "translation": "", - "context": "", + "context": "Corners & Background", "reference": "", "comment": "" }, { "term": "Count Only", "translation": "", - "context": "lock screen notification mode option", + "context": "Count Only", "reference": "", - "comment": "" + "comment": "lock screen notification mode option" }, { "term": "Cover Open", "translation": "", - "context": "", + "context": "Cover Open", "reference": "", "comment": "" }, { "term": "Create", "translation": "", - "context": "", + "context": "Create", "reference": "", "comment": "" }, { "term": "Create Dir", "translation": "", - "context": "", + "context": "Create Dir", "reference": "", "comment": "" }, { "term": "Create Printer", "translation": "", - "context": "", + "context": "Create Printer", "reference": "", "comment": "" }, { "term": "Create User", "translation": "", - "context": "", + "context": "Create User", "reference": "", "comment": "" }, { "term": "Create Window Rule", "translation": "", - "context": "", + "context": "Create Window Rule", "reference": "", "comment": "" }, { "term": "Create a new %1 session (^N)", "translation": "", - "context": "", + "context": "Create a new %1 session (^N)", "reference": "", "comment": "" }, { "term": "Create rule for:", "translation": "", - "context": "", + "context": "Create rule for:", "reference": "", "comment": "" }, { "term": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", "translation": "", - "context": "", + "context": "Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.", "reference": "", "comment": "" }, { "term": "Created plugin directory: %1", "translation": "", - "context": "", + "context": "Created plugin directory: %1", "reference": "", "comment": "" }, { "term": "Creating...", "translation": "", - "context": "", + "context": "Creating...", "reference": "", "comment": "" }, { "term": "Credentials", "translation": "", - "context": "", + "context": "Credentials", "reference": "", "comment": "" }, { "term": "Critical Battery", "translation": "", - "context": "", + "context": "Critical Battery", "reference": "", "comment": "" }, { "term": "Critical Battery Alert", "translation": "", - "context": "", + "context": "Critical Battery Alert", "reference": "", "comment": "" }, { "term": "Critical Battery Notifications", "translation": "", - "context": "", + "context": "Critical Battery Notifications", "reference": "", "comment": "" }, { "term": "Critical Priority", "translation": "", - "context": "notification rule urgency option", + "context": "Critical Priority", "reference": "", - "comment": "" + "comment": "notification rule urgency option" }, { "term": "Critical Threshold", "translation": "", - "context": "", + "context": "Critical Threshold", "reference": "", "comment": "" }, { "term": "Ctrl+A: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close", "translation": "", - "context": "", + "context": "Ctrl+A: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close", "reference": "", "comment": "" }, { "term": "Ctrl+S: Save • Ctrl+O: Open • Ctrl+N: New • Ctrl+F: Find", "translation": "", - "context": "", + "context": "Ctrl+S: Save • Ctrl+O: Open • Ctrl+N: New • Ctrl+F: Find", "reference": "", "comment": "" }, { "term": "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close", "translation": "", - "context": "", + "context": "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close", "reference": "", "comment": "" }, { "term": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close", "translation": "", - "context": "Keyboard hints when enter-to-paste is enabled", + "context": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close", "reference": "", - "comment": "" + "comment": "Keyboard hints when enter-to-paste is enabled" }, { "term": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close", "translation": "", - "context": "", + "context": "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close", "reference": "", "comment": "" }, { "term": "Current", "translation": "", - "context": "notification center tab", + "context": "Current", "reference": "", - "comment": "" + "comment": "notification center tab" }, { "term": "Current Items", "translation": "", - "context": "", + "context": "Current Items", "reference": "", "comment": "" }, { "term": "Current Locale", "translation": "", - "context": "", + "context": "Current Locale", "reference": "", "comment": "" }, { "term": "Current Monitor", "translation": "", - "context": "Running apps filter: only show apps from the same monitor", + "context": "Current Monitor", "reference": "", - "comment": "" + "comment": "Running apps filter: only show apps from the same monitor" }, { "term": "Current Period", "translation": "", - "context": "", + "context": "Current Period", "reference": "", "comment": "" }, { "term": "Current Status", "translation": "", - "context": "", + "context": "Current Status", "reference": "", "comment": "" }, { "term": "Current Temp", "translation": "", - "context": "", + "context": "Current Temp", "reference": "", "comment": "" }, { "term": "Current Theme: %1", "translation": "", - "context": "current theme label", + "context": "Current Theme: %1", "reference": "", - "comment": "" + "comment": "current theme label" }, { "term": "Current Weather", "translation": "", - "context": "", + "context": "Current Weather", "reference": "", "comment": "" }, { "term": "Current Workspace", "translation": "", - "context": "Running apps filter: only show apps from the active workspace", + "context": "Current Workspace", "reference": "", - "comment": "" + "comment": "Running apps filter: only show apps from the active workspace" }, { "term": "Current time and date display", "translation": "", - "context": "", + "context": "Current time and date display", "reference": "", "comment": "" }, { "term": "Current weather conditions and temperature", "translation": "", - "context": "", + "context": "Current weather conditions and temperature", "reference": "", "comment": "" }, { "term": "Current: %1", "translation": "", - "context": "", + "context": "Current: %1", "reference": "", "comment": "" }, { "term": "Cursor Size", "translation": "", - "context": "", + "context": "Cursor Size", "reference": "", "comment": "" }, { "term": "Cursor Theme", "translation": "", - "context": "", + "context": "Cursor Theme", "reference": "", "comment": "" }, { "term": "Curve", "translation": "", - "context": "", + "context": "Curve", "reference": "", "comment": "" }, { "term": "Curve: curve rasterizer.", "translation": "", - "context": "", + "context": "Curve: curve rasterizer.", "reference": "", "comment": "" }, { "term": "Custom", "translation": "", - "context": "shadow color option | surface border color | theme category option | widget background color option | workspace color option", + "context": "Custom", "reference": "", - "comment": "" + "comment": "shadow color option | surface border color | theme category option | widget background color option | workspace color option" }, { "term": "Custom Blend", "translation": "", - "context": "", + "context": "Custom Blend", "reference": "", "comment": "" }, { "term": "Custom Color", "translation": "", - "context": "", + "context": "Custom Color", "reference": "", "comment": "" }, { "term": "Custom Duration", "translation": "", - "context": "", + "context": "Custom Duration", "reference": "", "comment": "" }, { "term": "Custom Hibernate Command", "translation": "", - "context": "", + "context": "Custom Hibernate Command", "reference": "", "comment": "" }, { "term": "Custom Location", "translation": "", - "context": "", + "context": "Custom Location", "reference": "", "comment": "" }, { "term": "Custom Lock Command", "translation": "", - "context": "", + "context": "Custom Lock Command", "reference": "", "comment": "" }, { "term": "Custom Logout Command", "translation": "", - "context": "", + "context": "Custom Logout Command", "reference": "", "comment": "" }, { "term": "Custom Name", "translation": "", - "context": "Audio device rename dialog field label", + "context": "Custom Name", "reference": "", - "comment": "" + "comment": "Audio device rename dialog field label" }, { "term": "Custom Power Actions", "translation": "", - "context": "", + "context": "Custom Power Actions", "reference": "", "comment": "" }, { "term": "Custom Power Off Command", "translation": "", - "context": "", + "context": "Custom Power Off Command", "reference": "", "comment": "" }, { "term": "Custom Reboot Command", "translation": "", - "context": "", + "context": "Custom Reboot Command", "reference": "", "comment": "" }, { "term": "Custom Shadow Color", "translation": "", - "context": "", + "context": "Custom Shadow Color", "reference": "", "comment": "" }, { "term": "Custom Shadow Override", "translation": "", - "context": "", + "context": "Custom Shadow Override", "reference": "", "comment": "" }, { "term": "Custom Suspend Command", "translation": "", - "context": "", + "context": "Custom Suspend Command", "reference": "", "comment": "" }, { "term": "Custom command and terminal params are split on whitespace; paths with spaces will break.", "translation": "", - "context": "", + "context": "Custom command and terminal params are split on whitespace; paths with spaces will break.", "reference": "", "comment": "" }, { "term": "Custom interval in minutes (minimum 5)", "translation": "", - "context": "", + "context": "Custom interval in minutes (minimum 5)", "reference": "", "comment": "" }, { "term": "Custom open-trash command", "translation": "", - "context": "", + "context": "Custom open-trash command", "reference": "", "comment": "" }, { "term": "Custom power profile", "translation": "", - "context": "power profile description", + "context": "Custom power profile", "reference": "", - "comment": "" + "comment": "power profile description" }, { "term": "Custom theme loaded from JSON file", "translation": "", - "context": "custom theme description", + "context": "Custom theme loaded from JSON file", "reference": "", - "comment": "" + "comment": "custom theme description" }, { "term": "Custom update command", "translation": "", - "context": "", + "context": "Custom update command", "reference": "", "comment": "" }, { "term": "Custom...", "translation": "", - "context": "custom PAM authentication source option | date format option", + "context": "Custom...", "reference": "", - "comment": "" - }, - { - "term": "Custom: ", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "custom PAM authentication source option | date format option" }, { "term": "Customizable empty space", "translation": "", - "context": "", + "context": "Customizable empty space", "reference": "", "comment": "" }, { "term": "Customize the font and background of the lock screen, or leave empty to use your theme font and desktop wallpaper. Changes apply instantly.", "translation": "", - "context": "", + "context": "Customize the font and background of the lock screen, or leave empty to use your theme font and desktop wallpaper. Changes apply instantly.", "reference": "", "comment": "" }, { "term": "Customize which actions appear in the power menu", "translation": "", - "context": "", + "context": "Customize which actions appear in the power menu", "reference": "", "comment": "" }, { "term": "DDC/CI monitor", "translation": "", - "context": "", + "context": "DDC/CI monitor", "reference": "", "comment": "" }, { "term": "DEMO MODE - Click anywhere to exit", "translation": "", - "context": "", + "context": "DEMO MODE - Click anywhere to exit", "reference": "", "comment": "" }, { "term": "DMS Chooser", "translation": "", - "context": "", + "context": "DMS Chooser", "reference": "", "comment": "" }, { "term": "DMS Plugin Manager Unavailable", "translation": "", - "context": "", + "context": "DMS Plugin Manager Unavailable", "reference": "", "comment": "" }, { "term": "DMS Settings", "translation": "", - "context": "", + "context": "DMS Settings", "reference": "", "comment": "" }, { "term": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.", "translation": "", - "context": "", + "context": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.", "reference": "", "comment": "" }, { "term": "DMS Shortcuts", "translation": "", - "context": "greeter keybinds section header", + "context": "DMS Shortcuts", "reference": "", - "comment": "" + "comment": "greeter keybinds section header" }, { "term": "DMS out of date", "translation": "", - "context": "", + "context": "DMS out of date", "reference": "", "comment": "" }, + { + "term": "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it", + "translation": "", + "context": "DMS removes its managed block from /etc/pam.d/greetd and stops writing to it", + "reference": "", + "comment": "greeter system PAM toggle description" + }, { "term": "DMS server is outdated (API v%1, expected v%2)", "translation": "", - "context": "", + "context": "DMS server is outdated (API v%1, expected v%2)", "reference": "", "comment": "" }, { "term": "DMS service is not connected. Clipboard settings are unavailable.", "translation": "", - "context": "", + "context": "DMS service is not connected. Clipboard settings are unavailable.", "reference": "", "comment": "" }, { "term": "DMS shell actions (launcher, clipboard, etc.)", "translation": "", - "context": "", + "context": "DMS shell actions (launcher, clipboard, etc.)", "reference": "", "comment": "" }, { "term": "DMS_SOCKET not available", "translation": "", - "context": "", + "context": "DMS_SOCKET not available", "reference": "", "comment": "" }, { "term": "Daily", "translation": "", - "context": "", + "context": "Daily", "reference": "", "comment": "" }, { "term": "Daily at:", "translation": "", - "context": "", + "context": "Daily at:", "reference": "", "comment": "" }, { "term": "Dank", "translation": "", - "context": "", + "context": "Dank", "reference": "", "comment": "" }, { "term": "Dank Bar", "translation": "", - "context": "", + "context": "Dank Bar", "reference": "", "comment": "" }, { "term": "Dank Bar Xray", "translation": "", - "context": "", + "context": "Dank Bar Xray", "reference": "", "comment": "" }, { "term": "Dank Dash", "translation": "", - "context": "", + "context": "Dank Dash", "reference": "", "comment": "" }, { "term": "DankBar", "translation": "", - "context": "greeter feature card title | greeter settings link", + "context": "DankBar", "reference": "", - "comment": "" + "comment": "greeter feature card title | greeter settings link" }, { "term": "DankCalendar", "translation": "", - "context": "calendar backend option", + "context": "DankCalendar", "reference": "", - "comment": "" + "comment": "calendar backend option" }, { "term": "DankCalendar isn't installed", "translation": "", - "context": "", + "context": "DankCalendar isn't installed", "reference": "", "comment": "" }, { "term": "DankCalendar isn't running", "translation": "", - "context": "", + "context": "DankCalendar isn't running", "reference": "", "comment": "" }, { "term": "DankMaterialShell is ready to use", "translation": "", - "context": "greeter completion page subtitle", + "context": "DankMaterialShell is ready to use", "reference": "", - "comment": "" + "comment": "greeter completion page subtitle" }, { "term": "DankShell & System Icons (requires restart)", "translation": "", - "context": "", + "context": "DankShell & System Icons (requires restart)", "reference": "", "comment": "" }, { "term": "Dark Mode", "translation": "", - "context": "", + "context": "Dark Mode", "reference": "", "comment": "" }, { "term": "Dark Mode Icon Theme", "translation": "", - "context": "", + "context": "Dark Mode Icon Theme", "reference": "", "comment": "" }, { "term": "Dark mode base", "translation": "", - "context": "", + "context": "Dark mode base", "reference": "", "comment": "" }, { "term": "Dark mode harmony", "translation": "", - "context": "", + "context": "Dark mode harmony", "reference": "", "comment": "" }, { "term": "Darken Modal Background", "translation": "", - "context": "", + "context": "Darken Modal Background", "reference": "", "comment": "" }, { "term": "Date Format", "translation": "", - "context": "", + "context": "Date Format", "reference": "", "comment": "" }, { "term": "Date format on greeter", "translation": "", - "context": "", + "context": "Date format on greeter", "reference": "", "comment": "" }, { "term": "Dawn (Astronomical Twilight)", "translation": "", - "context": "", + "context": "Dawn (Astronomical Twilight)", "reference": "", "comment": "" }, { "term": "Dawn (Civil Twilight)", "translation": "", - "context": "", + "context": "Dawn (Civil Twilight)", "reference": "", "comment": "" }, { "term": "Dawn (Nautical Twilight)", "translation": "", - "context": "", + "context": "Dawn (Nautical Twilight)", "reference": "", "comment": "" }, { "term": "Day Date", "translation": "", - "context": "date format option", + "context": "Day Date", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Day Month Date", "translation": "", - "context": "date format option", + "context": "Day Month Date", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Day Temperature", "translation": "", - "context": "", + "context": "Day Temperature", "reference": "", "comment": "" }, { "term": "Daytime", "translation": "", - "context": "", + "context": "Daytime", "reference": "", "comment": "" }, { "term": "Deck", "translation": "", - "context": "", + "context": "Deck", "reference": "", "comment": "" }, { "term": "Default", "translation": "", - "context": "notification rule action option | notification rule urgency option | widget style option | workspace color option", + "context": "Default", "reference": "", - "comment": "" + "comment": "notification rule action option | notification rule urgency option | widget style option | workspace color option" }, { "term": "Default (Black)", "translation": "", - "context": "shadow color option", + "context": "Default (Black)", "reference": "", - "comment": "" + "comment": "shadow color option" }, { "term": "Default (Global)", "translation": "", - "context": "", + "context": "Default (Global)", "reference": "", "comment": "" }, { "term": "Default Apps", "translation": "", - "context": "", + "context": "Default Apps", "reference": "", "comment": "" }, { "term": "Default Launcher", "translation": "", - "context": "", + "context": "Default Launcher", "reference": "", "comment": "" }, { "term": "Default Launcher Shortcut", "translation": "", - "context": "", + "context": "Default Launcher Shortcut", "reference": "", "comment": "" }, { "term": "Default Mode", "translation": "", - "context": "", + "context": "Default Mode", "reference": "", "comment": "" }, { "term": "Default Opens", "translation": "", - "context": "", + "context": "Default Opens", "reference": "", "comment": "" }, { "term": "Default Width (%)", "translation": "", - "context": "", + "context": "Default Width (%)", "reference": "", "comment": "" }, { "term": "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.", "translation": "", - "context": "", + "context": "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.", "reference": "", "comment": "" }, { "term": "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.", "translation": "", - "context": "", + "context": "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.", "reference": "", "comment": "" }, { "term": "Default selected action", "translation": "", - "context": "", + "context": "Default selected action", "reference": "", "comment": "" }, { "term": "Defaults", "translation": "", - "context": "", + "context": "Defaults", "reference": "", "comment": "" }, { "term": "Define rules for window behavior. Saves to %1", "translation": "", - "context": "", + "context": "Define rules for window behavior. Saves to %1", "reference": "", "comment": "" }, { "term": "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close", "translation": "", - "context": "", + "context": "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close", "reference": "", "comment": "" }, { "term": "Delete", "translation": "", - "context": "", + "context": "Delete", "reference": "", "comment": "" }, { "term": "Delete \"%1\" and remove the home directory? This cannot be undone.", "translation": "", - "context": "", + "context": "Delete \"%1\" and remove the home directory? This cannot be undone.", "reference": "", "comment": "" }, { "term": "Delete \"%1\"?", "translation": "", - "context": "", + "context": "Delete \"%1\"?", "reference": "", "comment": "" }, { "term": "Delete Class", "translation": "", - "context": "", + "context": "Delete Class", "reference": "", "comment": "" }, { "term": "Delete Printer", "translation": "", - "context": "", + "context": "Delete Printer", "reference": "", "comment": "" }, { "term": "Delete Rule", "translation": "", - "context": "", + "context": "Delete Rule", "reference": "", "comment": "" }, { "term": "Delete Saved Item?", "translation": "", - "context": "", + "context": "Delete Saved Item?", "reference": "", "comment": "" }, { "term": "Delete VPN", "translation": "", - "context": "", + "context": "Delete VPN", "reference": "", "comment": "" }, { "term": "Delete class \"%1\"?", "translation": "", - "context": "", + "context": "Delete class \"%1\"?", "reference": "", "comment": "" }, { "term": "Delete profile \"%1\"?", "translation": "", - "context": "", + "context": "Delete profile \"%1\"?", "reference": "", "comment": "" }, { "term": "Delete user", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Delete user?", - "translation": "", - "context": "", + "context": "Delete user", "reference": "", "comment": "" }, { "term": "Demi Bold", "translation": "", - "context": "font weight", + "context": "Demi Bold", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Dependencies & documentation", "translation": "", - "context": "", + "context": "Dependencies & documentation", "reference": "", "comment": "" }, { "term": "Depth", "translation": "", - "context": "", + "context": "Depth", "reference": "", "comment": "" }, { "term": "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.", "translation": "", - "context": "", + "context": "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.", "reference": "", "comment": "" }, { "term": "Derives colors that closely match the underlying image.", "translation": "", - "context": "", + "context": "Derives colors that closely match the underlying image.", "reference": "", "comment": "" }, { "term": "Description", "translation": "", - "context": "", + "context": "Description", "reference": "", "comment": "" }, { "term": "Desktop", "translation": "", - "context": "", + "context": "Desktop", "reference": "", "comment": "" }, { "term": "Desktop Application", "translation": "", - "context": "", + "context": "Desktop Application", "reference": "", "comment": "" }, { "term": "Desktop Clock", "translation": "", - "context": "Desktop clock widget name", + "context": "Desktop Clock", "reference": "", - "comment": "" + "comment": "Desktop clock widget name" }, { "term": "Desktop Entry", "translation": "", - "context": "notification rule match field option", + "context": "Desktop Entry", "reference": "", - "comment": "" + "comment": "notification rule match field option" }, { "term": "Desktop Widget", "translation": "", - "context": "", + "context": "Desktop Widget", "reference": "", "comment": "" }, { "term": "Desktop Widgets", "translation": "", - "context": "", + "context": "Desktop Widgets", "reference": "", "comment": "" }, { "term": "Desktop background images", "translation": "", - "context": "", + "context": "Desktop background images", "reference": "", "comment": "" }, { "term": "Detailed", "translation": "", - "context": "", + "context": "Detailed", "reference": "", "comment": "" }, { "term": "Details for \"%1\"", "translation": "", - "context": "", + "context": "Details for \"%1\"", "reference": "", "comment": "" }, { "term": "Detected backends: %1", "translation": "", - "context": "", + "context": "Detected backends: %1", "reference": "", "comment": "" }, { "term": "Development", "translation": "", - "context": "", + "context": "Development", "reference": "", "comment": "" }, { "term": "Device", "translation": "", - "context": "", + "context": "Device", "reference": "", "comment": "" }, { "term": "Device connections", "translation": "", - "context": "", + "context": "Device connections", "reference": "", "comment": "" }, { "term": "Device list scroll volume", "translation": "", - "context": "", + "context": "Device list scroll volume", "reference": "", "comment": "" }, { "term": "Device names updated", "translation": "", - "context": "", + "context": "Device names updated", "reference": "", "comment": "" }, { "term": "Device paired", "translation": "", - "context": "Phone Connect pairing action", + "context": "Device paired", "reference": "", - "comment": "" + "comment": "Phone Connect pairing action" }, { "term": "Device unpaired", "translation": "", - "context": "Phone Connect unpair action", + "context": "Device unpaired", "reference": "", - "comment": "" + "comment": "Phone Connect unpair action" }, { "term": "Diff", "translation": "", - "context": "", + "context": "Diff", "reference": "", "comment": "" }, { "term": "Digital", "translation": "", - "context": "", + "context": "Digital", "reference": "", "comment": "" }, { "term": "Direction Source", "translation": "", - "context": "bar shadow direction source", + "context": "Direction Source", "reference": "", - "comment": "" + "comment": "bar shadow direction source" }, { "term": "Directional", "translation": "", - "context": "", + "context": "Directional", "reference": "", "comment": "" }, { "term": "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.", "translation": "", - "context": "", + "context": "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.", "reference": "", "comment": "" }, { "term": "Disable Autoconnect", "translation": "", - "context": "", + "context": "Disable Autoconnect", "reference": "", "comment": "" }, { "term": "Disable Built-in Wallpapers", "translation": "", - "context": "wallpaper settings disable toggle", + "context": "Disable Built-in Wallpapers", "reference": "", - "comment": "" + "comment": "wallpaper settings disable toggle" }, { "term": "Disable History Persistence", "translation": "", - "context": "", + "context": "Disable History Persistence", "reference": "", "comment": "" }, { "term": "Disable Output", "translation": "", - "context": "", + "context": "Disable Output", "reference": "", "comment": "" }, { "term": "Disabled", "translation": "", - "context": "bluetooth status | lock screen notification mode option", + "context": "Disabled", "reference": "", - "comment": "" + "comment": "bluetooth status | lock screen notification mode option" }, { "term": "Disabled by Frame Mode", "translation": "", - "context": "", + "context": "Disabled by Frame Mode", "reference": "", "comment": "" }, { "term": "Disabling WiFi...", "translation": "", - "context": "network status", + "context": "Disabling WiFi...", "reference": "", - "comment": "" + "comment": "network status" }, { "term": "Disabling auto-login on startup...", "translation": "", - "context": "", + "context": "Disabling auto-login on startup...", "reference": "", "comment": "" }, { "term": "Disc", "translation": "", - "context": "wallpaper transition option", + "context": "Disc", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Discard", "translation": "", - "context": "", + "context": "Discard", "reference": "", "comment": "" }, { "term": "Discharging", "translation": "", - "context": "battery status", + "context": "Discharging", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Disconnect", "translation": "", - "context": "Tailscale disconnect button", + "context": "Disconnect", "reference": "", - "comment": "" + "comment": "Tailscale disconnect button" }, { "term": "Disconnected", "translation": "", - "context": "Tailscale connection status: disconnected | Tailscale disconnected status", + "context": "Disconnected", "reference": "", - "comment": "" + "comment": "Tailscale connection status: disconnected | Tailscale disconnected status" }, { "term": "Disconnected from WiFi", "translation": "", - "context": "", + "context": "Disconnected from WiFi", "reference": "", "comment": "" }, { "term": "Discover Devices", "translation": "", - "context": "Toggle button to scan for printers via mDNS/Avahi", + "context": "Discover Devices", "reference": "", - "comment": "" + "comment": "Toggle button to scan for printers via mDNS/Avahi" }, { "term": "Disk", "translation": "", - "context": "", + "context": "Disk", "reference": "", "comment": "" }, { "term": "Disk I/O", "translation": "", - "context": "disk io header in system monitor", + "context": "Disk I/O", "reference": "", - "comment": "" + "comment": "disk io header in system monitor" }, { "term": "Disk Usage", "translation": "", - "context": "", + "context": "Disk Usage", "reference": "", "comment": "" }, { "term": "Disk Usage Display", "translation": "", - "context": "", + "context": "Disk Usage Display", "reference": "", "comment": "" }, { "term": "Disks", "translation": "", - "context": "", + "context": "Disks", "reference": "", "comment": "" }, { "term": "Dismiss", "translation": "", - "context": "", + "context": "Dismiss", "reference": "", "comment": "" }, { "term": "Display", "translation": "", - "context": "", + "context": "Display", "reference": "", "comment": "" }, { "term": "Display Assignment", "translation": "", - "context": "", + "context": "Display Assignment", "reference": "", "comment": "" }, { "term": "Display Control", "translation": "", - "context": "greeter feature card title", + "context": "Display Control", "reference": "", - "comment": "" + "comment": "greeter feature card title" }, { "term": "Display Name Format", "translation": "", - "context": "", + "context": "Display Name Format", "reference": "", "comment": "" }, { "term": "Display Profiles", "translation": "", - "context": "", + "context": "Display Profiles", "reference": "", "comment": "" }, { "term": "Display Settings", "translation": "", - "context": "", + "context": "Display Settings", "reference": "", "comment": "" }, { "term": "Display a dock with pinned and running applications", "translation": "", - "context": "", + "context": "Display a dock with pinned and running applications", "reference": "", "comment": "" }, { "term": "Display all priorities over fullscreen apps", "translation": "", - "context": "", + "context": "Display all priorities over fullscreen apps", "reference": "", "comment": "" }, { "term": "Display and switch MangoWC layouts", "translation": "", - "context": "", + "context": "Display and switch MangoWC layouts", "reference": "", "comment": "" }, { "term": "Display application icons in workspace indicators", "translation": "", - "context": "", + "context": "Display application icons in workspace indicators", "reference": "", "comment": "" }, { "term": "Display brightness control", "translation": "", - "context": "", + "context": "Display brightness control", "reference": "", "comment": "" }, { "term": "Display configuration is not available. WLR output management protocol not supported.", "translation": "", - "context": "", + "context": "Display configuration is not available. WLR output management protocol not supported.", "reference": "", "comment": "" }, { "term": "Display currently focused application title", "translation": "", - "context": "", + "context": "Display currently focused application title", "reference": "", "comment": "" }, { "term": "Display hourly weather predictions", "translation": "", - "context": "", + "context": "Display hourly weather predictions", "reference": "", "comment": "" }, { "term": "Display line numbers in editor", "translation": "", - "context": "", + "context": "Display line numbers in editor", "reference": "", "comment": "" }, { "term": "Display name for this entry", "translation": "", - "context": "", + "context": "Display name for this entry", "reference": "", "comment": "" }, { "term": "Display only workspaces that contain windows", "translation": "", - "context": "", + "context": "Display only workspaces that contain windows", "reference": "", "comment": "" }, { "term": "Display power menu actions in a grid instead of a list", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Display seconds in the clock", - "translation": "", - "context": "", + "context": "Display power menu actions in a grid instead of a list", "reference": "", "comment": "" }, { "term": "Display setup failed", "translation": "", - "context": "", + "context": "Display setup failed", "reference": "", "comment": "" }, { "term": "Display the power system menu", "translation": "", - "context": "", + "context": "Display the power system menu", "reference": "", "comment": "" }, { "term": "Display volume and brightness percentage values in OSD popups", "translation": "", - "context": "", + "context": "Display volume and brightness percentage values in OSD popups", "reference": "", "comment": "" }, { "term": "Displays", "translation": "", - "context": "greeter settings link", + "context": "Displays", "reference": "", - "comment": "" - }, - { - "term": "Displays count when overflow is active", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "greeter settings link" }, { "term": "Displays the active keyboard layout and allows switching", "translation": "", - "context": "", + "context": "Displays the active keyboard layout and allows switching", "reference": "", "comment": "" }, { "term": "Distribution", "translation": "", - "context": "system info label", + "context": "Distribution", "reference": "", - "comment": "" + "comment": "system info label" }, { "term": "Diverse palette spanning the full spectrum.", "translation": "", - "context": "", + "context": "Diverse palette spanning the full spectrum.", "reference": "", "comment": "" }, { "term": "Do Not Disturb", "translation": "", - "context": "", + "context": "Do Not Disturb", "reference": "", "comment": "" }, { "term": "Dock", "translation": "", - "context": "greeter settings link", + "context": "Dock", "reference": "", - "comment": "" + "comment": "greeter settings link" }, { "term": "Dock & Launcher", "translation": "", - "context": "", + "context": "Dock & Launcher", "reference": "", "comment": "" }, { "term": "Dock Opacity", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Dock Visibility", - "translation": "", - "context": "", + "context": "Dock Opacity", "reference": "", "comment": "" }, { "term": "Dock margin, opacity, and border", "translation": "", - "context": "", + "context": "Dock margin, opacity, and border", "reference": "", "comment": "" }, { "term": "Dock window", "translation": "", - "context": "", + "context": "Dock window", "reference": "", "comment": "" }, { "term": "Docs", "translation": "", - "context": "greeter documentation link", + "context": "Docs", "reference": "", - "comment": "" + "comment": "greeter documentation link" }, { "term": "Documents", "translation": "", "context": "Documents", "reference": "", - "comment": "" + "comment": "Documents" }, { "term": "Domain (optional)", "translation": "", - "context": "", + "context": "Domain (optional)", "reference": "", "comment": "" }, { "term": "Don't Change", "translation": "", - "context": "", + "context": "Don't Change", "reference": "", "comment": "" }, { "term": "Don't Save", "translation": "", - "context": "", + "context": "Don't Save", "reference": "", "comment": "" }, { "term": "Door Open", "translation": "", - "context": "", + "context": "Door Open", "reference": "", "comment": "" }, { "term": "Downloads", "translation": "", - "context": "", + "context": "Downloads", "reference": "", "comment": "" }, { "term": "Drag a widget by its handle here to reorder it or drop it into another group", "translation": "", - "context": "", + "context": "Drag a widget by its handle here to reorder it or drop it into another group", "reference": "", "comment": "" }, { "term": "Drag to Reorder", "translation": "", - "context": "", + "context": "Drag to Reorder", "reference": "", "comment": "" }, { "term": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", "translation": "", - "context": "", + "context": "Drag to reorder or click to hide tabs. Use ↑/↓ to highlight a tab and Ctrl+↑/↓ to move it.", "reference": "", "comment": "" }, { "term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "translation": "", - "context": "", + "context": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "reference": "", "comment": "" }, { "term": "Drag workspace indicators to reorder them", "translation": "", - "context": "", + "context": "Drag workspace indicators to reorder them", "reference": "", "comment": "" }, { "term": "Draw a connected picture-frame border around the entire display", "translation": "", - "context": "", + "context": "Draw a connected picture-frame border around the entire display", "reference": "", "comment": "" }, { "term": "Driver", "translation": "", - "context": "", + "context": "Driver", "reference": "", "comment": "" }, { "term": "Drizzle", "translation": "", - "context": "", + "context": "Drizzle", "reference": "", "comment": "" }, { "term": "Drop here", "translation": "", - "context": "", + "context": "Drop here", "reference": "", "comment": "" }, { "term": "Drop your override for %1 so the DMS default action re-applies?", "translation": "", - "context": "", + "context": "Drop your override for %1 so the DMS default action re-applies?", "reference": "", "comment": "" }, { "term": "Duplicate", "translation": "", - "context": "", + "context": "Duplicate", "reference": "", "comment": "" }, { "term": "Duplicate Wallpaper with Blur", "translation": "", - "context": "", + "context": "Duplicate Wallpaper with Blur", "reference": "", "comment": "" }, { "term": "Duration", "translation": "", - "context": "", + "context": "Duration", "reference": "", "comment": "" }, { "term": "Dusk (Astronomical Twilight)", "translation": "", - "context": "", + "context": "Dusk (Astronomical Twilight)", "reference": "", "comment": "" }, { "term": "Dusk (Civil Twighlight)", "translation": "", - "context": "", + "context": "Dusk (Civil Twighlight)", "reference": "", "comment": "" }, { "term": "Dusk (Nautical Twilight)", "translation": "", - "context": "", + "context": "Dusk (Nautical Twilight)", "reference": "", "comment": "" }, { "term": "Dynamic", "translation": "", - "context": "dynamic theme name", + "context": "Dynamic", "reference": "", - "comment": "" + "comment": "dynamic theme name" }, { "term": "Dynamic Properties", "translation": "", - "context": "", + "context": "Dynamic Properties", "reference": "", "comment": "" }, { "term": "Dynamic Theming", "translation": "", - "context": "greeter feature card title", + "context": "Dynamic Theming", "reference": "", - "comment": "" + "comment": "greeter feature card title" }, { "term": "Dynamic Width", "translation": "", - "context": "", + "context": "Dynamic Width", "reference": "", "comment": "" }, { "term": "Dynamic colors from wallpaper", "translation": "", - "context": "dynamic colors description", + "context": "Dynamic colors from wallpaper", "reference": "", - "comment": "" + "comment": "dynamic colors description" }, { "term": "Dynamic colors parse error: %1", "translation": "", - "context": "", + "context": "Dynamic colors parse error: %1", "reference": "", "comment": "" }, { "term": "Dynamic colors, presets", "translation": "", - "context": "greeter theme description", + "context": "Dynamic colors, presets", "reference": "", - "comment": "" + "comment": "greeter theme description" }, { "term": "Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.", "translation": "", - "context": "", + "context": "Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.", "reference": "", "comment": "" }, { "term": "Edge Hover Reveal", "translation": "", - "context": "", + "context": "Edge Hover Reveal", "reference": "", "comment": "" }, { "term": "Edge Spacing", "translation": "", - "context": "", + "context": "Edge Spacing", "reference": "", "comment": "" }, { "term": "Edge spacing, exclusive zone, and popup gaps are managed by Frame", "translation": "", - "context": "", + "context": "Edge spacing, exclusive zone, and popup gaps are managed by Frame", "reference": "", "comment": "" }, { "term": "Edge the launcher slides from", "translation": "", - "context": "", + "context": "Edge the launcher slides from", "reference": "", "comment": "" }, { "term": "Edit", "translation": "", - "context": "", + "context": "Edit", "reference": "", "comment": "" }, { "term": "Edit App", "translation": "", - "context": "", + "context": "Edit App", "reference": "", "comment": "" }, { "term": "Edit Clipboard", "translation": "", - "context": "", + "context": "Edit Clipboard", "reference": "", "comment": "" }, { "term": "Edit Rule", "translation": "", - "context": "", + "context": "Edit Rule", "reference": "", "comment": "" }, { "term": "Edit Window Rule", "translation": "", - "context": "", + "context": "Edit Window Rule", "reference": "", "comment": "" }, { "term": "Edit clipboard text", "translation": "", - "context": "", + "context": "Edit clipboard text", "reference": "", "comment": "" }, { "term": "Edit event", "translation": "", - "context": "", + "context": "Edit event", "reference": "", "comment": "" }, { "term": "Editing changes on %1", "translation": "", - "context": "", + "context": "Editing changes on %1", "reference": "", "comment": "" }, { "term": "Education", "translation": "", - "context": "", + "context": "Education", "reference": "", "comment": "" }, { "term": "Empty", "translation": "", - "context": "battery status", + "context": "Empty", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Empty Trash", "translation": "", - "context": "", + "context": "Empty Trash", "reference": "", "comment": "" }, { "term": "Empty Trash (%1)", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Empty Trash?", - "translation": "", - "context": "", + "context": "Empty Trash (%1)", "reference": "", "comment": "" }, { "term": "Enable 10-bit color depth for wider color gamut and HDR support", "translation": "", - "context": "", + "context": "Enable 10-bit color depth for wider color gamut and HDR support", "reference": "", "comment": "" }, { "term": "Enable Autoconnect", "translation": "", - "context": "", + "context": "Enable Autoconnect", "reference": "", "comment": "" }, { "term": "Enable Bar", "translation": "", - "context": "", + "context": "Enable Bar", "reference": "", "comment": "" }, { "term": "Enable Do Not Disturb", "translation": "", - "context": "", + "context": "Enable Do Not Disturb", "reference": "", "comment": "" }, { "term": "Enable Frame", "translation": "", - "context": "", + "context": "Enable Frame", "reference": "", "comment": "" }, { "term": "Enable History", "translation": "", - "context": "notification history toggle label", + "context": "Enable History", "reference": "", - "comment": "" + "comment": "notification history toggle label" }, { "term": "Enable Overview Overlay", "translation": "", - "context": "", + "context": "Enable Overview Overlay", "reference": "", "comment": "" }, { "term": "Enable Ripple Effects", "translation": "", - "context": "", + "context": "Enable Ripple Effects", "reference": "", "comment": "" }, { "term": "Enable System Sounds", "translation": "", - "context": "", + "context": "Enable System Sounds", "reference": "", "comment": "" }, { "term": "Enable Video Screensaver", "translation": "", - "context": "", + "context": "Enable Video Screensaver", "reference": "", "comment": "" }, { "term": "Enable Weather", "translation": "", - "context": "", + "context": "Enable Weather", "reference": "", "comment": "" }, { "term": "Enable WiFi", "translation": "", - "context": "", + "context": "Enable WiFi", "reference": "", "comment": "" }, { "term": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", "translation": "", - "context": "", + "context": "Enable a custom override below to set per-bar shadow intensity, opacity, and color.", "reference": "", "comment": "" }, { "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", "translation": "", - "context": "", + "context": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", "reference": "", "comment": "" }, { "term": "Enable fingerprint at login", "translation": "", - "context": "", + "context": "Enable fingerprint at login", "reference": "", "comment": "" }, { "term": "Enable fingerprint authentication", "translation": "", - "context": "", + "context": "Enable fingerprint authentication", "reference": "", "comment": "" }, { "term": "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.", "translation": "", - "context": "", + "context": "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.", "reference": "", "comment": "" }, { "term": "Enable loginctl lock integration", "translation": "", - "context": "", + "context": "Enable loginctl lock integration", "reference": "", "comment": "" }, { "term": "Enable security key at login", "translation": "", - "context": "", + "context": "Enable security key at login", "reference": "", "comment": "" }, { "term": "Enable security key authentication", "translation": "", - "context": "Enable FIDO2/U2F hardware security key for lock screen", + "context": "Enable security key authentication", "reference": "", - "comment": "" + "comment": "Enable FIDO2/U2F hardware security key for lock screen" }, { "term": "Enabled", "translation": "", - "context": "bluetooth status", + "context": "Enabled", "reference": "", - "comment": "" + "comment": "bluetooth status" }, { "term": "Enabling WiFi...", "translation": "", - "context": "network status", + "context": "Enabling WiFi...", "reference": "", - "comment": "" + "comment": "network status" }, { "term": "End", "translation": "", - "context": "", + "context": "End", "reference": "", "comment": "" }, { "term": "End must be after start", "translation": "", - "context": "", + "context": "End must be after start", "reference": "", "comment": "" }, { "term": "Enlarge on Hover", "translation": "", - "context": "", + "context": "Enlarge on Hover", "reference": "", "comment": "" }, { "term": "Enlargement %", "translation": "", - "context": "", + "context": "Enlargement %", "reference": "", "comment": "" }, { "term": "Enter 6-digit passkey", "translation": "", - "context": "", + "context": "Enter 6-digit passkey", "reference": "", "comment": "" }, { "term": "Enter PIN", "translation": "", - "context": "", + "context": "Enter PIN", "reference": "", "comment": "" }, { "term": "Enter PIN for ", "translation": "", - "context": "", + "context": "Enter PIN for ", "reference": "", "comment": "" }, { "term": "Enter URI or text to share", "translation": "", - "context": "KDE Connect share input placeholder", + "context": "Enter URI or text to share", "reference": "", - "comment": "" + "comment": "KDE Connect share input placeholder" }, { "term": "Enter a new name for session \"%1\"", "translation": "", - "context": "", + "context": "Enter a new name for session \"%1\"", "reference": "", "comment": "" }, { "term": "Enter a new name for this workspace", "translation": "", - "context": "", + "context": "Enter a new name for this workspace", "reference": "", "comment": "" }, { "term": "Enter command or script path", "translation": "", - "context": "", + "context": "Enter command or script path", "reference": "", "comment": "" }, { "term": "Enter credentials for ", "translation": "", - "context": "", + "context": "Enter credentials for ", "reference": "", "comment": "" }, { "term": "Enter custom lock screen format (e.g., dddd, MMMM d)", "translation": "", - "context": "", + "context": "Enter custom lock screen format (e.g., dddd, MMMM d)", "reference": "", "comment": "" }, { "term": "Enter custom top bar format (e.g., ddd MMM d)", "translation": "", - "context": "", + "context": "Enter custom top bar format (e.g., ddd MMM d)", "reference": "", "comment": "" }, { "term": "Enter device name...", "translation": "", - "context": "Audio device rename dialog placeholder", + "context": "Enter device name...", "reference": "", - "comment": "" + "comment": "Audio device rename dialog placeholder" }, { "term": "Enter filename...", "translation": "", - "context": "", + "context": "Enter filename...", "reference": "", "comment": "" }, { "term": "Enter launch prefix (e.g., 'uwsm-app')", "translation": "", - "context": "", + "context": "Enter launch prefix (e.g., 'uwsm-app')", "reference": "", "comment": "" }, { "term": "Enter network name and password", "translation": "", - "context": "", + "context": "Enter network name and password", "reference": "", "comment": "" }, { "term": "Enter passkey for ", "translation": "", - "context": "", + "context": "Enter passkey for ", "reference": "", "comment": "" }, { "term": "Enter password for ", "translation": "", - "context": "", + "context": "Enter password for ", "reference": "", "comment": "" }, { "term": "Enter this passkey on ", "translation": "", - "context": "", + "context": "Enter this passkey on ", "reference": "", "comment": "" }, { "term": "Enter to Paste", "translation": "", - "context": "", + "context": "Enter to Paste", "reference": "", "comment": "" }, { "term": "Enterprise", "translation": "", - "context": "", + "context": "Enterprise", "reference": "", "comment": "" }, { "term": "Entry Type", "translation": "", - "context": "", + "context": "Entry Type", "reference": "", "comment": "" }, { "term": "Entry pinned", "translation": "", - "context": "", + "context": "Entry pinned", "reference": "", "comment": "" }, { "term": "Entry unpinned", "translation": "", - "context": "", + "context": "Entry unpinned", "reference": "", "comment": "" }, { "term": "Environment Variables", "translation": "", - "context": "", + "context": "Environment Variables", "reference": "", "comment": "" }, { "term": "Error", "translation": "", - "context": "workspace color option", + "context": "Error", "reference": "", - "comment": "" + "comment": "workspace color option" }, { "term": "Errors", "translation": "", - "context": "greeter doctor page status card", + "context": "Errors", "reference": "", - "comment": "" + "comment": "greeter doctor page status card" }, { "term": "Estimated Time", "translation": "", - "context": "", + "context": "Estimated Time", "reference": "", "comment": "" }, { "term": "Ethernet", "translation": "", - "context": "network status", + "context": "Ethernet", "reference": "", - "comment": "" + "comment": "network status" }, { "term": "Event title", "translation": "", - "context": "", + "context": "Event title", "reference": "", "comment": "" }, { "term": "Every 15 minutes", "translation": "", - "context": "", + "context": "Every 15 minutes", "reference": "", "comment": "" }, { "term": "Every 30 minutes", "translation": "", - "context": "", + "context": "Every 30 minutes", "reference": "", "comment": "" }, { "term": "Every 4 hours", "translation": "", - "context": "", + "context": "Every 4 hours", "reference": "", "comment": "" }, { "term": "Every hour", "translation": "", - "context": "", + "context": "Every hour", "reference": "", "comment": "" }, { "term": "Exact", "translation": "", - "context": "notification rule match type option", + "context": "Exact", "reference": "", - "comment": "" + "comment": "notification rule match type option" }, { - "term": "Excluded Media Players", + "term": "Excluded Players", "translation": "", - "context": "", + "context": "Excluded Players", "reference": "", "comment": "" }, { "term": "Exclusive Zone Offset", "translation": "", - "context": "", + "context": "Exclusive Zone Offset", "reference": "", "comment": "" }, { "term": "Existing Users", "translation": "", - "context": "", + "context": "Existing Users", "reference": "", "comment": "" }, { "term": "Exit node", "translation": "", - "context": "Tailscale exit node selector label", + "context": "Exit node", "reference": "", - "comment": "" + "comment": "Tailscale exit node selector label" }, { "term": "Experimental Feature", "translation": "", - "context": "", + "context": "Experimental Feature", "reference": "", "comment": "" }, { "term": "Explore", "translation": "", - "context": "greeter explore section header", + "context": "Explore", "reference": "", - "comment": "" + "comment": "greeter explore section header" }, { "term": "Exponential", "translation": "", - "context": "", + "context": "Exponential", "reference": "", "comment": "" }, { "term": "Expose the Arcs", "translation": "", - "context": "", + "context": "Expose the Arcs", "reference": "", "comment": "" }, { "term": "Expressive", "translation": "", - "context": "matugen color scheme option", + "context": "Expressive", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Extend battery life", "translation": "", - "context": "power profile description", + "context": "Extend battery life", "reference": "", - "comment": "" + "comment": "power profile description" }, { "term": "Extensible architecture", "translation": "", - "context": "greeter feature card description", + "context": "Extensible architecture", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "External Wallpaper Management", "translation": "", - "context": "wallpaper settings external management", + "context": "External Wallpaper Management", "reference": "", - "comment": "" + "comment": "wallpaper settings external management" }, { "term": "Extra Arguments", "translation": "", - "context": "", + "context": "Extra Arguments", "reference": "", "comment": "" }, { "term": "Extra Bold", "translation": "", - "context": "font weight", + "context": "Extra Bold", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Extra Light", "translation": "", - "context": "font weight", + "context": "Extra Light", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "F1/I: Toggle • F10: Help", "translation": "", - "context": "", + "context": "F1/I: Toggle • F10: Help", "reference": "", "comment": "" }, { "term": "Fade", "translation": "", - "context": "wallpaper transition option", + "context": "Fade", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Fade to lock screen", "translation": "", - "context": "", + "context": "Fade to lock screen", "reference": "", "comment": "" }, { "term": "Fade to monitor off", "translation": "", - "context": "", + "context": "Fade to monitor off", "reference": "", "comment": "" }, { "term": "Failed to accept pairing", "translation": "", - "context": "Phone Connect error", + "context": "Failed to accept pairing", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to activate configuration", "translation": "", - "context": "", + "context": "Failed to activate configuration", "reference": "", "comment": "" }, { "term": "Failed to add binds include", "translation": "", - "context": "", + "context": "Failed to add binds include", "reference": "", "comment": "" }, { "term": "Failed to add printer to class", "translation": "", - "context": "", + "context": "Failed to add printer to class", "reference": "", "comment": "" }, { - "term": "Failed to apply GTK colors", + "term": "Failed to apply %1 colors", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Failed to apply Qt colors", - "translation": "", - "context": "", + "context": "Failed to apply %1 colors", "reference": "", "comment": "" }, { "term": "Failed to apply charge limit to system", "translation": "", - "context": "", + "context": "Failed to apply charge limit to system", "reference": "", "comment": "" }, { "term": "Failed to apply profile", "translation": "", - "context": "", + "context": "Failed to apply profile", "reference": "", "comment": "" }, { "term": "Failed to browse device", "translation": "", - "context": "Phone Connect error", + "context": "Failed to browse device", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to cancel all jobs", "translation": "", - "context": "", + "context": "Failed to cancel all jobs", "reference": "", "comment": "" }, { "term": "Failed to cancel selected job", "translation": "", - "context": "", + "context": "Failed to cancel selected job", "reference": "", "comment": "" }, { "term": "Failed to check pin limit", "translation": "", - "context": "", + "context": "Failed to check pin limit", "reference": "", "comment": "" }, { "term": "Failed to connect VPN", "translation": "", - "context": "", + "context": "Failed to connect VPN", "reference": "", "comment": "" }, { "term": "Failed to connect to %1", "translation": "", - "context": "", + "context": "Failed to connect to %1", "reference": "", "comment": "" }, { "term": "Failed to copy entry", "translation": "", - "context": "", + "context": "Failed to copy entry", "reference": "", "comment": "" }, { "term": "Failed to create printer", "translation": "", - "context": "", + "context": "Failed to create printer", "reference": "", "comment": "" }, { "term": "Failed to delete VPN", "translation": "", - "context": "", + "context": "Failed to delete VPN", "reference": "", "comment": "" }, { "term": "Failed to delete class", "translation": "", - "context": "", + "context": "Failed to delete class", "reference": "", "comment": "" }, { "term": "Failed to delete printer", "translation": "", - "context": "", + "context": "Failed to delete printer", "reference": "", "comment": "" }, { "term": "Failed to disable job acceptance", "translation": "", - "context": "", + "context": "Failed to disable job acceptance", "reference": "", "comment": "" }, { "term": "Failed to disable night mode", "translation": "", - "context": "", + "context": "Failed to disable night mode", "reference": "", "comment": "" }, { "term": "Failed to disable plugin: %1", "translation": "", - "context": "", + "context": "Failed to disable plugin: %1", "reference": "", "comment": "" }, { "term": "Failed to disconnect VPN", "translation": "", - "context": "", + "context": "Failed to disconnect VPN", "reference": "", "comment": "" }, { "term": "Failed to disconnect VPNs", "translation": "", - "context": "", + "context": "Failed to disconnect VPNs", "reference": "", "comment": "" }, { "term": "Failed to disconnect WiFi", "translation": "", - "context": "", + "context": "Failed to disconnect WiFi", "reference": "", "comment": "" }, { "term": "Failed to empty trash", "translation": "", - "context": "", + "context": "Failed to empty trash", "reference": "", "comment": "" }, { "term": "Failed to enable IP location", "translation": "", - "context": "", + "context": "Failed to enable IP location", "reference": "", "comment": "" }, { "term": "Failed to enable WiFi", "translation": "", - "context": "", + "context": "Failed to enable WiFi", "reference": "", "comment": "" }, { "term": "Failed to enable job acceptance", "translation": "", - "context": "", + "context": "Failed to enable job acceptance", "reference": "", "comment": "" }, { "term": "Failed to enable night mode", "translation": "", - "context": "", + "context": "Failed to enable night mode", "reference": "", "comment": "" }, { "term": "Failed to fetch network QR code: %1", "translation": "", - "context": "", + "context": "Failed to fetch network QR code: %1", "reference": "", "comment": "" }, { "term": "Failed to generate systemd override", "translation": "", - "context": "", + "context": "Failed to generate systemd override", "reference": "", "comment": "" }, { "term": "Failed to hold job", "translation": "", - "context": "", + "context": "Failed to hold job", "reference": "", "comment": "" }, { "term": "Failed to import VPN", "translation": "", - "context": "", + "context": "Failed to import VPN", "reference": "", "comment": "" }, { "term": "Failed to launch SMS app", "translation": "", - "context": "Phone Connect error", + "context": "Failed to launch SMS app", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to load VPN config", "translation": "", - "context": "", + "context": "Failed to load VPN config", "reference": "", "comment": "" }, { "term": "Failed to load clipboard configuration.", "translation": "", - "context": "", + "context": "Failed to load clipboard configuration.", "reference": "", "comment": "" }, { "term": "Failed to move job", "translation": "", - "context": "", + "context": "Failed to move job", "reference": "", "comment": "" }, { "term": "Failed to move to trash", "translation": "", - "context": "", + "context": "Failed to move to trash", "reference": "", "comment": "" }, { - "term": "Failed to parse plugin_settings.json", + "term": "Failed to parse %1", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Failed to parse session.json", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Failed to parse settings.json", - "translation": "", - "context": "", + "context": "Failed to parse %1", "reference": "", "comment": "" }, { "term": "Failed to pause printer", "translation": "", - "context": "", + "context": "Failed to pause printer", "reference": "", "comment": "" }, { "term": "Failed to pin entry", "translation": "", - "context": "", + "context": "Failed to pin entry", "reference": "", "comment": "" }, { "term": "Failed to print test page", "translation": "", - "context": "", + "context": "Failed to print test page", "reference": "", "comment": "" }, { "term": "Failed to read theme file: %1", "translation": "", - "context": "", + "context": "Failed to read theme file: %1", "reference": "", "comment": "" }, { "term": "Failed to reject pairing", "translation": "", - "context": "Phone Connect error", + "context": "Failed to reject pairing", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to reload plugin: %1", "translation": "", - "context": "", + "context": "Failed to reload plugin: %1", "reference": "", "comment": "" }, { "term": "Failed to remove QR code at %1: %2", "translation": "", - "context": "", + "context": "Failed to remove QR code at %1: %2", "reference": "", "comment": "" }, { "term": "Failed to remove device", "translation": "", - "context": "", + "context": "Failed to remove device", "reference": "", "comment": "" }, { "term": "Failed to remove keybind", "translation": "", - "context": "", + "context": "Failed to remove keybind", "reference": "", "comment": "" }, { "term": "Failed to remove printer from class", "translation": "", - "context": "", + "context": "Failed to remove printer from class", "reference": "", "comment": "" }, { "term": "Failed to restart audio system", "translation": "", - "context": "", + "context": "Failed to restart audio system", "reference": "", "comment": "" }, { "term": "Failed to restart job", "translation": "", - "context": "", + "context": "Failed to restart job", "reference": "", "comment": "" }, { "term": "Failed to resume printer", "translation": "", - "context": "", + "context": "Failed to resume printer", "reference": "", "comment": "" }, { "term": "Failed to ring device", "translation": "", - "context": "Phone Connect error", + "context": "Failed to ring device", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "translation": "", - "context": "greeter status error", + "context": "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.", "reference": "", - "comment": "" + "comment": "greeter status error" }, { "term": "Failed to save VPN credentials", "translation": "", - "context": "", + "context": "Failed to save VPN credentials", "reference": "", "comment": "" }, { "term": "Failed to save audio config", "translation": "", - "context": "", + "context": "Failed to save audio config", "reference": "", "comment": "" }, { "term": "Failed to save clipboard setting", "translation": "", - "context": "", + "context": "Failed to save clipboard setting", "reference": "", "comment": "" }, { "term": "Failed to save keybind", "translation": "", - "context": "", + "context": "Failed to save keybind", "reference": "", "comment": "" }, { "term": "Failed to save profile", "translation": "", - "context": "", + "context": "Failed to save profile", "reference": "", "comment": "" }, { "term": "Failed to send SMS", "translation": "", - "context": "Phone Connect error", + "context": "Failed to send SMS", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to send clipboard", "translation": "", - "context": "Phone Connect error", + "context": "Failed to send clipboard", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to send file", "translation": "", - "context": "Phone Connect error", + "context": "Failed to send file", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to send ping", "translation": "", - "context": "Phone Connect error", + "context": "Failed to send ping", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to set brightness", "translation": "", - "context": "", + "context": "Failed to set brightness", "reference": "", "comment": "" }, { "term": "Failed to set night mode location", "translation": "", - "context": "", + "context": "Failed to set night mode location", "reference": "", "comment": "" }, { "term": "Failed to set night mode schedule", "translation": "", - "context": "", + "context": "Failed to set night mode schedule", "reference": "", "comment": "" }, { "term": "Failed to set night mode temperature", "translation": "", - "context": "", + "context": "Failed to set night mode temperature", "reference": "", "comment": "" }, { "term": "Failed to set power profile", "translation": "", - "context": "", + "context": "Failed to set power profile", "reference": "", "comment": "" }, { "term": "Failed to set profile image", "translation": "", - "context": "", + "context": "Failed to set profile image", "reference": "", "comment": "" }, { "term": "Failed to set profile image: %1", "translation": "", - "context": "", + "context": "Failed to set profile image: %1", "reference": "", "comment": "" }, { "term": "Failed to share", "translation": "", - "context": "Phone Connect error", + "context": "Failed to share", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Failed to start connection to %1", "translation": "", - "context": "", + "context": "Failed to start connection to %1", "reference": "", "comment": "" }, { "term": "Failed to unpin entry", "translation": "", - "context": "", + "context": "Failed to unpin entry", "reference": "", "comment": "" }, { "term": "Failed to update %1: %2", "translation": "", - "context": "", + "context": "Failed to update %1: %2", "reference": "", "comment": "" }, { "term": "Failed to update VPN", "translation": "", - "context": "", + "context": "Failed to update VPN", "reference": "", "comment": "" }, { "term": "Failed to update autoconnect", "translation": "", - "context": "", + "context": "Failed to update autoconnect", "reference": "", "comment": "" }, { "term": "Failed to update clipboard", "translation": "", - "context": "", + "context": "Failed to update clipboard", "reference": "", "comment": "" }, { "term": "Failed to update description", "translation": "", - "context": "", + "context": "Failed to update description", "reference": "", "comment": "" }, { "term": "Failed to update location", "translation": "", - "context": "", + "context": "Failed to update location", "reference": "", "comment": "" }, { "term": "Failed to update sharing", "translation": "", - "context": "", + "context": "Failed to update sharing", "reference": "", "comment": "" }, { "term": "Failed to write autostart entry", "translation": "", - "context": "", + "context": "Failed to write autostart entry", "reference": "", "comment": "" }, { "term": "Failed to write outputs config.", "translation": "", - "context": "", + "context": "Failed to write outputs config.", "reference": "", "comment": "" }, { "term": "Failed to write temp file for validation", "translation": "", - "context": "", + "context": "Failed to write temp file for validation", "reference": "", "comment": "" }, { "term": "Failed: %1", "translation": "", - "context": "", + "context": "Failed: %1", "reference": "", "comment": "" }, { "term": "Features", "translation": "", - "context": "greeter welcome page section header", + "context": "Features", "reference": "", - "comment": "" + "comment": "greeter welcome page section header" }, { "term": "Feels", "translation": "", - "context": "", + "context": "Feels", "reference": "", "comment": "" }, { "term": "Feels Like", "translation": "", - "context": "", + "context": "Feels Like", "reference": "", "comment": "" }, { "term": "Feels Like %1°", "translation": "", - "context": "weather feels like temperature", + "context": "Feels Like %1°", "reference": "", - "comment": "" + "comment": "weather feels like temperature" }, { "term": "Fidelity", "translation": "", - "context": "matugen color scheme option", + "context": "Fidelity", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Field", "translation": "", - "context": "", + "context": "Field", "reference": "", "comment": "" }, { "term": "File", "translation": "", - "context": "KDE Connect send file button", + "context": "File", "reference": "", - "comment": "" + "comment": "KDE Connect send file button" }, { "term": "File Already Exists", "translation": "", - "context": "", + "context": "File Already Exists", "reference": "", "comment": "" }, { "term": "File Information", "translation": "", - "context": "", + "context": "File Information", "reference": "", "comment": "" }, @@ -7613,467 +7424,467 @@ "translation": "", "context": "File Manager", "reference": "", - "comment": "" + "comment": "File Manager" }, { "term": "File changed on disk", "translation": "", - "context": "", + "context": "File changed on disk", "reference": "", "comment": "" }, { "term": "File manager used to open the trash. Pick \"custom\" to enter your own command.", "translation": "", - "context": "", + "context": "File manager used to open the trash. Pick \"custom\" to enter your own command.", "reference": "", "comment": "" }, { - "term": "File received from", + "term": "File received from %1", "translation": "", - "context": "Phone Connect file share notification", + "context": "File received from %1", "reference": "", - "comment": "" + "comment": "Phone Connect file share notification" }, { "term": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "translation": "", - "context": "", + "context": "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch", "reference": "", "comment": "" }, { "term": "File search unavailable", "translation": "", - "context": "", + "context": "File search unavailable", "reference": "", "comment": "" }, { "term": "Files", "translation": "", - "context": "", + "context": "Files", "reference": "", "comment": "" }, { "term": "Filesystem usage monitoring", "translation": "", - "context": "", + "context": "Filesystem usage monitoring", "reference": "", "comment": "" }, { "term": "Fill", "translation": "", - "context": "wallpaper fill mode", + "context": "Fill", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Fill Mode", "translation": "", - "context": "wallpaper fill mode setting", + "context": "Fill Mode", "reference": "", - "comment": "" + "comment": "wallpaper fill mode setting" }, { "term": "Filter", "translation": "", - "context": "plugin browser category filter label", + "context": "Filter", "reference": "", - "comment": "" + "comment": "plugin browser category filter label" }, { "term": "Filter by type", "translation": "", - "context": "Clipboard history type filter button tooltip", + "context": "Filter by type", "reference": "", - "comment": "" + "comment": "Clipboard history type filter button tooltip" }, { "term": "Find in Text", "translation": "", - "context": "", + "context": "Find in Text", "reference": "", "comment": "" }, { "term": "Find in note...", "translation": "", - "context": "", + "context": "Find in note...", "reference": "", "comment": "" }, { "term": "Fine-tune the space reserved for the bar from the screen edge", "translation": "", - "context": "", + "context": "Fine-tune the space reserved for the bar from the screen edge", "reference": "", "comment": "" }, { "term": "Fingerprint availability could not be confirmed.", "translation": "", - "context": "fingerprint setting status", + "context": "Fingerprint availability could not be confirmed.", "reference": "", - "comment": "" + "comment": "fingerprint setting status" }, { "term": "Fingerprint error", "translation": "", - "context": "", + "context": "Fingerprint error", "reference": "", "comment": "" }, { "term": "Fingerprint not recognized (%1/%2). Please try again or use password.", "translation": "", - "context": "", + "context": "Fingerprint not recognized (%1/%2). Please try again or use password.", "reference": "", "comment": "" }, { "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", "translation": "", - "context": "lock screen fingerprint setting", + "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.", "reference": "", - "comment": "" + "comment": "lock screen fingerprint setting" }, { "term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", "translation": "", - "context": "greeter fingerprint login setting", + "context": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.", "reference": "", - "comment": "" + "comment": "greeter fingerprint login setting" }, { "term": "Finish", "translation": "", - "context": "greeter finish button", + "context": "Finish", "reference": "", - "comment": "" + "comment": "greeter finish button" }, { "term": "First Day of Week", "translation": "", - "context": "", + "context": "First Day of Week", "reference": "", "comment": "" }, { "term": "First Time Setup", "translation": "", - "context": "", + "context": "First Time Setup", "reference": "", "comment": "" }, { "term": "Fit", "translation": "", - "context": "wallpaper fill mode", + "context": "Fit", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Flags", "translation": "", - "context": "", + "context": "Flags", "reference": "", "comment": "" }, { "term": "Flatpak", "translation": "", - "context": "", + "context": "Flatpak", "reference": "", "comment": "" }, { "term": "Flipped", "translation": "", - "context": "", + "context": "Flipped", "reference": "", "comment": "" }, { "term": "Flipped 180°", "translation": "", - "context": "", + "context": "Flipped 180°", "reference": "", "comment": "" }, { "term": "Flipped 270°", "translation": "", - "context": "", + "context": "Flipped 270°", "reference": "", "comment": "" }, { "term": "Flipped 90°", "translation": "", - "context": "", + "context": "Flipped 90°", "reference": "", "comment": "" }, { "term": "Float", "translation": "", - "context": "", + "context": "Float", "reference": "", "comment": "" }, { "term": "Float Anchor", "translation": "", - "context": "", + "context": "Float Anchor", "reference": "", "comment": "" }, { "term": "Float X", "translation": "", - "context": "", + "context": "Float X", "reference": "", "comment": "" }, { "term": "Float Y", "translation": "", - "context": "", + "context": "Float Y", "reference": "", "comment": "" }, { "term": "Floating", "translation": "", - "context": "", + "context": "Floating", "reference": "", "comment": "" }, { "term": "Floating Position", "translation": "", - "context": "", + "context": "Floating Position", "reference": "", "comment": "" }, { "term": "Fluent", "translation": "", - "context": "", + "context": "Fluent", "reference": "", "comment": "" }, { "term": "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.", "translation": "", - "context": "", + "context": "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.", "reference": "", "comment": "" }, { "term": "Focus", "translation": "", - "context": "", + "context": "Focus", "reference": "", "comment": "" }, { "term": "Focus Ring Color", "translation": "", - "context": "", + "context": "Focus Ring Color", "reference": "", "comment": "" }, { "term": "Focus Ring Off", "translation": "", - "context": "", + "context": "Focus Ring Off", "reference": "", "comment": "" }, { "term": "Focus at Startup", "translation": "", - "context": "", + "context": "Focus at Startup", "reference": "", "comment": "" }, { "term": "Focused", "translation": "", - "context": "", + "context": "Focused", "reference": "", "comment": "" }, { "term": "Focused Border", "translation": "", - "context": "", + "context": "Focused Border", "reference": "", "comment": "" }, { "term": "Focused Color", "translation": "", - "context": "", + "context": "Focused Color", "reference": "", "comment": "" }, { "term": "Focused Display", "translation": "", - "context": "workspace appearance tab", + "context": "Focused Display", "reference": "", - "comment": "" + "comment": "workspace appearance tab" }, { "term": "Focused Monitor Only", "translation": "", - "context": "", + "context": "Focused Monitor Only", "reference": "", "comment": "" }, { "term": "Focused Window", "translation": "", - "context": "", + "context": "Focused Window", "reference": "", "comment": "" }, { "term": "Fog", "translation": "", - "context": "", + "context": "Fog", "reference": "", "comment": "" }, { "term": "Folder", "translation": "", - "context": "", + "context": "Folder", "reference": "", "comment": "" }, { "term": "Folders", "translation": "", - "context": "", + "context": "Folders", "reference": "", "comment": "" }, { "term": "Follow DMS background color", "translation": "", - "context": "", + "context": "Follow DMS background color", "reference": "", "comment": "" }, { "term": "Follow Monitor Focus", "translation": "", - "context": "", + "context": "Follow Monitor Focus", "reference": "", "comment": "" }, { "term": "Follow focus", "translation": "", - "context": "", + "context": "Follow focus", "reference": "", "comment": "" }, { "term": "Follows the default launcher choice selected above.", "translation": "", - "context": "", + "context": "Follows the default launcher choice selected above.", "reference": "", "comment": "" }, { "term": "Font", "translation": "", - "context": "", + "context": "Font", "reference": "", "comment": "" }, { "term": "Font Family", "translation": "", - "context": "", + "context": "Font Family", "reference": "", "comment": "" }, { "term": "Font Scale", "translation": "", - "context": "", + "context": "Font Scale", "reference": "", "comment": "" }, { "term": "Font Size", "translation": "", - "context": "", + "context": "Font Size", "reference": "", "comment": "" }, { "term": "Font Weight", "translation": "", - "context": "", + "context": "Font Weight", "reference": "", "comment": "" }, { "term": "Font used for the clock and date on the lock screen", "translation": "", - "context": "", + "context": "Font used for the clock and date on the lock screen", "reference": "", "comment": "" }, { "term": "Font used on the login screen", "translation": "", - "context": "", + "context": "Font used on the login screen", "reference": "", "comment": "" }, { "term": "For 1 hour", "translation": "", - "context": "", + "context": "For 1 hour", "reference": "", "comment": "" }, { "term": "For 15 minutes", "translation": "", - "context": "", + "context": "For 15 minutes", "reference": "", "comment": "" }, { "term": "For 3 hours", "translation": "", - "context": "", + "context": "For 3 hours", "reference": "", "comment": "" }, { "term": "For 30 minutes", "translation": "", - "context": "", + "context": "For 30 minutes", "reference": "", "comment": "" }, { "term": "For 8 hours", "translation": "", - "context": "", + "context": "For 8 hours", "reference": "", "comment": "" }, @@ -8082,719 +7893,691 @@ "translation": "", "context": "For editing plain text files", "reference": "", - "comment": "" - }, - { - "term": "For reading PDF files", - "translation": "", - "context": "For reading PDF files", - "reference": "", - "comment": "" + "comment": "For editing plain text files" }, { "term": "Force HDR", "translation": "", - "context": "", + "context": "Force HDR", "reference": "", "comment": "" }, { "term": "Force Kill (SIGKILL)", "translation": "", - "context": "", + "context": "Force Kill (SIGKILL)", "reference": "", "comment": "" }, { "term": "Force Padding", "translation": "", - "context": "", + "context": "Force Padding", "reference": "", "comment": "" }, { "term": "Force RGBX", "translation": "", - "context": "", + "context": "Force RGBX", "reference": "", "comment": "" }, { "term": "Force Wide Color", "translation": "", - "context": "", + "context": "Force Wide Color", "reference": "", "comment": "" }, { "term": "Force terminal applications to always use dark color schemes", "translation": "", - "context": "", + "context": "Force terminal applications to always use dark color schemes", "reference": "", "comment": "" }, { "term": "Forecast", "translation": "", - "context": "", + "context": "Forecast", "reference": "", "comment": "" }, { "term": "Forecast Days", "translation": "", - "context": "", + "context": "Forecast Days", "reference": "", "comment": "" }, { "term": "Forecast Not Available", "translation": "", - "context": "", + "context": "Forecast Not Available", "reference": "", "comment": "" }, { "term": "Forecast and conditions", "translation": "", - "context": "", + "context": "Forecast and conditions", "reference": "", "comment": "" }, { "term": "Foreground Layers", "translation": "", - "context": "", + "context": "Foreground Layers", "reference": "", "comment": "" }, { "term": "Forever", "translation": "", - "context": "notification history retention option", + "context": "Forever", "reference": "", - "comment": "" + "comment": "notification history retention option" }, { "term": "Forget", "translation": "", - "context": "", + "context": "Forget", "reference": "", "comment": "" }, { "term": "Forget \"%1\"?", "translation": "", - "context": "", + "context": "Forget \"%1\"?", "reference": "", "comment": "" }, { "term": "Forget Device", "translation": "", - "context": "", + "context": "Forget Device", "reference": "", "comment": "" }, { "term": "Forget Network", "translation": "", - "context": "", + "context": "Forget Network", "reference": "", "comment": "" }, { "term": "Forgot network %1", "translation": "", - "context": "", + "context": "Forgot network %1", "reference": "", "comment": "" }, { "term": "Format Legend", "translation": "", - "context": "", + "context": "Format Legend", "reference": "", "comment": "" }, { "term": "Forward 10s", "translation": "", - "context": "Media forward tooltip", + "context": "Forward 10s", "reference": "", - "comment": "" + "comment": "Media forward tooltip" }, { "term": "Frame", "translation": "", - "context": "", + "context": "Frame", "reference": "", "comment": "" }, { "term": "Frame Blur", "translation": "", - "context": "", + "context": "Frame Blur", "reference": "", "comment": "" }, { "term": "Frame Blur follows Background Blur in Theme & Colors", "translation": "", - "context": "", + "context": "Frame Blur follows Background Blur in Theme & Colors", "reference": "", "comment": "" }, { "term": "Frame Border Color", "translation": "", - "context": "", + "context": "Frame Border Color", "reference": "", "comment": "" }, { "term": "Frame Xray", "translation": "", - "context": "", + "context": "Frame Xray", "reference": "", "comment": "" }, { "term": "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.", "translation": "", - "context": "", + "context": "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.", "reference": "", "comment": "" }, { "term": "Freezing Drizzle", "translation": "", - "context": "", + "context": "Freezing Drizzle", "reference": "", "comment": "" }, { "term": "Frequency", "translation": "", - "context": "", + "context": "Frequency", "reference": "", "comment": "" }, { "term": "Fruit Salad", "translation": "", - "context": "matugen color scheme option", + "context": "Fruit Salad", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Full", "translation": "", - "context": "", + "context": "Full", "reference": "", "comment": "" }, { "term": "Full Command:", "translation": "", - "context": "process detail label", + "context": "Full Command:", "reference": "", - "comment": "" + "comment": "process detail label" }, { "term": "Full Content", "translation": "", - "context": "lock screen notification mode option", + "context": "Full Content", "reference": "", - "comment": "" + "comment": "lock screen notification mode option" }, { "term": "Full Day & Month", "translation": "", - "context": "date format option", + "context": "Full Day & Month", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Full Size", "translation": "", - "context": "", + "context": "Full Size", "reference": "", "comment": "" }, { "term": "Full command to execute", "translation": "", - "context": "", + "context": "Full command to execute", "reference": "", "comment": "" }, { "term": "Full with Year", "translation": "", - "context": "date format option", + "context": "Full with Year", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Fullscreen", "translation": "", - "context": "", + "context": "Fullscreen", "reference": "", "comment": "" }, { "term": "Fullscreen Only", "translation": "", - "context": "", + "context": "Fullscreen Only", "reference": "", "comment": "" }, { "term": "Fully Charged", "translation": "", - "context": "battery status", + "context": "Fully Charged", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Fun", "translation": "", - "context": "", + "context": "Fun", "reference": "", "comment": "" }, { "term": "G: grid • Z/X: size", "translation": "", - "context": "Widget grid keyboard hints", + "context": "G: grid • Z/X: size", "reference": "", - "comment": "" + "comment": "Widget grid keyboard hints" }, { "term": "GPU", "translation": "", - "context": "", + "context": "GPU", "reference": "", "comment": "" }, { "term": "GPU Monitoring", "translation": "", - "context": "gpu section header in system monitor", + "context": "GPU Monitoring", "reference": "", - "comment": "" + "comment": "gpu section header in system monitor" }, { "term": "GPU Temperature", "translation": "", - "context": "", + "context": "GPU Temperature", "reference": "", "comment": "" }, { "term": "GPU temperature display", "translation": "", - "context": "", + "context": "GPU temperature display", "reference": "", "comment": "" }, { "term": "GTK colors applied successfully", "translation": "", - "context": "", + "context": "GTK colors applied successfully", "reference": "", "comment": "" }, { "term": "GTK, Qt, IDEs, more", "translation": "", - "context": "greeter feature card description", + "context": "GTK, Qt, IDEs, more", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "Games", "translation": "", - "context": "", + "context": "Games", "reference": "", "comment": "" }, { "term": "Gamma Control", "translation": "", - "context": "", + "context": "Gamma Control", "reference": "", "comment": "" }, { "term": "Gamma control not available. Requires DMS API v6+.", "translation": "", - "context": "", + "context": "Gamma control not available. Requires DMS API v6+.", "reference": "", "comment": "" }, { "term": "Gap between the end widgets and the bar ends (0 = edge-to-edge)", "translation": "", - "context": "", + "context": "Gap between the end widgets and the bar ends (0 = edge-to-edge)", "reference": "", "comment": "" }, { "term": "Gaps", "translation": "", - "context": "", + "context": "Gaps", + "reference": "", + "comment": "" + }, + { + "term": "General", + "translation": "", + "context": "General", "reference": "", "comment": "" }, { "term": "Generate Override", "translation": "", - "context": "", + "context": "Generate Override", "reference": "", "comment": "" }, { "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.", "translation": "", - "context": "", + "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": "", "comment": "" }, { "term": "Generic", "translation": "", - "context": "theme category option", + "context": "Generic", "reference": "", - "comment": "" + "comment": "theme category option" }, { "term": "Geometric Centering", "translation": "", - "context": "", + "context": "Geometric Centering", "reference": "", "comment": "" }, { "term": "Get Started", "translation": "", - "context": "greeter first page button", + "context": "Get Started", "reference": "", - "comment": "" + "comment": "greeter first page button" }, { "term": "GitHub", "translation": "", - "context": "", + "context": "GitHub", "reference": "", "comment": "" }, { "term": "Global fonts can be configured in Settings → Personalization", "translation": "", - "context": "", + "context": "Global fonts can be configured in Settings → Personalization", "reference": "", "comment": "" }, { "term": "Globally scale all animation durations", "translation": "", - "context": "", + "context": "Globally scale all animation durations", "reference": "", "comment": "" }, { "term": "Golden Hour", "translation": "", - "context": "", + "context": "Golden Hour", "reference": "", "comment": "" }, { "term": "Good", "translation": "", - "context": "", + "context": "Good", "reference": "", "comment": "" }, { "term": "Goth Corner Radius", "translation": "", - "context": "", + "context": "Goth Corner Radius", "reference": "", "comment": "" }, { "term": "Goth Corners", "translation": "", - "context": "", + "context": "Goth Corners", "reference": "", "comment": "" }, { "term": "Gradually fade the screen before locking with a configurable grace period", "translation": "", - "context": "", + "context": "Gradually fade the screen before locking with a configurable grace period", "reference": "", "comment": "" }, { "term": "Gradually fade the screen before turning off monitors with a configurable grace period", "translation": "", - "context": "", + "context": "Gradually fade the screen before turning off monitors with a configurable grace period", "reference": "", "comment": "" }, { "term": "Grant", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Grant admin?", - "translation": "", - "context": "", + "context": "Grant", "reference": "", "comment": "" }, { "term": "Grant administrator privileges", "translation": "", - "context": "", + "context": "Grant administrator privileges", "reference": "", "comment": "" }, { "term": "Granted administrator privileges", "translation": "", - "context": "", + "context": "Granted administrator privileges", "reference": "", "comment": "" }, { "term": "Granted greeter login access", "translation": "", - "context": "", + "context": "Granted greeter login access", "reference": "", "comment": "" }, { "term": "Graph Time Range", "translation": "", - "context": "", + "context": "Graph Time Range", "reference": "", "comment": "" }, { "term": "Graphics", "translation": "", - "context": "", + "context": "Graphics", "reference": "", "comment": "" }, { "term": "Greeter", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Greeter Appearance", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Greeter Behavior", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Greeter Status", - "translation": "", - "context": "", + "context": "Greeter", "reference": "", "comment": "" }, { "term": "Greeter activated. greetd is now enabled.", "translation": "", - "context": "", + "context": "Greeter activated. greetd is now enabled.", "reference": "", "comment": "" }, { "term": "Greeter font", "translation": "", - "context": "", + "context": "Greeter font", "reference": "", "comment": "" }, { "term": "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.", "translation": "", - "context": "", + "context": "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.", "reference": "", "comment": "" }, { "term": "Greeter group:", "translation": "", - "context": "", + "context": "Greeter group:", "reference": "", "comment": "" }, { "term": "Greeter only — format for the date on the login screen", "translation": "", - "context": "", + "context": "Greeter only — format for the date on the login screen", "reference": "", "comment": "" }, { "term": "Greeter sync complete", "translation": "", - "context": "", + "context": "Greeter sync complete", "reference": "", "comment": "" }, { "term": "Grid", "translation": "", - "context": "", + "context": "Grid", "reference": "", "comment": "" }, { "term": "Grid Columns", "translation": "", - "context": "", + "context": "Grid Columns", "reference": "", "comment": "" }, { "term": "Grid: OFF", "translation": "", - "context": "Widget grid snap status", + "context": "Grid: OFF", "reference": "", - "comment": "" + "comment": "Widget grid snap status" }, { "term": "Grid: ON", "translation": "", - "context": "Widget grid snap status", + "context": "Grid: ON", "reference": "", - "comment": "" + "comment": "Widget grid snap status" }, { "term": "Group", "translation": "", - "context": "", + "context": "Group", "reference": "", "comment": "" }, { "term": "Group Active Workspace", "translation": "", - "context": "", + "context": "Group Active Workspace", "reference": "", "comment": "" }, { "term": "Group Workspace Apps", "translation": "", - "context": "", + "context": "Group Workspace Apps", "reference": "", "comment": "" }, { "term": "Group by App", "translation": "", - "context": "", + "context": "Group by App", "reference": "", "comment": "" }, { "term": "Group multiple windows of the same app together with a window count indicator", "translation": "", - "context": "", + "context": "Group multiple windows of the same app together with a window count indicator", "reference": "", "comment": "" }, { "term": "Group removed", "translation": "", - "context": "", + "context": "Group removed", "reference": "", "comment": "" }, { "term": "Group repeated application icons in unfocused workspaces", "translation": "", - "context": "", + "context": "Group repeated application icons in unfocused workspaces", "reference": "", "comment": "" }, { "term": "Groups", "translation": "", - "context": "", + "context": "Groups", "reference": "", "comment": "" }, { "term": "H", "translation": "", - "context": "", + "context": "H", "reference": "", "comment": "" }, { "term": "HDR (EDID)", "translation": "", - "context": "", + "context": "HDR (EDID)", "reference": "", "comment": "" }, { "term": "HDR Tone Mapping", "translation": "", - "context": "", + "context": "HDR Tone Mapping", "reference": "", "comment": "" }, { "term": "HDR mode is experimental. Verify your monitor supports HDR before enabling.", "translation": "", - "context": "", + "context": "HDR mode is experimental. Verify your monitor supports HDR before enabling.", "reference": "", "comment": "" }, { "term": "HSV", "translation": "", - "context": "", + "context": "HSV", "reference": "", "comment": "" }, { "term": "HSV %1 copied", "translation": "", - "context": "", + "context": "HSV %1 copied", "reference": "", "comment": "" }, { "term": "HTML copied to clipboard", "translation": "", - "context": "", + "context": "HTML copied to clipboard", "reference": "", "comment": "" }, @@ -8803,691 +8586,684 @@ "translation": "", "context": "Handles geo: location links", "reference": "", - "comment": "" + "comment": "Handles geo: location links" }, { "term": "Handles links and opens HTML files", "translation": "", "context": "Handles links and opens HTML files", "reference": "", - "comment": "" + "comment": "Handles links and opens HTML files" }, { "term": "Handles mailto links", "translation": "", "context": "Handles mailto links", "reference": "", - "comment": "" + "comment": "Handles mailto links" }, { "term": "Health", "translation": "", - "context": "", + "context": "Health", "reference": "", "comment": "" }, { "term": "Heavy Rain", "translation": "", - "context": "", + "context": "Heavy Rain", "reference": "", "comment": "" }, { "term": "Heavy Snow", "translation": "", - "context": "", + "context": "Heavy Snow", "reference": "", "comment": "" }, { "term": "Heavy Snow Showers", "translation": "", - "context": "", + "context": "Heavy Snow Showers", "reference": "", "comment": "" }, { "term": "Height", "translation": "", - "context": "", + "context": "Height", "reference": "", "comment": "" }, { "term": "Held", "translation": "", - "context": "", + "context": "Held", "reference": "", "comment": "" }, { "term": "Help", "translation": "", - "context": "", + "context": "Help", "reference": "", "comment": "" }, { "term": "Hex", "translation": "", - "context": "", + "context": "Hex", "reference": "", "comment": "" }, { "term": "Hibernate", "translation": "", - "context": "", + "context": "Hibernate", "reference": "", "comment": "" }, { "term": "Hibernate failed", "translation": "", - "context": "", + "context": "Hibernate failed", "reference": "", "comment": "" }, { "term": "Hidden", "translation": "", - "context": "", + "context": "Hidden", "reference": "", "comment": "" }, { "term": "Hidden (%1)", "translation": "", - "context": "count of hidden audio devices", + "context": "Hidden (%1)", "reference": "", - "comment": "" + "comment": "count of hidden audio devices" }, { "term": "Hidden Apps", "translation": "", - "context": "", + "context": "Hidden Apps", "reference": "", "comment": "" }, { "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", "translation": "", - "context": "", + "context": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", "reference": "", "comment": "" }, { "term": "Hidden until weather is enabled", "translation": "", - "context": "", + "context": "Hidden until weather is enabled", "reference": "", "comment": "" }, { "term": "Hide", "translation": "", - "context": "", + "context": "Hide", "reference": "", "comment": "" }, { "term": "Hide 3rd Party", "translation": "", - "context": "", + "context": "Hide 3rd Party", "reference": "", "comment": "" }, { "term": "Hide App", "translation": "", - "context": "", + "context": "Hide App", "reference": "", "comment": "" }, { "term": "Hide Delay", "translation": "", - "context": "", + "context": "Hide Delay", "reference": "", "comment": "" }, { "term": "Hide Indicators", "translation": "", - "context": "", + "context": "Hide Indicators", "reference": "", "comment": "" }, { "term": "Hide When Typing", "translation": "", - "context": "", + "context": "Hide When Typing", "reference": "", "comment": "" }, { "term": "Hide When Windows Open", "translation": "", - "context": "", + "context": "Hide When Windows Open", "reference": "", "comment": "" }, { "term": "Hide cursor after inactivity (0 = disabled)", "translation": "", - "context": "", + "context": "Hide cursor after inactivity (0 = disabled)", "reference": "", "comment": "" }, { "term": "Hide cursor when pressing keyboard keys", "translation": "", - "context": "", + "context": "Hide cursor when pressing keyboard keys", "reference": "", "comment": "" }, { "term": "Hide cursor when using touch input", "translation": "", - "context": "", + "context": "Hide cursor when using touch input", "reference": "", "comment": "" }, { "term": "Hide device", "translation": "", - "context": "", + "context": "Hide device", "reference": "", "comment": "" }, { "term": "Hide installed", "translation": "", - "context": "plugin browser filter chip", + "context": "Hide installed", "reference": "", - "comment": "" + "comment": "plugin browser filter chip" }, { "term": "Hide notification content until expanded", "translation": "", - "context": "", + "context": "Hide notification content until expanded", "reference": "", "comment": "" }, { "term": "Hide notification content until expanded; popups show collapsed by default", "translation": "", - "context": "", + "context": "Hide notification content until expanded; popups show collapsed by default", "reference": "", "comment": "" }, { "term": "Hide on Touch", "translation": "", - "context": "", + "context": "Hide on Touch", "reference": "", "comment": "" }, { "term": "Hide the bar when the pointer leaves even if a popout is still open", "translation": "", - "context": "", + "context": "Hide the bar when the pointer leaves even if a popout is still open", "reference": "", "comment": "" }, { "term": "Hide when no updates: OFF", "translation": "", - "context": "", + "context": "Hide when no updates: OFF", "reference": "", "comment": "" }, { "term": "Hide when no updates: ON", "translation": "", - "context": "", + "context": "Hide when no updates: ON", "reference": "", "comment": "" }, { "term": "High", "translation": "", - "context": "", + "context": "High", "reference": "", - "comment": "" + "comment": "quality level option" }, { "term": "High-fidelity palette that preserves source hues.", "translation": "", - "context": "", + "context": "High-fidelity palette that preserves source hues.", "reference": "", "comment": "" }, { "term": "Highlight Active Workspace App", "translation": "", - "context": "", + "context": "Highlight Active Workspace App", "reference": "", "comment": "" }, { "term": "Highlight the currently focused app inside workspace indicators", "translation": "", - "context": "", + "context": "Highlight the currently focused app inside workspace indicators", "reference": "", "comment": "" }, { "term": "History", "translation": "", - "context": "notification center tab", + "context": "History", "reference": "", - "comment": "" + "comment": "notification center tab" }, { "term": "History Retention", "translation": "", - "context": "notification history retention settings label", + "context": "History Retention", "reference": "", - "comment": "" + "comment": "notification history retention settings label" }, { "term": "History Settings", "translation": "", - "context": "", + "context": "History Settings", "reference": "", "comment": "" }, { "term": "History cleared. %1 pinned entries kept.", "translation": "", - "context": "", + "context": "History cleared. %1 pinned entries kept.", "reference": "", "comment": "" }, { "term": "Hold Duration", "translation": "", - "context": "", + "context": "Hold Duration", "reference": "", "comment": "" }, { "term": "Hold longer to confirm", "translation": "", - "context": "", + "context": "Hold longer to confirm", "reference": "", "comment": "" }, { "term": "Hold to Confirm Power Actions", "translation": "", - "context": "", + "context": "Hold to Confirm Power Actions", "reference": "", "comment": "" }, { "term": "Hold to confirm (%1 ms)", "translation": "", - "context": "", + "context": "Hold to confirm (%1 ms)", "reference": "", "comment": "" }, { "term": "Hold to confirm (%1s)", "translation": "", - "context": "", + "context": "Hold to confirm (%1s)", "reference": "", "comment": "" }, { "term": "Home", "translation": "", - "context": "", + "context": "Home", "reference": "", "comment": "" }, { "term": "Horizontal and vertical bar thickness", "translation": "", - "context": "", + "context": "Horizontal and vertical bar thickness", "reference": "", "comment": "" }, { "term": "Host", "translation": "", - "context": "Label for printer IP address or hostname input field", + "context": "Host", "reference": "", - "comment": "" + "comment": "Label for printer IP address or hostname input field" }, { "term": "Hostname", "translation": "", - "context": "system info label", + "context": "Hostname", "reference": "", - "comment": "" + "comment": "system info label" }, { "term": "Hot Corners", "translation": "", - "context": "", + "context": "Hot Corners", "reference": "", "comment": "" }, { "term": "Hotkey overlay title (optional)", "translation": "", - "context": "", + "context": "Hotkey overlay title (optional)", "reference": "", "comment": "" }, { "term": "Hour", "translation": "", - "context": "", + "context": "Hour", "reference": "", "comment": "" }, { "term": "Hourly", "translation": "", - "context": "", + "context": "Hourly", "reference": "", "comment": "" }, { "term": "Hourly Forecast Count", "translation": "", - "context": "", + "context": "Hourly Forecast Count", "reference": "", "comment": "" }, { "term": "Hover Popouts", "translation": "", - "context": "", + "context": "Hover Popouts", "reference": "", "comment": "" }, { "term": "How often the server polls for new updates.", "translation": "", - "context": "", + "context": "How often the server polls for new updates.", "reference": "", "comment": "" }, { "term": "How often to change wallpaper", "translation": "", - "context": "", + "context": "How often to change wallpaper", "reference": "", "comment": "" }, { "term": "How the background image is scaled", "translation": "", - "context": "", + "context": "How the background image is scaled", "reference": "", "comment": "" }, { "term": "How the wallpaper is scaled to fit the screen", "translation": "", - "context": "", + "context": "How the wallpaper is scaled to fit the screen", "reference": "", "comment": "" }, { "term": "Humidity", "translation": "", - "context": "", + "context": "Humidity", "reference": "", "comment": "" }, { "term": "Hyprland Discord Server", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Hyprland Layout Overrides", - "translation": "", - "context": "", + "context": "Hyprland Discord Server", "reference": "", "comment": "" }, { "term": "Hyprland Options", "translation": "", - "context": "", + "context": "Hyprland Options", "reference": "", "comment": "" }, { "term": "Hyprland Website", "translation": "", - "context": "", + "context": "Hyprland Website", "reference": "", "comment": "" }, { "term": "Hyprland conf mode", "translation": "", - "context": "", + "context": "Hyprland conf mode", "reference": "", "comment": "" }, { "term": "Hyprland conf mode is read-only in Settings", "translation": "", - "context": "", + "context": "Hyprland conf mode is read-only in Settings", "reference": "", "comment": "" }, { "term": "Hyprland config include missing", "translation": "", - "context": "", + "context": "Hyprland config include missing", "reference": "", "comment": "" }, { "term": "I Understand", "translation": "", - "context": "", + "context": "I Understand", "reference": "", "comment": "" }, { "term": "IP", "translation": "", - "context": "", + "context": "IP", "reference": "", "comment": "" }, { "term": "IP Address:", "translation": "", - "context": "", + "context": "IP Address:", "reference": "", "comment": "" }, { "term": "IP address or hostname", "translation": "", - "context": "Placeholder text for manual printer address input", + "context": "IP address or hostname", "reference": "", - "comment": "" + "comment": "Placeholder text for manual printer address input" }, { "term": "ISO Date", "translation": "", - "context": "date format option", + "context": "ISO Date", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Icon", "translation": "", - "context": "", + "context": "Icon", "reference": "", "comment": "" }, { "term": "Icon Scale", "translation": "", - "context": "", + "context": "Icon Scale", "reference": "", "comment": "" }, { "term": "Icon Size", "translation": "", - "context": "", + "context": "Icon Size", "reference": "", "comment": "" }, { "term": "Icon Size %", "translation": "", - "context": "", + "context": "Icon Size %", "reference": "", "comment": "" }, { "term": "Icon Theme", "translation": "", - "context": "", + "context": "Icon Theme", "reference": "", "comment": "" }, { "term": "Icon theme changed outside DMS; switched to System Default", "translation": "", - "context": "shown when an external tool overrides the icon theme DMS applied", + "context": "Icon theme changed outside DMS; switched to System Default", "reference": "", - "comment": "" + "comment": "shown when an external tool overrides the icon theme DMS applied" }, { "term": "Identical alerts show as one popup instead of stacking", "translation": "", - "context": "", + "context": "Identical alerts show as one popup instead of stacking", "reference": "", "comment": "" }, { "term": "Identical alerts stack as separate notification cards", "translation": "", - "context": "", + "context": "Identical alerts stack as separate notification cards", "reference": "", "comment": "" }, { "term": "Identify", "translation": "", - "context": "button for identifying monitor positions", + "context": "Identify", "reference": "", - "comment": "" + "comment": "button for identifying monitor positions" }, { "term": "Idle", "translation": "", - "context": "", + "context": "Idle", "reference": "", "comment": "" }, { "term": "Idle Inhibit", "translation": "", - "context": "", + "context": "Idle Inhibit", "reference": "", "comment": "" }, { "term": "Idle Inhibitor", "translation": "", - "context": "", + "context": "Idle Inhibitor", "reference": "", "comment": "" }, { "term": "Idle Settings", "translation": "", - "context": "", + "context": "Idle Settings", "reference": "", "comment": "" }, { "term": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps", "translation": "", - "context": "", + "context": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps", "reference": "", "comment": "" }, { "term": "If the field is hidden, it will appear as soon as a key is pressed.", "translation": "", - "context": "", + "context": "If the field is hidden, it will appear as soon as a key is pressed.", "reference": "", "comment": "" }, { "term": "Ignore Completely", "translation": "", - "context": "notification rule action option", + "context": "Ignore Completely", "reference": "", - "comment": "" + "comment": "notification rule action option" }, { "term": "Ignore package", "translation": "", - "context": "", + "context": "Ignore package", "reference": "", "comment": "" }, { "term": "Ignore this package", "translation": "", - "context": "", + "context": "Ignore this package", "reference": "", "comment": "" }, { "term": "Ignored (%1)", "translation": "", - "context": "", + "context": "Ignored (%1)", "reference": "", "comment": "" }, { "term": "Ignored Packages", "translation": "", - "context": "", + "context": "Ignored Packages", "reference": "", "comment": "" }, { "term": "Ignored packages are hidden from the updater and skipped by 'Update All'.", "translation": "", - "context": "", + "context": "Ignored packages are hidden from the updater and skipped by 'Update All'.", "reference": "", "comment": "" }, { "term": "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.", "translation": "", - "context": "", + "context": "Ignored packages only apply to the built-in updater. Your custom command controls its own exclusions.", "reference": "", "comment": "" }, { "term": "Image", "translation": "", - "context": "", + "context": "Image", "reference": "", "comment": "" }, @@ -9496,369 +9272,369 @@ "translation": "", "context": "Image Viewer", "reference": "", - "comment": "" + "comment": "Image Viewer" }, { "term": "Image copied to clipboard", "translation": "", - "context": "", + "context": "Image copied to clipboard", "reference": "", "comment": "" }, { "term": "Import", "translation": "", - "context": "", + "context": "Import", "reference": "", "comment": "" }, { "term": "Import VPN", "translation": "", - "context": "", + "context": "Import VPN", "reference": "", "comment": "" }, { "term": "Inactive Monitor Color", "translation": "", - "context": "", + "context": "Inactive Monitor Color", "reference": "", "comment": "" }, { "term": "Include AUR updates", "translation": "", - "context": "", + "context": "Include AUR updates", "reference": "", "comment": "" }, { "term": "Include Files in All Tab", "translation": "", - "context": "", + "context": "Include Files in All Tab", "reference": "", "comment": "" }, { "term": "Include Flatpak updates", "translation": "", - "context": "", + "context": "Include Flatpak updates", "reference": "", "comment": "" }, { "term": "Include Folders in All Tab", "translation": "", - "context": "", + "context": "Include Folders in All Tab", "reference": "", "comment": "" }, { "term": "Include Transitions", "translation": "", - "context": "", + "context": "Include Transitions", "reference": "", "comment": "" }, { "term": "Include desktop actions (shortcuts) in search results.", "translation": "", - "context": "", + "context": "Include desktop actions (shortcuts) in search results.", "reference": "", "comment": "" }, { "term": "Incompatible Plugins Loaded", "translation": "", - "context": "", + "context": "Incompatible Plugins Loaded", "reference": "", "comment": "" }, { "term": "Incorrect password", "translation": "", - "context": "", + "context": "Incorrect password", "reference": "", "comment": "" }, { "term": "Incorrect password - try again", "translation": "", - "context": "", + "context": "Incorrect password - try again", "reference": "", "comment": "" }, { "term": "Index Centering", "translation": "", - "context": "", + "context": "Index Centering", "reference": "", "comment": "" }, { "term": "Indicator Style", "translation": "", - "context": "", + "context": "Indicator Style", "reference": "", "comment": "" }, { "term": "Individual Batteries", "translation": "", - "context": "", + "context": "Individual Batteries", "reference": "", "comment": "" }, { "term": "Individual bar configuration", "translation": "", - "context": "", + "context": "Individual bar configuration", "reference": "", "comment": "" }, { "term": "Info", "translation": "", - "context": "greeter doctor page status card", + "context": "Info", "reference": "", - "comment": "" + "comment": "greeter doctor page status card" }, { "term": "Inherit", "translation": "", - "context": "", + "context": "Inherit", "reference": "", - "comment": "" + "comment": "inherit from global setting" }, { "term": "Inherit Global (Default)", "translation": "", - "context": "bar shadow direction source option", + "context": "Inherit Global (Default)", "reference": "", - "comment": "" + "comment": "bar shadow direction source option" }, { "term": "Inhibitable", "translation": "", - "context": "", + "context": "Inhibitable", "reference": "", "comment": "" }, { "term": "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.", "translation": "", - "context": "", + "context": "Initial position for floating windows. Set both X and Y; anchor controls which corner/edge they're relative to.", "reference": "", "comment": "" }, { "term": "Initialised", "translation": "", - "context": "", + "context": "Initialised", "reference": "", "comment": "" }, { "term": "Inner Gaps", "translation": "", - "context": "", + "context": "Inner Gaps", "reference": "", "comment": "" }, { "term": "Inner padding applied to each widget", "translation": "", - "context": "", + "context": "Inner padding applied to each widget", "reference": "", "comment": "" }, { "term": "Input Devices", "translation": "", - "context": "", + "context": "Input Devices", "reference": "", "comment": "" }, { "term": "Input Volume Slider", "translation": "", - "context": "", + "context": "Input Volume Slider", "reference": "", "comment": "" }, { "term": "Insert your security key...", "translation": "", - "context": "", + "context": "Insert your security key...", "reference": "", "comment": "" }, { "term": "Inset the Notepad from screen edges using the compositor's configured gaps", "translation": "", - "context": "", + "context": "Inset the Notepad from screen edges using the compositor's configured gaps", "reference": "", "comment": "" }, { "term": "Install", "translation": "", - "context": "install action button", + "context": "Install", "reference": "", - "comment": "" + "comment": "install action button" }, { "term": "Install Greeter", "translation": "", - "context": "greeter action confirmation", + "context": "Install Greeter", "reference": "", - "comment": "" + "comment": "greeter action confirmation" }, { "term": "Install Plugin", "translation": "", - "context": "plugin installation dialog title", + "context": "Install Plugin", "reference": "", - "comment": "" + "comment": "plugin installation dialog title" }, { "term": "Install Theme", "translation": "", - "context": "theme installation dialog title", + "context": "Install Theme", "reference": "", - "comment": "" + "comment": "theme installation dialog title" }, { "term": "Install color themes from the DMS theme registry", "translation": "", - "context": "theme browser description", + "context": "Install color themes from the DMS theme registry", "reference": "", - "comment": "" + "comment": "theme browser description" }, { "term": "Install complete. Greeter has been installed.", "translation": "", - "context": "", + "context": "Install complete. Greeter has been installed.", "reference": "", "comment": "" }, { "term": "Install dsearch to search files.", "translation": "", - "context": "", + "context": "Install dsearch to search files.", "reference": "", "comment": "" }, { "term": "Install failed: %1", "translation": "", - "context": "installation error", + "context": "Install failed: %1", "reference": "", - "comment": "" + "comment": "installation error" }, { "term": "Install matugen package for dynamic theming", "translation": "", - "context": "matugen installation hint", + "context": "Install matugen package for dynamic theming", "reference": "", - "comment": "" + "comment": "matugen installation hint" }, { "term": "Install plugin '%1' from the DMS registry?", "translation": "", - "context": "plugin installation confirmation", + "context": "Install plugin '%1' from the DMS registry?", "reference": "", - "comment": "" + "comment": "plugin installation confirmation" }, { "term": "Install plugins from the DMS plugin registry", "translation": "", - "context": "plugin browser description", + "context": "Install plugins from the DMS plugin registry", "reference": "", - "comment": "" + "comment": "plugin browser description" }, { "term": "Install the DMS greeter? A terminal will open for sudo authentication.", "translation": "", - "context": "", + "context": "Install the DMS greeter? A terminal will open for sudo authentication.", "reference": "", "comment": "" }, { "term": "Install theme '%1' from the DMS registry?", "translation": "", - "context": "theme installation confirmation", + "context": "Install theme '%1' from the DMS registry?", "reference": "", - "comment": "" + "comment": "theme installation confirmation" }, { "term": "Installation and PAM setup: see the ", "translation": "", - "context": "", + "context": "Installation and PAM setup: see the ", "reference": "", "comment": "" }, { "term": "Installed", "translation": "", - "context": "installed status", + "context": "Installed", "reference": "", - "comment": "" + "comment": "installed status" }, { "term": "Installed first", "translation": "", - "context": "plugin browser filter chip", + "context": "Installed first", "reference": "", - "comment": "" + "comment": "plugin browser filter chip" }, { "term": "Installed: %1", "translation": "", - "context": "installation success", + "context": "Installed: %1", "reference": "", - "comment": "" + "comment": "installation success" }, { "term": "Installing: %1", "translation": "", - "context": "installation progress", + "context": "Installing: %1", "reference": "", - "comment": "" + "comment": "installation progress" }, { "term": "Integrations", "translation": "", - "context": "", + "context": "Integrations", "reference": "", "comment": "" }, { "term": "Intelligent Auto-hide", "translation": "", - "context": "", + "context": "Intelligent Auto-hide", "reference": "", "comment": "" }, { "term": "Intensity", "translation": "", - "context": "shadow intensity slider", + "context": "Intensity", "reference": "", - "comment": "" + "comment": "shadow intensity slider" }, { "term": "Interface:", "translation": "", - "context": "", + "context": "Interface:", "reference": "", "comment": "" }, { "term": "Interlock Open", "translation": "", - "context": "", + "context": "Interlock Open", "reference": "", "comment": "" }, @@ -9867,838 +9643,782 @@ "translation": "", "context": "Internet", "reference": "", - "comment": "" + "comment": "Internet" }, { "term": "Interval", "translation": "", - "context": "wallpaper cycling mode tab", + "context": "Interval", "reference": "", - "comment": "" + "comment": "wallpaper cycling mode tab" }, { "term": "Invalid JSON format: %1", "translation": "", - "context": "", + "context": "Invalid JSON format: %1", "reference": "", "comment": "" }, { "term": "Invalid configuration", "translation": "", - "context": "", + "context": "Invalid configuration", "reference": "", "comment": "" }, { "term": "Invalid package name — letters, digits and @._+:- only.", "translation": "", - "context": "", + "context": "Invalid package name — letters, digits and @._+:- only.", "reference": "", "comment": "" }, { "term": "Invalid password for %1", "translation": "", - "context": "", + "context": "Invalid password for %1", "reference": "", "comment": "" }, { "term": "Invalid username", "translation": "", - "context": "", + "context": "Invalid username", "reference": "", "comment": "" }, { "term": "Invert on mode change", "translation": "", - "context": "", + "context": "Invert on mode change", "reference": "", "comment": "" }, { "term": "Invert touchpad scroll direction", "translation": "", - "context": "", + "context": "Invert touchpad scroll direction", "reference": "", "comment": "" }, { "term": "Iris Bloom", "translation": "", - "context": "wallpaper transition option", + "context": "Iris Bloom", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Isolate Displays", "translation": "", - "context": "", + "context": "Isolate Displays", "reference": "", "comment": "" }, { "term": "Jobs", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Jobs: ", - "translation": "", - "context": "", + "context": "Jobs", "reference": "", "comment": "" }, { "term": "Join video call", "translation": "", - "context": "", + "context": "Join video call", "reference": "", "comment": "" }, { "term": "Jump to page", "translation": "", - "context": "", + "context": "Jump to page", "reference": "", "comment": "" }, { "term": "Jump to page (1 - %1)", "translation": "", - "context": "", + "context": "Jump to page (1 - %1)", "reference": "", "comment": "" }, { "term": "Keep Awake", "translation": "", - "context": "", + "context": "Keep Awake", "reference": "", "comment": "" }, { "term": "Keep Changes", "translation": "", - "context": "", + "context": "Keep Changes", "reference": "", "comment": "" }, { "term": "Keep My Edits", "translation": "", - "context": "", + "context": "Keep My Edits", "reference": "", "comment": "" }, { "term": "Keep in Bar", "translation": "", - "context": "", + "context": "Keep in Bar", "reference": "", "comment": "" }, { "term": "Keep the clipboard type filter when reopening history", "translation": "", - "context": "Clipboard behavior setting description", + "context": "Keep the clipboard type filter when reopening history", "reference": "", - "comment": "" + "comment": "Clipboard behavior setting description" }, { "term": "Keep typing", "translation": "", - "context": "", + "context": "Keep typing", "reference": "", "comment": "" }, { "term": "Keeping Awake", "translation": "", - "context": "", + "context": "Keeping Awake", "reference": "", "comment": "" }, { "term": "Kernel", "translation": "", - "context": "system info label", + "context": "Kernel", "reference": "", - "comment": "" + "comment": "system info label" }, { "term": "Key", "translation": "", - "context": "", + "context": "Key", "reference": "", "comment": "" }, { "term": "Keybind Sources", "translation": "", - "context": "", + "context": "Keybind Sources", "reference": "", "comment": "" }, { "term": "Keybinds", "translation": "", - "context": "greeter settings link", + "context": "Keybinds", "reference": "", - "comment": "" + "comment": "greeter settings link" }, { "term": "Keybinds Search Settings", "translation": "", - "context": "", + "context": "Keybinds Search Settings", "reference": "", "comment": "" }, { "term": "Keybinds shown alongside regular search results", "translation": "", - "context": "", + "context": "Keybinds shown alongside regular search results", "reference": "", "comment": "" }, { "term": "Keyboard Layout Name", "translation": "", - "context": "", + "context": "Keyboard Layout Name", "reference": "", "comment": "" }, { "term": "Keyboard Shortcuts", "translation": "", - "context": "", + "context": "Keyboard Shortcuts", "reference": "", "comment": "" }, { "term": "Keys", "translation": "", - "context": "", + "context": "Keys", "reference": "", "comment": "" }, { "term": "Kill", "translation": "", - "context": "", + "context": "Kill", "reference": "", "comment": "" }, { "term": "Kill Process", "translation": "", - "context": "", + "context": "Kill Process", "reference": "", "comment": "" }, { "term": "Kill Session", "translation": "", - "context": "", + "context": "Kill Session", "reference": "", "comment": "" }, { "term": "Ko-fi", "translation": "", - "context": "", + "context": "Ko-fi", "reference": "", "comment": "" }, { "term": "LED device", "translation": "", - "context": "", + "context": "LED device", "reference": "", "comment": "" }, { "term": "LabWC IRC Channel", "translation": "", - "context": "", + "context": "LabWC IRC Channel", "reference": "", "comment": "" }, { "term": "LabWC Website", "translation": "", - "context": "", + "context": "LabWC Website", "reference": "", "comment": "" }, { "term": "Large", "translation": "", - "context": "", + "context": "Large", "reference": "", "comment": "" }, { "term": "Largest", "translation": "", - "context": "", + "context": "Largest", "reference": "", "comment": "" }, { "term": "Last hour", "translation": "", - "context": "notification history filter", + "context": "Last hour", "reference": "", - "comment": "" + "comment": "notification history filter" }, { "term": "Last launched %1", "translation": "", - "context": "", + "context": "Last launched %1", "reference": "", "comment": "" }, { "term": "Last launched %1 day ago", "translation": "", - "context": "", + "context": "Last launched %1 day ago", "reference": "", "comment": "" }, { "term": "Last launched %1 days ago", "translation": "", - "context": "", + "context": "Last launched %1 days ago", "reference": "", "comment": "" }, { "term": "Last launched %1 hour ago", "translation": "", - "context": "", + "context": "Last launched %1 hour ago", "reference": "", "comment": "" }, { "term": "Last launched %1 hours ago", "translation": "", - "context": "", + "context": "Last launched %1 hours ago", "reference": "", "comment": "" }, { "term": "Last launched %1 minute ago", "translation": "", - "context": "", + "context": "Last launched %1 minute ago", "reference": "", "comment": "" }, { "term": "Last launched %1 minutes ago", "translation": "", - "context": "", + "context": "Last launched %1 minutes ago", "reference": "", "comment": "" }, { "term": "Last launched just now", "translation": "", - "context": "", + "context": "Last launched just now", "reference": "", "comment": "" }, { "term": "Latitude", "translation": "", - "context": "", + "context": "Latitude", "reference": "", "comment": "" }, { "term": "Launch", "translation": "", - "context": "", + "context": "Launch", "reference": "", "comment": "" }, { "term": "Launch Prefix", "translation": "", - "context": "", + "context": "Launch Prefix", "reference": "", "comment": "" }, { "term": "Launch on dGPU", "translation": "", - "context": "", + "context": "Launch on dGPU", "reference": "", "comment": "" }, { "term": "Launcher", "translation": "", - "context": "", + "context": "Launcher", "reference": "", "comment": "" }, { "term": "Launcher Button", "translation": "", - "context": "", + "context": "Launcher Button", "reference": "", "comment": "" }, { "term": "Launcher Button Logo", "translation": "", - "context": "", + "context": "Launcher Button Logo", "reference": "", "comment": "" }, { "term": "Launcher Emerge Side", "translation": "", - "context": "", + "context": "Launcher Emerge Side", "reference": "", "comment": "" }, { "term": "Layer Outline Opacity", "translation": "", - "context": "", + "context": "Layer Outline Opacity", "reference": "", "comment": "" }, { "term": "Layout", "translation": "", - "context": "", + "context": "Layout", "reference": "", "comment": "" }, { "term": "Layout Overrides", "translation": "", - "context": "", + "context": "Layout Overrides", "reference": "", "comment": "" }, { "term": "Left", "translation": "", - "context": "", + "context": "Left", "reference": "", - "comment": "" + "comment": "screen edge position" }, { "term": "Left Center", "translation": "", - "context": "screen position option", + "context": "Left Center", "reference": "", - "comment": "" + "comment": "screen position option" }, { "term": "Left Section", "translation": "", - "context": "", + "context": "Left Section", "reference": "", "comment": "" }, { "term": "Light", "translation": "", - "context": "font weight", + "context": "Light", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Light Direction", "translation": "", - "context": "", + "context": "Light Direction", "reference": "", "comment": "" }, { "term": "Light Mode", "translation": "", - "context": "", + "context": "Light Mode", "reference": "", "comment": "" }, { "term": "Light Mode Icon Theme", "translation": "", - "context": "", + "context": "Light Mode Icon Theme", "reference": "", "comment": "" }, { "term": "Light Rain", "translation": "", - "context": "", + "context": "Light Rain", "reference": "", "comment": "" }, { "term": "Light Snow", "translation": "", - "context": "", + "context": "Light Snow", "reference": "", "comment": "" }, { "term": "Light Snow Showers", "translation": "", - "context": "", + "context": "Light Snow Showers", "reference": "", "comment": "" }, { "term": "Light mode base", "translation": "", - "context": "", + "context": "Light mode base", "reference": "", "comment": "" }, { "term": "Light mode harmony", "translation": "", - "context": "", + "context": "Light mode harmony", "reference": "", "comment": "" }, { "term": "Limit set to %1%", "translation": "", - "context": "", + "context": "Limit set to %1%", "reference": "", "comment": "" }, { "term": "Limit the maximum battery charge level to extend lifespan.", "translation": "", - "context": "", + "context": "Limit the maximum battery charge level to extend lifespan.", "reference": "", "comment": "" }, { "term": "Line", "translation": "", - "context": "dock indicator style option", + "context": "Line", "reference": "", - "comment": "" + "comment": "dock indicator style option" }, { "term": "Line: %1", "translation": "", - "context": "", + "context": "Line: %1", "reference": "", "comment": "" }, { "term": "Linear", "translation": "", - "context": "", + "context": "Linear", "reference": "", "comment": "" }, { "term": "Lines: %1", "translation": "", - "context": "", + "context": "Lines: %1", "reference": "", "comment": "" }, { "term": "List", "translation": "", - "context": "", + "context": "List", "reference": "", "comment": "" }, { "term": "Lively palette with saturated accents.", "translation": "", - "context": "", + "context": "Lively palette with saturated accents.", "reference": "", "comment": "" }, { "term": "Load Average", "translation": "", - "context": "system info label", + "context": "Load Average", "reference": "", - "comment": "" + "comment": "system info label" }, { "term": "Loading codecs...", "translation": "", - "context": "", + "context": "Loading codecs...", "reference": "", "comment": "" }, { "term": "Loading keybinds...", "translation": "", - "context": "", + "context": "Loading keybinds...", "reference": "", "comment": "" }, { "term": "Loading trending...", "translation": "", - "context": "", + "context": "Loading trending...", "reference": "", "comment": "" }, { "term": "Loading...", "translation": "", - "context": "", + "context": "Loading...", "reference": "", "comment": "" }, { "term": "Local", "translation": "", - "context": "", + "context": "Local", "reference": "", "comment": "" }, { "term": "Local Weather", "translation": "", - "context": "", + "context": "Local Weather", "reference": "", "comment": "" }, { "term": "Locale", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Locale Settings", - "translation": "", - "context": "", + "context": "Locale", "reference": "", "comment": "" }, { "term": "Location", "translation": "", - "context": "theme auto mode tab", + "context": "Location", "reference": "", - "comment": "" + "comment": "theme auto mode tab" }, { "term": "Location Search", "translation": "", - "context": "", + "context": "Location Search", "reference": "", "comment": "" }, { "term": "Lock", "translation": "", - "context": "", + "context": "Lock", "reference": "", "comment": "" }, { "term": "Lock Screen", "translation": "", - "context": "greeter feature card title | lock screen notifications settings card", + "context": "Lock Screen", "reference": "", - "comment": "" - }, - { - "term": "Lock Screen Appearance", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen Display", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "greeter feature card title | lock screen notifications settings card" }, { "term": "Lock Screen Format", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen behaviour", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock Screen layout", - "translation": "", - "context": "", + "context": "Lock Screen Format", "reference": "", "comment": "" }, { "term": "Lock at startup", "translation": "", - "context": "", + "context": "Lock at startup", "reference": "", "comment": "" }, { "term": "Lock before suspend", "translation": "", - "context": "", + "context": "Lock before suspend", "reference": "", "comment": "" }, { "term": "Lock fade grace period", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.", - "translation": "", - "context": "", + "context": "Lock fade grace period", "reference": "", "comment": "" }, { "term": "Lock screen font", "translation": "", - "context": "", + "context": "Lock screen font", "reference": "", "comment": "" }, { "term": "Locked", "translation": "", - "context": "", + "context": "Locked", "reference": "", "comment": "" }, { "term": "Log Out", "translation": "", - "context": "", + "context": "Log Out", "reference": "", "comment": "" }, { "term": "Logging in...", "translation": "", - "context": "", + "context": "Logging in...", "reference": "", "comment": "" }, { "term": "Login", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Login Authentication", - "translation": "", - "context": "", + "context": "Login", "reference": "", "comment": "" }, { "term": "Long", "translation": "", - "context": "", + "context": "Long", "reference": "", "comment": "" }, { "term": "Long Text", "translation": "", - "context": "", + "context": "Long Text", "reference": "", "comment": "" }, { "term": "Long press", "translation": "", - "context": "", + "context": "Long press", "reference": "", "comment": "" }, { "term": "Longitude", "translation": "", - "context": "", + "context": "Longitude", "reference": "", "comment": "" }, { "term": "Low", "translation": "", - "context": "", + "context": "Low", "reference": "", - "comment": "" + "comment": "quality level option" }, { "term": "Low Battery", "translation": "", - "context": "", + "context": "Low Battery", "reference": "", "comment": "" }, { "term": "Low Battery Notifications", "translation": "", - "context": "", + "context": "Low Battery Notifications", "reference": "", "comment": "" }, { "term": "Low Battery Threshold", "translation": "", - "context": "", + "context": "Low Battery Threshold", "reference": "", "comment": "" }, { "term": "Low Priority", "translation": "", - "context": "notification rule urgency option", + "context": "Low Priority", "reference": "", - "comment": "" + "comment": "notification rule urgency option" }, { "term": "MAC", "translation": "", - "context": "", + "context": "MAC", "reference": "", "comment": "" }, { "term": "MTU", "translation": "", - "context": "", + "context": "MTU", "reference": "", "comment": "" }, @@ -10707,68 +10427,68 @@ "translation": "", "context": "Mail", "reference": "", - "comment": "" + "comment": "Mail" }, { "term": "Make admin", "translation": "", - "context": "", + "context": "Make admin", "reference": "", "comment": "" }, { "term": "Make sure KDE Connect or Valent is running on your other devices", "translation": "", - "context": "Phone Connect hint message", + "context": "Make sure KDE Connect or Valent is running on your other devices", "reference": "", - "comment": "" + "comment": "Phone Connect hint message" }, { "term": "Make the bar background fully transparent", "translation": "", - "context": "", + "context": "Make the bar background fully transparent", "reference": "", "comment": "" }, { "term": "Manage and configure plugins for extending DMS functionality", "translation": "", - "context": "", + "context": "Manage and configure plugins for extending DMS functionality", "reference": "", "comment": "" }, { "term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", "translation": "", - "context": "", + "context": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", "reference": "", "comment": "" }, { "term": "Managed by Frame", "translation": "", - "context": "", + "context": "Managed by Frame", "reference": "", "comment": "" }, { "term": "Managed by Frame in Connected Mode", "translation": "", - "context": "", + "context": "Managed by Frame in Connected Mode", "reference": "", "comment": "" }, + { + "term": "Managed by the primary PAM source.", + "translation": "", + "context": "Managed by the primary PAM source.", + "reference": "", + "comment": "factor managed by PAM source status" + }, { "term": "Management", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Manages calendar events", - "translation": "", - "context": "Manages calendar events", + "context": "Management", "reference": "", "comment": "" }, @@ -10777,82 +10497,75 @@ "translation": "", "context": "Manages files and directories", "reference": "", - "comment": "" + "comment": "Manages files and directories" }, { "term": "Mango Options", "translation": "", - "context": "", + "context": "Mango Options", "reference": "", "comment": "" }, { "term": "Mango service not available", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "MangoWC Layout Overrides", - "translation": "", - "context": "", + "context": "Mango service not available", "reference": "", "comment": "" }, { "term": "Manual", "translation": "", - "context": "bar shadow direction source option", + "context": "Manual", "reference": "", - "comment": "" + "comment": "bar shadow direction source option" }, { "term": "Manual Coordinates", "translation": "", - "context": "", + "context": "Manual Coordinates", "reference": "", "comment": "" }, { "term": "Manual Direction", "translation": "", - "context": "bar manual shadow direction", + "context": "Manual Direction", "reference": "", - "comment": "" + "comment": "bar manual shadow direction" }, { "term": "Manual Gap Size", "translation": "", - "context": "", + "context": "Manual Gap Size", "reference": "", "comment": "" }, { "term": "Manual Gaps", "translation": "", - "context": "", + "context": "Manual Gaps", "reference": "", "comment": "" }, { "term": "Manual Show/Hide", "translation": "", - "context": "", + "context": "Manual Show/Hide", "reference": "", "comment": "" }, { "term": "Manual config", "translation": "", - "context": "", + "context": "Manual config", "reference": "", "comment": "" }, { "term": "Map window class names to icon names for proper icon display", "translation": "", - "context": "", + "context": "Map window class names to icon names for proper icon display", "reference": "", "comment": "" }, @@ -10861,761 +10574,733 @@ "translation": "", "context": "Maps", "reference": "", - "comment": "" + "comment": "Maps" }, { "term": "Margin", "translation": "", - "context": "", + "context": "Margin", "reference": "", "comment": "" }, { "term": "Marker Supply Empty", "translation": "", - "context": "", + "context": "Marker Supply Empty", "reference": "", "comment": "" }, { "term": "Marker Supply Low", "translation": "", - "context": "", + "context": "Marker Supply Low", "reference": "", "comment": "" }, { "term": "Marker Waste Almost Full", "translation": "", - "context": "", + "context": "Marker Waste Almost Full", "reference": "", "comment": "" }, { "term": "Marker Waste Full", "translation": "", - "context": "", + "context": "Marker Waste Full", "reference": "", "comment": "" }, { "term": "Match (%1)", "translation": "", - "context": "", + "context": "Match (%1)", "reference": "", "comment": "" }, { "term": "Match Conditions", "translation": "", - "context": "", + "context": "Match Conditions", "reference": "", "comment": "" }, { "term": "Match Criteria", "translation": "", - "context": "", + "context": "Match Criteria", "reference": "", "comment": "" }, { "term": "Material", "translation": "", - "context": "", + "context": "Material", "reference": "", "comment": "" }, { "term": "Material Battery Style", "translation": "", - "context": "", + "context": "Material Battery Style", "reference": "", "comment": "" }, { "term": "Material Colors", "translation": "", - "context": "", + "context": "Material Colors", "reference": "", "comment": "" }, { "term": "Material Design inspired color themes", "translation": "", - "context": "generic theme description", + "context": "Material Design inspired color themes", "reference": "", - "comment": "" + "comment": "generic theme description" }, { "term": "Material colors generated from wallpaper", "translation": "", - "context": "dynamic theme description", + "context": "Material colors generated from wallpaper", "reference": "", - "comment": "" + "comment": "dynamic theme description" }, { "term": "Material inspired shadows and elevation on modals, popouts, and dialogs", "translation": "", - "context": "", + "context": "Material inspired shadows and elevation on modals, popouts, and dialogs", "reference": "", "comment": "" }, { "term": "Material: Material Design 3 Expressive bezier curves. The DMS default feel.", "translation": "", - "context": "", + "context": "Material: Material Design 3 Expressive bezier curves. The DMS default feel.", "reference": "", "comment": "" }, { "term": "Matugen Contrast", "translation": "", - "context": "", + "context": "Matugen Contrast", "reference": "", "comment": "" }, { "term": "Matugen Missing", "translation": "", - "context": "matugen not found status", + "context": "Matugen Missing", "reference": "", - "comment": "" + "comment": "matugen not found status" }, { "term": "Matugen Palette", "translation": "", - "context": "", + "context": "Matugen Palette", "reference": "", "comment": "" }, { "term": "Matugen Target Monitor", "translation": "", - "context": "", + "context": "Matugen Target Monitor", "reference": "", "comment": "" }, { "term": "Matugen Templates", "translation": "", - "context": "", + "context": "Matugen Templates", "reference": "", "comment": "" }, { "term": "Max Edges", "translation": "", - "context": "", + "context": "Max Edges", "reference": "", "comment": "" }, { "term": "Max H", "translation": "", - "context": "", + "context": "Max H", "reference": "", "comment": "" }, { "term": "Max Pinned Apps", "translation": "", - "context": "", + "context": "Max Pinned Apps", "reference": "", "comment": "" }, { "term": "Max Pinned Apps (0 = Unlimited)", "translation": "", - "context": "", + "context": "Max Pinned Apps (0 = Unlimited)", "reference": "", "comment": "" }, { "term": "Max Running Apps", "translation": "", - "context": "", + "context": "Max Running Apps", "reference": "", "comment": "" }, { "term": "Max Running Apps (0 = Unlimited)", "translation": "", - "context": "", + "context": "Max Running Apps (0 = Unlimited)", "reference": "", "comment": "" }, { "term": "Max Visible", "translation": "", - "context": "", + "context": "Max Visible", "reference": "", "comment": "" }, { "term": "Max Volume", "translation": "", - "context": "Audio settings: maximum volume limit per device", + "context": "Max Volume", "reference": "", - "comment": "" + "comment": "Audio settings: maximum volume limit per device" }, { "term": "Max W", "translation": "", - "context": "", + "context": "Max W", "reference": "", "comment": "" }, { "term": "Max apps to show", "translation": "", - "context": "", + "context": "Max apps to show", "reference": "", "comment": "" }, { "term": "Max to Edges", "translation": "", - "context": "", + "context": "Max to Edges", "reference": "", "comment": "" }, { "term": "Maximize", "translation": "", - "context": "", + "context": "Maximize", "reference": "", "comment": "" }, { "term": "Maximize Detection", "translation": "", - "context": "", + "context": "Maximize Detection", "reference": "", "comment": "" }, { "term": "Maximize Widget Icons", "translation": "", - "context": "", + "context": "Maximize Widget Icons", "reference": "", "comment": "" }, { "term": "Maximize Widget Text", "translation": "", - "context": "", + "context": "Maximize Widget Text", "reference": "", "comment": "" }, { "term": "Maximum Entry Size", "translation": "", - "context": "", + "context": "Maximum Entry Size", "reference": "", "comment": "" }, { "term": "Maximum History", "translation": "", - "context": "", + "context": "Maximum History", "reference": "", "comment": "" }, { "term": "Maximum Pinned Entries", "translation": "", - "context": "", + "context": "Maximum Pinned Entries", "reference": "", "comment": "" }, { "term": "Maximum fingerprint attempts reached. Please use password.", "translation": "", - "context": "", + "context": "Maximum fingerprint attempts reached. Please use password.", "reference": "", "comment": "" }, { "term": "Maximum number of clipboard entries to keep", "translation": "", - "context": "", + "context": "Maximum number of clipboard entries to keep", "reference": "", "comment": "" }, { "term": "Maximum number of entries that can be saved", "translation": "", - "context": "", + "context": "Maximum number of entries that can be saved", "reference": "", "comment": "" }, { "term": "Maximum number of notifications to keep", "translation": "", - "context": "notification history limit", + "context": "Maximum number of notifications to keep", "reference": "", - "comment": "" + "comment": "notification history limit" }, { "term": "Maximum pinned entries reached", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Maximum size per clipboard entry", - "translation": "", - "context": "", + "context": "Maximum pinned entries reached", "reference": "", "comment": "" }, { "term": "Media", "translation": "", - "context": "", + "context": "Media", "reference": "", "comment": "" }, { "term": "Media Controls", "translation": "", - "context": "", + "context": "Media Controls", "reference": "", "comment": "" }, { "term": "Media Empty", "translation": "", - "context": "", + "context": "Media Empty", "reference": "", "comment": "" }, { "term": "Media Jam", "translation": "", - "context": "", + "context": "Media Jam", "reference": "", "comment": "" }, { "term": "Media Low", "translation": "", - "context": "", + "context": "Media Low", "reference": "", "comment": "" }, { "term": "Media Needed", "translation": "", - "context": "", + "context": "Media Needed", "reference": "", "comment": "" }, { "term": "Media Playback", "translation": "", - "context": "", + "context": "Media Playback", "reference": "", "comment": "" }, { "term": "Media Player", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Media Player Settings", - "translation": "", - "context": "", + "context": "Media Player", "reference": "", "comment": "" }, { "term": "Media Players (", "translation": "", - "context": "", + "context": "Media Players (", "reference": "", "comment": "" }, { "term": "Media Volume", "translation": "", - "context": "", + "context": "Media Volume", "reference": "", "comment": "" }, { "term": "Medium", "translation": "", - "context": "font weight", + "context": "Medium", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Memory", "translation": "", - "context": "", + "context": "Memory", "reference": "", "comment": "" }, { "term": "Memory Graph", "translation": "", - "context": "", + "context": "Memory Graph", "reference": "", "comment": "" }, { "term": "Memory Usage", "translation": "", - "context": "", + "context": "Memory Usage", "reference": "", "comment": "" }, { "term": "Memory usage indicator", "translation": "", - "context": "", + "context": "Memory usage indicator", "reference": "", "comment": "" }, { "term": "Merge indexed file results into the All tab (requires dsearch).", "translation": "", - "context": "", + "context": "Merge indexed file results into the All tab (requires dsearch).", "reference": "", "comment": "" }, { "term": "Merge indexed folder results into the All tab (requires dsearch).", "translation": "", - "context": "", + "context": "Merge indexed folder results into the All tab (requires dsearch).", "reference": "", "comment": "" }, { "term": "Message", "translation": "", - "context": "KDE Connect SMS message input placeholder", + "context": "Message", "reference": "", - "comment": "" + "comment": "KDE Connect SMS message input placeholder" }, { "term": "Message Content", "translation": "", - "context": "notification privacy mode placeholder", + "context": "Message Content", "reference": "", - "comment": "" + "comment": "notification privacy mode placeholder" }, { "term": "Microphone", "translation": "", - "context": "", + "context": "Microphone", "reference": "", "comment": "" }, { "term": "Microphone Mute", "translation": "", - "context": "", + "context": "Microphone Mute", "reference": "", "comment": "" }, { "term": "Microphone Volume", "translation": "", - "context": "", + "context": "Microphone Volume", "reference": "", "comment": "" }, { "term": "Microphone settings", "translation": "", - "context": "", + "context": "Microphone settings", "reference": "", "comment": "" }, { "term": "Microphone volume control", "translation": "", - "context": "", + "context": "Microphone volume control", "reference": "", "comment": "" }, { "term": "Middle Section", "translation": "", - "context": "", + "context": "Middle Section", "reference": "", "comment": "" }, { "term": "Min H", "translation": "", - "context": "", + "context": "Min H", "reference": "", "comment": "" }, { "term": "Min W", "translation": "", - "context": "", + "context": "Min W", "reference": "", "comment": "" }, { "term": "Minimal palette built around a single hue.", "translation": "", - "context": "", + "context": "Minimal palette built around a single hue.", "reference": "", "comment": "" }, { "term": "Minute", "translation": "", - "context": "", + "context": "Minute", "reference": "", "comment": "" }, { "term": "Mirror Display", "translation": "", - "context": "", + "context": "Mirror Display", "reference": "", "comment": "" }, { "term": "Missing Environment Variables", "translation": "", - "context": "qt theme env error title", + "context": "Missing Environment Variables", "reference": "", - "comment": "" + "comment": "qt theme env error title" }, { "term": "Modal Background", "translation": "", - "context": "", + "context": "Modal Background", "reference": "", "comment": "" }, { "term": "Modal Shadows", "translation": "", - "context": "", + "context": "Modal Shadows", "reference": "", "comment": "" }, { "term": "Modals", "translation": "", - "context": "", + "context": "Modals", "reference": "", "comment": "" }, { "term": "Mode", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Mode:", - "translation": "", - "context": "", + "context": "Mode", "reference": "", "comment": "" }, { "term": "Model", "translation": "", - "context": "", + "context": "Model", "reference": "", "comment": "" }, { "term": "Modified", "translation": "", - "context": "", + "context": "Modified", "reference": "", "comment": "" }, { "term": "Modular widget bar", "translation": "", - "context": "greeter feature card description", + "context": "Modular widget bar", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "Monitor", "translation": "", - "context": "", + "context": "Monitor", "reference": "", "comment": "" }, { "term": "Monitor Configuration", "translation": "", - "context": "", + "context": "Monitor Configuration", "reference": "", "comment": "" }, { "term": "Monitor fade grace period", "translation": "", - "context": "", + "context": "Monitor fade grace period", "reference": "", "comment": "" }, { "term": "Monitor whose wallpaper drives dynamic theming colors", "translation": "", - "context": "", + "context": "Monitor whose wallpaper drives dynamic theming colors", "reference": "", "comment": "" }, { "term": "Monitors in \"%1\":", "translation": "", - "context": "", + "context": "Monitors in \"%1\":", "reference": "", "comment": "" }, { "term": "Monochrome", "translation": "", - "context": "matugen color scheme option", + "context": "Monochrome", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Monocle", "translation": "", - "context": "", + "context": "Monocle", "reference": "", "comment": "" }, { "term": "Monospace Font", "translation": "", - "context": "", + "context": "Monospace Font", "reference": "", "comment": "" }, { "term": "Month Date", "translation": "", - "context": "date format option", + "context": "Month Date", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Morning", "translation": "", - "context": "", + "context": "Morning", "reference": "", "comment": "" }, { "term": "Motion Effects", "translation": "", - "context": "", + "context": "Motion Effects", "reference": "", "comment": "" }, { "term": "Mount Points", "translation": "", - "context": "mount points header in system monitor", + "context": "Mount Points", "reference": "", - "comment": "" + "comment": "mount points header in system monitor" }, { "term": "Mouse clicks pass through the bar to windows behind it", "translation": "", - "context": "", + "context": "Mouse clicks pass through the bar to windows behind it", "reference": "", "comment": "" }, { "term": "Mouse pointer appearance", "translation": "", - "context": "", + "context": "Mouse pointer appearance", "reference": "", "comment": "" }, { "term": "Mouse pointer size in pixels", "translation": "", - "context": "", + "context": "Mouse pointer size in pixels", "reference": "", "comment": "" }, { "term": "Move Widget", "translation": "", - "context": "", + "context": "Move Widget", "reference": "", "comment": "" }, { "term": "Move to Trash", "translation": "", - "context": "", + "context": "Move to Trash", "reference": "", "comment": "" }, { "term": "Moving to Paused", "translation": "", - "context": "", + "context": "Moving to Paused", "reference": "", "comment": "" }, { "term": "Multi-Monitor", "translation": "", - "context": "greeter feature card title", + "context": "Multi-Monitor", "reference": "", - "comment": "" + "comment": "greeter feature card title" }, { "term": "Multimedia", "translation": "", "context": "Multimedia", "reference": "", - "comment": "" - }, - { - "term": "Multiplexer", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "Multimedia" }, { "term": "Multiplexer Type", "translation": "", - "context": "", + "context": "Multiplexer Type", "reference": "", "comment": "" }, { "term": "Multiplexers", "translation": "", - "context": "", + "context": "Multiplexers", "reference": "", "comment": "" }, { "term": "Music", "translation": "", - "context": "", + "context": "Music", "reference": "", "comment": "" }, @@ -11624,2392 +11309,2350 @@ "translation": "", "context": "Music Player", "reference": "", - "comment": "" + "comment": "Music Player" }, { "term": "Mute During Playback", "translation": "", - "context": "", + "context": "Mute During Playback", "reference": "", "comment": "" }, { "term": "Mute Popups", "translation": "", - "context": "notification rule action option", + "context": "Mute Popups", "reference": "", - "comment": "" + "comment": "notification rule action option" }, { "term": "Mute popups for %1", "translation": "", - "context": "", + "context": "Mute popups for %1", "reference": "", "comment": "" }, { "term": "Muted", "translation": "", - "context": "audio status", + "context": "Muted", "reference": "", - "comment": "" + "comment": "audio status" }, { "term": "Muted Apps", "translation": "", - "context": "", + "context": "Muted Apps", "reference": "", "comment": "" }, { "term": "Muted palette with subdued, calming tones.", "translation": "", - "context": "", + "context": "Muted palette with subdued, calming tones.", "reference": "", "comment": "" }, { "term": "My Online", "translation": "", - "context": "Tailscale filter: my online devices", + "context": "My Online", "reference": "", - "comment": "" + "comment": "Tailscale filter: my online devices" }, { "term": "NM not supported", "translation": "", - "context": "", + "context": "NM not supported", "reference": "", "comment": "" }, { "term": "Name", "translation": "", - "context": "plugin browser sort option", + "context": "Name", "reference": "", - "comment": "" + "comment": "plugin browser sort option" }, { "term": "Named Workspace Icons", "translation": "", - "context": "", + "context": "Named Workspace Icons", "reference": "", "comment": "" }, { "term": "Native", "translation": "", - "context": "", + "context": "Native", "reference": "", "comment": "" }, { "term": "Native: platform renderer (FreeType).", "translation": "", - "context": "", + "context": "Native: platform renderer (FreeType).", "reference": "", "comment": "" }, { "term": "Natural Touchpad Scrolling", "translation": "", - "context": "", + "context": "Natural Touchpad Scrolling", "reference": "", "comment": "" }, { "term": "Navigate", "translation": "", - "context": "", + "context": "Navigate", "reference": "", "comment": "" }, { "term": "Navigation", "translation": "", - "context": "", + "context": "Navigation", "reference": "", "comment": "" }, { "term": "Network", "translation": "", - "context": "", + "context": "Network", "reference": "", "comment": "" }, { "term": "Network Graph", "translation": "", - "context": "", + "context": "Network Graph", "reference": "", "comment": "" }, { "term": "Network Info", "translation": "", - "context": "", + "context": "Network Info", "reference": "", "comment": "" }, { "term": "Network Information", "translation": "", - "context": "", + "context": "Network Information", "reference": "", "comment": "" }, { "term": "Network Name (SSID)", "translation": "", - "context": "", + "context": "Network Name (SSID)", "reference": "", "comment": "" }, { "term": "Network Speed Monitor", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Network Status", - "translation": "", - "context": "", + "context": "Network Speed Monitor", "reference": "", "comment": "" }, { "term": "Network Type", "translation": "", - "context": "KDE Connect network type label", + "context": "Network Type", "reference": "", - "comment": "" + "comment": "KDE Connect network type label" }, { "term": "Network download and upload speed display", "translation": "", - "context": "", + "context": "Network download and upload speed display", "reference": "", "comment": "" }, { "term": "Network not found", "translation": "", - "context": "", + "context": "Network not found", "reference": "", "comment": "" }, { "term": "Neutral", "translation": "", - "context": "matugen color scheme option", + "context": "Neutral", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Never", "translation": "", - "context": "", + "context": "Never", "reference": "", "comment": "" }, { "term": "Never used", "translation": "", - "context": "", + "context": "Never used", "reference": "", "comment": "" }, { "term": "New", "translation": "", - "context": "", + "context": "New", "reference": "", "comment": "" }, { "term": "New Key", "translation": "", - "context": "", + "context": "New Key", "reference": "", "comment": "" }, { "term": "New Keybind", "translation": "", - "context": "", + "context": "New Keybind", "reference": "", "comment": "" }, { "term": "New Notification", "translation": "", - "context": "", + "context": "New Notification", "reference": "", "comment": "" }, { "term": "New Session", "translation": "", - "context": "", + "context": "New Session", "reference": "", "comment": "" }, { "term": "New Window Rule", "translation": "", - "context": "", + "context": "New Window Rule", "reference": "", "comment": "" }, { "term": "New York, NY", "translation": "", - "context": "", + "context": "New York, NY", "reference": "", "comment": "" }, { "term": "New event", "translation": "", - "context": "", + "context": "New event", "reference": "", "comment": "" }, { "term": "New group name...", "translation": "", - "context": "", + "context": "New group name...", "reference": "", "comment": "" }, { "term": "Next", "translation": "", - "context": "Media next tooltip | greeter next button", + "context": "Next", "reference": "", - "comment": "" + "comment": "Media next tooltip | greeter next button" }, { "term": "Next Transition", "translation": "", - "context": "", + "context": "Next Transition", "reference": "", "comment": "" }, { "term": "Next page", "translation": "", - "context": "", + "context": "Next page", "reference": "", "comment": "" }, { "term": "Night", "translation": "", - "context": "", + "context": "Night", "reference": "", "comment": "" }, { "term": "Night Mode", "translation": "", - "context": "", + "context": "Night Mode", "reference": "", "comment": "" }, { "term": "Night Temperature", "translation": "", - "context": "", + "context": "Night Temperature", "reference": "", "comment": "" }, { "term": "Night mode & gamma", "translation": "", - "context": "greeter feature card description", + "context": "Night mode & gamma", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "Night mode failed: DMS gamma control not available", "translation": "", - "context": "", + "context": "Night mode failed: DMS gamma control not available", "reference": "", "comment": "" }, { "term": "Niri Integration", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Niri Layout Overrides", - "translation": "", - "context": "", + "context": "Niri Integration", "reference": "", "comment": "" }, { "term": "Niri compositor actions (focus, move, etc.)", "translation": "", - "context": "", + "context": "Niri compositor actions (focus, move, etc.)", "reference": "", "comment": "" }, { "term": "No", "translation": "", - "context": "", + "context": "No", "reference": "", "comment": "" }, { "term": "No Active Players", "translation": "", - "context": "", + "context": "No Active Players", "reference": "", "comment": "" }, { "term": "No Anim", "translation": "", - "context": "", + "context": "No Anim", "reference": "", "comment": "" }, { "term": "No Background", "translation": "", - "context": "", + "context": "No Background", "reference": "", "comment": "" }, { "term": "No Bluetooth adapter found", "translation": "", - "context": "", + "context": "No Bluetooth adapter found", "reference": "", "comment": "" }, { "term": "No Blur", "translation": "", - "context": "", + "context": "No Blur", "reference": "", "comment": "" }, { "term": "No Border", "translation": "", - "context": "", + "context": "No Border", "reference": "", "comment": "" }, { "term": "No DMS shortcuts configured", "translation": "", - "context": "greeter no keybinds message", + "context": "No DMS shortcuts configured", "reference": "", - "comment": "" + "comment": "greeter no keybinds message" }, { "term": "No Dim", "translation": "", - "context": "", + "context": "No Dim", "reference": "", "comment": "" }, { "term": "No Focus", "translation": "", - "context": "", + "context": "No Focus", "reference": "", "comment": "" }, { "term": "No GPU detected", "translation": "", - "context": "", + "context": "No GPU detected", "reference": "", "comment": "" }, { "term": "No GPUs detected", "translation": "", - "context": "empty state in gpu list", + "context": "No GPUs detected", "reference": "", - "comment": "" + "comment": "empty state in gpu list" }, { "term": "No History", "translation": "", - "context": "notification rule action option", + "context": "No History", "reference": "", - "comment": "" + "comment": "notification rule action option" }, { "term": "No Media", "translation": "", - "context": "", + "context": "No Media", "reference": "", "comment": "" }, { "term": "No Round", "translation": "", - "context": "", + "context": "No Round", "reference": "", "comment": "" }, { "term": "No Rounding", "translation": "", - "context": "", + "context": "No Rounding", "reference": "", "comment": "" }, { "term": "No Shadow", "translation": "", - "context": "", + "context": "No Shadow", "reference": "", "comment": "" }, { "term": "No VPN profiles", "translation": "", - "context": "", + "context": "No VPN profiles", "reference": "", "comment": "" }, { "term": "No Weather", "translation": "", - "context": "", + "context": "No Weather", "reference": "", "comment": "" }, { "term": "No Weather Data", "translation": "", - "context": "", + "context": "No Weather Data", "reference": "", "comment": "" }, { "term": "No Weather Data Available", "translation": "", - "context": "", + "context": "No Weather Data Available", "reference": "", "comment": "" }, { "term": "No action", "translation": "", - "context": "", + "context": "No action", "reference": "", "comment": "" }, { "term": "No active %1 sessions", "translation": "", - "context": "", + "context": "No active %1 sessions", "reference": "", "comment": "" }, { "term": "No active session found for %1", "translation": "", - "context": "", + "context": "No active session found for %1", "reference": "", "comment": "" }, { "term": "No adapter", "translation": "", - "context": "bluetooth status", + "context": "No adapter", "reference": "", - "comment": "" + "comment": "bluetooth status" }, { "term": "No adapters", "translation": "", - "context": "bluetooth status", + "context": "No adapters", "reference": "", - "comment": "" + "comment": "bluetooth status" }, { "term": "No app customizations.", "translation": "", - "context": "", + "context": "No app customizations.", "reference": "", "comment": "" }, { "term": "No application selected", "translation": "", - "context": "", + "context": "No application selected", "reference": "", "comment": "" }, { "term": "No apps found", "translation": "", - "context": "", + "context": "No apps found", "reference": "", "comment": "" }, { "term": "No apps have been launched yet.", "translation": "", - "context": "", + "context": "No apps have been launched yet.", "reference": "", "comment": "" }, { "term": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", "translation": "", - "context": "", + "context": "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.", "reference": "", "comment": "" }, { "term": "No autostart entries", "translation": "", - "context": "", + "context": "No autostart entries", "reference": "", "comment": "" }, { "term": "No battery", "translation": "", - "context": "battery status", + "context": "No battery", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "No brightness devices available", "translation": "", - "context": "", + "context": "No brightness devices available", "reference": "", "comment": "" }, { "term": "No calendar source available", "translation": "", - "context": "calendar backend status", + "context": "No calendar source available", "reference": "", - "comment": "" + "comment": "calendar backend status" }, { "term": "No changes", "translation": "", - "context": "", + "context": "No changes", "reference": "", "comment": "" }, { "term": "No checks passed", "translation": "", - "context": "greeter doctor page empty state", + "context": "No checks passed", "reference": "", - "comment": "" + "comment": "greeter doctor page empty state" }, { "term": "No codecs found", "translation": "", - "context": "", + "context": "No codecs found", "reference": "", "comment": "" }, { "term": "No custom theme file", "translation": "", - "context": "no custom theme file status", + "context": "No custom theme file", "reference": "", - "comment": "" + "comment": "no custom theme file status" }, { "term": "No devices", "translation": "", - "context": "Phone Connect no devices status | bluetooth status", + "context": "No devices", "reference": "", - "comment": "" + "comment": "Phone Connect no devices status | bluetooth status" }, { "term": "No devices found", "translation": "", - "context": "KDE Connect no devices message", + "context": "No devices found", "reference": "", - "comment": "" + "comment": "KDE Connect no devices message" }, { "term": "No disk data", "translation": "", - "context": "", + "context": "No disk data", "reference": "", "comment": "" }, { "term": "No disk data available", "translation": "", - "context": "", + "context": "No disk data available", "reference": "", "comment": "" }, { "term": "No display profiles found. Create them in Settings > Displays.", "translation": "", - "context": "", + "context": "No display profiles found. Create them in Settings > Displays.", "reference": "", "comment": "" }, { "term": "No drivers found", "translation": "", - "context": "", + "context": "No drivers found", "reference": "", "comment": "" }, { "term": "No errors", "translation": "", - "context": "greeter doctor page empty state", + "context": "No errors", "reference": "", - "comment": "" + "comment": "greeter doctor page empty state" }, { "term": "No excluded players configured", "translation": "", - "context": "", + "context": "No excluded players configured", "reference": "", "comment": "" }, { "term": "No features enabled", "translation": "", - "context": "", + "context": "No features enabled", "reference": "", "comment": "" }, { "term": "No files found", "translation": "", - "context": "", + "context": "No files found", "reference": "", "comment": "" }, { "term": "No fingerprint reader detected.", "translation": "", - "context": "fingerprint setting status", + "context": "No fingerprint reader detected.", "reference": "", - "comment": "" + "comment": "fingerprint setting status" }, { "term": "No folders found", "translation": "", - "context": "", + "context": "No folders found", "reference": "", "comment": "" }, { "term": "No hidden apps.", "translation": "", - "context": "", + "context": "No hidden apps.", "reference": "", "comment": "" }, { "term": "No human user accounts found.", "translation": "", - "context": "", + "context": "No human user accounts found.", "reference": "", "comment": "" }, { "term": "No images found", "translation": "", - "context": "No recent images found message", + "context": "No images found", "reference": "", - "comment": "" + "comment": "No recent images found message" }, { "term": "No info items", "translation": "", - "context": "greeter doctor page empty state", + "context": "No info items", "reference": "", - "comment": "" + "comment": "greeter doctor page empty state" }, { "term": "No information available", "translation": "", - "context": "", + "context": "No information available", "reference": "", "comment": "" }, { "term": "No input device", "translation": "", - "context": "audio status", + "context": "No input device", "reference": "", - "comment": "" + "comment": "audio status" }, { "term": "No input devices found", "translation": "", - "context": "Audio settings empty state", + "context": "No input devices found", "reference": "", - "comment": "" + "comment": "Audio settings empty state" }, { "term": "No items added yet", "translation": "", - "context": "", + "context": "No items added yet", "reference": "", "comment": "" }, { "term": "No keybinds found", "translation": "", - "context": "", + "context": "No keybinds found", "reference": "", "comment": "" }, { "term": "No launcher plugins installed.", "translation": "", - "context": "", + "context": "No launcher plugins installed.", "reference": "", "comment": "" }, { "term": "No match criteria", "translation": "", - "context": "", + "context": "No match criteria", "reference": "", "comment": "" }, { "term": "No matches", "translation": "", - "context": "", + "context": "No matches", "reference": "", "comment": "" }, { "term": "No matching devices", "translation": "", - "context": "No Tailscale devices match search", + "context": "No matching devices", "reference": "", - "comment": "" + "comment": "No Tailscale devices match search" }, { "term": "No matching processes", "translation": "", - "context": "empty state in process list", + "context": "No matching processes", "reference": "", - "comment": "" + "comment": "empty state in process list" }, { "term": "No monitors", "translation": "", - "context": "no monitors available label", + "context": "No monitors", "reference": "", - "comment": "" + "comment": "no monitors available label" }, { "term": "No mount points found", "translation": "", - "context": "empty state in disk mounts list", + "context": "No mount points found", "reference": "", - "comment": "" + "comment": "empty state in disk mounts list" }, { "term": "No other active sessions on this seat", "translation": "", - "context": "", + "context": "No other active sessions on this seat", "reference": "", "comment": "" }, { "term": "No output device", "translation": "", - "context": "audio status", + "context": "No output device", "reference": "", - "comment": "" + "comment": "audio status" }, { "term": "No output devices found", "translation": "", - "context": "Audio settings empty state", + "context": "No output devices found", "reference": "", - "comment": "" + "comment": "Audio settings empty state" }, { "term": "No packages ignored. Add one here or hover an update in the popout and click the hide button.", "translation": "", - "context": "", + "context": "No packages ignored. Add one here or hover an update in the popout and click the hide button.", "reference": "", "comment": "" }, { "term": "No peers found", "translation": "", - "context": "No Tailscale peers found", + "context": "No peers found", "reference": "", - "comment": "" + "comment": "No Tailscale peers found" }, { "term": "No plugin results", "translation": "", - "context": "", + "context": "No plugin results", "reference": "", "comment": "" }, { "term": "No plugins found", "translation": "", - "context": "empty plugin list", + "context": "No plugins found", "reference": "", - "comment": "" - }, - { - "term": "No plugins found.", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "empty plugin list" }, { "term": "No printer found", "translation": "", - "context": "", + "context": "No printer found", "reference": "", "comment": "" }, { "term": "No printers configured", "translation": "", - "context": "", + "context": "No printers configured", "reference": "", "comment": "" }, { "term": "No printers found", "translation": "", - "context": "", + "context": "No printers found", "reference": "", "comment": "" }, { "term": "No profiles", "translation": "", - "context": "", + "context": "No profiles", "reference": "", "comment": "" }, { "term": "No recent clipboard entries found", "translation": "", - "context": "", + "context": "No recent clipboard entries found", "reference": "", "comment": "" }, { "term": "No reminder", "translation": "", - "context": "", + "context": "No reminder", "reference": "", "comment": "" }, { "term": "No results", "translation": "", - "context": "", + "context": "No results", "reference": "", "comment": "" }, { "term": "No results found", "translation": "", - "context": "", + "context": "No results found", "reference": "", "comment": "" }, { "term": "No saved clipboard entries", "translation": "", - "context": "", + "context": "No saved clipboard entries", "reference": "", "comment": "" }, { "term": "No screenshot provided", "translation": "", - "context": "plugin browser no screenshot", + "context": "No screenshot provided", "reference": "", - "comment": "" + "comment": "plugin browser no screenshot" }, { "term": "No session selected", "translation": "", - "context": "", + "context": "No session selected", "reference": "", "comment": "" }, { "term": "No sessions found", "translation": "", - "context": "", + "context": "No sessions found", "reference": "", "comment": "" }, { "term": "No status output.", "translation": "", - "context": "", + "context": "No status output.", "reference": "", "comment": "" }, { "term": "No supported package manager found.", "translation": "", - "context": "", + "context": "No supported package manager found.", "reference": "", "comment": "" }, { "term": "No terminal configured", "translation": "", - "context": "", + "context": "No terminal configured", "reference": "", "comment": "" }, { "term": "No themes found", "translation": "", - "context": "empty theme list", + "context": "No themes found", "reference": "", - "comment": "" + "comment": "empty theme list" }, { "term": "No themes installed. Browse themes to install from the registry.", "translation": "", - "context": "no registry themes installed hint", + "context": "No themes installed. Browse themes to install from the registry.", "reference": "", - "comment": "" + "comment": "no registry themes installed hint" }, { "term": "No trigger", "translation": "", - "context": "", + "context": "No trigger", "reference": "", "comment": "" }, { "term": "No updates available.", "translation": "", - "context": "", + "context": "No updates available.", "reference": "", "comment": "" }, { "term": "No user specified", "translation": "", - "context": "", + "context": "No user specified", "reference": "", "comment": "" }, { "term": "No video found in folder", "translation": "", - "context": "", + "context": "No video found in folder", "reference": "", "comment": "" }, { "term": "No wallpaper selected", "translation": "", - "context": "no wallpaper status", + "context": "No wallpaper selected", "reference": "", - "comment": "" + "comment": "no wallpaper status" }, { "term": "No wallpapers", "translation": "", - "context": "", + "context": "No wallpapers", "reference": "", "comment": "" }, { "term": "No wallpapers found\n\nClick the folder icon below to browse", "translation": "", - "context": "", + "context": "No wallpapers found\n\nClick the folder icon below to browse", "reference": "", "comment": "" }, { "term": "No warnings", "translation": "", - "context": "greeter doctor page empty state", + "context": "No warnings", "reference": "", - "comment": "" + "comment": "greeter doctor page empty state" }, { "term": "No widgets added. Click \"Add Widget\" to get started.", "translation": "", - "context": "", + "context": "No widgets added. Click \"Add Widget\" to get started.", "reference": "", "comment": "" }, { "term": "No widgets available", "translation": "", - "context": "", + "context": "No widgets available", "reference": "", "comment": "" }, { "term": "No widgets match your search", "translation": "", - "context": "", + "context": "No widgets match your search", "reference": "", "comment": "" }, { "term": "No window rules configured", "translation": "", - "context": "", + "context": "No window rules configured", "reference": "", "comment": "" }, { "term": "No writable calendar available", "translation": "", - "context": "", + "context": "No writable calendar available", "reference": "", "comment": "" }, { "term": "Noise", "translation": "", - "context": "", + "context": "Noise", "reference": "", "comment": "" }, { "term": "None", "translation": "", - "context": "Tailscale exit node: none selected | wallpaper transition option | workspace color option", + "context": "None", "reference": "", - "comment": "" + "comment": "Tailscale exit node: none selected | wallpaper transition option | workspace color option" }, { "term": "None active", "translation": "", - "context": "", + "context": "None active", "reference": "", "comment": "" }, { "term": "Normal", "translation": "", - "context": "", + "context": "Normal", + "reference": "", + "comment": "quality level option" + }, + { + "term": "Normal", + "translation": "", + "context": "display rotation option", "reference": "", "comment": "" }, { "term": "Normal Font", "translation": "", - "context": "", + "context": "Normal Font", "reference": "", "comment": "" }, { "term": "Normal Priority", "translation": "", - "context": "notification rule urgency option", + "context": "Normal Priority", "reference": "", - "comment": "" + "comment": "notification rule urgency option" }, { "term": "Not available", "translation": "", - "context": "Tailscale service not available", + "context": "Not available", "reference": "", - "comment": "" + "comment": "Tailscale service not available" }, { "term": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", "translation": "", - "context": "greeter fingerprint login setting", + "context": "Not available — install fprintd and pam_fprintd, or configure greetd PAM.", "reference": "", - "comment": "" + "comment": "greeter fingerprint login setting" }, { "term": "Not available — install fprintd and pam_fprintd.", "translation": "", - "context": "lock screen fingerprint setting", + "context": "Not available — install fprintd and pam_fprintd.", "reference": "", - "comment": "" + "comment": "lock screen fingerprint setting" }, { "term": "Not available — install or configure pam_u2f, or configure greetd PAM.", "translation": "", - "context": "greeter security key login setting", + "context": "Not available — install or configure pam_u2f, or configure greetd PAM.", "reference": "", - "comment": "" + "comment": "greeter security key login setting" }, { "term": "Not available — install or configure pam_u2f.", "translation": "", - "context": "lock screen security key setting", + "context": "Not available — install or configure pam_u2f.", "reference": "", - "comment": "" + "comment": "lock screen security key setting" }, { "term": "Not bound", "translation": "", - "context": "", + "context": "Not bound", "reference": "", "comment": "" }, { "term": "Not connected", "translation": "", - "context": "network status", + "context": "Not connected", "reference": "", - "comment": "" + "comment": "network status" }, { "term": "Not detected", "translation": "", - "context": "", + "context": "Not detected", "reference": "", "comment": "" }, { "term": "Not listed?", "translation": "", - "context": "greeter link to switch to manual username entry", + "context": "Not listed?", "reference": "", - "comment": "" + "comment": "greeter link to switch to manual username entry" }, { "term": "Not paired", "translation": "", - "context": "KDE Connect not paired status", + "context": "Not paired", "reference": "", - "comment": "" + "comment": "KDE Connect not paired status" }, { "term": "Not set", "translation": "", - "context": "wallpaper not set label", + "context": "Not set", "reference": "", - "comment": "" + "comment": "wallpaper not set label" }, { "term": "Notepad", "translation": "", "context": "Notepad", "reference": "", - "comment": "" + "comment": "Notepad" }, { "term": "Notepad Settings", "translation": "", - "context": "", + "context": "Notepad Settings", "reference": "", "comment": "" }, { "term": "Notepad Slideout", "translation": "", - "context": "", + "context": "Notepad Slideout", "reference": "", "comment": "" }, { "term": "Notes", "translation": "", - "context": "", + "context": "Notes", "reference": "", "comment": "" }, { "term": "Nothing", "translation": "", - "context": "media scroll wheel option", + "context": "Nothing", "reference": "", - "comment": "" + "comment": "media scroll wheel option" }, { "term": "Nothing to see here", "translation": "", - "context": "", + "context": "Nothing to see here", "reference": "", "comment": "" }, { "term": "Notification", "translation": "", - "context": "", + "context": "Notification", "reference": "", "comment": "" }, { "term": "Notification Center", "translation": "", - "context": "", + "context": "Notification Center", "reference": "", "comment": "" }, { "term": "Notification Display", "translation": "", - "context": "lock screen notification privacy setting", + "context": "Notification Display", "reference": "", - "comment": "" + "comment": "lock screen notification privacy setting" }, { "term": "Notification Overlay", "translation": "", - "context": "", + "context": "Notification Overlay", "reference": "", "comment": "" }, { "term": "Notification Popups", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Notification Rules", - "translation": "", - "context": "", + "context": "Notification Popups", "reference": "", "comment": "" }, { "term": "Notification Settings", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Notification Timeouts", - "translation": "", - "context": "", + "context": "Notification Settings", "reference": "", "comment": "" }, { "term": "Notification Type", "translation": "", - "context": "", + "context": "Notification Type", "reference": "", "comment": "" }, { "term": "Notification toast popups", "translation": "", - "context": "", + "context": "Notification toast popups", "reference": "", "comment": "" }, { "term": "Notifications", "translation": "", - "context": "KDE Connect notifications label | greeter settings link", + "context": "Notifications", "reference": "", - "comment": "" + "comment": "KDE Connect notifications label | greeter settings link" }, { "term": "Notify when limit is reached", "translation": "", - "context": "", + "context": "Notify when limit is reached", "reference": "", "comment": "" }, { "term": "Now playing and media controls", "translation": "", - "context": "", + "context": "Now playing and media controls", "reference": "", "comment": "" }, { "term": "Numbers", "translation": "", - "context": "", + "context": "Numbers", "reference": "", "comment": "" }, { "term": "Numeric (D/M)", "translation": "", - "context": "date format option", + "context": "Numeric (D/M)", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "Numeric (M/D)", "translation": "", - "context": "date format option", + "context": "Numeric (M/D)", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "OK", "translation": "", - "context": "greeter doctor page status card", + "context": "OK", "reference": "", - "comment": "" + "comment": "greeter doctor page status card" }, { "term": "OS Logo", "translation": "", - "context": "", + "context": "OS Logo", "reference": "", "comment": "" }, { "term": "OSD Position", "translation": "", - "context": "", + "context": "OSD Position", "reference": "", "comment": "" }, { "term": "Occupied Color", "translation": "", - "context": "", + "context": "Occupied Color", "reference": "", "comment": "" }, { "term": "Off", "translation": "", - "context": "bluetooth status", + "context": "Off", "reference": "", - "comment": "" + "comment": "bluetooth status" }, { "term": "Office", "translation": "", - "context": "", + "context": "Office", "reference": "", "comment": "" }, { "term": "Offline", "translation": "", - "context": "KDE Connect offline status | Phone Connect offline status", + "context": "Offline", "reference": "", - "comment": "" + "comment": "KDE Connect offline status | Phone Connect offline status" }, { "term": "Offline Report", "translation": "", - "context": "", + "context": "Offline Report", "reference": "", "comment": "" }, { "term": "Older", "translation": "", - "context": "notification history filter for content older than other filters", + "context": "Older", "reference": "", - "comment": "" + "comment": "notification history filter for content older than other filters" }, { "term": "On", "translation": "", - "context": "", + "context": "On", "reference": "", "comment": "" }, { "term": "On indefinitely", "translation": "", - "context": "", + "context": "On indefinitely", "reference": "", "comment": "" }, { "term": "On-Demand", "translation": "", - "context": "", + "context": "On-Demand", "reference": "", "comment": "" }, { "term": "On-screen Displays", "translation": "", - "context": "", + "context": "On-screen Displays", "reference": "", "comment": "" }, { "term": "Once a day", "translation": "", - "context": "", + "context": "Once a day", "reference": "", "comment": "" }, { "term": "Online", "translation": "", - "context": "Tailscale filter: all online devices", + "context": "Online", "reference": "", - "comment": "" + "comment": "Tailscale filter: all online devices" }, { "term": "Only adjust gamma based on time or location rules.", "translation": "", - "context": "", + "context": "Only adjust gamma based on time or location rules.", "reference": "", "comment": "" }, { "term": "Only on Battery", "translation": "", - "context": "", + "context": "Only on Battery", "reference": "", "comment": "" }, { "term": "Only show windows from the current monitor on each dock", "translation": "", - "context": "", + "context": "Only show windows from the current monitor on each dock", "reference": "", "comment": "" }, { "term": "Only visible if hibernate is supported by your system", "translation": "", - "context": "", + "context": "Only visible if hibernate is supported by your system", "reference": "", "comment": "" }, { "term": "Opacity", "translation": "", - "context": "", + "context": "Opacity", "reference": "", "comment": "" }, { "term": "Opaque", "translation": "", - "context": "", + "context": "Opaque", "reference": "", "comment": "" }, { "term": "Open", "translation": "", - "context": "", + "context": "Open", + "reference": "", + "comment": "" + }, + { + "term": "Open", + "translation": "", + "context": "network security type", "reference": "", "comment": "" }, { "term": "Open App", "translation": "", - "context": "KDE Connect open SMS app button", + "context": "Open App", "reference": "", - "comment": "" + "comment": "KDE Connect open SMS app button" }, { "term": "Open Delay", "translation": "", - "context": "", + "context": "Open Delay", "reference": "", "comment": "" }, { "term": "Open Dir", "translation": "", - "context": "", + "context": "Open Dir", "reference": "", "comment": "" }, { "term": "Open Frame", "translation": "", - "context": "", + "context": "Open Frame", "reference": "", "comment": "" }, { "term": "Open From", "translation": "", - "context": "", + "context": "Open From", "reference": "", "comment": "" }, { "term": "Open Notepad File", "translation": "", - "context": "", + "context": "Open Notepad File", "reference": "", "comment": "" }, { "term": "Open Trash", "translation": "", - "context": "", + "context": "Open Trash", "reference": "", "comment": "" }, { "term": "Open Trash With", "translation": "", - "context": "", + "context": "Open Trash With", "reference": "", "comment": "" }, { "term": "Open a new note", "translation": "", - "context": "", + "context": "Open a new note", "reference": "", "comment": "" }, { "term": "Open a terminal and run a custom command instead of the in-shell upgrade flow.", "translation": "", - "context": "", + "context": "Open a terminal and run a custom command instead of the in-shell upgrade flow.", "reference": "", "comment": "" }, { "term": "Open as window", "translation": "", - "context": "", + "context": "Open as window", "reference": "", "comment": "" }, { "term": "Open folder", "translation": "", - "context": "", + "context": "Open folder", "reference": "", "comment": "" }, { "term": "Open in Browser", "translation": "", - "context": "", + "context": "Open in Browser", "reference": "", "comment": "" }, { "term": "Open in terminal", "translation": "", - "context": "", + "context": "Open in terminal", "reference": "", "comment": "" }, { "term": "Open search bar to find text", "translation": "", - "context": "", + "context": "Open search bar to find text", "reference": "", "comment": "" }, { "term": "Open the launcher by hovering the emerge edge (when free of bar and dock)", "translation": "", - "context": "", + "context": "Open the launcher by hovering the emerge edge (when free of bar and dock)", "reference": "", "comment": "" }, { "term": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", "translation": "", - "context": "", + "context": "Open widget popouts by hovering over the bar. Moving to another widget switches the popout.", "reference": "", "comment": "" }, { "term": "Open with...", "translation": "", - "context": "", + "context": "Open with...", "reference": "", "comment": "" }, { "term": "Opening SMS app", "translation": "", - "context": "Phone Connect SMS action", + "context": "Opening SMS app", "reference": "", - "comment": "" + "comment": "Phone Connect SMS action" }, { "term": "Opening file browser", "translation": "", - "context": "Phone Connect browse action", + "context": "Opening file browser", "reference": "", - "comment": "" + "comment": "Phone Connect browse action" }, { "term": "Opening terminal: ", "translation": "", - "context": "", + "context": "Opening terminal: ", "reference": "", "comment": "" }, { "term": "Opens a picker of other active sessions on this seat", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Opens image files", - "translation": "", - "context": "Opens image files", + "context": "Opens a picker of other active sessions on this seat", "reference": "", "comment": "" }, { "term": "Opens the connected launcher in Connected Frame Mode.", "translation": "", - "context": "", + "context": "Opens the connected launcher in Connected Frame Mode.", "reference": "", "comment": "" }, { "term": "Optional description", "translation": "", - "context": "", + "context": "Optional description", "reference": "", "comment": "" }, { "term": "Optional location", "translation": "", - "context": "", + "context": "Optional location", "reference": "", "comment": "" }, { "term": "Optional state-based conditions applied to the first match.", "translation": "", - "context": "", + "context": "Optional state-based conditions applied to the first match.", "reference": "", "comment": "" }, { "term": "Options", "translation": "", - "context": "", + "context": "Options", "reference": "", "comment": "" }, { "term": "Organize widgets into collapsible groups", "translation": "", - "context": "", + "context": "Organize widgets into collapsible groups", "reference": "", "comment": "" }, { "term": "Original: %1", "translation": "", - "context": "Shows the original device name before renaming", + "context": "Original: %1", "reference": "", - "comment": "" + "comment": "Shows the original device name before renaming" }, { "term": "Other", "translation": "", - "context": "", + "context": "Other", "reference": "", "comment": "" }, { "term": "Outer Gaps", "translation": "", - "context": "", + "context": "Outer Gaps", "reference": "", "comment": "" }, { "term": "Outline", "translation": "", - "context": "outline color | surface border color", + "context": "Outline", "reference": "", - "comment": "" + "comment": "outline color | surface border color" }, { "term": "Output", "translation": "", - "context": "", + "context": "Output", "reference": "", "comment": "" }, { "term": "Output Area Almost Full", "translation": "", - "context": "", + "context": "Output Area Almost Full", "reference": "", "comment": "" }, { "term": "Output Area Full", "translation": "", - "context": "", + "context": "Output Area Full", "reference": "", "comment": "" }, { "term": "Output Devices", "translation": "", - "context": "Audio settings: speaker/headphone devices", + "context": "Output Devices", "reference": "", - "comment": "" + "comment": "Audio settings: speaker/headphone devices" }, { "term": "Output Tray Missing", "translation": "", - "context": "", + "context": "Output Tray Missing", "reference": "", "comment": "" }, { "term": "Overcast", "translation": "", - "context": "", + "context": "Overcast", "reference": "", "comment": "" }, { "term": "Overflow", "translation": "", - "context": "", + "context": "Overflow", "reference": "", "comment": "" }, { "term": "Overlay", "translation": "", - "context": "widget background color option", + "context": "Overlay", "reference": "", - "comment": "" + "comment": "widget background color option" }, { "term": "Overridden by config", "translation": "", - "context": "", + "context": "Overridden by config", "reference": "", "comment": "" }, { "term": "Override", "translation": "", - "context": "", + "context": "Override", "reference": "", "comment": "" }, { "term": "Override Border Size", "translation": "", - "context": "", + "context": "Override Border Size", "reference": "", "comment": "" }, { "term": "Override Corner Radius", "translation": "", - "context": "", + "context": "Override Corner Radius", "reference": "", "comment": "" }, { "term": "Override global layout settings for this output", "translation": "", - "context": "", + "context": "Override global layout settings for this output", "reference": "", "comment": "" }, { "term": "Override global transparency for Notepad", "translation": "", - "context": "", + "context": "Override global transparency for Notepad", "reference": "", "comment": "" }, { "term": "Override terminal with a custom command or script", "translation": "", - "context": "", + "context": "Override terminal with a custom command or script", "reference": "", "comment": "" }, { "term": "Override the global shadow with per-bar settings", "translation": "", - "context": "", + "context": "Override the global shadow with per-bar settings", "reference": "", "comment": "" }, { "term": "Override the popup gap size when auto is disabled", "translation": "", - "context": "", + "context": "Override the popup gap size when auto is disabled", "reference": "", "comment": "" }, { "term": "Overrides", "translation": "", - "context": "", + "context": "Overrides", "reference": "", "comment": "" }, { "term": "Overview", "translation": "", - "context": "", + "context": "Overview", "reference": "", "comment": "" }, { "term": "Overview of your network connections", "translation": "", - "context": "", + "context": "Overview of your network connections", "reference": "", "comment": "" }, { "term": "Overwrite", "translation": "", - "context": "", + "context": "Overwrite", "reference": "", "comment": "" }, { "term": "Owner: %1", "translation": "", - "context": "Tailscale device owner", + "context": "Owner: %1", "reference": "", - "comment": "" + "comment": "Tailscale device owner" }, { "term": "PAM already provides fingerprint auth. Enable this to show it at login.", "translation": "", - "context": "greeter fingerprint login setting", + "context": "PAM already provides fingerprint auth. Enable this to show it at login.", "reference": "", - "comment": "" + "comment": "greeter fingerprint login setting" }, { "term": "PAM already provides security-key auth. Enable this to show it at login.", "translation": "", - "context": "greeter security key login setting", + "context": "PAM already provides security-key auth. Enable this to show it at login.", "reference": "", - "comment": "" + "comment": "greeter security key login setting" }, { "term": "PDF Reader", "translation": "", "context": "PDF Reader", "reference": "", - "comment": "" + "comment": "PDF Reader" }, { "term": "PIN", "translation": "", - "context": "", + "context": "PIN", "reference": "", "comment": "" }, { "term": "Package name (e.g., docker)", "translation": "", - "context": "", + "context": "Package name (e.g., docker)", "reference": "", "comment": "" }, { "term": "Pad", "translation": "", - "context": "wallpaper fill mode", + "context": "Pad", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Pad Hours", "translation": "", - "context": "", + "context": "Pad Hours", "reference": "", "comment": "" }, { "term": "Padding", "translation": "", - "context": "", + "context": "Padding", "reference": "", "comment": "" }, { "term": "Pair", "translation": "", - "context": "", + "context": "Pair", "reference": "", "comment": "" }, { "term": "Pair Bluetooth Device", "translation": "", - "context": "", + "context": "Pair Bluetooth Device", "reference": "", "comment": "" }, { "term": "Paired", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Pairing", - "translation": "", - "context": "KDE Connect pairing in progress status", + "context": "Paired", "reference": "", "comment": "" }, { "term": "Pairing failed", "translation": "", - "context": "Phone Connect error", + "context": "Pairing failed", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { - "term": "Pairing request from", + "term": "Pairing request from %1", "translation": "", - "context": "Phone Connect pairing request notification", + "context": "Pairing request from %1", "reference": "", - "comment": "" + "comment": "Phone Connect pairing request notification" }, { "term": "Pairing request sent", "translation": "", - "context": "Phone Connect pairing action", + "context": "Pairing request sent", "reference": "", - "comment": "" + "comment": "Phone Connect pairing action" }, { "term": "Pairing requested", "translation": "", - "context": "KDE Connect pairing requested status", + "context": "Pairing requested", "reference": "", - "comment": "" + "comment": "KDE Connect pairing requested status" }, { "term": "Pairing...", "translation": "", - "context": "", + "context": "Pairing...", "reference": "", - "comment": "" + "comment": "KDE Connect pairing in progress status" }, { "term": "Partly Cloudy", "translation": "", - "context": "", + "context": "Partly Cloudy", "reference": "", "comment": "" }, { "term": "Passkey:", "translation": "", - "context": "", + "context": "Passkey:", "reference": "", "comment": "" }, { "term": "Password", "translation": "", - "context": "", + "context": "Password", "reference": "", "comment": "" }, { "term": "Password cannot be empty", "translation": "", - "context": "", + "context": "Password cannot be empty", "reference": "", "comment": "" }, { "term": "Password change failed (exit %1)", "translation": "", - "context": "", + "context": "Password change failed (exit %1)", "reference": "", "comment": "" }, { "term": "Password set", "translation": "", - "context": "", + "context": "Password set", "reference": "", "comment": "" }, { "term": "Password updated", "translation": "", - "context": "", + "context": "Password updated", "reference": "", "comment": "" }, { "term": "Password...", "translation": "", - "context": "", + "context": "Password...", "reference": "", "comment": "" }, { "term": "Passwords do not match.", "translation": "", - "context": "", + "context": "Passwords do not match.", "reference": "", "comment": "" }, { "term": "Paste", "translation": "", - "context": "", + "context": "Paste", "reference": "", "comment": "" }, { "term": "Paste failed: %1", "translation": "", - "context": "", + "context": "Paste failed: %1", "reference": "", "comment": "" }, { "term": "Path copied to clipboard", "translation": "", - "context": "", + "context": "Path copied to clipboard", "reference": "", "comment": "" }, { "term": "Path to a video file or folder containing videos", "translation": "", - "context": "", + "context": "Path to a video file or folder containing videos", "reference": "", "comment": "" }, { "term": "Pattern", "translation": "", - "context": "", + "context": "Pattern", "reference": "", "comment": "" }, { "term": "Pause", "translation": "", - "context": "Media pause tooltip", + "context": "Pause", "reference": "", - "comment": "" + "comment": "Media pause tooltip" }, { "term": "Paused", "translation": "", - "context": "", + "context": "Paused", "reference": "", "comment": "" }, { "term": "Pending", "translation": "", - "context": "", + "context": "Pending", "reference": "", "comment": "" }, { "term": "Pending Charge", "translation": "", - "context": "battery status", + "context": "Pending Charge", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Pending Discharge", "translation": "", - "context": "battery status", + "context": "Pending Discharge", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Per-Mode Wallpapers", "translation": "", - "context": "", + "context": "Per-Mode Wallpapers", "reference": "", "comment": "" }, { "term": "Per-Monitor Wallpapers", "translation": "", - "context": "", + "context": "Per-Monitor Wallpapers", "reference": "", "comment": "" }, { "term": "Per-screen config", "translation": "", - "context": "greeter feature card description", + "context": "Per-screen config", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "Percentage", "translation": "", - "context": "", + "context": "Percentage", "reference": "", "comment": "" }, { "term": "Performance", "translation": "", - "context": "power profile option", + "context": "Performance", "reference": "", - "comment": "" + "comment": "power profile option" }, { "term": "Permanently delete %1 item(s)? This cannot be undone.", "translation": "", - "context": "", + "context": "Permanently delete %1 item(s)? This cannot be undone.", "reference": "", "comment": "" }, { "term": "Permission denied to set profile image.", "translation": "", - "context": "", + "context": "Permission denied to set profile image.", "reference": "", "comment": "" }, { "term": "Personalization", "translation": "", - "context": "", + "context": "Personalization", "reference": "", "comment": "" }, { "term": "Phone Connect Not Available", "translation": "", - "context": "Phone Connect unavailable error title", + "context": "Phone Connect Not Available", "reference": "", - "comment": "" + "comment": "Phone Connect unavailable error title" }, { "term": "Phone number", "translation": "", - "context": "KDE Connect SMS phone input placeholder", + "context": "Phone number", "reference": "", - "comment": "" + "comment": "KDE Connect SMS phone input placeholder" }, { "term": "Pick a different file manager in Settings → Dock → Trash.", "translation": "", - "context": "", + "context": "Pick a different file manager in Settings → Dock → Trash.", "reference": "", "comment": "" }, { "term": "Pick a different random video each time from the same folder", "translation": "", - "context": "", + "context": "Pick a different random video each time from the same folder", "reference": "", "comment": "" }, { "term": "Pick a terminal in Settings → Launcher (or set $TERMINAL).", "translation": "", - "context": "", + "context": "Pick a terminal in Settings → Launcher (or set $TERMINAL).", "reference": "", "comment": "" }, { "term": "Pick how long to pause notifications", "translation": "", - "context": "", + "context": "Pick how long to pause notifications", "reference": "", "comment": "" }, { "term": "Pictures", "translation": "", - "context": "", + "context": "Pictures", "reference": "", "comment": "" }, { "term": "Pin", "translation": "", - "context": "", + "context": "Pin", "reference": "", - "comment": "" + "comment": "pin item action" }, { "term": "Pin to Dock", "translation": "", - "context": "", + "context": "Pin to Dock", "reference": "", "comment": "" }, { "term": "Ping", "translation": "", - "context": "KDE Connect ping tooltip", + "context": "Ping", "reference": "", - "comment": "" + "comment": "KDE Connect ping tooltip" }, { - "term": "Ping sent to", + "term": "Ping sent to %1", "translation": "", - "context": "Phone Connect ping action", + "context": "Ping sent to %1", "reference": "", - "comment": "" + "comment": "Phone Connect ping action" }, { "term": "Pinned", "translation": "", - "context": "", + "context": "Pinned", "reference": "", "comment": "" }, { "term": "Pinned and running apps with drag-and-drop", "translation": "", - "context": "", + "context": "Pinned and running apps with drag-and-drop", "reference": "", "comment": "" }, { "term": "Pixelate", "translation": "", - "context": "wallpaper transition option", + "context": "Pixelate", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Place a trash bin at the end of the dock", "translation": "", - "context": "", + "context": "Place a trash bin at the end of the dock", "reference": "", "comment": "" }, { "term": "Place plugin directories here. Each plugin should have a plugin.json manifest file.", "translation": "", - "context": "", + "context": "Place plugin directories here. Each plugin should have a plugin.json manifest file.", "reference": "", "comment": "" }, { "term": "Place plugins in %1", "translation": "", - "context": "", + "context": "Place plugins in %1", "reference": "", "comment": "" }, { "term": "Place the bar on the Wayland overlay layer", "translation": "", - "context": "", + "context": "Place the bar on the Wayland overlay layer", "reference": "", "comment": "" }, { "term": "Place the dock on the Wayland overlay layer", "translation": "", - "context": "", + "context": "Place the dock on the Wayland overlay layer", "reference": "", "comment": "" }, { "term": "Play", "translation": "", - "context": "Media play tooltip", + "context": "Play", "reference": "", - "comment": "" + "comment": "Media play tooltip" }, { "term": "Play a video when the screen locks.", "translation": "", - "context": "", + "context": "Play a video when the screen locks.", "reference": "", "comment": "" }, { "term": "Play sound after logging in", "translation": "", - "context": "", + "context": "Play sound after logging in", "reference": "", "comment": "" }, { "term": "Play sound when new notification arrives", "translation": "", - "context": "", + "context": "Play sound when new notification arrives", "reference": "", "comment": "" }, { "term": "Play sound when power cable is connected", "translation": "", - "context": "", + "context": "Play sound when power cable is connected", "reference": "", "comment": "" }, { "term": "Play sound when volume is adjusted", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Play sounds for system events", - "translation": "", - "context": "", + "context": "Play sound when volume is adjusted", "reference": "", "comment": "" }, { "term": "Playback", "translation": "", - "context": "", + "context": "Playback", "reference": "", "comment": "" }, { "term": "Playback error: ", "translation": "", - "context": "", + "context": "Playback error: ", "reference": "", "comment": "" }, @@ -14018,5535 +13661,5318 @@ "translation": "", "context": "Plays audio files", "reference": "", - "comment": "" - }, - { - "term": "Plays video files", - "translation": "", - "context": "Plays video files", - "reference": "", - "comment": "" + "comment": "Plays audio files" }, { "term": "Please wait...", "translation": "", - "context": "network status", + "context": "Please wait...", "reference": "", - "comment": "" + "comment": "network status" }, { "term": "Please write a name for your new %1 session", "translation": "", - "context": "", + "context": "Please write a name for your new %1 session", "reference": "", "comment": "" }, { "term": "Plugged In", "translation": "", - "context": "battery status", + "context": "Plugged In", "reference": "", - "comment": "" + "comment": "battery status" }, { "term": "Plugin", "translation": "", - "context": "", + "context": "Plugin", "reference": "", "comment": "" }, { "term": "Plugin Directory", "translation": "", - "context": "", + "context": "Plugin Directory", "reference": "", "comment": "" }, { "term": "Plugin Management", "translation": "", - "context": "", + "context": "Plugin Management", "reference": "", "comment": "" }, { "term": "Plugin Visibility", "translation": "", - "context": "", + "context": "Plugin Visibility", "reference": "", "comment": "" }, { "term": "Plugin dependency missing", "translation": "", - "context": "", + "context": "Plugin dependency missing", "reference": "", "comment": "" }, { "term": "Plugin disabled: %1", "translation": "", - "context": "", + "context": "Plugin disabled: %1", "reference": "", "comment": "" }, { "term": "Plugin enabled: %1", "translation": "", - "context": "", + "context": "Plugin enabled: %1", "reference": "", "comment": "" }, { "term": "Plugin is disabled - enable in Plugins settings to use", "translation": "", - "context": "", + "context": "Plugin is disabled - enable in Plugins settings to use", "reference": "", "comment": "" }, { "term": "Plugin reloaded: %1", "translation": "", - "context": "", + "context": "Plugin reloaded: %1", "reference": "", "comment": "" }, { "term": "Plugin uninstalled: %1", "translation": "", - "context": "", + "context": "Plugin uninstalled: %1", "reference": "", "comment": "" }, { "term": "Plugin updated: %1", "translation": "", - "context": "", + "context": "Plugin updated: %1", "reference": "", "comment": "" }, { "term": "Plugins", "translation": "", - "context": "greeter feature card title | greeter plugins link", + "context": "Plugins", "reference": "", - "comment": "" + "comment": "greeter feature card title | greeter plugins link" }, { "term": "Pointer", "translation": "", - "context": "", + "context": "Pointer", "reference": "", "comment": "" }, { "term": "Polkit integration is disabled. User management requires Polkit to elevate privileges.", "translation": "", - "context": "", + "context": "Polkit integration is disabled. User management requires Polkit to elevate privileges.", "reference": "", "comment": "" }, { "term": "Popout", "translation": "", - "context": "", + "context": "Popout", "reference": "", "comment": "" }, { "term": "Popout Shadows", "translation": "", - "context": "", + "context": "Popout Shadows", "reference": "", "comment": "" }, { "term": "Popouts", "translation": "", - "context": "", + "context": "Popouts", "reference": "", "comment": "" }, { "term": "Popouts and Modals follow global Animation Speed (disable to customize independently)", "translation": "", - "context": "", + "context": "Popouts and Modals follow global Animation Speed (disable to customize independently)", "reference": "", "comment": "" }, { "term": "Popup Only", "translation": "", - "context": "notification rule action option", + "context": "Popup Only", "reference": "", - "comment": "" + "comment": "notification rule action option" }, { "term": "Popup Position", "translation": "", - "context": "", + "context": "Popup Position", "reference": "", "comment": "" }, { "term": "Popup Shadow", "translation": "", - "context": "", + "context": "Popup Shadow", "reference": "", "comment": "" }, { "term": "Popup behavior, position", "translation": "", - "context": "greeter notifications description", + "context": "Popup behavior, position", + "reference": "", + "comment": "greeter notifications description" + }, + { + "term": "Popups", + "translation": "", + "context": "Popups", "reference": "", "comment": "" }, { "term": "Port", "translation": "", - "context": "Label for printer port number input field", + "context": "Port", "reference": "", - "comment": "" + "comment": "Label for printer port number input field" }, { "term": "Portal", "translation": "", - "context": "wallpaper transition option", + "context": "Portal", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Position", "translation": "", - "context": "", + "context": "Position", "reference": "", "comment": "" }, { "term": "Position, pinned apps", "translation": "", - "context": "greeter dock description", + "context": "Position, pinned apps", "reference": "", - "comment": "" + "comment": "greeter dock description" }, { "term": "Possible Override Conflicts", "translation": "", - "context": "", + "context": "Possible Override Conflicts", "reference": "", "comment": "" }, { "term": "Power", "translation": "", - "context": "", + "context": "Power", "reference": "", "comment": "" }, { "term": "Power & Security", "translation": "", - "context": "", + "context": "Power & Security", "reference": "", "comment": "" }, { "term": "Power & Sleep", "translation": "", - "context": "", + "context": "Power & Sleep", "reference": "", "comment": "" }, { "term": "Power Action Confirmation", "translation": "", - "context": "", + "context": "Power Action Confirmation", "reference": "", "comment": "" }, { "term": "Power Menu Customization", "translation": "", - "context": "", + "context": "Power Menu Customization", "reference": "", "comment": "" }, { "term": "Power Mode", "translation": "", - "context": "", + "context": "Power Mode", "reference": "", "comment": "" }, { "term": "Power Off", "translation": "", - "context": "", + "context": "Power Off", "reference": "", "comment": "" }, { "term": "Power Options", "translation": "", - "context": "", + "context": "Power Options", "reference": "", "comment": "" }, { "term": "Power Profile", "translation": "", - "context": "", + "context": "Power Profile", "reference": "", "comment": "" }, { "term": "Power Profile Degradation", "translation": "", - "context": "", + "context": "Power Profile Degradation", "reference": "", "comment": "" }, { "term": "Power Profiles & Saving", "translation": "", - "context": "", + "context": "Power Profiles & Saving", "reference": "", "comment": "" }, { "term": "Power Saver", "translation": "", - "context": "power profile option", + "context": "Power Saver", "reference": "", - "comment": "" + "comment": "power profile option" }, { "term": "Power off monitors on lock", "translation": "", - "context": "", + "context": "Power off monitors on lock", "reference": "", "comment": "" }, { "term": "Power profile management available", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Power profile to use when AC power is connected.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Power profile to use when running on battery power.", - "translation": "", - "context": "", + "context": "Power profile management available", "reference": "", "comment": "" }, { "term": "Power source", "translation": "", - "context": "", + "context": "Power source", "reference": "", "comment": "" }, { "term": "Pre-fill the last successful username on the greeter", "translation": "", - "context": "", + "context": "Pre-fill the last successful username on the greeter", "reference": "", "comment": "" }, { "term": "Pre-select the last used session on the greeter", "translation": "", - "context": "", + "context": "Pre-select the last used session on the greeter", "reference": "", "comment": "" }, { "term": "Precip", "translation": "", - "context": "", + "context": "Precip", "reference": "", "comment": "" }, { "term": "Precipitation", "translation": "", - "context": "", + "context": "Precipitation", "reference": "", "comment": "" }, { "term": "Precipitation Chance", "translation": "", - "context": "", + "context": "Precipitation Chance", "reference": "", "comment": "" }, { "term": "Preference", "translation": "", - "context": "", + "context": "Preference", "reference": "", "comment": "" }, { "term": "Preset Widths (%)", "translation": "", - "context": "", + "context": "Preset Widths (%)", "reference": "", "comment": "" }, { "term": "Press Ctrl+N or click 'New Session' to create one", "translation": "", - "context": "", + "context": "Press Ctrl+N or click 'New Session' to create one", "reference": "", "comment": "" }, { "term": "Press Enter and the audio system will restart to apply the change", "translation": "", - "context": "Audio device rename dialog hint", + "context": "Press Enter and the audio system will restart to apply the change", "reference": "", - "comment": "" + "comment": "Audio device rename dialog hint" }, { "term": "Press Enter to paste, Shift+Enter to copy", "translation": "", - "context": "Clipboard behavior setting description", + "context": "Press Enter to paste, Shift+Enter to copy", "reference": "", - "comment": "" + "comment": "Clipboard behavior setting description" }, { "term": "Press key...", "translation": "", - "context": "", + "context": "Press key...", "reference": "", "comment": "" }, { "term": "Pressure", "translation": "", - "context": "", + "context": "Pressure", "reference": "", "comment": "" }, { "term": "Prevent screen timeout", "translation": "", - "context": "", + "context": "Prevent screen timeout", "reference": "", "comment": "" }, { "term": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", "translation": "", - "context": "", + "context": "Prevent specific applications from displaying in the media controllers (e.g., browser audio streams, background tools). Matches player identity or desktop file name case-insensitively.", "reference": "", "comment": "" }, { "term": "Preview", "translation": "", - "context": "", + "context": "Preview", "reference": "", "comment": "" }, { "term": "Preview: %1", "translation": "", - "context": "", + "context": "Preview: %1", "reference": "", "comment": "" }, { "term": "Previous", "translation": "", - "context": "Media previous tooltip", + "context": "Previous", "reference": "", - "comment": "" + "comment": "Media previous tooltip" }, { "term": "Previous page", "translation": "", - "context": "", + "context": "Previous page", "reference": "", "comment": "" }, { "term": "Primary", "translation": "", - "context": "button color option | color option | primary color | shadow color option | surface border color | tile color option | workspace color option", + "context": "Primary", + "reference": "", + "comment": "button color option | color option | primary color | shadow color option | surface border color | tile color option | workspace color option" + }, + { + "term": "Primary", + "translation": "", + "context": "primary network connection label", "reference": "", "comment": "" }, { "term": "Primary Container", "translation": "", - "context": "button color option | tile color option | widget background color option | workspace color option", + "context": "Primary Container", "reference": "", - "comment": "" + "comment": "button color option | tile color option | widget background color option | workspace color option" }, { "term": "Print Server Management", "translation": "", - "context": "", + "context": "Print Server Management", "reference": "", "comment": "" }, { "term": "Print Server not available", "translation": "", - "context": "", + "context": "Print Server not available", "reference": "", "comment": "" }, { "term": "Printer", "translation": "", - "context": "", + "context": "Printer", "reference": "", "comment": "" }, { "term": "Printer Classes", "translation": "", - "context": "", + "context": "Printer Classes", "reference": "", "comment": "" }, { "term": "Printer created successfully", "translation": "", - "context": "", + "context": "Printer created successfully", "reference": "", "comment": "" }, { "term": "Printer deleted", "translation": "", - "context": "", + "context": "Printer deleted", "reference": "", "comment": "" }, { "term": "Printer name (no spaces)", "translation": "", - "context": "", + "context": "Printer name (no spaces)", "reference": "", "comment": "" }, { "term": "Printer reachable", "translation": "", - "context": "Status message when test connection to printer succeeds", + "context": "Printer reachable", "reference": "", - "comment": "" + "comment": "Status message when test connection to printer succeeds" }, { "term": "Printers", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Printers: ", - "translation": "", - "context": "", + "context": "Printers", "reference": "", "comment": "" }, { "term": "Prioritize performance", "translation": "", - "context": "power profile description", + "context": "Prioritize performance", "reference": "", - "comment": "" + "comment": "power profile description" }, { "term": "Priority", "translation": "", - "context": "", + "context": "Priority", "reference": "", "comment": "" }, { "term": "Privacy Indicator", "translation": "", - "context": "", + "context": "Privacy Indicator", "reference": "", "comment": "" }, { "term": "Privacy Mode", "translation": "", - "context": "", + "context": "Privacy Mode", "reference": "", "comment": "" }, { "term": "Private Key Password", "translation": "", - "context": "", + "context": "Private Key Password", "reference": "", "comment": "" }, { "term": "Process Count", "translation": "", - "context": "", + "context": "Process Count", "reference": "", "comment": "" }, { "term": "Process exited with code %1", "translation": "", - "context": "", + "context": "Process exited with code %1", "reference": "", "comment": "" }, { "term": "Processes", "translation": "", - "context": "", + "context": "Processes", "reference": "", - "comment": "" - }, - { - "term": "Processes:", - "translation": "", - "context": "process count label in footer", - "reference": "", - "comment": "" + "comment": "process count label in footer" }, { "term": "Processing", "translation": "", - "context": "", + "context": "Processing", "reference": "", "comment": "" }, { "term": "Profile Image Error", "translation": "", - "context": "", + "context": "Profile Image Error", "reference": "", "comment": "" }, { "term": "Profile activated: %1", "translation": "", - "context": "", + "context": "Profile activated: %1", "reference": "", "comment": "" }, { "term": "Profile deleted", "translation": "", - "context": "", + "context": "Profile deleted", "reference": "", "comment": "" }, { "term": "Profile error", "translation": "", - "context": "", + "context": "Profile error", "reference": "", "comment": "" }, { "term": "Profile image is too large. Please use a smaller image.", "translation": "", - "context": "", + "context": "Profile image is too large. Please use a smaller image.", "reference": "", "comment": "" }, { "term": "Profile name", "translation": "", - "context": "", + "context": "Profile name", "reference": "", "comment": "" }, { "term": "Profile not found", "translation": "", - "context": "", + "context": "Profile not found", "reference": "", "comment": "" }, { "term": "Profile not found in monitors.json", "translation": "", - "context": "", + "context": "Profile not found in monitors.json", "reference": "", "comment": "" }, { "term": "Profile saved: %1", "translation": "", - "context": "", + "context": "Profile saved: %1", "reference": "", "comment": "" }, { "term": "Profile when Plugged In (AC)", "translation": "", - "context": "", + "context": "Profile when Plugged In (AC)", "reference": "", "comment": "" }, { "term": "Profile when on Battery", "translation": "", - "context": "", + "context": "Profile when on Battery", + "reference": "", + "comment": "" + }, + { + "term": "Protection", + "translation": "", + "context": "Protection", "reference": "", "comment": "" }, { "term": "Protocol", "translation": "", - "context": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket", + "context": "Protocol", "reference": "", - "comment": "" + "comment": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket" }, { "term": "Qt", "translation": "", - "context": "", + "context": "Qt", "reference": "", "comment": "" }, { "term": "Qt colors applied successfully", "translation": "", - "context": "", + "context": "Qt colors applied successfully", "reference": "", "comment": "" }, { "term": "Qt: distance-field renderer.", "translation": "", - "context": "", + "context": "Qt: distance-field renderer.", "reference": "", "comment": "" }, { "term": "QtMultimedia is not available", "translation": "", - "context": "", + "context": "QtMultimedia is not available", "reference": "", "comment": "" }, { "term": "QtMultimedia is not available - video screensaver requires qt multimedia services", "translation": "", - "context": "", + "context": "QtMultimedia is not available - video screensaver requires qt multimedia services", "reference": "", "comment": "" }, { "term": "Quality", "translation": "", - "context": "", + "context": "Quality", "reference": "", "comment": "" }, { "term": "Quick Access", "translation": "", - "context": "", + "context": "Quick Access", "reference": "", "comment": "" }, { "term": "Quick access to application launcher", "translation": "", - "context": "", + "context": "Quick access to application launcher", "reference": "", "comment": "" }, { "term": "Quick access to color picker", "translation": "", - "context": "", + "context": "Quick access to color picker", "reference": "", "comment": "" }, { "term": "Quick access to notepad", "translation": "", - "context": "", + "context": "Quick access to notepad", "reference": "", "comment": "" }, { "term": "Quick note-taking slideout panel", "translation": "", - "context": "", + "context": "Quick note-taking slideout panel", "reference": "", "comment": "" }, { "term": "Quick system toggles", "translation": "", - "context": "greeter feature card description", + "context": "Quick system toggles", "reference": "", - "comment": "" + "comment": "greeter feature card description" }, { "term": "RGB", "translation": "", - "context": "", + "context": "RGB", "reference": "", "comment": "" }, { "term": "Radius", "translation": "", - "context": "", + "context": "Radius", "reference": "", "comment": "" }, { "term": "Rain", "translation": "", - "context": "", + "context": "Rain", "reference": "", "comment": "" }, { "term": "Rain Chance", "translation": "", - "context": "", + "context": "Rain Chance", "reference": "", "comment": "" }, { "term": "Rainbow", "translation": "", - "context": "matugen color scheme option", + "context": "Rainbow", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Random", "translation": "", - "context": "wallpaper transition option", + "context": "Random", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Rate", "translation": "", - "context": "", + "context": "Rate", "reference": "", "comment": "" }, { "term": "Re-enter password", "translation": "", - "context": "", + "context": "Re-enter password", "reference": "", "comment": "" }, { "term": "Reach local network devices while using an exit node", "translation": "", - "context": "Tailscale allow LAN access description", + "context": "Reach local network devices while using an exit node", "reference": "", - "comment": "" + "comment": "Tailscale allow LAN access description" }, { "term": "Read-only legacy config", "translation": "", - "context": "", + "context": "Read-only legacy config", "reference": "", "comment": "" }, { "term": "Read:", "translation": "", - "context": "disk read label", + "context": "Read:", "reference": "", - "comment": "" + "comment": "disk read label" }, { "term": "Reason", "translation": "", - "context": "", + "context": "Reason", "reference": "", "comment": "" }, { "term": "Reboot", "translation": "", - "context": "", + "context": "Reboot", "reference": "", "comment": "" }, { "term": "Recent", "translation": "", - "context": "", + "context": "Recent", "reference": "", "comment": "" }, { "term": "Recent Colors", "translation": "", - "context": "", + "context": "Recent Colors", "reference": "", "comment": "" }, { "term": "Recent Images", "translation": "", - "context": "Recent Images title", + "context": "Recent Images", "reference": "", - "comment": "" + "comment": "Recent Images title" }, { "term": "Recently Used Apps", "translation": "", - "context": "", + "context": "Recently Used Apps", "reference": "", "comment": "" }, { "term": "Recommended available", "translation": "", - "context": "", + "context": "Recommended available", "reference": "", "comment": "" }, { "term": "Refresh", "translation": "", - "context": "Refresh Tailscale device status", + "context": "Refresh", "reference": "", - "comment": "" + "comment": "Refresh Tailscale device status" }, { "term": "Refresh Weather", "translation": "", - "context": "", + "context": "Refresh Weather", "reference": "", "comment": "" }, { "term": "Refreshing...", "translation": "", - "context": "", + "context": "Refreshing...", "reference": "", "comment": "" }, { "term": "Regex", "translation": "", - "context": "notification rule match type option", + "context": "Regex", "reference": "", - "comment": "" + "comment": "notification rule match type option" }, { "term": "Regular", "translation": "", - "context": "font weight", + "context": "Regular", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Reject", "translation": "", - "context": "KDE Connect reject pairing button", + "context": "Reject", "reference": "", - "comment": "" + "comment": "KDE Connect reject pairing button" }, { "term": "Reject Jobs", "translation": "", - "context": "", + "context": "Reject Jobs", "reference": "", "comment": "" }, { "term": "Related: %1", "translation": "", - "context": "related plugins", + "context": "Related: %1", "reference": "", - "comment": "" + "comment": "related plugins" }, { "term": "Release", "translation": "", - "context": "", + "context": "Release", "reference": "", "comment": "" }, { "term": "Reload From Disk", "translation": "", - "context": "", + "context": "Reload From Disk", "reference": "", "comment": "" }, { "term": "Reload Plugin", "translation": "", - "context": "", + "context": "Reload Plugin", "reference": "", "comment": "" }, { "term": "Remaining", "translation": "", - "context": "", + "context": "Remaining", "reference": "", "comment": "" }, { "term": "Remaining / Total", "translation": "", - "context": "", + "context": "Remaining / Total", "reference": "", "comment": "" }, { "term": "Remember Last Mode", "translation": "", - "context": "", + "context": "Remember Last Mode", "reference": "", "comment": "" }, { "term": "Remember Last Query", "translation": "", - "context": "", + "context": "Remember Last Query", "reference": "", "comment": "" }, { "term": "Remember Type Filter", "translation": "", - "context": "Clipboard behavior setting title", + "context": "Remember Type Filter", "reference": "", - "comment": "" + "comment": "Clipboard behavior setting title" }, { "term": "Remember last session", "translation": "", - "context": "", + "context": "Remember last session", "reference": "", "comment": "" }, { "term": "Remember last user", "translation": "", - "context": "", + "context": "Remember last user", "reference": "", "comment": "" }, { "term": "Reminder", "translation": "", - "context": "", + "context": "Reminder", "reference": "", "comment": "" }, { "term": "Remove", "translation": "", - "context": "", + "context": "Remove", "reference": "", "comment": "" }, { "term": "Remove \"%1\" from the %2 group?", "translation": "", - "context": "", + "context": "Remove \"%1\" from the %2 group?", "reference": "", "comment": "" }, { "term": "Remove Shortcut?", "translation": "", - "context": "", + "context": "Remove Shortcut?", "reference": "", "comment": "" }, { "term": "Remove Widget Padding", "translation": "", - "context": "", + "context": "Remove Widget Padding", "reference": "", "comment": "" }, { "term": "Remove admin", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Remove admin?", - "translation": "", - "context": "", + "context": "Remove admin", "reference": "", "comment": "" }, { "term": "Remove corner rounding from the bar", "translation": "", - "context": "", + "context": "Remove corner rounding from the bar", "reference": "", "comment": "" }, { "term": "Remove gaps and border when windows are maximized", "translation": "", - "context": "", + "context": "Remove gaps and border when windows are maximized", "reference": "", "comment": "" }, { "term": "Remove greeter access?", "translation": "", - "context": "", + "context": "Remove greeter access?", "reference": "", "comment": "" }, { "term": "Remove greeter login access", "translation": "", - "context": "", + "context": "Remove greeter login access", "reference": "", "comment": "" }, { "term": "Remove inner padding from all widgets", "translation": "", - "context": "", + "context": "Remove inner padding from all widgets", "reference": "", "comment": "" }, { "term": "Remove match", "translation": "", - "context": "", + "context": "Remove match", "reference": "", "comment": "" }, { "term": "Remove the shortcut %1?", "translation": "", - "context": "", + "context": "Remove the shortcut %1?", "reference": "", "comment": "" }, { "term": "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.", "translation": "", - "context": "", + "context": "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.", "reference": "", "comment": "" }, { "term": "Removed administrator privileges", "translation": "", - "context": "", + "context": "Removed administrator privileges", "reference": "", "comment": "" }, { "term": "Removed greeter login access", "translation": "", - "context": "", + "context": "Removed greeter login access", "reference": "", "comment": "" }, { "term": "Rename", "translation": "", - "context": "", + "context": "Rename", "reference": "", "comment": "" }, { "term": "Rename Session", "translation": "", - "context": "", + "context": "Rename Session", "reference": "", "comment": "" }, { "term": "Rename Workspace", "translation": "", - "context": "", + "context": "Rename Workspace", "reference": "", "comment": "" }, { "term": "Reorder & Group", "translation": "", - "context": "", + "context": "Reorder & Group", "reference": "", "comment": "" }, { "term": "Repeat", "translation": "", - "context": "", + "context": "Repeat", "reference": "", "comment": "" }, { "term": "Replacement", "translation": "", - "context": "", + "context": "Replacement", "reference": "", "comment": "" }, { "term": "Report", "translation": "", - "context": "", + "context": "Report", "reference": "", "comment": "" }, { "term": "Request Pairing", "translation": "", - "context": "KDE Connect request pairing button", + "context": "Request Pairing", "reference": "", - "comment": "" + "comment": "KDE Connect request pairing button" }, { "term": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "translation": "", - "context": "", + "context": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "reference": "", "comment": "" }, { "term": "Required plugin: ", "translation": "", - "context": "", + "context": "Required plugin: ", "reference": "", "comment": "" }, { "term": "Requires %1", "translation": "", - "context": "version requirement", + "context": "Requires %1", "reference": "", - "comment": "" + "comment": "version requirement" }, { "term": "Requires 'dgop' tool", "translation": "", - "context": "", + "context": "Requires 'dgop' tool", "reference": "", "comment": "" }, { "term": "Requires DMS %1", "translation": "", - "context": "", + "context": "Requires DMS %1", "reference": "", "comment": "" }, { "term": "Requires DMS server with sysupdate capability", "translation": "", - "context": "", + "context": "Requires DMS server with sysupdate capability", "reference": "", "comment": "" }, { "term": "Requires MangoWC compositor", "translation": "", - "context": "", + "context": "Requires MangoWC compositor", "reference": "", "comment": "" }, { "term": "Requires a newer version of Quickshell", "translation": "", - "context": "", + "context": "Requires a newer version of Quickshell", "reference": "", "comment": "" }, { "term": "Requires greetd, dms-greeter, and your user in the greeter group (plus fprintd/pam_fprintd for fingerprint, pam_u2f for security keys). Auth changes apply automatically and may open a terminal for sudo.", "translation": "", - "context": "", + "context": "Requires greetd, dms-greeter, and your user in the greeter group (plus fprintd/pam_fprintd for fingerprint, pam_u2f for security keys). Auth changes apply automatically and may open a terminal for sudo.", "reference": "", "comment": "" }, { "term": "Requires night mode support", "translation": "", - "context": "", + "context": "Requires night mode support", "reference": "", "comment": "" }, { "term": "Requires remembering the last user and session. Enable those options first.", "translation": "", - "context": "", + "context": "Requires remembering the last user and session. Enable those options first.", "reference": "", "comment": "" }, { "term": "Reset", "translation": "", - "context": "", + "context": "Reset", "reference": "", "comment": "" }, { "term": "Reset Position", "translation": "", - "context": "", + "context": "Reset Position", "reference": "", "comment": "" }, { "term": "Reset Size", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Reset to Default?", - "translation": "", - "context": "", + "context": "Reset Size", "reference": "", "comment": "" }, { "term": "Reset to default", "translation": "", - "context": "", + "context": "Reset to default", "reference": "", "comment": "" }, { "term": "Reset to default name", "translation": "", - "context": "", + "context": "Reset to default name", "reference": "", "comment": "" }, { "term": "Resize Widget", "translation": "", - "context": "", + "context": "Resize Widget", "reference": "", "comment": "" }, { "term": "Resize on Border", "translation": "", - "context": "", + "context": "Resize on Border", "reference": "", "comment": "" }, { "term": "Resize windows by dragging their edges with the mouse", "translation": "", - "context": "", + "context": "Resize windows by dragging their edges with the mouse", "reference": "", "comment": "" }, { "term": "Resolution & Refresh", "translation": "", - "context": "", + "context": "Resolution & Refresh", "reference": "", "comment": "" }, { "term": "Resolution, position, scale", "translation": "", - "context": "greeter displays description", + "context": "Resolution, position, scale", "reference": "", - "comment": "" + "comment": "greeter displays description" }, { "term": "Restart DMS", "translation": "", - "context": "", + "context": "Restart DMS", "reference": "", "comment": "" }, { "term": "Restart the DankMaterialShell", "translation": "", - "context": "", + "context": "Restart the DankMaterialShell", "reference": "", "comment": "" }, { "term": "Restarting audio system...", "translation": "", - "context": "Loading overlay while WirePlumber restarts", + "context": "Restarting audio system...", "reference": "", - "comment": "" + "comment": "Loading overlay while WirePlumber restarts" }, { "term": "Restore Special Workspace Windows", "translation": "", - "context": "", + "context": "Restore Special Workspace Windows", "reference": "", "comment": "" }, { "term": "Restore the last selected mode (tab) when the launcher is opened", "translation": "", - "context": "", + "context": "Restore the last selected mode (tab) when the launcher is opened", "reference": "", "comment": "" }, { "term": "Resume", "translation": "", - "context": "", + "context": "Resume", "reference": "", "comment": "" }, { "term": "Reveal the arcs where surfaces meet the frame", "translation": "", - "context": "", + "context": "Reveal the arcs where surfaces meet the frame", "reference": "", "comment": "" }, { "term": "Reverse Scrolling Direction", "translation": "", - "context": "", + "context": "Reverse Scrolling Direction", "reference": "", "comment": "" }, { "term": "Reverse workspace switch direction when scrolling over the bar", "translation": "", - "context": "", + "context": "Reverse workspace switch direction when scrolling over the bar", "reference": "", "comment": "" }, { "term": "Revert", "translation": "", - "context": "", + "context": "Revert", "reference": "", "comment": "" }, { "term": "Rewind 10s", "translation": "", - "context": "Media rewind tooltip", + "context": "Rewind 10s", "reference": "", - "comment": "" + "comment": "Media rewind tooltip" }, { "term": "Right", "translation": "", - "context": "", + "context": "Right", "reference": "", - "comment": "" + "comment": "screen edge position" }, { "term": "Right Center", "translation": "", - "context": "screen position option", + "context": "Right Center", "reference": "", - "comment": "" + "comment": "screen position option" }, { "term": "Right Section", "translation": "", - "context": "", + "context": "Right Section", "reference": "", "comment": "" }, { "term": "Right Tiling", "translation": "", - "context": "", + "context": "Right Tiling", "reference": "", "comment": "" }, { "term": "Right-click and drag anywhere on the widget", "translation": "", - "context": "", + "context": "Right-click and drag anywhere on the widget", "reference": "", "comment": "" }, { "term": "Right-click and drag the bottom-right corner", "translation": "", - "context": "", + "context": "Right-click and drag the bottom-right corner", "reference": "", "comment": "" }, { "term": "Right-click bar widget to cycle", "translation": "", - "context": "", + "context": "Right-click bar widget to cycle", "reference": "", "comment": "" }, { "term": "Ring", "translation": "", - "context": "KDE Connect ring tooltip", + "context": "Ring", "reference": "", - "comment": "" + "comment": "KDE Connect ring tooltip" }, { - "term": "Ringing", + "term": "Ringing %1...", "translation": "", - "context": "Phone Connect ring action", + "context": "Ringing %1...", "reference": "", - "comment": "" + "comment": "Phone Connect ring action" }, { "term": "Ripple Effects", "translation": "", - "context": "", + "context": "Ripple Effects", "reference": "", "comment": "" }, { "term": "Root Filesystem", "translation": "", - "context": "", + "context": "Root Filesystem", "reference": "", "comment": "" }, { "term": "Rounded corners for windows", "translation": "", - "context": "", + "context": "Rounded corners for windows", "reference": "", "comment": "" }, { "term": "Rule", "translation": "", - "context": "", + "context": "Rule", + "reference": "", + "comment": "" + }, + { + "term": "Rule %1", + "translation": "", + "context": "Rule %1", "reference": "", "comment": "" }, { "term": "Rule Name", "translation": "", - "context": "", + "context": "Rule Name", + "reference": "", + "comment": "" + }, + { + "term": "Rules", + "translation": "", + "context": "Rules", "reference": "", "comment": "" }, { "term": "Rules (%1)", "translation": "", - "context": "", + "context": "Rules (%1)", "reference": "", "comment": "" }, { "term": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.", "translation": "", - "context": "", + "context": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.", "reference": "", "comment": "" }, { "term": "Run Again", "translation": "", - "context": "greeter doctor page button", + "context": "Run Again", "reference": "", - "comment": "" + "comment": "greeter doctor page button" }, { "term": "Run DMS Templates", "translation": "", - "context": "", + "context": "Run DMS Templates", "reference": "", "comment": "" }, { "term": "Run User Templates", "translation": "", - "context": "", + "context": "Run User Templates", "reference": "", "comment": "" }, { "term": "Run a program (e.g., firefox, kitty)", "translation": "", - "context": "", + "context": "Run a program (e.g., firefox, kitty)", "reference": "", "comment": "" }, { "term": "Run a shell command (e.g., notify-send)", "translation": "", - "context": "", + "context": "Run a shell command (e.g., notify-send)", "reference": "", "comment": "" }, { "term": "Run paru/yay with AUR enabled when 'Update All' is clicked.", "translation": "", - "context": "", + "context": "Run paru/yay with AUR enabled when 'Update All' is clicked.", "reference": "", "comment": "" }, { "term": "Running Apps", "translation": "", - "context": "", + "context": "Running Apps", "reference": "", "comment": "" }, { "term": "Running Apps Settings", "translation": "", - "context": "", + "context": "Running Apps Settings", "reference": "", "comment": "" }, { "term": "Running greeter sync...", "translation": "", - "context": "", + "context": "Running greeter sync...", "reference": "", "comment": "" }, { "term": "Running in terminal", "translation": "", - "context": "", + "context": "Running in terminal", "reference": "", "comment": "" }, { "term": "SDR Brightness", "translation": "", - "context": "", + "context": "SDR Brightness", "reference": "", "comment": "" }, { "term": "SDR Saturation", "translation": "", - "context": "", + "context": "SDR Saturation", "reference": "", "comment": "" }, { "term": "SMS", "translation": "", - "context": "KDE Connect SMS tooltip", + "context": "SMS", "reference": "", - "comment": "" + "comment": "KDE Connect SMS tooltip" }, { "term": "SMS sent successfully", "translation": "", - "context": "Phone Connect SMS action", + "context": "SMS sent successfully", "reference": "", - "comment": "" + "comment": "Phone Connect SMS action" }, { "term": "Saturation", "translation": "", - "context": "", + "context": "Saturation", "reference": "", "comment": "" }, { "term": "Save", "translation": "", - "context": "", + "context": "Save", "reference": "", "comment": "" }, { "term": "Save Notepad File", "translation": "", - "context": "", + "context": "Save Notepad File", "reference": "", "comment": "" }, { "term": "Save QR Code", "translation": "", - "context": "", + "context": "Save QR Code", "reference": "", "comment": "" }, { "term": "Save and close", "translation": "", - "context": "", + "context": "Save and close", "reference": "", "comment": "" }, { "term": "Save and paste", "translation": "", - "context": "", + "context": "Save and paste", "reference": "", "comment": "" }, { "term": "Save and switch between display configurations", "translation": "", - "context": "", + "context": "Save and switch between display configurations", "reference": "", "comment": "" }, { "term": "Save credentials", "translation": "", - "context": "", + "context": "Save credentials", "reference": "", "comment": "" }, { "term": "Save critical priority notifications to history", "translation": "", - "context": "notification history setting", + "context": "Save critical priority notifications to history", "reference": "", - "comment": "" + "comment": "notification history setting" }, { "term": "Save dismissed notifications to history", "translation": "", - "context": "notification history toggle description", + "context": "Save dismissed notifications to history", "reference": "", - "comment": "" + "comment": "notification history toggle description" }, { "term": "Save low priority notifications to history", "translation": "", - "context": "notification history setting", + "context": "Save low priority notifications to history", "reference": "", - "comment": "" + "comment": "notification history setting" }, { "term": "Save normal priority notifications to history", "translation": "", - "context": "notification history setting", + "context": "Save normal priority notifications to history", "reference": "", - "comment": "" + "comment": "notification history setting" }, { "term": "Save password", "translation": "", - "context": "", + "context": "Save password", "reference": "", "comment": "" }, { "term": "Saved", "translation": "", - "context": "", + "context": "Saved", "reference": "", "comment": "" }, { "term": "Saved Configurations", "translation": "", - "context": "", + "context": "Saved Configurations", "reference": "", "comment": "" }, { "term": "Saved Networks", "translation": "", - "context": "", + "context": "Saved Networks", "reference": "", "comment": "" }, { "term": "Saved Note", "translation": "", - "context": "", + "context": "Saved Note", "reference": "", "comment": "" }, { "term": "Saved item deleted", "translation": "", - "context": "", + "context": "Saved item deleted", "reference": "", "comment": "" }, { "term": "Saving...", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Saving…", - "translation": "", - "context": "", + "context": "Saving...", "reference": "", "comment": "" }, { "term": "Scale", "translation": "", - "context": "", + "context": "Scale", "reference": "", "comment": "" }, { "term": "Scale DankBar font sizes independently", "translation": "", - "context": "", + "context": "Scale DankBar font sizes independently", "reference": "", "comment": "" }, { "term": "Scale DankBar icon sizes independently", "translation": "", - "context": "", + "context": "Scale DankBar icon sizes independently", "reference": "", "comment": "" }, { "term": "Scale all font sizes throughout the shell", "translation": "", - "context": "", + "context": "Scale all font sizes throughout the shell", "reference": "", "comment": "" }, { "term": "Scan", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Scanning", - "translation": "", - "context": "", + "context": "Scan", "reference": "", "comment": "" }, { "term": "Scanning...", "translation": "", - "context": "", + "context": "Scanning...", "reference": "", "comment": "" }, { "term": "Science", "translation": "", - "context": "", + "context": "Science", "reference": "", "comment": "" }, { "term": "Score", "translation": "", - "context": "", + "context": "Score", "reference": "", "comment": "" }, { "term": "Screen sharing", "translation": "", - "context": "", + "context": "Screen sharing", "reference": "", "comment": "" }, { "term": "Screenshot unavailable", "translation": "", - "context": "plugin browser screenshot error", + "context": "Screenshot unavailable", "reference": "", - "comment": "" + "comment": "plugin browser screenshot error" }, { "term": "Scroll", "translation": "", - "context": "wallpaper fill mode", + "context": "Scroll", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Scroll Factor", "translation": "", - "context": "", + "context": "Scroll Factor", "reference": "", "comment": "" }, { "term": "Scroll GitHub", "translation": "", - "context": "", + "context": "Scroll GitHub", "reference": "", "comment": "" }, { "term": "Scroll Wheel", "translation": "", - "context": "", + "context": "Scroll Wheel", "reference": "", "comment": "" }, { "term": "Scroll song title", "translation": "", - "context": "", + "context": "Scroll song title", "reference": "", "comment": "" }, { "term": "Scroll title if it doesn't fit in widget", "translation": "", - "context": "", + "context": "Scroll title if it doesn't fit in widget", "reference": "", "comment": "" }, { "term": "Scroll wheel behavior on media widget", "translation": "", - "context": "", + "context": "Scroll wheel behavior on media widget", "reference": "", "comment": "" }, { "term": "Scrolling", "translation": "", - "context": "", + "context": "Scrolling", "reference": "", "comment": "" }, { "term": "Search App Actions", "translation": "", - "context": "", + "context": "Search App Actions", "reference": "", "comment": "" }, { "term": "Search Options", "translation": "", - "context": "", + "context": "Search Options", "reference": "", "comment": "" }, { "term": "Search applications...", "translation": "", - "context": "", + "context": "Search applications...", "reference": "", "comment": "" }, { "term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "translation": "", - "context": "", + "context": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "reference": "", "comment": "" }, { "term": "Search devices...", "translation": "", - "context": "Tailscale device search placeholder", + "context": "Search devices...", "reference": "", - "comment": "" + "comment": "Tailscale device search placeholder" }, { "term": "Search for a location...", "translation": "", - "context": "", + "context": "Search for a location...", "reference": "", "comment": "" }, { "term": "Search installed plugins...", "translation": "", - "context": "", + "context": "Search installed plugins...", "reference": "", "comment": "" }, { "term": "Search keybinds...", "translation": "", - "context": "", + "context": "Search keybinds...", "reference": "", "comment": "" }, { "term": "Search keyboard shortcuts from your compositor and applications", "translation": "", - "context": "", + "context": "Search keyboard shortcuts from your compositor and applications", "reference": "", "comment": "" }, { "term": "Search plugins...", "translation": "", - "context": "plugin search placeholder", + "context": "Search plugins...", "reference": "", - "comment": "" + "comment": "plugin search placeholder" }, { "term": "Search processes...", "translation": "", - "context": "process search placeholder", + "context": "Search processes...", "reference": "", - "comment": "" + "comment": "process search placeholder" }, { "term": "Search sessions...", "translation": "", - "context": "", + "context": "Search sessions...", "reference": "", "comment": "" }, { "term": "Search themes...", "translation": "", - "context": "theme search placeholder", + "context": "Search themes...", "reference": "", - "comment": "" + "comment": "theme search placeholder" }, { "term": "Search widgets...", "translation": "", - "context": "", + "context": "Search widgets...", "reference": "", "comment": "" }, { "term": "Search...", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Searching", - "translation": "", - "context": "", + "context": "Search...", "reference": "", "comment": "" }, { "term": "Searching...", "translation": "", - "context": "", + "context": "Searching...", "reference": "", "comment": "" }, { "term": "Second Factor (AND)", "translation": "", - "context": "U2F mode option: key required after password or fingerprint", + "context": "Second Factor (AND)", "reference": "", - "comment": "" + "comment": "U2F mode option: key required after password or fingerprint" }, { "term": "Secondary", "translation": "", - "context": "button color option | color option | secondary color | surface border color | tile color option | workspace color option", + "context": "Secondary", "reference": "", - "comment": "" + "comment": "button color option | color option | secondary color | surface border color | tile color option | workspace color option" }, { "term": "Secondary Container", "translation": "", - "context": "widget background color option | workspace color option", + "context": "Secondary Container", "reference": "", - "comment": "" + "comment": "widget background color option | workspace color option" }, { "term": "Secured", "translation": "", - "context": "", + "context": "Secured", "reference": "", "comment": "" }, { "term": "Security", "translation": "", - "context": "", + "context": "Security", "reference": "", "comment": "" }, { "term": "Security & privacy", "translation": "", - "context": "greeter feature card description", + "context": "Security & privacy", "reference": "", - "comment": "" + "comment": "greeter feature card description" + }, + { + "term": "Security Key PAM Source", + "translation": "", + "context": "Security Key PAM Source", + "reference": "", + "comment": "lock screen dedicated U2F PAM source setting" }, { "term": "Security key mode", "translation": "", - "context": "lock screen U2F security key mode setting", + "context": "Security key mode", "reference": "", - "comment": "" + "comment": "lock screen U2F security key mode setting" }, { "term": "Security-key availability could not be confirmed.", "translation": "", - "context": "security key setting status", + "context": "Security-key availability could not be confirmed.", "reference": "", - "comment": "" + "comment": "security key setting status" }, { "term": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", "translation": "", - "context": "security key setting status", + "context": "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.", "reference": "", - "comment": "" + "comment": "security key setting status" }, { "term": "Select", "translation": "", - "context": "", + "context": "Select", "reference": "", "comment": "" }, { "term": "Select Application", "translation": "", - "context": "", + "context": "Select Application", "reference": "", "comment": "" }, { "term": "Select Bar", "translation": "", - "context": "", + "context": "Select Bar", "reference": "", "comment": "" }, { "term": "Select Custom Theme", "translation": "", - "context": "custom theme file browser title", + "context": "Select Custom Theme", "reference": "", - "comment": "" + "comment": "custom theme file browser title" }, { "term": "Select Dock Launcher Logo", "translation": "", - "context": "", + "context": "Select Dock Launcher Logo", "reference": "", "comment": "" }, { "term": "Select File to Send", "translation": "", - "context": "KDE Connect file browser title", + "context": "Select File to Send", "reference": "", - "comment": "" + "comment": "KDE Connect file browser title" }, { "term": "Select Launcher Logo", "translation": "", - "context": "", + "context": "Select Launcher Logo", "reference": "", "comment": "" }, { "term": "Select Profile Image", "translation": "", - "context": "profile image file browser title", + "context": "Select Profile Image", "reference": "", - "comment": "" + "comment": "profile image file browser title" }, { "term": "Select Video or Folder", "translation": "", - "context": "", + "context": "Select Video or Folder", "reference": "", "comment": "" }, { "term": "Select Wallpaper", "translation": "", - "context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", + "context": "Select Wallpaper", "reference": "", - "comment": "" + "comment": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title" }, { "term": "Select Wallpaper Directory", "translation": "", - "context": "wallpaper directory file browser title", + "context": "Select Wallpaper Directory", "reference": "", - "comment": "" + "comment": "wallpaper directory file browser title" }, { "term": "Select a color from the palette or use custom sliders", "translation": "", - "context": "", + "context": "Select a color from the palette or use custom sliders", "reference": "", "comment": "" }, { "term": "Select a desktop application", "translation": "", - "context": "", + "context": "Select a desktop application", "reference": "", "comment": "" }, { "term": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.", "translation": "", - "context": "", + "context": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.", "reference": "", "comment": "" }, { "term": "Select a widget to add. You can add multiple instances of the same widget if needed.", "translation": "", - "context": "", + "context": "Select a widget to add. You can add multiple instances of the same widget if needed.", "reference": "", "comment": "" }, { "term": "Select a window...", "translation": "", - "context": "", + "context": "Select a window...", "reference": "", "comment": "" }, { "term": "Select an active session to switch to. The current session stays running in the background.", "translation": "", - "context": "", + "context": "Select an active session to switch to. The current session stays running in the background.", "reference": "", "comment": "" }, { "term": "Select an image file...", "translation": "", - "context": "", + "context": "Select an image file...", "reference": "", "comment": "" }, { "term": "Select at least one provider", "translation": "", - "context": "", + "context": "Select at least one provider", "reference": "", "comment": "" }, { "term": "Select background image", "translation": "", - "context": "", + "context": "Select background image", "reference": "", "comment": "" }, { "term": "Select device", "translation": "", - "context": "audio status", + "context": "Select device", "reference": "", - "comment": "" + "comment": "audio status" }, { "term": "Select device...", "translation": "", - "context": "", + "context": "Select device...", "reference": "", "comment": "" }, { "term": "Select driver...", "translation": "", - "context": "", + "context": "Select driver...", "reference": "", "comment": "" }, { "term": "Select font weight for UI text", "translation": "", - "context": "", + "context": "Select font weight for UI text", "reference": "", "comment": "" }, { "term": "Select greeter background image", "translation": "", - "context": "", + "context": "Select greeter background image", "reference": "", "comment": "" }, { "term": "Select lock screen background image", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Select monitor to configure wallpaper", - "translation": "", - "context": "", + "context": "Select lock screen background image", "reference": "", "comment": "" }, { "term": "Select monospace font for process list and technical displays", "translation": "", - "context": "", + "context": "Select monospace font for process list and technical displays", "reference": "", "comment": "" }, { "term": "Select network", "translation": "", - "context": "network status", + "context": "Select network", "reference": "", - "comment": "" - }, - { - "term": "Select system sound theme", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "network status" }, { "term": "Select the font family for UI text", "translation": "", - "context": "", + "context": "Select the font family for UI text", "reference": "", "comment": "" }, { "term": "Select the palette algorithm used for wallpaper-based colors", "translation": "", - "context": "", + "context": "Select the palette algorithm used for wallpaper-based colors", "reference": "", "comment": "" }, { "term": "Select user...", "translation": "", - "context": "greeter user picker placeholder", + "context": "Select user...", "reference": "", - "comment": "" + "comment": "greeter user picker placeholder" }, { "term": "Select which keybind providers to include", "translation": "", - "context": "", + "context": "Select which keybind providers to include", "reference": "", "comment": "" }, { "term": "Select which transitions to include in randomization", "translation": "", - "context": "", + "context": "Select which transitions to include in randomization", "reference": "", "comment": "" }, { "term": "Select...", "translation": "", - "context": "", + "context": "Select...", "reference": "", "comment": "" }, { "term": "Selected image file not found.", "translation": "", - "context": "", + "context": "Selected image file not found.", "reference": "", "comment": "" }, { "term": "Send", "translation": "", - "context": "KDE Connect SMS send button", + "context": "Send", "reference": "", - "comment": "" + "comment": "KDE Connect SMS send button" }, { "term": "Send Clipboard", "translation": "", - "context": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip", + "context": "Send Clipboard", "reference": "", - "comment": "" + "comment": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip" }, { "term": "Send SMS", "translation": "", - "context": "KDE Connect SMS dialog title", + "context": "Send SMS", "reference": "", - "comment": "" + "comment": "KDE Connect SMS dialog title" }, { - "term": "Sending", + "term": "Sending %1...", "translation": "", - "context": "Phone Connect file send", + "context": "Sending %1...", "reference": "", - "comment": "" + "comment": "Phone Connect file send" }, { "term": "Separate", "translation": "", - "context": "", + "context": "Separate", "reference": "", "comment": "" }, { "term": "Separate Appearance for Unfocused Display(s)", "translation": "", - "context": "", + "context": "Separate Appearance for Unfocused Display(s)", "reference": "", "comment": "" }, { "term": "Separate Light & Dark Themes", "translation": "", - "context": "", + "context": "Separate Light & Dark Themes", "reference": "", "comment": "" }, { "term": "Separate appearance for unfocused displays is not supported on this compositor.", "translation": "", - "context": "", + "context": "Separate appearance for unfocused displays is not supported on this compositor.", "reference": "", "comment": "" }, { "term": "Separator", "translation": "", - "context": "", + "context": "Separator", "reference": "", "comment": "" }, { "term": "Server", "translation": "", - "context": "", + "context": "Server", "reference": "", "comment": "" }, { "term": "Session Filter", "translation": "", - "context": "", + "context": "Session Filter", "reference": "", "comment": "" }, { "term": "Set Custom Device Name", "translation": "", - "context": "Audio device rename dialog title", + "context": "Set Custom Device Name", "reference": "", - "comment": "" + "comment": "Audio device rename dialog title" }, { "term": "Set custom name", "translation": "", - "context": "", + "context": "Set custom name", "reference": "", "comment": "" }, { "term": "Set custom names for your audio input devices", "translation": "", - "context": "Audio settings description", + "context": "Set custom names for your audio input devices", "reference": "", - "comment": "" + "comment": "Audio settings description" }, { "term": "Set custom names for your audio output devices", "translation": "", - "context": "Audio settings description", + "context": "Set custom names for your audio output devices", "reference": "", - "comment": "" + "comment": "Audio settings description" }, { "term": "Set different wallpapers for each connected monitor", "translation": "", - "context": "", + "context": "Set different wallpapers for each connected monitor", "reference": "", "comment": "" }, { "term": "Set different wallpapers for light and dark mode", "translation": "", - "context": "", + "context": "Set different wallpapers for light and dark mode", "reference": "", "comment": "" }, { "term": "Set initial password", "translation": "", - "context": "", + "context": "Set initial password", "reference": "", "comment": "" }, { "term": "Set key and action to save", "translation": "", - "context": "", + "context": "Set key and action to save", "reference": "", "comment": "" }, { "term": "Set notification rules", "translation": "", - "context": "", + "context": "Set notification rules", "reference": "", "comment": "" }, { "term": "Set the font size for notification body text (htmlBody)", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Set the font size for notification summary text", - "translation": "", - "context": "", + "context": "Set the font size for notification body text (htmlBody)", "reference": "", "comment": "" }, { "term": "Set the percentage at which the battery is considered low.", "translation": "", - "context": "", + "context": "Set the percentage at which the battery is considered low.", "reference": "", "comment": "" }, { "term": "Setting", "translation": "", - "context": "", + "context": "Setting", "reference": "", "comment": "" }, { "term": "Setting up...", "translation": "", - "context": "", + "context": "Setting up...", "reference": "", "comment": "" }, { "term": "Settings", "translation": "", - "context": "settings window title", + "context": "Settings", "reference": "", - "comment": "" + "comment": "settings window title" }, { "term": "Settings Search", "translation": "", - "context": "", + "context": "Settings Search", "reference": "", "comment": "" }, { "term": "Settings are read-only. Changes will not persist.", "translation": "", - "context": "read-only settings warning for NixOS home-manager users", + "context": "Settings are read-only. Changes will not persist.", "reference": "", - "comment": "" + "comment": "read-only settings warning for NixOS home-manager users" }, { "term": "Setup", "translation": "", - "context": "", + "context": "Setup", "reference": "", "comment": "" }, { "term": "Shadow Color", "translation": "", - "context": "", + "context": "Shadow Color", "reference": "", "comment": "" }, { "term": "Shadow Intensity", "translation": "", - "context": "", + "context": "Shadow Intensity", "reference": "", "comment": "" }, { "term": "Shadow Opacity", "translation": "", - "context": "", + "context": "Shadow Opacity", "reference": "", "comment": "" }, { "term": "Shadow Override", "translation": "", - "context": "bar shadow settings card", + "context": "Shadow Override", "reference": "", - "comment": "" + "comment": "bar shadow settings card" }, { "term": "Shadow blur radius in pixels", "translation": "", - "context": "", + "context": "Shadow blur radius in pixels", "reference": "", "comment": "" }, { "term": "Shadow elevation on bars and panels", "translation": "", - "context": "", + "context": "Shadow elevation on bars and panels", "reference": "", "comment": "" }, { "term": "Shadow elevation on modals and dialogs", "translation": "", - "context": "", + "context": "Shadow elevation on modals and dialogs", "reference": "", "comment": "" }, { "term": "Shadow elevation on popouts, OSDs, and dropdowns", "translation": "", - "context": "", + "context": "Shadow elevation on popouts, OSDs, and dropdowns", "reference": "", "comment": "" }, { "term": "Shadows", "translation": "", - "context": "", + "context": "Shadows", "reference": "", "comment": "" }, { "term": "Share", "translation": "", - "context": "KDE Connect share dialog title | KDE Connect share tooltip", + "context": "Share", "reference": "", - "comment": "" + "comment": "KDE Connect share dialog title | KDE Connect share tooltip" }, { "term": "Share Gamma Control Settings", "translation": "", - "context": "", + "context": "Share Gamma Control Settings", "reference": "", "comment": "" }, { "term": "Shared", "translation": "", - "context": "Phone Connect share success", + "context": "Shared", "reference": "", - "comment": "" + "comment": "Phone Connect share success" }, { "term": "Shell", "translation": "", - "context": "", + "context": "Shell", "reference": "", "comment": "" }, { "term": "Shift+Enter to copy", "translation": "", - "context": "", + "context": "Shift+Enter to copy", "reference": "", "comment": "" }, { "term": "Shift+Enter to paste", "translation": "", - "context": "", + "context": "Shift+Enter to paste", "reference": "", "comment": "" }, { "term": "Short", "translation": "", - "context": "", + "context": "Short", "reference": "", "comment": "" }, { "term": "Shortcut (%1)", "translation": "", - "context": "", + "context": "Shortcut (%1)", "reference": "", "comment": "" }, { "term": "Shortcut that opens this settings window", "translation": "", - "context": "", + "context": "Shortcut that opens this settings window", "reference": "", "comment": "" }, { "term": "Shortcuts", "translation": "", - "context": "", + "context": "Shortcuts", "reference": "", "comment": "" }, { "term": "Shortcuts (%1)", "translation": "", - "context": "", + "context": "Shortcuts (%1)", "reference": "", "comment": "" }, { "term": "Show", "translation": "", - "context": "", + "context": "Show", "reference": "", "comment": "" }, { "term": "Show 3rd Party", "translation": "", - "context": "", + "context": "Show 3rd Party", "reference": "", "comment": "" }, { "term": "Show All Tags", "translation": "", - "context": "", + "context": "Show All Tags", "reference": "", "comment": "" }, { "term": "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.", "translation": "", - "context": "", + "context": "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.", "reference": "", "comment": "" }, { "term": "Show Badge", "translation": "", - "context": "", + "context": "Show Badge", "reference": "", "comment": "" }, { "term": "Show CPU", "translation": "", - "context": "", + "context": "Show CPU", "reference": "", "comment": "" }, { "term": "Show CPU Graph", "translation": "", - "context": "", + "context": "Show CPU Graph", "reference": "", "comment": "" }, { "term": "Show CPU Temp", "translation": "", - "context": "", + "context": "Show CPU Temp", "reference": "", "comment": "" }, { "term": "Show Date", "translation": "", - "context": "", + "context": "Show Date", "reference": "", "comment": "" }, { "term": "Show Disk", "translation": "", - "context": "", + "context": "Show Disk", "reference": "", "comment": "" }, { "term": "Show Dock", "translation": "", - "context": "", + "context": "Show Dock", "reference": "", "comment": "" }, { "term": "Show Feels Like Temperature", "translation": "", - "context": "", + "context": "Show Feels Like Temperature", "reference": "", "comment": "" }, { "term": "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.", "translation": "", - "context": "", + "context": "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.", "reference": "", "comment": "" }, { "term": "Show Footer", "translation": "", - "context": "launcher footer visibility", + "context": "Show Footer", "reference": "", - "comment": "" + "comment": "launcher footer visibility" }, { "term": "Show Forecast", "translation": "", - "context": "", + "context": "Show Forecast", "reference": "", "comment": "" }, { "term": "Show GPU Temperature", "translation": "", - "context": "", + "context": "Show GPU Temperature", "reference": "", "comment": "" }, { "term": "Show Header", "translation": "", - "context": "", + "context": "Show Header", "reference": "", "comment": "" }, { "term": "Show Hibernate", "translation": "", - "context": "", + "context": "Show Hibernate", "reference": "", "comment": "" }, { "term": "Show Hour Numbers", "translation": "", - "context": "", + "context": "Show Hour Numbers", "reference": "", "comment": "" }, { "term": "Show Hourly Forecast", "translation": "", - "context": "", + "context": "Show Hourly Forecast", "reference": "", "comment": "" }, { "term": "Show Humidity", "translation": "", - "context": "", + "context": "Show Humidity", "reference": "", "comment": "" }, { "term": "Show Icon", "translation": "", - "context": "", + "context": "Show Icon", "reference": "", "comment": "" }, { "term": "Show Launcher Button", "translation": "", - "context": "", + "context": "Show Launcher Button", "reference": "", "comment": "" }, { "term": "Show Line Numbers", "translation": "", - "context": "", + "context": "Show Line Numbers", "reference": "", "comment": "" }, { "term": "Show Location", "translation": "", - "context": "", + "context": "Show Location", "reference": "", "comment": "" }, { "term": "Show Lock", "translation": "", - "context": "", + "context": "Show Lock", "reference": "", "comment": "" }, { "term": "Show Log Out", "translation": "", - "context": "", + "context": "Show Log Out", "reference": "", "comment": "" }, { "term": "Show Material Design ripple animations on interactive elements", "translation": "", - "context": "", + "context": "Show Material Design ripple animations on interactive elements", "reference": "", "comment": "" }, { "term": "Show Media Player", "translation": "", - "context": "Enable media player controls on the lock screen window", + "context": "Show Media Player", "reference": "", - "comment": "" + "comment": "Enable media player controls on the lock screen window" }, { "term": "Show Memory", "translation": "", - "context": "", + "context": "Show Memory", "reference": "", "comment": "" }, { "term": "Show Memory Graph", "translation": "", - "context": "", + "context": "Show Memory Graph", "reference": "", "comment": "" }, { "term": "Show Memory in GB", "translation": "", - "context": "", + "context": "Show Memory in GB", "reference": "", "comment": "" }, { "term": "Show Mode Chips", "translation": "", - "context": "", + "context": "Show Mode Chips", "reference": "", "comment": "" }, { "term": "Show Network", "translation": "", - "context": "", + "context": "Show Network", "reference": "", "comment": "" }, { "term": "Show Network Graph", "translation": "", - "context": "", + "context": "Show Network Graph", "reference": "", "comment": "" }, { "term": "Show Occupied Workspaces Only", "translation": "", - "context": "", + "context": "Show Occupied Workspaces Only", "reference": "", "comment": "" }, { "term": "Show Overflow Badge Count", "translation": "", - "context": "", + "context": "Show Overflow Badge Count", "reference": "", "comment": "" }, { "term": "Show Package Source Badges", "translation": "", - "context": "", + "context": "Show Package Source Badges", "reference": "", "comment": "" }, { "term": "Show Password Field", "translation": "", - "context": "Enable password field display on the lock screen window", + "context": "Show Password Field", "reference": "", - "comment": "" + "comment": "Enable password field display on the lock screen window" }, { "term": "Show Percentage", "translation": "", - "context": "", + "context": "Show Percentage", "reference": "", "comment": "" }, { "term": "Show Power Actions", "translation": "", - "context": "Enable power action icon on the lock screen window", + "context": "Show Power Actions", "reference": "", - "comment": "" + "comment": "Enable power action icon on the lock screen window" }, { "term": "Show Power Off", "translation": "", - "context": "", + "context": "Show Power Off", "reference": "", "comment": "" }, { "term": "Show Precipitation Probability", "translation": "", - "context": "", + "context": "Show Precipitation Probability", "reference": "", "comment": "" }, { "term": "Show Pressure", "translation": "", - "context": "", + "context": "Show Pressure", "reference": "", "comment": "" }, { "term": "Show Profile Image", "translation": "", - "context": "Enable profile image display on the lock screen window", + "context": "Show Profile Image", "reference": "", - "comment": "" + "comment": "Enable profile image display on the lock screen window" }, { "term": "Show Reboot", "translation": "", - "context": "", + "context": "Show Reboot", "reference": "", "comment": "" }, { "term": "Show Remaining Time", "translation": "", - "context": "", + "context": "Show Remaining Time", "reference": "", "comment": "" }, { "term": "Show Restart DMS", "translation": "", - "context": "", + "context": "Show Restart DMS", "reference": "", "comment": "" }, { "term": "Show Saved Items", "translation": "", - "context": "", + "context": "Show Saved Items", "reference": "", "comment": "" }, { "term": "Show Seconds", "translation": "", - "context": "", + "context": "Show Seconds", "reference": "", "comment": "" }, { "term": "Show Sunrise/Sunset", "translation": "", - "context": "", + "context": "Show Sunrise/Sunset", "reference": "", "comment": "" }, { "term": "Show Suspend", "translation": "", - "context": "", + "context": "Show Suspend", "reference": "", "comment": "" }, { "term": "Show Swap", "translation": "", - "context": "", + "context": "Show Swap", "reference": "", "comment": "" }, { "term": "Show Switch User", "translation": "", - "context": "", + "context": "Show Switch User", "reference": "", "comment": "" }, { "term": "Show System Date", "translation": "", - "context": "Enable system date display on the lock screen window", + "context": "Show System Date", "reference": "", - "comment": "" + "comment": "Enable system date display on the lock screen window" }, { "term": "Show System Icons", "translation": "", - "context": "Enable system status icons on the lock screen window", + "context": "Show System Icons", "reference": "", - "comment": "" + "comment": "Enable system status icons on the lock screen window" }, { "term": "Show System Time", "translation": "", - "context": "Enable system time display on the lock screen window", + "context": "Show System Time", "reference": "", - "comment": "" + "comment": "Enable system time display on the lock screen window" }, { "term": "Show Top Processes", "translation": "", - "context": "", + "context": "Show Top Processes", "reference": "", "comment": "" }, { "term": "Show Trash in Dock", "translation": "", - "context": "", + "context": "Show Trash in Dock", "reference": "", "comment": "" }, { "term": "Show Weather Condition", "translation": "", - "context": "", + "context": "Show Weather Condition", "reference": "", "comment": "" }, { "term": "Show Week Number", "translation": "", - "context": "", + "context": "Show Week Number", "reference": "", "comment": "" }, { "term": "Show Welcome", "translation": "", - "context": "", + "context": "Show Welcome", "reference": "", "comment": "" }, { "term": "Show Wind Speed", "translation": "", - "context": "", + "context": "Show Wind Speed", "reference": "", "comment": "" }, { "term": "Show Workspace Apps", "translation": "", - "context": "", + "context": "Show Workspace Apps", "reference": "", "comment": "" }, { "term": "Show a bar that drains as the popup's auto-dismiss timer runs", "translation": "", - "context": "", + "context": "Show a bar that drains as the popup's auto-dismiss timer runs", "reference": "", "comment": "" }, { "term": "Show a notification when battery reaches the charge limit.", "translation": "", - "context": "", + "context": "Show a notification when battery reaches the charge limit.", "reference": "", "comment": "" }, { "term": "Show a warning popup when battery is running low.", "translation": "", - "context": "", + "context": "Show a warning popup when battery is running low.", "reference": "", "comment": "" }, { "term": "Show all 9 tags instead of only occupied tags", "translation": "", - "context": "", + "context": "Show all 9 tags instead of only occupied tags", "reference": "", "comment": "" }, { "term": "Show an outline ring around the focused workspace indicator", "translation": "", - "context": "", + "context": "Show an outline ring around the focused workspace indicator", "reference": "", "comment": "" }, { "term": "Show an urgent alert when battery reaches critical level.", "translation": "", - "context": "", + "context": "Show an urgent alert when battery reaches critical level.", "reference": "", "comment": "" }, { "term": "Show cava audio visualizer in media widget", "translation": "", - "context": "", + "context": "Show cava audio visualizer in media widget", "reference": "", "comment": "" }, { "term": "Show darkened overlay behind modal dialogs", "translation": "", - "context": "", + "context": "Show darkened overlay behind modal dialogs", "reference": "", "comment": "" }, { "term": "Show device", "translation": "", - "context": "", + "context": "Show device", "reference": "", "comment": "" }, { "term": "Show dock when floating windows don't overlap its area", "translation": "", - "context": "", + "context": "Show dock when floating windows don't overlap its area", "reference": "", "comment": "" }, { "term": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", "translation": "", - "context": "", + "context": "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.", "reference": "", "comment": "" }, { "term": "Show during Niri overview", "translation": "", - "context": "", + "context": "Show during Niri overview", "reference": "", "comment": "" }, { "term": "Show foreground surfaces on panels for stronger contrast", "translation": "", - "context": "", + "context": "Show foreground surfaces on panels for stronger contrast", "reference": "", "comment": "" }, { "term": "Show in GB", "translation": "", - "context": "", + "context": "Show in GB", "reference": "", "comment": "" }, { "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", "translation": "", - "context": "", + "context": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", "reference": "", "comment": "" }, { "term": "Show mode tabs and keyboard hints at the bottom.", "translation": "", - "context": "launcher footer description", + "context": "Show mode tabs and keyboard hints at the bottom.", "reference": "", - "comment": "" + "comment": "launcher footer description" }, { "term": "Show mount path", "translation": "", - "context": "toggle in control center disk usage widget to turn mount path display on or off", + "context": "Show mount path", "reference": "", - "comment": "" - }, - { - "term": "Show notification popups only on the currently focused monitor", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show notifications only on the currently focused monitor", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "toggle in control center disk usage widget to turn mount path display on or off" }, { "term": "Show on Last Display", "translation": "", - "context": "", + "context": "Show on Last Display", "reference": "", "comment": "" }, { "term": "Show on Overlay", "translation": "", - "context": "", + "context": "Show on Overlay", "reference": "", "comment": "" }, { "term": "Show on Overview", "translation": "", - "context": "", + "context": "Show on Overview", "reference": "", "comment": "" }, { "term": "Show on Overview Only", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on all connected displays", - "translation": "", - "context": "", + "context": "Show on Overview Only", "reference": "", "comment": "" }, { "term": "Show on screens:", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when brightness changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when caps lock state changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when cycling audio output devices", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when idle inhibitor state changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when media player status changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when media player volume changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when microphone is muted/unmuted", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when power profile changes", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show on-screen display when volume changes", - "translation": "", - "context": "", + "context": "Show on screens:", "reference": "", "comment": "" }, { "term": "Show the bar only when no windows are open", "translation": "", - "context": "", + "context": "Show the bar only when no windows are open", "reference": "", "comment": "" }, { "term": "Show the bar when niri overview is active", "translation": "", - "context": "", + "context": "Show the bar when niri overview is active", "reference": "", "comment": "" }, { "term": "Show weather information in top bar and control center", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Show week number in the calendar", - "translation": "", - "context": "", + "context": "Show weather information in top bar and control center", "reference": "", "comment": "" }, { "term": "Show workspace index numbers in the top bar workspace switcher", "translation": "", - "context": "", + "context": "Show workspace index numbers in the top bar workspace switcher", "reference": "", "comment": "" }, { "term": "Show workspace name on horizontal bars, and first letter on vertical bars", "translation": "", - "context": "", + "context": "Show workspace name on horizontal bars, and first letter on vertical bars", "reference": "", "comment": "" }, { "term": "Show workspaces of the currently focused monitor", "translation": "", - "context": "", + "context": "Show workspaces of the currently focused monitor", "reference": "", "comment": "" }, { "term": "Shows all running applications with focus indication", "translation": "", - "context": "", + "context": "Shows all running applications with focus indication", "reference": "", "comment": "" }, { "term": "Shows current workspace and allows switching", "translation": "", - "context": "", + "context": "Shows current workspace and allows switching", "reference": "", "comment": "" }, { "term": "Shows when caps lock is active", "translation": "", - "context": "", + "context": "Shows when caps lock is active", "reference": "", "comment": "" }, { "term": "Shows when microphone, camera, or screen sharing is active", "translation": "", - "context": "", + "context": "Shows when microphone, camera, or screen sharing is active", "reference": "", "comment": "" }, { "term": "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size", "translation": "", - "context": "", + "context": "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size", "reference": "", "comment": "" }, { "term": "Shutdown", "translation": "", - "context": "", + "context": "Shutdown", "reference": "", "comment": "" }, { "term": "Signal", "translation": "", - "context": "", + "context": "Signal", "reference": "", "comment": "" }, { "term": "Signal Strength", "translation": "", - "context": "KDE Connect signal strength label", + "context": "Signal Strength", "reference": "", - "comment": "" - }, - { - "term": "Signal:", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "KDE Connect signal strength label" }, { "term": "Silence for a while", "translation": "", - "context": "", + "context": "Silence for a while", "reference": "", "comment": "" }, { "term": "Silence notifications", "translation": "", - "context": "", + "context": "Silence notifications", "reference": "", "comment": "" }, { "term": "Silence system sounds while media is playing", "translation": "", - "context": "", + "context": "Silence system sounds while media is playing", "reference": "", "comment": "" }, { "term": "Single-Line Popup", "translation": "", - "context": "", + "context": "Single-Line Popup", "reference": "", "comment": "" }, { "term": "Size", "translation": "", - "context": "launcher size option", + "context": "Size", "reference": "", - "comment": "" + "comment": "launcher size option" }, { "term": "Size Constraints", "translation": "", - "context": "", + "context": "Size Constraints", "reference": "", "comment": "" }, { "term": "Size Offset", "translation": "", - "context": "", + "context": "Size Offset", "reference": "", "comment": "" }, { "term": "Sizing", "translation": "", - "context": "", + "context": "Sizing", "reference": "", "comment": "" }, { "term": "Skip", "translation": "", - "context": "greeter skip button", + "context": "Skip", "reference": "", - "comment": "" + "comment": "greeter skip button" }, { "term": "Skip confirmation", "translation": "", - "context": "", + "context": "Skip confirmation", "reference": "", "comment": "" }, { "term": "Skip setup", "translation": "", - "context": "greeter skip button tooltip", + "context": "Skip setup", "reference": "", - "comment": "" + "comment": "greeter skip button tooltip" }, { "term": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.", "translation": "", - "context": "", + "context": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.", "reference": "", "comment": "" }, { "term": "Slideout", "translation": "", - "context": "", + "context": "Slideout", "reference": "", "comment": "" }, { "term": "Small", "translation": "", - "context": "", + "context": "Small", "reference": "", "comment": "" }, { "term": "Smartcard Authentication", "translation": "", - "context": "", + "context": "Smartcard Authentication", "reference": "", "comment": "" }, { "term": "Snap", "translation": "", - "context": "", + "context": "Snap", "reference": "", "comment": "" }, { "term": "Snow", "translation": "", - "context": "", + "context": "Snow", "reference": "", "comment": "" }, { "term": "Some plugins require a newer version of DMS:", "translation": "", - "context": "", + "context": "Some plugins require a newer version of DMS:", "reference": "", "comment": "" }, { "term": "Sort Alphabetically", "translation": "", - "context": "", + "context": "Sort Alphabetically", "reference": "", "comment": "" }, { "term": "Sort By", "translation": "", - "context": "", + "context": "Sort By", "reference": "", "comment": "" }, { "term": "Sort wallpapers", "translation": "", - "context": "", + "context": "Sort wallpapers", "reference": "", "comment": "" }, { "term": "Sorting & Layout", "translation": "", - "context": "", + "context": "Sorting & Layout", "reference": "", "comment": "" }, { "term": "Sound Theme", "translation": "", - "context": "", + "context": "Sound Theme", "reference": "", "comment": "" }, { "term": "Sounds", "translation": "", - "context": "", + "context": "Sounds", "reference": "", "comment": "" }, { "term": "Source: %1", "translation": "", - "context": "", + "context": "Source: %1", "reference": "", "comment": "" }, { "term": "Space between the bar and screen edges", "translation": "", - "context": "", + "context": "Space between the bar and screen edges", "reference": "", "comment": "" }, { "term": "Space between windows", "translation": "", - "context": "", + "context": "Space between windows", "reference": "", "comment": "" }, { "term": "Space between windows and screen edges", "translation": "", - "context": "", + "context": "Space between windows and screen edges", "reference": "", "comment": "" }, { "term": "Spacer", "translation": "", - "context": "", + "context": "Spacer", "reference": "", "comment": "" }, { "term": "Spacing", "translation": "", - "context": "", + "context": "Spacing", "reference": "", "comment": "" }, { "term": "Speaker settings", "translation": "", - "context": "", + "context": "Speaker settings", "reference": "", "comment": "" }, { "term": "Speed", "translation": "", - "context": "", + "context": "Speed", "reference": "", "comment": "" }, { "term": "Spool Area Full", "translation": "", - "context": "", + "context": "Spool Area Full", "reference": "", "comment": "" }, { "term": "Spotlight", "translation": "", - "context": "", + "context": "Spotlight", "reference": "", "comment": "" }, { "term": "Spotlight Bar", "translation": "", - "context": "", + "context": "Spotlight Bar", "reference": "", "comment": "" }, { "term": "Spotlight Bar Shortcut", "translation": "", - "context": "", + "context": "Spotlight Bar Shortcut", "reference": "", "comment": "" }, { "term": "Spotlight Search", "translation": "", - "context": "", + "context": "Spotlight Search", "reference": "", "comment": "" }, { "term": "Square Corners", "translation": "", - "context": "", + "context": "Square Corners", "reference": "", "comment": "" }, { "term": "Stacked", "translation": "", - "context": "", + "context": "Stacked", "reference": "", "comment": "" }, { "term": "Standard", "translation": "", - "context": "", + "context": "Standard", "reference": "", "comment": "" }, { "term": "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.", "translation": "", - "context": "", + "context": "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.", "reference": "", "comment": "" }, { "term": "Start", "translation": "", - "context": "", + "context": "Start", "reference": "", "comment": "" }, { "term": "Start KDE Connect or Valent to use this plugin", "translation": "", - "context": "Phone Connect daemon hint", + "context": "Start KDE Connect or Valent to use this plugin", "reference": "", - "comment": "" + "comment": "Phone Connect daemon hint" }, { "term": "Start typing your notes here...", "translation": "", - "context": "", + "context": "Start typing your notes here...", "reference": "", "comment": "" }, { "term": "State", "translation": "", - "context": "", + "context": "State", "reference": "", "comment": "" }, { "term": "Status", "translation": "", - "context": "", + "context": "Status", "reference": "", "comment": "" }, { "term": "Stop ignoring %1", "translation": "", - "context": "", + "context": "Stop ignoring %1", "reference": "", "comment": "" }, { "term": "Stopped", "translation": "", - "context": "", + "context": "Stopped", "reference": "", "comment": "" }, { "term": "Stopped Partly", "translation": "", - "context": "", + "context": "Stopped Partly", "reference": "", "comment": "" }, { "term": "Stopping", "translation": "", - "context": "", + "context": "Stopping", "reference": "", "comment": "" }, { "term": "Stretch", "translation": "", - "context": "wallpaper fill mode", + "context": "Stretch", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Stretch widget icons to fill the available bar height", "translation": "", - "context": "", + "context": "Stretch widget icons to fill the available bar height", "reference": "", "comment": "" }, { "term": "Stretch widget text to fill the available bar height", "translation": "", - "context": "", + "context": "Stretch widget text to fill the available bar height", "reference": "", "comment": "" }, { "term": "Strict auto-hide", "translation": "", - "context": "Dank bar setting: hide the bar when the pointer leaves even if a menu or bar popover is still open", + "context": "Strict auto-hide", "reference": "", - "comment": "" + "comment": "Dank bar setting: hide the bar when the pointer leaves even if a menu or bar popover is still open" }, { "term": "Stripes", "translation": "", - "context": "wallpaper transition option", + "context": "Stripes", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Summary", "translation": "", - "context": "notification rule match field option", + "context": "Summary", "reference": "", - "comment": "" + "comment": "notification rule match field option" }, { "term": "Summary Font Size", "translation": "", - "context": "", + "context": "Summary Font Size", "reference": "", "comment": "" }, { "term": "Sunrise", "translation": "", - "context": "", + "context": "Sunrise", "reference": "", "comment": "" }, { "term": "Sunset", "translation": "", - "context": "", + "context": "Sunset", "reference": "", "comment": "" }, { "term": "Suppress Duplicate Notifications", "translation": "", - "context": "", + "context": "Suppress Duplicate Notifications", "reference": "", "comment": "" }, { "term": "Suppress notification popups while enabled", "translation": "", - "context": "", + "context": "Suppress notification popups while enabled", "reference": "", "comment": "" }, { "term": "Surface", "translation": "", - "context": "color option | shadow color option | widget background color option | workspace color option", + "context": "Surface", "reference": "", - "comment": "" + "comment": "color option | shadow color option | widget background color option | workspace color option" }, { "term": "Surface Behavior", "translation": "", - "context": "", + "context": "Surface Behavior", "reference": "", "comment": "" }, { "term": "Surface Border Color", "translation": "", - "context": "", + "context": "Surface Border Color", "reference": "", "comment": "" }, { "term": "Surface Border Opacity", "translation": "", - "context": "", + "context": "Surface Border Opacity", "reference": "", "comment": "" }, { "term": "Surface Container", "translation": "", - "context": "widget background color option | workspace color option", + "context": "Surface Container", "reference": "", - "comment": "" + "comment": "widget background color option | workspace color option" }, { "term": "Surface High", "translation": "", - "context": "widget background color option | workspace color option", + "context": "Surface High", "reference": "", - "comment": "" + "comment": "widget background color option | workspace color option" }, { "term": "Surface Highest", "translation": "", - "context": "workspace color option", + "context": "Surface Highest", "reference": "", - "comment": "" + "comment": "workspace color option" }, { "term": "Surface Opacity", "translation": "", - "context": "", + "context": "Surface Opacity", "reference": "", "comment": "" }, { "term": "Surface Text", "translation": "", - "context": "workspace color option", + "context": "Surface Text", "reference": "", - "comment": "" + "comment": "workspace color option" }, { "term": "Surface Variant", "translation": "", - "context": "button color option | shadow color option | tile color option", + "context": "Surface Variant", "reference": "", - "comment": "" + "comment": "button color option | shadow color option | tile color option" }, { "term": "Surfaces emerge flush from the bar", "translation": "", - "context": "", + "context": "Surfaces emerge flush from the bar", "reference": "", "comment": "" }, { "term": "Surfaces float independently of the frame", "translation": "", - "context": "", + "context": "Surfaces float independently of the frame", "reference": "", "comment": "" }, { "term": "Suspend", "translation": "", - "context": "", + "context": "Suspend", "reference": "", "comment": "" }, { "term": "Suspend behavior", "translation": "", - "context": "", + "context": "Suspend behavior", "reference": "", "comment": "" }, { "term": "Suspend system after", "translation": "", - "context": "", + "context": "Suspend system after", "reference": "", "comment": "" }, { "term": "Suspend then Hibernate", "translation": "", - "context": "", + "context": "Suspend then Hibernate", "reference": "", "comment": "" }, { "term": "Sway Website", "translation": "", - "context": "", + "context": "Sway Website", "reference": "", "comment": "" }, { "term": "Switch User", "translation": "", - "context": "", + "context": "Switch User", "reference": "", "comment": "" }, { "term": "Switch between display configurations", "translation": "", - "context": "", + "context": "Switch between display configurations", "reference": "", "comment": "" }, { "term": "Switch to power profile", "translation": "", - "context": "", + "context": "Switch to power profile", "reference": "", "comment": "" }, { "term": "Sync", "translation": "", - "context": "", + "context": "Sync", "reference": "", "comment": "" }, { "term": "Sync Bar Inset Padding", "translation": "", - "context": "", + "context": "Sync Bar Inset Padding", "reference": "", "comment": "" }, { "term": "Sync Mode with Portal", "translation": "", - "context": "", + "context": "Sync Mode with Portal", "reference": "", "comment": "" }, { "term": "Sync Popouts & Modals", "translation": "", - "context": "", + "context": "Sync Popouts & Modals", "reference": "", "comment": "" }, { "term": "Sync Position Across Screens", "translation": "", - "context": "", + "context": "Sync Position Across Screens", "reference": "", "comment": "" }, { "term": "Sync applies your theme and settings to the login screen. Other users should run dms greeter sync --profile instead of a full sync. Authentication changes apply automatically.", "translation": "", - "context": "", + "context": "Sync applies your theme and settings to the login screen. Other users should run dms greeter sync --profile instead of a full sync. Authentication changes apply automatically.", "reference": "", "comment": "" }, { "term": "Sync completed successfully.", "translation": "", - "context": "", + "context": "Sync completed successfully.", "reference": "", "comment": "" }, { "term": "Sync dark mode with settings portals for system-wide theme hints", "translation": "", - "context": "", + "context": "Sync dark mode with settings portals for system-wide theme hints", "reference": "", "comment": "" }, { "term": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", "translation": "", - "context": "", + "context": "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.", "reference": "", "comment": "" }, { "term": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "translation": "", - "context": "", + "context": "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.", "reference": "", "comment": "" }, { "term": "Sync to apply", "translation": "", - "context": "", + "context": "Sync to apply", "reference": "", "comment": "" }, { "term": "Syncing...", "translation": "", - "context": "", + "context": "Syncing...", "reference": "", "comment": "" }, { "term": "System", "translation": "", - "context": "", + "context": "System", "reference": "", "comment": "" }, { "term": "System App Theming", "translation": "", - "context": "", + "context": "System App Theming", "reference": "", "comment": "" }, { "term": "System Check", "translation": "", - "context": "greeter doctor page title", + "context": "System Check", "reference": "", - "comment": "" + "comment": "greeter doctor page title" }, { "term": "System Default", "translation": "", - "context": "date format option", + "context": "System Default", "reference": "", - "comment": "" + "comment": "date format option" }, { "term": "System Information", "translation": "", - "context": "system info header in system monitor", + "context": "System Information", "reference": "", - "comment": "" + "comment": "system info header in system monitor" }, { "term": "System Monitor", "translation": "", - "context": "System monitor widget name | sysmon window title", + "context": "System Monitor", "reference": "", - "comment": "" + "comment": "System monitor widget name | sysmon window title" }, { "term": "System Monitor Unavailable", "translation": "", - "context": "", + "context": "System Monitor Unavailable", "reference": "", "comment": "" }, { "term": "System Sounds", "translation": "", - "context": "", + "context": "System Sounds", "reference": "", "comment": "" }, { "term": "System Tray", "translation": "", - "context": "", + "context": "System Tray", "reference": "", "comment": "" }, { "term": "System Tray Icon Tint", "translation": "", - "context": "", + "context": "System Tray Icon Tint", "reference": "", "comment": "" }, { "term": "System Update", "translation": "", - "context": "", + "context": "System Update", "reference": "", "comment": "" }, { "term": "System Updater", "translation": "", - "context": "", + "context": "System Updater", "reference": "", "comment": "" }, { "term": "System Updates", "translation": "", - "context": "", + "context": "System Updates", "reference": "", "comment": "" }, { "term": "System notification area icons", "translation": "", - "context": "", + "context": "System notification area icons", "reference": "", "comment": "" }, { "term": "System sounds are not available. Install %1 for sound support.", "translation": "", - "context": "", + "context": "System sounds are not available. Install %1 for sound support.", "reference": "", "comment": "" }, { "term": "System theme toggle", "translation": "", - "context": "", + "context": "System theme toggle", "reference": "", "comment": "" }, { "term": "System toast notifications", "translation": "", - "context": "", + "context": "System toast notifications", "reference": "", "comment": "" }, { "term": "Systemd Override generated", "translation": "", - "context": "", + "context": "Systemd Override generated", "reference": "", "comment": "" }, { "term": "Tab", "translation": "", - "context": "", + "context": "Tab", "reference": "", "comment": "" }, { "term": "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select", "translation": "", - "context": "", + "context": "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select", "reference": "", "comment": "" }, { "term": "Tags", "translation": "", - "context": "", + "context": "Tags", "reference": "", "comment": "" }, { "term": "Tags: %1", "translation": "", - "context": "Tailscale device tags", + "context": "Tags: %1", "reference": "", - "comment": "" + "comment": "Tailscale device tags" }, { "term": "Tailscale", "translation": "", - "context": "Tailscale mesh VPN widget title", + "context": "Tailscale", "reference": "", - "comment": "" + "comment": "Tailscale mesh VPN widget title" }, { "term": "Tailscale Network", "translation": "", - "context": "Tailscale control center widget description", + "context": "Tailscale Network", "reference": "", - "comment": "" + "comment": "Tailscale control center widget description" }, { "term": "Tailscale action failed", "translation": "", - "context": "Toast shown when a Tailscale write action is rejected", + "context": "Tailscale action failed", "reference": "", - "comment": "" + "comment": "Toast shown when a Tailscale write action is rejected" }, { "term": "Tailscale not available", "translation": "", - "context": "Warning when Tailscale service is not running", + "context": "Tailscale not available", "reference": "", - "comment": "" + "comment": "Warning when Tailscale service is not running" }, { "term": "Terminal", "translation": "", "context": "Terminal", "reference": "", - "comment": "" + "comment": "Terminal" }, { "term": "Terminal additional parameters", "translation": "", - "context": "", + "context": "Terminal additional parameters", "reference": "", "comment": "" }, { "term": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.", "translation": "", - "context": "", + "context": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.", "reference": "", "comment": "" }, { "term": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "translation": "", - "context": "", + "context": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.", "reference": "", "comment": "" }, { - "term": "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.", + "term": "Terminal fallback opened. Complete authentication there; it will close automatically when done.", "translation": "", - "context": "", + "context": "Terminal fallback opened. Complete authentication there; it will close automatically when done.", "reference": "", "comment": "" }, { - "term": "Terminal fallback opened. Complete sync there; it will close automatically when done.", + "term": "Terminal opened. Complete authentication there; it will close automatically when done.", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Terminal multiplexer backend to use", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Terminal opened. Complete authentication setup there; it will close automatically when done.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Terminal opened. Complete sync authentication there; it will close automatically when done.", - "translation": "", - "context": "", + "context": "Terminal opened. Complete authentication there; it will close automatically when done.", "reference": "", "comment": "" }, { "term": "Terminals - Always use Dark Theme", "translation": "", - "context": "", + "context": "Terminals - Always use Dark Theme", "reference": "", "comment": "" }, { "term": "Tertiary", "translation": "", - "context": "workspace color option", + "context": "Tertiary", "reference": "", - "comment": "" + "comment": "workspace color option" }, { "term": "Tertiary Container", "translation": "", - "context": "widget background color option | workspace color option", + "context": "Tertiary Container", "reference": "", - "comment": "" + "comment": "widget background color option | workspace color option" }, { "term": "Test Connection", "translation": "", - "context": "Button to test connection to a printer by IP address", + "context": "Test Connection", "reference": "", - "comment": "" + "comment": "Button to test connection to a printer by IP address" }, { "term": "Test Page", "translation": "", - "context": "", + "context": "Test Page", "reference": "", "comment": "" }, { "term": "Test page sent to printer", "translation": "", - "context": "", + "context": "Test page sent to printer", "reference": "", "comment": "" }, { "term": "Testing...", "translation": "", - "context": "Button state while testing printer connection", + "context": "Testing...", "reference": "", - "comment": "" + "comment": "Button state while testing printer connection" }, { "term": "Text", "translation": "", - "context": "KDE Connect share text button | text color", + "context": "Text", "reference": "", - "comment": "" + "comment": "KDE Connect share text button | text color" }, { "term": "Text Color", "translation": "", - "context": "shadow color option | surface border color", + "context": "Text Color", "reference": "", - "comment": "" + "comment": "shadow color option | surface border color" }, { "term": "Text Editor", "translation": "", "context": "Text Editor", "reference": "", - "comment": "" + "comment": "Text Editor" }, { "term": "Text Rendering", "translation": "", - "context": "", + "context": "Text Rendering", "reference": "", "comment": "" }, { "term": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", "translation": "", - "context": "dgop unavailable error message", + "context": "The 'dgop' tool is required for system monitoring.\nPlease install dgop to use this feature.", "reference": "", - "comment": "" + "comment": "dgop unavailable error message" }, { "term": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", "translation": "", - "context": "", + "context": "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.", "reference": "", "comment": "" }, { "term": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", "translation": "", - "context": "", + "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": "", "comment": "" }, { "term": "The custom command used when attaching to sessions (receives the session name as the first argument)", "translation": "", - "context": "", + "context": "The custom command used when attaching to sessions (receives the session name as the first argument)", "reference": "", "comment": "" }, { "term": "The job queue of this printer is empty", "translation": "", - "context": "", + "context": "The job queue of this printer is empty", "reference": "", "comment": "" }, { "term": "The rule applies to any window matching one of these.", "translation": "", - "context": "", + "context": "The rule applies to any window matching one of these.", "reference": "", "comment": "" }, { "term": "Theme & Colors", "translation": "", - "context": "greeter settings link", + "context": "Theme & Colors", "reference": "", - "comment": "" + "comment": "greeter settings link" }, { "term": "Theme Color", "translation": "", - "context": "", + "context": "Theme Color", "reference": "", "comment": "" }, { "term": "Theme Registry", "translation": "", - "context": "greeter feature card title", + "context": "Theme Registry", "reference": "", - "comment": "" + "comment": "greeter feature card title" }, { "term": "Theme color used for the border", "translation": "", - "context": "", + "context": "Theme color used for the border", "reference": "", "comment": "" }, { "term": "Theme color used for the widget outline", "translation": "", - "context": "", + "context": "Theme color used for the widget outline", "reference": "", "comment": "" }, { "term": "Theme worker failed (%1)", "translation": "", - "context": "", + "context": "Theme worker failed (%1)", "reference": "", "comment": "" }, { "term": "Themes", "translation": "", - "context": "greeter themes link", + "context": "Themes", "reference": "", - "comment": "" + "comment": "greeter themes link" }, { "term": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)", "translation": "", - "context": "", + "context": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)", "reference": "", "comment": "" }, { "term": "Thickness", "translation": "", - "context": "border thickness", + "context": "Thickness", "reference": "", - "comment": "" + "comment": "border thickness" }, { "term": "Thin", "translation": "", - "context": "font weight", + "context": "Thin", "reference": "", - "comment": "" + "comment": "font weight" }, { "term": "Third-Party Plugin Warning", "translation": "", - "context": "", + "context": "Third-Party Plugin Warning", "reference": "", "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.", "translation": "", - "context": "", + "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": "", "comment": "" }, { "term": "This bind is overridden by config.kdl", "translation": "", - "context": "", + "context": "This bind is overridden by config.kdl", "reference": "", "comment": "" }, { "term": "This device", "translation": "", - "context": "Label for the user's own device in Tailscale", + "context": "This device", "reference": "", - "comment": "" + "comment": "Label for the user's own device in Tailscale" }, { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.", + "term": "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing layout settings.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.", - "translation": "", - "context": "", + "context": "This install is still using hyprland.conf. Run dms setup to migrate before changing these settings.", "reference": "", "comment": "" }, { "term": "This may take a few seconds", "translation": "", - "context": "Loading overlay subtitle", + "context": "This may take a few seconds", "reference": "", - "comment": "" + "comment": "Loading overlay subtitle" }, { "term": "This output is disabled in the current profile", "translation": "", - "context": "", + "context": "This output is disabled in the current profile", "reference": "", "comment": "" }, { "term": "This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json", "translation": "", - "context": "", + "context": "This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json", "reference": "", "comment": "" }, { "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.", "translation": "", - "context": "", + "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": "", "comment": "" }, { "term": "This will delete all unpinned entries. %1 pinned entries will be kept.", "translation": "", - "context": "", + "context": "This will delete all unpinned entries. %1 pinned entries will be kept.", "reference": "", "comment": "" }, { "term": "This will permanently delete all clipboard history.", "translation": "", - "context": "", + "context": "This will permanently delete all clipboard history.", "reference": "", "comment": "" }, { "term": "This will permanently remove this saved clipboard item. This action cannot be undone.", "translation": "", - "context": "", + "context": "This will permanently remove this saved clipboard item. This action cannot be undone.", "reference": "", "comment": "" }, { "term": "Thunderstorm", "translation": "", - "context": "", + "context": "Thunderstorm", "reference": "", "comment": "" }, { "term": "Thunderstorm with Hail", "translation": "", - "context": "", + "context": "Thunderstorm with Hail", "reference": "", "comment": "" }, { "term": "Tile", "translation": "", - "context": "wallpaper fill mode", + "context": "Tile", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Tile Horizontally", "translation": "", - "context": "wallpaper fill mode", + "context": "Tile Horizontally", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Tile Vertically", "translation": "", - "context": "wallpaper fill mode", + "context": "Tile Vertically", "reference": "", - "comment": "" + "comment": "wallpaper fill mode" }, { "term": "Tiled", "translation": "", - "context": "", + "context": "Tiled", "reference": "", "comment": "" }, { "term": "Tiled State", "translation": "", - "context": "", + "context": "Tiled State", "reference": "", "comment": "" }, { "term": "Tiling", "translation": "", - "context": "", + "context": "Tiling", "reference": "", "comment": "" }, { "term": "Time", "translation": "", - "context": "theme auto mode tab | wallpaper cycling mode tab", + "context": "Time", "reference": "", - "comment": "" + "comment": "theme auto mode tab | wallpaper cycling mode tab" }, { "term": "Time & Date Locale", "translation": "", - "context": "", + "context": "Time & Date Locale", "reference": "", "comment": "" }, { "term": "Time & Weather", "translation": "", - "context": "", + "context": "Time & Weather", "reference": "", "comment": "" }, { "term": "Time Format", "translation": "", - "context": "", + "context": "Time Format", "reference": "", "comment": "" }, { "term": "Time remaining: %1", "translation": "", - "context": "", + "context": "Time remaining: %1", "reference": "", "comment": "" }, { "term": "Time to rest on a widget before its popout opens", "translation": "", - "context": "", + "context": "Time to rest on a widget before its popout opens", "reference": "", "comment": "" }, { "term": "Time to wait before hiding after the pointer leaves", "translation": "", - "context": "", + "context": "Time to wait before hiding after the pointer leaves", "reference": "", "comment": "" }, { "term": "Time until full: %1", "translation": "", - "context": "", + "context": "Time until full: %1", "reference": "", "comment": "" }, { "term": "Timed Out", "translation": "", - "context": "", + "context": "Timed Out", "reference": "", "comment": "" }, { "term": "Timeout Progress Bar", "translation": "", - "context": "", + "context": "Timeout Progress Bar", "reference": "", "comment": "" }, { - "term": "Timeout for critical priority notifications", + "term": "Timeouts", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Timeout for low priority notifications", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Timeout for normal priority notifications", - "translation": "", - "context": "", + "context": "Timeouts", "reference": "", "comment": "" }, { "term": "Tint Saturation", "translation": "", - "context": "", + "context": "Tint Saturation", "reference": "", "comment": "" }, { "term": "Tint Strength", "translation": "", - "context": "", + "context": "Tint Strength", "reference": "", "comment": "" }, { "term": "Title", "translation": "", - "context": "", + "context": "Title", "reference": "", "comment": "" }, { "term": "Title (optional)", "translation": "", - "context": "", + "context": "Title (optional)", "reference": "", "comment": "" }, { "term": "Title is required", "translation": "", - "context": "", + "context": "Title is required", "reference": "", "comment": "" }, { "term": "Title regex (optional)", "translation": "", - "context": "", + "context": "Title regex (optional)", "reference": "", "comment": "" }, { "term": "To Full", "translation": "", - "context": "", + "context": "To Full", "reference": "", "comment": "" }, { "term": "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).", "translation": "", - "context": "", + "context": "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).", "reference": "", "comment": "" }, { "term": "To update, run the following command:", "translation": "", - "context": "", + "context": "To update, run the following command:", "reference": "", "comment": "" }, { "term": "To use this DMS bind, remove or change the keybind in your config.kdl", "translation": "", - "context": "", + "context": "To use this DMS bind, remove or change the keybind in your config.kdl", "reference": "", "comment": "" }, { "term": "Toast", "translation": "", - "context": "", + "context": "Toast", "reference": "", "comment": "" }, { "term": "Toast Messages", "translation": "", - "context": "", + "context": "Toast Messages", "reference": "", "comment": "" }, { "term": "Today", "translation": "", - "context": "notification history filter", + "context": "Today", "reference": "", - "comment": "" + "comment": "notification history filter" }, { "term": "Toggle bar visibility manually via IPC", "translation": "", - "context": "", + "context": "Toggle bar visibility manually via IPC", "reference": "", "comment": "" }, { "term": "Toggle fonts", "translation": "", - "context": "", + "context": "Toggle fonts", "reference": "", "comment": "" }, { "term": "Toggle visibility of this bar configuration", "translation": "", - "context": "", + "context": "Toggle visibility of this bar configuration", "reference": "", "comment": "" }, { "term": "Toggling...", "translation": "", - "context": "", + "context": "Toggling...", "reference": "", "comment": "" }, { "term": "Tomorrow", "translation": "", - "context": "", + "context": "Tomorrow", "reference": "", "comment": "" }, { "term": "Tonal Spot", "translation": "", - "context": "matugen color scheme option", + "context": "Tonal Spot", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Toner Empty", "translation": "", - "context": "", + "context": "Toner Empty", "reference": "", "comment": "" }, { "term": "Toner Low", "translation": "", - "context": "", + "context": "Toner Low", "reference": "", "comment": "" }, { "term": "Too many attempts - locked out", "translation": "", - "context": "", + "context": "Too many attempts - locked out", "reference": "", "comment": "" }, { "term": "Too many failed attempts - account may be locked", "translation": "", - "context": "", + "context": "Too many failed attempts - account may be locked", "reference": "", "comment": "" }, { "term": "Tools", "translation": "", - "context": "", + "context": "Tools", "reference": "", "comment": "" }, { "term": "Top", "translation": "", - "context": "shadow direction option", + "context": "Top", "reference": "", - "comment": "" + "comment": "screen edge position | shadow direction option" }, { "term": "Top (Default)", "translation": "", - "context": "shadow direction option", + "context": "Top (Default)", "reference": "", - "comment": "" + "comment": "shadow direction option" }, { "term": "Top Bar Format", "translation": "", - "context": "", + "context": "Top Bar Format", "reference": "", "comment": "" }, { "term": "Top Center", "translation": "", - "context": "screen position option", + "context": "Top Center", "reference": "", - "comment": "" + "comment": "screen position option" }, { "term": "Top Left", "translation": "", - "context": "screen position option | shadow direction option", + "context": "Top Left", "reference": "", - "comment": "" + "comment": "screen position option | shadow direction option" }, { "term": "Top Processes", "translation": "", - "context": "", + "context": "Top Processes", "reference": "", "comment": "" }, { "term": "Top Right", "translation": "", - "context": "screen position option | shadow direction option", + "context": "Top Right", "reference": "", - "comment": "" + "comment": "screen position option | shadow direction option" }, { "term": "Top Section", "translation": "", - "context": "", + "context": "Top Section", "reference": "", "comment": "" }, { "term": "Total", "translation": "", - "context": "", + "context": "Total", "reference": "", "comment": "" }, { "term": "Total Jobs", "translation": "", - "context": "", + "context": "Total Jobs", "reference": "", "comment": "" }, { "term": "Touch your security key...", "translation": "", - "context": "", + "context": "Touch your security key...", "reference": "", "comment": "" }, { "term": "Transform", "translation": "", - "context": "", + "context": "Transform", "reference": "", "comment": "" }, { "term": "Transition Effect", "translation": "", - "context": "", + "context": "Transition Effect", "reference": "", "comment": "" }, { "term": "Transparency", "translation": "", - "context": "", + "context": "Transparency", "reference": "", "comment": "" }, { "term": "Trash", "translation": "", - "context": "", + "context": "Trash", "reference": "", "comment": "" }, { "term": "Trash command failed (exit %1)", "translation": "", - "context": "", + "context": "Trash command failed (exit %1)", "reference": "", "comment": "" }, { "term": "Tray Icon Fix", "translation": "", - "context": "", + "context": "Tray Icon Fix", "reference": "", "comment": "" }, { "term": "Trending GIFs", "translation": "", - "context": "", + "context": "Trending GIFs", "reference": "", "comment": "" }, { "term": "Trending Stickers", "translation": "", - "context": "", + "context": "Trending Stickers", "reference": "", "comment": "" }, { "term": "Trigger", "translation": "", - "context": "", + "context": "Trigger", "reference": "", "comment": "" }, { "term": "Trigger Prefix", "translation": "", - "context": "", + "context": "Trigger Prefix", "reference": "", "comment": "" }, { "term": "Trigger: %1", "translation": "", - "context": "", + "context": "Trigger: %1", "reference": "", "comment": "" }, { "term": "Trust", "translation": "", - "context": "", + "context": "Trust", "reference": "", "comment": "" }, { "term": "Try a different search", "translation": "", - "context": "", + "context": "Try a different search", "reference": "", "comment": "" }, { "term": "Try a different search or switch filters.", "translation": "", - "context": "", + "context": "Try a different search or switch filters.", "reference": "", "comment": "" }, { "term": "Turn off", "translation": "", - "context": "", + "context": "Turn off", "reference": "", "comment": "" }, { "term": "Turn off Do Not Disturb", "translation": "", - "context": "", + "context": "Turn off Do Not Disturb", "reference": "", "comment": "" }, { "term": "Turn off all displays immediately when the lock screen activates", "translation": "", - "context": "", + "context": "Turn off all displays immediately when the lock screen activates", "reference": "", "comment": "" }, { "term": "Turn off monitors after", "translation": "", - "context": "", + "context": "Turn off monitors after", "reference": "", "comment": "" }, { "term": "Turn off monitors after lock", "translation": "", - "context": "", + "context": "Turn off monitors after lock", "reference": "", "comment": "" }, { "term": "Turn off now", "translation": "", - "context": "", + "context": "Turn off now", "reference": "", "comment": "" }, { "term": "Type", "translation": "", - "context": "", + "context": "Type", "reference": "", "comment": "" }, { "term": "Type at least 2 characters", "translation": "", - "context": "", + "context": "Type at least 2 characters", "reference": "", "comment": "" }, { "term": "Type at least 2 characters to search files.", "translation": "", - "context": "", + "context": "Type at least 2 characters to search files.", "reference": "", "comment": "" }, { "term": "Type this prefix to search keybinds", "translation": "", - "context": "", + "context": "Type this prefix to search keybinds", "reference": "", "comment": "" }, { "term": "Type to search files", "translation": "", - "context": "", + "context": "Type to search files", "reference": "", "comment": "" }, { "term": "Typography", "translation": "", - "context": "", + "context": "Typography", "reference": "", "comment": "" }, { "term": "Typography & Motion", "translation": "", - "context": "", + "context": "Typography & Motion", "reference": "", "comment": "" }, { "term": "URI", "translation": "", - "context": "KDE Connect share URI button", + "context": "URI", "reference": "", - "comment": "" + "comment": "KDE Connect share URI button" }, { "term": "Unavailable", "translation": "", - "context": "Phone Connect unavailable status", + "context": "Unavailable", "reference": "", - "comment": "" + "comment": "Phone Connect unavailable status" }, { "term": "Uncategorized", "translation": "", - "context": "plugin browser category filter", + "context": "Uncategorized", "reference": "", - "comment": "" + "comment": "plugin browser category filter" }, { "term": "Unfocused Color", "translation": "", - "context": "", + "context": "Unfocused Color", "reference": "", "comment": "" }, { "term": "Unfocused Display(s)", "translation": "", - "context": "workspace appearance tab", + "context": "Unfocused Display(s)", "reference": "", - "comment": "" + "comment": "workspace appearance tab" }, { "term": "Ungrouped", "translation": "", - "context": "", + "context": "Ungrouped", "reference": "", "comment": "" }, { "term": "Uninstall", "translation": "", - "context": "uninstall action button", + "context": "Uninstall", "reference": "", - "comment": "" + "comment": "uninstall action button" }, { "term": "Uninstall Greeter", "translation": "", - "context": "greeter action confirmation", + "context": "Uninstall Greeter", "reference": "", - "comment": "" + "comment": "greeter action confirmation" }, { "term": "Uninstall Plugin", "translation": "", - "context": "", + "context": "Uninstall Plugin", "reference": "", "comment": "" }, { "term": "Uninstall complete. Greeter has been removed.", "translation": "", - "context": "", + "context": "Uninstall complete. Greeter has been removed.", "reference": "", "comment": "" }, { "term": "Uninstall failed: %1", "translation": "", - "context": "uninstallation error", + "context": "Uninstall failed: %1", "reference": "", - "comment": "" + "comment": "uninstallation error" }, { "term": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "translation": "", - "context": "", + "context": "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.", "reference": "", "comment": "" }, { "term": "Uninstalled: %1", "translation": "", - "context": "uninstallation success", + "context": "Uninstalled: %1", "reference": "", - "comment": "" + "comment": "uninstallation success" }, { "term": "Uninstalling: %1", "translation": "", - "context": "uninstallation progress", + "context": "Uninstalling: %1", "reference": "", - "comment": "" + "comment": "uninstallation progress" }, { "term": "Unknown", "translation": "", - "context": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status", + "context": "Unknown", "reference": "", - "comment": "" + "comment": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status" }, { "term": "Unknown App", "translation": "", - "context": "", + "context": "Unknown App", "reference": "", "comment": "" }, { "term": "Unknown Artist", "translation": "", - "context": "", + "context": "Unknown Artist", "reference": "", "comment": "" }, { "term": "Unknown Config", "translation": "", - "context": "", + "context": "Unknown Config", "reference": "", "comment": "" }, { "term": "Unknown Device", "translation": "", - "context": "", + "context": "Unknown Device", "reference": "", "comment": "" }, { "term": "Unknown GPU", "translation": "", - "context": "fallback gpu name", + "context": "Unknown GPU", "reference": "", - "comment": "" + "comment": "fallback gpu name" }, { "term": "Unknown Model", "translation": "", - "context": "", + "context": "Unknown Model", "reference": "", "comment": "" }, { "term": "Unknown Monitor", "translation": "", - "context": "", + "context": "Unknown Monitor", "reference": "", "comment": "" }, { "term": "Unknown Network", "translation": "", - "context": "", + "context": "Unknown Network", "reference": "", "comment": "" }, { "term": "Unknown Title", "translation": "", - "context": "", + "context": "Unknown Title", "reference": "", "comment": "" }, { "term": "Unknown Track", "translation": "", - "context": "", + "context": "Unknown Track", "reference": "", "comment": "" }, { "term": "Unload on Close", "translation": "", - "context": "", + "context": "Unload on Close", "reference": "", "comment": "" }, { "term": "Unmute", "translation": "", - "context": "", + "context": "Unmute", "reference": "", "comment": "" }, { "term": "Unmute popups for %1", "translation": "", - "context": "", + "context": "Unmute popups for %1", "reference": "", "comment": "" }, { "term": "Unnamed Rule", "translation": "", - "context": "", + "context": "Unnamed Rule", "reference": "", "comment": "" }, { "term": "Unpair", "translation": "", - "context": "KDE Connect unpair tooltip", + "context": "Unpair", "reference": "", - "comment": "" + "comment": "KDE Connect unpair tooltip" }, { "term": "Unpair failed", "translation": "", - "context": "Phone Connect error", + "context": "Unpair failed", "reference": "", - "comment": "" + "comment": "Phone Connect error" }, { "term": "Unpin", "translation": "", - "context": "", + "context": "Unpin", "reference": "", "comment": "" }, { "term": "Unpin from Dock", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Unsaved Changes", - "translation": "", - "context": "", + "context": "Unpin from Dock", "reference": "", "comment": "" }, { "term": "Unsaved changes", "translation": "", - "context": "", + "context": "Unsaved changes", "reference": "", "comment": "" }, @@ -19555,397 +18981,383 @@ "translation": "", "context": "Unset", "reference": "", - "comment": "" + "comment": "Unset" }, { "term": "Until %1", "translation": "", - "context": "", + "context": "Until %1", "reference": "", "comment": "" }, { "term": "Until 8 AM", "translation": "", - "context": "", + "context": "Until 8 AM", "reference": "", "comment": "" }, { "term": "Until I turn it off", "translation": "", - "context": "", + "context": "Until I turn it off", "reference": "", "comment": "" }, { "term": "Until tomorrow, 8:00 AM", "translation": "", - "context": "", + "context": "Until tomorrow, 8:00 AM", "reference": "", "comment": "" }, { "term": "Untitled", "translation": "", - "context": "", + "context": "Untitled", "reference": "", "comment": "" }, { "term": "Untrust", "translation": "", - "context": "", + "context": "Untrust", "reference": "", "comment": "" }, { "term": "Up to date", "translation": "", - "context": "", + "context": "Up to date", "reference": "", "comment": "" }, { "term": "Update", "translation": "", - "context": "", + "context": "Update", "reference": "", "comment": "" }, { "term": "Update All", "translation": "", - "context": "", + "context": "Update All", "reference": "", "comment": "" }, { "term": "Update Plugin", "translation": "", - "context": "", + "context": "Update Plugin", "reference": "", "comment": "" }, { "term": "Update failed: %1", "translation": "", - "context": "", + "context": "Update failed: %1", "reference": "", "comment": "" }, { "term": "Updating %1...", "translation": "", - "context": "", + "context": "Updating %1...", "reference": "", "comment": "" }, { "term": "Updating plugins...", "translation": "", - "context": "", + "context": "Updating plugins...", "reference": "", "comment": "" }, { "term": "Upgrading...", "translation": "", - "context": "", + "context": "Upgrading...", "reference": "", "comment": "" }, { "term": "Uptime", "translation": "", - "context": "", + "context": "Uptime", "reference": "", - "comment": "" - }, - { - "term": "Uptime:", - "translation": "", - "context": "uptime label in footer", - "reference": "", - "comment": "" + "comment": "uptime label in footer" }, { "term": "Urgent", "translation": "", - "context": "", + "context": "Urgent", "reference": "", "comment": "" }, { "term": "Urgent Color", "translation": "", - "context": "", + "context": "Urgent Color", "reference": "", "comment": "" }, { "term": "Usage Tips", "translation": "", - "context": "", + "context": "Usage Tips", "reference": "", "comment": "" }, { "term": "Use 24-hour time format instead of 12-hour AM/PM", "translation": "", - "context": "", + "context": "Use 24-hour time format instead of 12-hour AM/PM", "reference": "", "comment": "" }, { "term": "Use Custom Command", "translation": "", - "context": "", + "context": "Use Custom Command", "reference": "", "comment": "" }, { "term": "Use Grid Layout", "translation": "", - "context": "", + "context": "Use Grid Layout", "reference": "", "comment": "" }, { "term": "Use HH:MM time format", "translation": "", - "context": "", + "context": "Use HH:MM time format", "reference": "", "comment": "" }, { "term": "Use IP Location", "translation": "", - "context": "", + "context": "Use IP Location", "reference": "", "comment": "" }, { "term": "Use Imperial Units", "translation": "", - "context": "", + "context": "Use Imperial Units", "reference": "", "comment": "" }, { "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", "translation": "", - "context": "", + "context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", "reference": "", "comment": "" }, { "term": "Use Inline Expansion", "translation": "", - "context": "", + "context": "Use Inline Expansion", "reference": "", "comment": "" }, { "term": "Use Monospace Font", "translation": "", - "context": "", + "context": "Use Monospace Font", "reference": "", "comment": "" }, { "term": "Use Overlay Layer", "translation": "", - "context": "bar layer toggle: use Wayland overlay layer | dock layer toggle: use Wayland overlay layer | launcher layer toggle: use Wayland overlay layer", + "context": "Use Overlay Layer", "reference": "", - "comment": "" + "comment": "bar layer toggle: use Wayland overlay layer | dock layer toggle: use Wayland overlay layer | launcher layer toggle: use Wayland overlay layer" }, { "term": "Use System Theme", "translation": "", - "context": "", + "context": "Use System Theme", "reference": "", "comment": "" }, { "term": "Use a custom image for the lock screen, or leave empty to use your desktop wallpaper.", "translation": "", - "context": "", + "context": "Use a custom image for the lock screen, or leave empty to use your desktop wallpaper.", "reference": "", "comment": "" }, { "term": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "translation": "", - "context": "", + "context": "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.", "reference": "", "comment": "" }, { "term": "Use a custom radius for goth corner cutouts", "translation": "", - "context": "", + "context": "Use a custom radius for goth corner cutouts", "reference": "", "comment": "" }, { "term": "Use a fixed shadow direction for this bar", "translation": "", - "context": "", + "context": "Use a fixed shadow direction for this bar", "reference": "", "comment": "" }, { "term": "Use a security key for lock screen authentication.", "translation": "", - "context": "lock screen U2F security key setting", + "context": "Use a security key for lock screen authentication.", "reference": "", - "comment": "" + "comment": "lock screen U2F security key setting" }, { "term": "Use album art accent", "translation": "", - "context": "", + "context": "Use album art accent", "reference": "", "comment": "" }, { "term": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "translation": "", - "context": "wallpaper settings disable description", + "context": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "reference": "", - "comment": "" + "comment": "wallpaper settings disable description" }, { "term": "Use animated wave progress bars for media playback", "translation": "", - "context": "", + "context": "Use animated wave progress bars for media playback", "reference": "", "comment": "" }, { "term": "Use colors extracted from album art instead of system theme colors", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Use custom border size", - "translation": "", - "context": "", + "context": "Use colors extracted from album art instead of system theme colors", "reference": "", "comment": "" }, { "term": "Use custom border/focus-ring width", "translation": "", - "context": "", + "context": "Use custom border/focus-ring width", "reference": "", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "translation": "", - "context": "", + "context": "Use custom window radius instead of theme radius", "reference": "", "comment": "" }, { "term": "Use desktop wallpaper", "translation": "", - "context": "", + "context": "Use desktop wallpaper", "reference": "", "comment": "" }, { "term": "Use different icon themes for light and dark mode", "translation": "", - "context": "", + "context": "Use different icon themes for light and dark mode", "reference": "", "comment": "" }, { "term": "Use different workspace colors on displays that are not focused", "translation": "", - "context": "", + "context": "Use different workspace colors on displays that are not focused", "reference": "", "comment": "" }, { "term": "Use fingerprint authentication for the lock screen.", "translation": "", - "context": "lock screen fingerprint setting", + "context": "Use fingerprint authentication for the lock screen.", "reference": "", - "comment": "" + "comment": "lock screen fingerprint setting" }, { "term": "Use keys 1-3 or arrows, Enter/Space to select", "translation": "", - "context": "", + "context": "Use keys 1-3 or arrows, Enter/Space to select", "reference": "", "comment": "" }, { "term": "Use light theme instead of dark theme", "translation": "", - "context": "", + "context": "Use light theme instead of dark theme", "reference": "", "comment": "" }, { "term": "Use meters per second instead of km/h for wind speed", "translation": "", - "context": "", + "context": "Use meters per second instead of km/h for wind speed", "reference": "", "comment": "" }, { "term": "Use one inset value for every bar", "translation": "", - "context": "", + "context": "Use one inset value for every bar", "reference": "", "comment": "" }, { "term": "Use smaller notification cards", "translation": "", - "context": "", + "context": "Use smaller notification cards", "reference": "", "comment": "" }, { "term": "Use sound theme from system settings", "translation": "", - "context": "", + "context": "Use sound theme from system settings", "reference": "", "comment": "" }, + { + "term": "Use system PAM authentication", + "translation": "", + "context": "Use system PAM authentication", + "reference": "", + "comment": "system PAM policy toggle" + }, { "term": "Use the extended surface for launcher content", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Use the overlay layer when opening the launcher", - "translation": "", - "context": "", + "context": "Use the extended surface for launcher content", "reference": "", "comment": "" }, { "term": "Use the same position and size on all displays", "translation": "", - "context": "", + "context": "Use the same position and size on all displays", "reference": "", "comment": "" }, { "term": "Use trigger prefix to activate", "translation": "", - "context": "", + "context": "Use trigger prefix to activate", "reference": "", "comment": "" }, @@ -19954,152 +19366,152 @@ "translation": "", "context": "Used for xdg-terminal-exec", "reference": "", - "comment": "" + "comment": "Used for xdg-terminal-exec" }, { "term": "Used when accent color is set to Custom", "translation": "", - "context": "", + "context": "Used when accent color is set to Custom", "reference": "", "comment": "" }, { "term": "User", "translation": "", - "context": "", + "context": "User", "reference": "", "comment": "" }, { "term": "User Window Rules (%1)", "translation": "", - "context": "", + "context": "User Window Rules (%1)", "reference": "", "comment": "" }, { "term": "User already exists", "translation": "", - "context": "", + "context": "User already exists", "reference": "", "comment": "" }, { "term": "User created", "translation": "", - "context": "", + "context": "User created", "reference": "", "comment": "" }, { "term": "User created with administrator and greeter login access", "translation": "", - "context": "", + "context": "User created with administrator and greeter login access", "reference": "", "comment": "" }, { "term": "User created with administrator privileges", "translation": "", - "context": "", + "context": "User created with administrator privileges", "reference": "", "comment": "" }, { "term": "User created with greeter login access", "translation": "", - "context": "", + "context": "User created with greeter login access", "reference": "", "comment": "" }, { "term": "User deleted", "translation": "", - "context": "", + "context": "User deleted", "reference": "", "comment": "" }, { "term": "User not found", "translation": "", - "context": "", + "context": "User not found", "reference": "", "comment": "" }, { "term": "Username", "translation": "", - "context": "", + "context": "Username", "reference": "", "comment": "" }, { "term": "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.", "translation": "", - "context": "", + "context": "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.", "reference": "", "comment": "" }, { "term": "Username...", "translation": "", - "context": "", + "context": "Username...", "reference": "", "comment": "" }, { "term": "Users", "translation": "", - "context": "", + "context": "Users", "reference": "", "comment": "" }, { "term": "Uses sunrise/sunset times based on your location.", "translation": "", - "context": "", + "context": "Uses sunrise/sunset times based on your location.", "reference": "", "comment": "" }, { "term": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", "translation": "", - "context": "", + "context": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", "reference": "", "comment": "" }, { "term": "Uses the spotlight-bar IPC action and always opens the minimal bar.", "translation": "", - "context": "", + "context": "Uses the spotlight-bar IPC action and always opens the minimal bar.", "reference": "", "comment": "" }, { "term": "Using DankCalendar%1", "translation": "", - "context": "calendar backend status", + "context": "Using DankCalendar%1", "reference": "", - "comment": "" + "comment": "calendar backend status" }, { "term": "Using global monospace font from Settings → Personalization", "translation": "", - "context": "", + "context": "Using global monospace font from Settings → Personalization", "reference": "", "comment": "" }, { "term": "Using khal", "translation": "", - "context": "calendar backend status", + "context": "Using khal", "reference": "", - "comment": "" + "comment": "calendar backend status" }, { "term": "Using shared settings from Gamma Control", "translation": "", - "context": "", + "context": "Using shared settings from Gamma Control", "reference": "", "comment": "" }, @@ -20108,159 +19520,159 @@ "translation": "", "context": "Utilities", "reference": "", - "comment": "" + "comment": "Utilities" }, { "term": "VPN", "translation": "", - "context": "", + "context": "VPN", "reference": "", "comment": "" }, { "term": "VPN Connections", "translation": "", - "context": "", + "context": "VPN Connections", "reference": "", "comment": "" }, { "term": "VPN configuration updated", "translation": "", - "context": "", + "context": "VPN configuration updated", "reference": "", "comment": "" }, { "term": "VPN credentials saved", "translation": "", - "context": "", + "context": "VPN credentials saved", "reference": "", "comment": "" }, { "term": "VPN deleted", "translation": "", - "context": "", + "context": "VPN deleted", "reference": "", "comment": "" }, { "term": "VPN imported: %1", "translation": "", - "context": "", + "context": "VPN imported: %1", "reference": "", "comment": "" }, { "term": "VPN not available", "translation": "", - "context": "", + "context": "VPN not available", "reference": "", "comment": "" }, { "term": "VPN status and quick connect", "translation": "", - "context": "", + "context": "VPN status and quick connect", "reference": "", "comment": "" }, { "term": "VRR", "translation": "", - "context": "", + "context": "VRR", "reference": "", "comment": "" }, { "term": "VRR Fullscreen Only", "translation": "", - "context": "", + "context": "VRR Fullscreen Only", "reference": "", "comment": "" }, { "term": "VRR On-Demand", "translation": "", - "context": "", + "context": "VRR On-Demand", "reference": "", "comment": "" }, { "term": "Variable Refresh Rate", "translation": "", - "context": "", + "context": "Variable Refresh Rate", "reference": "", "comment": "" }, { "term": "Verification", "translation": "", - "context": "Phone Connect pairing verification key label", + "context": "Verification", "reference": "", - "comment": "" + "comment": "Phone Connect pairing verification key label" }, { "term": "Version", "translation": "", - "context": "", + "context": "Version", "reference": "", "comment": "" }, { "term": "Vertical Deck", "translation": "", - "context": "", + "context": "Vertical Deck", "reference": "", "comment": "" }, { "term": "Vertical Grid", "translation": "", - "context": "", + "context": "Vertical Grid", "reference": "", "comment": "" }, { "term": "Vertical Scrolling", "translation": "", - "context": "", + "context": "Vertical Scrolling", "reference": "", "comment": "" }, { "term": "Vertical Tiling", "translation": "", - "context": "", + "context": "Vertical Tiling", "reference": "", "comment": "" }, { "term": "Very High", "translation": "", - "context": "", + "context": "Very High", "reference": "", - "comment": "" + "comment": "quality level option" }, { "term": "Vibrant", "translation": "", - "context": "matugen color scheme option", + "context": "Vibrant", "reference": "", - "comment": "" + "comment": "matugen color scheme option" }, { "term": "Vibrant palette with playful saturation.", "translation": "", - "context": "", + "context": "Vibrant palette with playful saturation.", "reference": "", "comment": "" }, { "term": "Video Path", "translation": "", - "context": "", + "context": "Video Path", "reference": "", "comment": "" }, @@ -20269,201 +19681,201 @@ "translation": "", "context": "Video Player", "reference": "", - "comment": "" + "comment": "Video Player" }, { "term": "Video Screensaver", "translation": "", - "context": "", + "context": "Video Screensaver", "reference": "", "comment": "" }, { "term": "Videos", "translation": "", - "context": "", + "context": "Videos", "reference": "", "comment": "" }, { "term": "View Mode", "translation": "", - "context": "", + "context": "View Mode", "reference": "", "comment": "" }, { "term": "Visibility", "translation": "", - "context": "", + "context": "Visibility", "reference": "", "comment": "" }, { "term": "Visible Entry Actions", "translation": "", - "context": "", + "context": "Visible Entry Actions", "reference": "", "comment": "" }, { "term": "Visual Effects", "translation": "", - "context": "", + "context": "Visual Effects", "reference": "", "comment": "" }, { "term": "Visual divider between widgets", "translation": "", - "context": "", + "context": "Visual divider between widgets", "reference": "", "comment": "" }, { "term": "Visual effect used when wallpaper changes", "translation": "", - "context": "", + "context": "Visual effect used when wallpaper changes", "reference": "", "comment": "" }, { "term": "Volume", "translation": "", - "context": "", + "context": "Volume", "reference": "", "comment": "" }, { "term": "Volume Changed", "translation": "", - "context": "", + "context": "Volume Changed", "reference": "", "comment": "" }, { "term": "Volume Slider", "translation": "", - "context": "", + "context": "Volume Slider", "reference": "", "comment": "" }, { "term": "Volume, brightness, and other system OSDs", "translation": "", - "context": "", + "context": "Volume, brightness, and other system OSDs", "reference": "", "comment": "" }, { "term": "Votes", "translation": "", - "context": "plugin browser sort option", + "context": "Votes", "reference": "", - "comment": "" + "comment": "plugin browser sort option" }, { "term": "W", "translation": "", - "context": "", + "context": "W", "reference": "", "comment": "" }, { "term": "WPA/WPA2", "translation": "", - "context": "", + "context": "WPA/WPA2", "reference": "", "comment": "" }, { "term": "Wallpaper", "translation": "", - "context": "greeter settings link", + "context": "Wallpaper", "reference": "", - "comment": "" + "comment": "greeter settings link" }, { "term": "Wallpaper Error", "translation": "", - "context": "wallpaper error status", + "context": "Wallpaper Error", "reference": "", - "comment": "" + "comment": "wallpaper error status" }, { "term": "Wallpaper Monitor", "translation": "", - "context": "", + "context": "Wallpaper Monitor", "reference": "", "comment": "" }, { "term": "Wallpaper fill mode", "translation": "", - "context": "", + "context": "Wallpaper fill mode", "reference": "", "comment": "" }, { "term": "Wallpaper processing failed", "translation": "", - "context": "wallpaper processing error", + "context": "Wallpaper processing failed", "reference": "", - "comment": "" + "comment": "wallpaper processing error" }, { "term": "Wallpaper processing failed - check wallpaper path", "translation": "", - "context": "wallpaper error", + "context": "Wallpaper processing failed - check wallpaper path", "reference": "", - "comment": "" + "comment": "wallpaper error" }, { "term": "Wallpapers", "translation": "", - "context": "", + "context": "Wallpapers", "reference": "", "comment": "" }, { "term": "Warm color temperature to apply", "translation": "", - "context": "", + "context": "Warm color temperature to apply", "reference": "", "comment": "" }, { "term": "Warning", "translation": "", - "context": "", + "context": "Warning", "reference": "", "comment": "" }, { "term": "Warnings", "translation": "", - "context": "greeter doctor page status card", + "context": "Warnings", "reference": "", - "comment": "" + "comment": "greeter doctor page status card" }, { "term": "Wave Progress Bars", "translation": "", - "context": "", + "context": "Wave Progress Bars", "reference": "", "comment": "" }, { "term": "Weather", "translation": "", - "context": "", + "context": "Weather", "reference": "", "comment": "" }, { "term": "Weather Widget", "translation": "", - "context": "", + "context": "Weather Widget", "reference": "", "comment": "" }, @@ -20472,1196 +19884,1147 @@ "translation": "", "context": "Web Browser", "reference": "", - "comment": "" + "comment": "Web Browser" }, { "term": "Welcome", "translation": "", - "context": "greeter modal window title", + "context": "Welcome", "reference": "", - "comment": "" + "comment": "greeter modal window title" }, { "term": "Welcome to DankMaterialShell", "translation": "", - "context": "greeter welcome page title", + "context": "Welcome to DankMaterialShell", "reference": "", - "comment": "" + "comment": "greeter welcome page title" }, { "term": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", "translation": "", - "context": "", + "context": "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window", "reference": "", "comment": "" }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "translation": "", - "context": "", + "context": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "reference": "", "comment": "" }, { "term": "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.", "translation": "", - "context": "", + "context": "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.", "reference": "", "comment": "" }, { "term": "When locked", "translation": "", - "context": "", + "context": "When locked", "reference": "", "comment": "" }, + { + "term": "Which PAM service the lock screen uses to authenticate", + "translation": "", + "context": "Which PAM service the lock screen uses to authenticate", + "reference": "", + "comment": "lock screen PAM source setting" + }, { "term": "White", "translation": "", - "context": "", + "context": "White", "reference": "", "comment": "" }, { "term": "Wi-Fi and Ethernet connection", "translation": "", - "context": "", + "context": "Wi-Fi and Ethernet connection", "reference": "", "comment": "" }, { "term": "Wi-Fi not available", "translation": "", - "context": "", + "context": "Wi-Fi not available", "reference": "", "comment": "" }, { "term": "WiFi", "translation": "", - "context": "", + "context": "WiFi", "reference": "", "comment": "" }, { "term": "WiFi Device", "translation": "", - "context": "", + "context": "WiFi Device", "reference": "", "comment": "" }, { "term": "WiFi QR code for ", "translation": "", - "context": "", + "context": "WiFi QR code for ", "reference": "", "comment": "" }, { "term": "WiFi disabled", "translation": "", - "context": "", + "context": "WiFi disabled", "reference": "", "comment": "" }, { "term": "WiFi enabled", "translation": "", - "context": "", + "context": "WiFi enabled", "reference": "", "comment": "" }, { "term": "WiFi is off", "translation": "", - "context": "", + "context": "WiFi is off", "reference": "", "comment": "" }, { "term": "WiFi off", "translation": "", - "context": "network status", + "context": "WiFi off", "reference": "", - "comment": "" + "comment": "network status" }, { "term": "Wide (BT2020)", "translation": "", - "context": "", + "context": "Wide (BT2020)", "reference": "", "comment": "" }, { "term": "Widget Background Color", "translation": "", - "context": "", + "context": "Widget Background Color", "reference": "", "comment": "" }, { "term": "Widget Management", "translation": "", - "context": "", + "context": "Widget Management", "reference": "", "comment": "" }, { "term": "Widget Opacity", "translation": "", - "context": "", + "context": "Widget Opacity", "reference": "", "comment": "" }, { "term": "Widget Outline", "translation": "", - "context": "", + "context": "Widget Outline", "reference": "", "comment": "" }, { "term": "Widget Styling", "translation": "", - "context": "", + "context": "Widget Styling", "reference": "", "comment": "" }, { "term": "Widget Text Style", "translation": "", - "context": "", + "context": "Widget Text Style", "reference": "", "comment": "" }, { "term": "Widget added", "translation": "", - "context": "", + "context": "Widget added", "reference": "", "comment": "" }, { "term": "Widget removed", "translation": "", - "context": "", + "context": "Widget removed", "reference": "", "comment": "" }, { "term": "Widgets", "translation": "", - "context": "settings_displays", + "context": "Widgets", "reference": "", - "comment": "" + "comment": "settings_displays" }, { "term": "Widgets & Notifications", "translation": "", - "context": "", + "context": "Widgets & Notifications", "reference": "", "comment": "" }, { "term": "Widgets, layout, style", "translation": "", - "context": "greeter dankbar description", + "context": "Widgets, layout, style", "reference": "", - "comment": "" + "comment": "greeter dankbar description" }, { "term": "Width", "translation": "", - "context": "", + "context": "Width", "reference": "", "comment": "" }, { "term": "Width of the border in pixels", "translation": "", - "context": "", + "context": "Width of the border in pixels", "reference": "", "comment": "" }, { "term": "Width of the widget outline in pixels", "translation": "", - "context": "", + "context": "Width of the widget outline in pixels", "reference": "", "comment": "" }, { "term": "Width of window border", "translation": "", - "context": "", + "context": "Width of window border", "reference": "", "comment": "" }, { "term": "Width of window border and focus ring", "translation": "", - "context": "", + "context": "Width of window border and focus ring", "reference": "", "comment": "" }, { "term": "Wind", "translation": "", - "context": "", + "context": "Wind", "reference": "", "comment": "" }, { "term": "Wind Speed", "translation": "", - "context": "", + "context": "Wind Speed", "reference": "", "comment": "" }, { "term": "Wind Speed in m/s", "translation": "", - "context": "", + "context": "Wind Speed in m/s", "reference": "", "comment": "" }, { "term": "Window Corner Radius", "translation": "", - "context": "", + "context": "Window Corner Radius", "reference": "", "comment": "" }, { "term": "Window Gaps", "translation": "", - "context": "", + "context": "Window Gaps", "reference": "", "comment": "" }, { "term": "Window Gaps (px)", "translation": "", - "context": "", + "context": "Window Gaps (px)", "reference": "", "comment": "" }, { "term": "Window Height", "translation": "", - "context": "", + "context": "Window Height", "reference": "", "comment": "" }, { "term": "Window Opening", "translation": "", - "context": "", + "context": "Window Opening", "reference": "", "comment": "" }, { "term": "Window Rules", "translation": "", - "context": "", + "context": "Window Rules", "reference": "", "comment": "" }, { "term": "Wipe", "translation": "", - "context": "wallpaper transition option", + "context": "Wipe", "reference": "", - "comment": "" + "comment": "wallpaper transition option" }, { "term": "Working...", "translation": "", - "context": "", + "context": "Working...", "reference": "", "comment": "" }, { "term": "Workspace", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Workspace Appearance", - "translation": "", - "context": "", + "context": "Workspace", "reference": "", "comment": "" }, { "term": "Workspace Index Numbers", "translation": "", - "context": "", + "context": "Workspace Index Numbers", "reference": "", "comment": "" }, { "term": "Workspace Names", "translation": "", - "context": "", + "context": "Workspace Names", "reference": "", "comment": "" }, { "term": "Workspace Padding", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Workspace Settings", - "translation": "", - "context": "", + "context": "Workspace Padding", "reference": "", "comment": "" }, { "term": "Workspace Switcher", "translation": "", - "context": "", + "context": "Workspace Switcher", "reference": "", "comment": "" }, { "term": "Workspace name", "translation": "", - "context": "", + "context": "Workspace name", "reference": "", "comment": "" }, { "term": "Workspaces", "translation": "", - "context": "", + "context": "Workspaces", "reference": "", "comment": "" }, { "term": "Wrap the app command. %command% is replaced with the actual executable", "translation": "", - "context": "", + "context": "Wrap the app command. %command% is replaced with the actual executable", "reference": "", "comment": "" }, { "term": "Write:", "translation": "", - "context": "disk write label", + "context": "Write:", "reference": "", - "comment": "" + "comment": "disk write label" }, { "term": "X", "translation": "", - "context": "", + "context": "X", "reference": "", "comment": "" }, { "term": "X Axis", "translation": "", - "context": "", + "context": "X Axis", "reference": "", "comment": "" }, { "term": "X-Ray", "translation": "", - "context": "", + "context": "X-Ray", "reference": "", "comment": "" }, { "term": "XWayland", "translation": "", - "context": "", + "context": "XWayland", "reference": "", "comment": "" }, { "term": "Xray Blur Effect", "translation": "", - "context": "", + "context": "Xray Blur Effect", "reference": "", "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).", "translation": "", - "context": "", + "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": "", "comment": "" }, { "term": "Xray options are in Compositor → Layout", "translation": "", - "context": "", + "context": "Xray options are in Compositor → Layout", "reference": "", "comment": "" }, { "term": "Y", "translation": "", - "context": "", + "context": "Y", "reference": "", "comment": "" }, { "term": "Y Axis", "translation": "", - "context": "", + "context": "Y Axis", "reference": "", "comment": "" }, { "term": "Yes", "translation": "", - "context": "", + "context": "Yes", "reference": "", "comment": "" }, { "term": "Yesterday", "translation": "", - "context": "notification history filter", + "context": "Yesterday", "reference": "", - "comment": "" - }, - { - "term": "You have unsaved changes. Save before closing this tab?", - "translation": "", - "context": "", - "reference": "", - "comment": "" + "comment": "notification history filter" }, { "term": "You have unsaved changes. Save before continuing?", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "You have unsaved changes. Save before creating a new file?", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "You have unsaved changes. Save before opening a file?", - "translation": "", - "context": "", + "context": "You have unsaved changes. Save before continuing?", "reference": "", "comment": "" }, { "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.", "translation": "", - "context": "qt theme env error body", + "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": "", - "comment": "" + "comment": "qt theme env error body" }, { "term": "You'll enter your password at the greeter after the next reboot.", "translation": "", - "context": "", + "context": "You'll enter your password at the greeter after the next reboot.", "reference": "", "comment": "" }, { "term": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.", "translation": "", - "context": "", + "context": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.", "reference": "", "comment": "" }, { "term": "You're All Set!", "translation": "", - "context": "greeter completion page title", + "context": "You're All Set!", "reference": "", - "comment": "" + "comment": "greeter completion page title" }, { "term": "Your compositor does not support background blur (ext-background-effect-v1)", "translation": "", - "context": "", + "context": "Your compositor does not support background blur (ext-background-effect-v1)", "reference": "", "comment": "" }, { "term": "Your system is up to date!", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "actions", - "translation": "", - "context": "", + "context": "Your system is up to date!", "reference": "", "comment": "" }, { "term": "admin", "translation": "", - "context": "", + "context": "admin", "reference": "", "comment": "" }, { "term": "attached", "translation": "", - "context": "", + "context": "attached", "reference": "", "comment": "" }, { "term": "brandon", "translation": "", - "context": "", + "context": "brandon", "reference": "", "comment": "" }, { "term": "broken", "translation": "", - "context": "plugin status", + "context": "broken", "reference": "", - "comment": "" + "comment": "plugin status" }, { "term": "by %1", "translation": "", - "context": "author attribution", + "context": "by %1", "reference": "", - "comment": "" + "comment": "author attribution" }, { "term": "checked %1d ago", "translation": "", - "context": "", + "context": "checked %1d ago", "reference": "", "comment": "" }, { "term": "checked %1h ago", "translation": "", - "context": "", + "context": "checked %1h ago", "reference": "", "comment": "" }, { "term": "checked %1m ago", "translation": "", - "context": "", + "context": "checked %1m ago", "reference": "", "comment": "" }, { "term": "checked just now", "translation": "", - "context": "", + "context": "checked just now", "reference": "", "comment": "" }, { "term": "days", "translation": "", - "context": "", + "context": "days", "reference": "", "comment": "" }, { "term": "deprecated", "translation": "", - "context": "plugin status", + "context": "deprecated", "reference": "", - "comment": "" + "comment": "plugin status" }, { "term": "detached", "translation": "", - "context": "", + "context": "detached", "reference": "", "comment": "" }, { "term": "device", "translation": "", - "context": "Generic device name fallback", + "context": "device", "reference": "", - "comment": "" + "comment": "Generic device name fallback" }, { "term": "dgop not available", "translation": "", - "context": "", + "context": "dgop not available", "reference": "", "comment": "" }, { "term": "direct", "translation": "", - "context": "Tailscale direct connection", + "context": "direct", "reference": "", - "comment": "" + "comment": "Tailscale direct connection" }, { "term": "discuss", "translation": "", - "context": "plugin discussion link", + "context": "discuss", "reference": "", - "comment": "" + "comment": "plugin discussion link" }, { "term": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", "translation": "", - "context": "", + "context": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", "reference": "", "comment": "" }, { "term": "e.g. /usr/bin/my-script --flag", "translation": "", - "context": "", + "context": "e.g. /usr/bin/my-script --flag", "reference": "", "comment": "" }, { "term": "e.g. My Script", "translation": "", - "context": "", + "context": "e.g. My Script", "reference": "", "comment": "" }, { "term": "e.g. alice", "translation": "", - "context": "", + "context": "e.g. alice", "reference": "", "comment": "" }, { "term": "e.g., firefox, kitty --title foo", "translation": "", - "context": "", + "context": "e.g., firefox, kitty --title foo", "reference": "", "comment": "" }, { "term": "e.g., focus-workspace 3, resize-column -10", "translation": "", - "context": "", + "context": "e.g., focus-workspace 3, resize-column -10", "reference": "", "comment": "" }, { "term": "e.g., hl.dsp.focus({ workspace = \"3\" })", "translation": "", - "context": "", + "context": "e.g., hl.dsp.focus({ workspace = \"3\" })", "reference": "", "comment": "" }, { "term": "e.g., notify-send 'Hello' && sleep 1", "translation": "", - "context": "", + "context": "e.g., notify-send 'Hello' && sleep 1", "reference": "", "comment": "" }, { "term": "e.g., scratch, /^tmp_.*/, build", "translation": "", - "context": "", + "context": "e.g., scratch, /^tmp_.*/, build", "reference": "", "comment": "" }, { "term": "ext", "translation": "", - "context": "", + "context": "ext", "reference": "", "comment": "" }, { "term": "featured", "translation": "", - "context": "", + "context": "featured", "reference": "", "comment": "" }, { "term": "khal", "translation": "", - "context": "calendar backend option", + "context": "khal", "reference": "", - "comment": "" + "comment": "calendar backend option" }, { "term": "last seen %1", "translation": "", - "context": "Tailscale peer last seen time", + "context": "last seen %1", "reference": "", - "comment": "" + "comment": "Tailscale peer last seen time" }, { "term": "leave empty for default", "translation": "", - "context": "", + "context": "leave empty for default", "reference": "", "comment": "" }, { "term": "loginctl activate failed (exit %1)", "translation": "", - "context": "", + "context": "loginctl activate failed (exit %1)", "reference": "", "comment": "" }, { "term": "loginctl not available - lock integration requires DMS socket connection", "translation": "", - "context": "", + "context": "loginctl not available - lock integration requires DMS socket connection", "reference": "", "comment": "" }, { "term": "mango: config reloaded", "translation": "", - "context": "", + "context": "mango: config reloaded", "reference": "", "comment": "" }, { "term": "mango: failed to reload config", "translation": "", - "context": "", + "context": "mango: failed to reload config", "reference": "", "comment": "" }, { "term": "mangowc Discord Server", "translation": "", - "context": "", + "context": "mangowc Discord Server", "reference": "", "comment": "" }, { "term": "mangowc GitHub", "translation": "", - "context": "", + "context": "mangowc GitHub", "reference": "", "comment": "" }, { - "term": "matugen not available or disabled - cannot apply GTK colors", + "term": "matugen not available or disabled - cannot apply %1 colors", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "matugen not available or disabled - cannot apply Qt colors", - "translation": "", - "context": "", + "context": "matugen not available or disabled - cannot apply %1 colors", "reference": "", "comment": "" }, { "term": "matugen not found - install matugen package for dynamic theming", "translation": "", - "context": "matugen error", + "context": "matugen not found - install matugen package for dynamic theming", "reference": "", - "comment": "" + "comment": "matugen error" }, { "term": "minutes", "translation": "", - "context": "", + "context": "minutes", "reference": "", "comment": "" }, { "term": "ms", "translation": "", - "context": "", + "context": "ms", "reference": "", "comment": "" }, { "term": "nav", "translation": "", - "context": "", + "context": "nav", "reference": "", "comment": "" }, { "term": "niri GitHub", "translation": "", - "context": "", + "context": "niri GitHub", "reference": "", "comment": "" }, { "term": "niri Matrix Chat", "translation": "", - "context": "", + "context": "niri Matrix Chat", "reference": "", "comment": "" }, { "term": "niri shortcuts config", "translation": "", - "context": "greeter keybinds niri description", + "context": "niri shortcuts config", "reference": "", - "comment": "" + "comment": "greeter keybinds niri description" }, { "term": "niri/dms Discord", "translation": "", - "context": "", + "context": "niri/dms Discord", "reference": "", "comment": "" }, { "term": "niri: config reloaded", "translation": "", - "context": "", + "context": "niri: config reloaded", "reference": "", "comment": "" }, { "term": "niri: failed to load config", "translation": "", - "context": "", + "context": "niri: failed to load config", "reference": "", "comment": "" }, { "term": "now", "translation": "", - "context": "", + "context": "now", "reference": "", "comment": "" }, { "term": "official", "translation": "", - "context": "", + "context": "official", "reference": "", "comment": "" }, { "term": "on Hyprland", "translation": "", - "context": "", + "context": "on Hyprland", "reference": "", "comment": "" }, { "term": "on MangoWC", "translation": "", - "context": "", + "context": "on MangoWC", "reference": "", "comment": "" }, { "term": "on Miracle WM", "translation": "", - "context": "", + "context": "on Miracle WM", "reference": "", "comment": "" }, { "term": "on Niri", "translation": "", - "context": "", + "context": "on Niri", "reference": "", "comment": "" }, { "term": "on Scroll", "translation": "", - "context": "", + "context": "on Scroll", "reference": "", "comment": "" }, { "term": "on Sway", "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "open", - "translation": "", - "context": "", + "context": "on Sway", "reference": "", "comment": "" }, { "term": "or run ", "translation": "", - "context": "", + "context": "or run ", "reference": "", "comment": "" }, { "term": "power-profiles-daemon not available", "translation": "", - "context": "", + "context": "power-profiles-daemon not available", "reference": "", "comment": "" }, { "term": "procs", "translation": "", - "context": "short for processes", + "context": "procs", "reference": "", - "comment": "" + "comment": "short for processes" }, { "term": "r/niri Subreddit", "translation": "", - "context": "", + "context": "r/niri Subreddit", "reference": "", "comment": "" }, { "term": "relay: %1", "translation": "", - "context": "Tailscale relay server name", + "context": "relay: %1", "reference": "", - "comment": "" + "comment": "Tailscale relay server name" }, { "term": "remote", "translation": "", - "context": "", + "context": "remote", "reference": "", "comment": "" }, { "term": "reviewed", "translation": "", - "context": "plugin status", + "context": "reviewed", "reference": "", - "comment": "" + "comment": "plugin status" }, { "term": "seconds", "translation": "", - "context": "", + "context": "seconds", "reference": "", "comment": "" }, { "term": "session %1", "translation": "", - "context": "", + "context": "session %1", "reference": "", "comment": "" }, { "term": "source", "translation": "", - "context": "source code link", + "context": "source", "reference": "", - "comment": "" + "comment": "source code link" }, { "term": "the Qt 6 Multimedia QML module", "translation": "", - "context": "", + "context": "the Qt 6 Multimedia QML module", "reference": "", "comment": "" }, { "term": "this app", "translation": "", - "context": "", + "context": "this app", "reference": "", "comment": "" }, { "term": "unmaintained", "translation": "", - "context": "plugin status", + "context": "unmaintained", "reference": "", - "comment": "" + "comment": "plugin status" }, { "term": "until %1", "translation": "", - "context": "", + "context": "until %1", "reference": "", "comment": "" }, { "term": "up", "translation": "", - "context": "uptime prefix, e.g. 'up 4h 2m'", + "context": "up", "reference": "", - "comment": "" + "comment": "uptime prefix, e.g. 'up 4h 2m'" }, { "term": "update dms for NM integration.", "translation": "", - "context": "", + "context": "update dms for NM integration.", "reference": "", "comment": "" }, { "term": "useradd failed (exit %1)", "translation": "", - "context": "", + "context": "useradd failed (exit %1)", "reference": "", "comment": "" }, { "term": "userdel failed (exit %1)", "translation": "", - "context": "", + "context": "userdel failed (exit %1)", "reference": "", "comment": "" }, { "term": "usermod failed (exit %1)", "translation": "", - "context": "", + "context": "usermod failed (exit %1)", "reference": "", "comment": "" }, { "term": "v%1 by %2", "translation": "", - "context": "", + "context": "v%1 by %2", "reference": "", "comment": "" }, { "term": "• Install only from trusted sources", "translation": "", - "context": "", + "context": "• Install only from trusted sources", "reference": "", "comment": "" }, { "term": "• M - Month (1-12)", "translation": "", - "context": "", + "context": "• M - Month (1-12)", "reference": "", "comment": "" }, { "term": "• MM - Month (01-12)", "translation": "", - "context": "", + "context": "• MM - Month (01-12)", "reference": "", "comment": "" }, { "term": "• MMM - Month (Jan)", "translation": "", - "context": "", + "context": "• MMM - Month (Jan)", "reference": "", "comment": "" }, { "term": "• MMMM - Month (January)", "translation": "", - "context": "", + "context": "• MMMM - Month (January)", "reference": "", "comment": "" }, { "term": "• Plugins may contain bugs or security issues", "translation": "", - "context": "", + "context": "• Plugins may contain bugs or security issues", "reference": "", "comment": "" }, { "term": "• Review code before installation when possible", "translation": "", - "context": "", + "context": "• Review code before installation when possible", "reference": "", "comment": "" }, { "term": "• d - Day (1-31)", "translation": "", - "context": "", + "context": "• d - Day (1-31)", "reference": "", "comment": "" }, { "term": "• dd - Day (01-31)", "translation": "", - "context": "", + "context": "• dd - Day (01-31)", "reference": "", "comment": "" }, { "term": "• ddd - Day name (Mon)", "translation": "", - "context": "", + "context": "• ddd - Day name (Mon)", "reference": "", "comment": "" }, { "term": "• dddd - Day name (Monday)", "translation": "", - "context": "", + "context": "• dddd - Day name (Monday)", "reference": "", "comment": "" }, { "term": "• yy - Year (24)", "translation": "", - "context": "", + "context": "• yy - Year (24)", "reference": "", "comment": "" }, { "term": "• yyyy - Year (2024)", "translation": "", - "context": "", + "context": "• yyyy - Year (2024)", "reference": "", "comment": "" }, { "term": "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text", "translation": "", - "context": "", + "context": "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text", "reference": "", "comment": "" }, { "term": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "translation": "", - "context": "", + "context": "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "reference": "", "comment": "" }, { "term": "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "translation": "", - "context": "Keyboard hints when enter-to-paste is enabled", + "context": "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help", "reference": "", - "comment": "" + "comment": "Keyboard hints when enter-to-paste is enabled" } ]