From 908b4b58cdcc08f50564aaae064eda8bbbf11f0d Mon Sep 17 00:00:00 2001 From: bbedward Date: Fri, 19 Dec 2025 14:04:37 -0500 Subject: [PATCH] desktop widgets: add grid/grid size hints --- quickshell/Common/SettingsData.qml | 15 + quickshell/Common/settings/SettingsSpec.js | 3 +- .../Modules/Plugins/DesktopPluginWrapper.qml | 242 +++++- quickshell/translations/en.json | 86 +- quickshell/translations/poexports/es.json | 461 ++++++---- quickshell/translations/poexports/he.json | 461 ++++++---- quickshell/translations/poexports/hu.json | 733 +++++++++------- quickshell/translations/poexports/it.json | 517 ++++++----- quickshell/translations/poexports/ja.json | 461 ++++++---- quickshell/translations/poexports/pl.json | 461 ++++++---- quickshell/translations/poexports/pt.json | 801 ++++++++++-------- quickshell/translations/poexports/tr.json | 461 ++++++---- quickshell/translations/poexports/zh_CN.json | 691 ++++++++------- quickshell/translations/poexports/zh_TW.json | 461 ++++++---- quickshell/translations/template.json | 21 + 15 files changed, 3508 insertions(+), 2367 deletions(-) diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index c6c0c358..41d3294b 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -447,6 +447,21 @@ Singleton { property var systemMonitorDisplayPreferences: ["all"] property var systemMonitorVariants: [] property var desktopWidgetPositions: ({}) + property var desktopWidgetGridSettings: ({}) + + function getDesktopWidgetGridSetting(screenKey, property, defaultValue) { + const val = desktopWidgetGridSettings?.[screenKey]?.[property]; + return val !== undefined ? val : defaultValue; + } + + function setDesktopWidgetGridSetting(screenKey, property, value) { + const allSettings = JSON.parse(JSON.stringify(desktopWidgetGridSettings || {})); + if (!allSettings[screenKey]) + allSettings[screenKey] = {}; + allSettings[screenKey][property] = value; + desktopWidgetGridSettings = allSettings; + saveSettings(); + } function getDesktopWidgetPosition(pluginId, screenKey, property, defaultValue) { const pos = desktopWidgetPositions?.[pluginId]?.[screenKey]?.[property]; diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index 1c1263ca..b55dd845 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -341,7 +341,8 @@ var SPEC = { systemMonitorHeight: { def: 480 }, systemMonitorDisplayPreferences: { def: ["all"] }, systemMonitorVariants: { def: [] }, - desktopWidgetPositions: { def: {} } + desktopWidgetPositions: { def: {} }, + desktopWidgetGridSettings: { def: {} } }; function getValidKeys() { diff --git a/quickshell/Modules/Plugins/DesktopPluginWrapper.qml b/quickshell/Modules/Plugins/DesktopPluginWrapper.qml index a04203ba..22bcd072 100644 --- a/quickshell/Modules/Plugins/DesktopPluginWrapper.qml +++ b/quickshell/Modules/Plugins/DesktopPluginWrapper.qml @@ -1,9 +1,11 @@ import QtQuick +import QtQuick.Controls import Quickshell import Quickshell.Wayland import Quickshell.Hyprland import qs.Common import qs.Services +import qs.Widgets Item { id: root @@ -86,6 +88,20 @@ Item { property bool forceSquare: contentLoader.item?.forceSquare ?? false property bool isInteracting: dragArea.pressed || resizeArea.pressed + property var _gridSettingsTrigger: SettingsData.desktopWidgetGridSettings + readonly property int gridSize: { + void _gridSettingsTrigger; + return SettingsData.getDesktopWidgetGridSetting(screenKey, "size", 40); + } + readonly property bool gridEnabled: { + void _gridSettingsTrigger; + return SettingsData.getDesktopWidgetGridSetting(screenKey, "enabled", false); + } + + function snapToGrid(value) { + return Math.round(value / gridSize) * gridSize; + } + function updateVariantPositions(updates) { const positions = JSON.parse(JSON.stringify(variantData?.positions || {})); positions[screenKey] = Object.assign({}, positions[screenKey] || {}, updates); @@ -141,7 +157,13 @@ Item { WlrLayershell.namespace: "quickshell:desktop-widget:" + root.pluginId + (root.variantId ? ":" + root.variantId : "") WlrLayershell.layer: WlrLayer.Bottom WlrLayershell.exclusionMode: ExclusionMode.Ignore - WlrLayershell.keyboardFocus: (CompositorService.useHyprlandFocusGrab && root.isInteracting) ? WlrKeyboardFocus.OnDemand : WlrKeyboardFocus.None + WlrLayershell.keyboardFocus: { + if (!root.isInteracting) + return WlrKeyboardFocus.None; + if (CompositorService.useHyprlandFocusGrab) + return WlrKeyboardFocus.OnDemand; + return WlrKeyboardFocus.Exclusive; + } HyprlandFocusGrab { active: CompositorService.isHyprland && root.isInteracting @@ -238,8 +260,12 @@ Item { if (!pressed) return; const currentPos = root.useGhostPreview ? Qt.point(mouse.x, mouse.y) : mapToGlobal(mouse.x, mouse.y); - const newX = Math.max(0, Math.min(startX + currentPos.x - startPos.x, root.screenWidth - root.widgetWidth)); - const newY = Math.max(0, Math.min(startY + currentPos.y - startPos.y, root.screenHeight - root.widgetHeight)); + let newX = Math.max(0, Math.min(startX + currentPos.x - startPos.x, root.screenWidth - root.widgetWidth)); + let newY = Math.max(0, Math.min(startY + currentPos.y - startPos.y, root.screenHeight - root.widgetHeight)); + if (root.gridEnabled) { + newX = Math.max(0, Math.min(root.snapToGrid(newX), root.screenWidth - root.widgetWidth)); + newY = Math.max(0, Math.min(root.snapToGrid(newY), root.screenHeight - root.widgetHeight)); + } if (root.useGhostPreview) { root.previewX = newX; root.previewY = newY; @@ -285,6 +311,10 @@ Item { const currentPos = root.useGhostPreview ? Qt.point(mouse.x, mouse.y) : mapToGlobal(mouse.x, mouse.y); let newW = Math.max(root.minWidth, Math.min(startWidth + currentPos.x - startPos.x, root.screenWidth - root.widgetX)); let newH = Math.max(root.minHeight, Math.min(startHeight + currentPos.y - startPos.y, root.screenHeight - root.widgetY)); + if (root.gridEnabled) { + newW = Math.max(root.minWidth, root.snapToGrid(newW)); + newH = Math.max(root.minHeight, root.snapToGrid(newH)); + } if (root.forceSquare) { const size = Math.max(newW, newH); newW = Math.min(size, root.screenWidth - root.widgetX); @@ -330,6 +360,39 @@ Item { WlrLayershell.exclusionMode: ExclusionMode.Ignore WlrLayershell.keyboardFocus: WlrKeyboardFocus.None + Item { + id: gridOverlay + anchors.fill: parent + visible: root.gridEnabled + opacity: 0.3 + + Repeater { + model: Math.ceil(root.screenWidth / root.gridSize) + + Rectangle { + required property int index + x: index * root.gridSize + y: 0 + width: 1 + height: root.screenHeight + color: Theme.primary + } + } + + Repeater { + model: Math.ceil(root.screenHeight / root.gridSize) + + Rectangle { + required property int index + x: 0 + y: index * root.gridSize + width: root.screenWidth + height: 1 + color: Theme.primary + } + } + } + Rectangle { x: root.previewX y: root.previewY @@ -355,4 +418,177 @@ Item { } } } + + Loader { + active: root.isInteracting && root.gridEnabled && !root.useGhostPreview + + sourceComponent: PanelWindow { + screen: root.screen + color: "transparent" + + anchors { + left: true + right: true + top: true + bottom: true + } + + mask: Region {} + + WlrLayershell.namespace: "quickshell:desktop-widget-grid" + WlrLayershell.layer: WlrLayer.Background + WlrLayershell.exclusionMode: ExclusionMode.Ignore + WlrLayershell.keyboardFocus: WlrKeyboardFocus.None + + Item { + anchors.fill: parent + opacity: 0.3 + + Repeater { + model: Math.ceil(root.screenWidth / root.gridSize) + + Rectangle { + required property int index + x: index * root.gridSize + y: 0 + width: 1 + height: root.screenHeight + color: Theme.primary + } + } + + Repeater { + model: Math.ceil(root.screenHeight / root.gridSize) + + Rectangle { + required property int index + x: 0 + y: index * root.gridSize + width: root.screenWidth + height: 1 + color: Theme.primary + } + } + } + } + } + + Loader { + active: root.isInteracting + + sourceComponent: PanelWindow { + id: helperWindow + screen: root.screen + color: "transparent" + + WlrLayershell.namespace: "quickshell:desktop-widget-helper" + WlrLayershell.layer: WlrLayer.Overlay + WlrLayershell.exclusionMode: ExclusionMode.Ignore + WlrLayershell.keyboardFocus: { + if (CompositorService.useHyprlandFocusGrab) + return WlrKeyboardFocus.OnDemand; + return WlrKeyboardFocus.Exclusive; + } + + HyprlandFocusGrab { + active: CompositorService.isHyprland + windows: [helperWindow] + } + + anchors { + bottom: true + left: true + right: true + } + + implicitHeight: 60 + + Item { + anchors.fill: parent + focus: true + + Keys.onPressed: event => { + switch (event.key) { + case Qt.Key_G: + SettingsData.setDesktopWidgetGridSetting(root.screenKey, "enabled", !root.gridEnabled); + event.accepted = true; + break; + case Qt.Key_Z: + SettingsData.setDesktopWidgetGridSetting(root.screenKey, "size", Math.max(10, root.gridSize - 10)); + event.accepted = true; + break; + case Qt.Key_X: + SettingsData.setDesktopWidgetGridSetting(root.screenKey, "size", Math.min(200, root.gridSize + 10)); + event.accepted = true; + break; + } + } + } + + Rectangle { + id: helperContent + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: Theme.spacingL + width: helperRow.implicitWidth + Theme.spacingM * 2 + height: 32 + radius: Theme.cornerRadius + color: Theme.surface + + Row { + id: helperRow + anchors.centerIn: parent + spacing: Theme.spacingM + height: parent.height + + DankIcon { + name: "grid_on" + size: 16 + color: root.gridEnabled ? Theme.primary : Theme.surfaceText + anchors.verticalCenter: parent.verticalCenter + } + + Text { + text: root.gridEnabled ? I18n.tr("Grid: ON", "Widget grid snap status") : I18n.tr("Grid: OFF", "Widget grid snap status") + font.pixelSize: Theme.fontSizeSmall + font.family: Theme.fontFamily + color: root.gridEnabled ? Theme.primary : Theme.surfaceText + anchors.verticalCenter: parent.verticalCenter + } + + Rectangle { + width: 1 + height: 16 + color: Theme.outline + anchors.verticalCenter: parent.verticalCenter + } + + Text { + text: root.gridSize + "px" + font.pixelSize: Theme.fontSizeSmall + font.family: Theme.fontFamily + color: Theme.surfaceText + anchors.verticalCenter: parent.verticalCenter + } + + Rectangle { + width: 1 + height: 16 + color: Theme.outline + anchors.verticalCenter: parent.verticalCenter + } + + Text { + text: I18n.tr("G: grid • Z/X: size", "Widget grid keyboard hints") + font.pixelSize: Theme.fontSizeSmall + font.family: Theme.fontFamily + font.italic: true + color: Theme.surfaceText + opacity: 0.7 + anchors.verticalCenter: parent.verticalCenter + } + } + } + } + } } diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index 339c7e5d..a248a90b 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -548,7 +548,7 @@ { "term": "Audio Codec Selection", "context": "Audio Codec Selection", - "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:173", + "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:180", "comment": "" }, { @@ -848,7 +848,7 @@ { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:838, Modules/Settings/WidgetsTab.qml:168, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:19", + "reference": "Modules/Settings/WidgetsTabSection.qml:838, Modules/Settings/WidgetsTab.qml:168, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "" }, { @@ -884,7 +884,7 @@ { "term": "Binds include added", "context": "Binds include added", - "reference": "Services/KeybindsService.qml:217", + "reference": "Services/KeybindsService.qml:218", "comment": "" }, { @@ -1118,7 +1118,7 @@ { "term": "Capacity", "context": "Capacity", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:171, Modules/DankBar/Popouts/BatteryPopout.qml:340, Modules/DankBar/Popouts/BatteryPopout.qml:498", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:169, Modules/DankBar/Popouts/BatteryPopout.qml:340, Modules/DankBar/Popouts/BatteryPopout.qml:498", "comment": "" }, { @@ -1172,7 +1172,7 @@ { "term": "Charging", "context": "Charging", - "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:27", + "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:25", "comment": "" }, { @@ -1196,7 +1196,7 @@ { "term": "Choose a color", "context": "Choose a color", - "reference": "Modules/ControlCenter/Widgets/ColorPickerPill.qml:18", + "reference": "Modules/ControlCenter/Widgets/ColorPickerPill.qml:14", "comment": "" }, { @@ -1412,7 +1412,7 @@ { "term": "Color Picker", "context": "Color Picker", - "reference": "Modules/Settings/WidgetsTab.qml:231, Modules/ControlCenter/Models/WidgetModel.qml:179, Modules/ControlCenter/Widgets/ColorPickerPill.qml:17", + "reference": "Modules/Settings/WidgetsTab.qml:231, Modules/ControlCenter/Models/WidgetModel.qml:179, Modules/ControlCenter/Widgets/ColorPickerPill.qml:13", "comment": "" }, { @@ -1760,7 +1760,7 @@ { "term": "Current: %1", "context": "Current: %1", - "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:189", + "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:194", "comment": "" }, { @@ -2186,7 +2186,7 @@ { "term": "Disk Usage", "context": "Disk Usage", - "reference": "Modules/Settings/WidgetsTab.qml:116, Modules/ControlCenter/Models/WidgetModel.qml:169, Modules/ControlCenter/Widgets/DiskUsagePill.qml:37", + "reference": "Modules/Settings/WidgetsTab.qml:116, Modules/ControlCenter/Models/WidgetModel.qml:169, Modules/ControlCenter/Widgets/DiskUsagePill.qml:35", "comment": "" }, { @@ -2666,7 +2666,7 @@ { "term": "Failed to add binds include", "context": "Failed to add binds include", - "reference": "Services/KeybindsService.qml:204", + "reference": "Services/KeybindsService.qml:205", "comment": "" }, { @@ -2834,7 +2834,7 @@ { "term": "Failed to remove keybind", "context": "Failed to remove keybind", - "reference": "Services/KeybindsService.qml:181", + "reference": "Services/KeybindsService.qml:182", "comment": "" }, { @@ -2864,7 +2864,7 @@ { "term": "Failed to save keybind", "context": "Failed to save keybind", - "reference": "Services/KeybindsService.qml:155", + "reference": "Services/KeybindsService.qml:156", "comment": "" }, { @@ -2894,13 +2894,13 @@ { "term": "Failed to set profile image", "context": "Failed to set profile image", - "reference": "Services/PortalService.qml:150", + "reference": "Services/PortalService.qml:145", "comment": "" }, { "term": "Failed to set profile image: %1", "context": "Failed to set profile image: %1", - "reference": "Services/PortalService.qml:159", + "reference": "Services/PortalService.qml:154", "comment": "" }, { @@ -3155,6 +3155,12 @@ "reference": "Widgets/DankIconPicker.qml:60", "comment": "" }, + { + "term": "G: grid • Z/X: size", + "context": "Widget grid keyboard hints", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:582", + "comment": "" + }, { "term": "GPU", "context": "GPU", @@ -3245,6 +3251,18 @@ "reference": "Modules/Settings/LauncherTab.qml:330", "comment": "" }, + { + "term": "Grid: OFF", + "context": "Widget grid snap status", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:552", + "comment": "" + }, + { + "term": "Grid: ON", + "context": "Widget grid snap status", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:552", + "comment": "" + }, { "term": "Group by App", "context": "Group by App", @@ -3284,7 +3302,7 @@ { "term": "Health", "context": "Health", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:136, Modules/DankBar/Popouts/BatteryPopout.qml:305, Modules/DankBar/Popouts/BatteryPopout.qml:461", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:134, Modules/DankBar/Popouts/BatteryPopout.qml:305, Modules/DankBar/Popouts/BatteryPopout.qml:461", "comment": "" }, { @@ -3788,7 +3806,7 @@ { "term": "Loading codecs...", "context": "Loading codecs...", - "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:189", + "reference": "Modules/ControlCenter/Details/BluetoothCodecSelector.qml:194", "comment": "" }, { @@ -3926,7 +3944,7 @@ { "term": "Management", "context": "Management", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:84", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:82", "comment": "" }, { @@ -4448,7 +4466,7 @@ { "term": "No battery", "context": "No battery", - "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:15", "comment": "" }, { @@ -4478,13 +4496,13 @@ { "term": "No disk data", "context": "No disk data", - "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:40", + "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:38", "comment": "" }, { "term": "No disk data available", "context": "No disk data available", - "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:64, Modules/ControlCenter/Widgets/DiskUsagePill.qml:50", + "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:62, Modules/ControlCenter/Widgets/DiskUsagePill.qml:48", "comment": "" }, { @@ -4586,7 +4604,7 @@ { "term": "Not available", "context": "Not available", - "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:24", + "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:22", "comment": "" }, { @@ -4940,7 +4958,7 @@ { "term": "Permission denied to set profile image.", "context": "Permission denied to set profile image.", - "reference": "Services/PortalService.qml:155", + "reference": "Services/PortalService.qml:150", "comment": "" }, { @@ -5018,7 +5036,7 @@ { "term": "Plugged in", "context": "Plugged in", - "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:30", + "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:28", "comment": "" }, { @@ -5084,7 +5102,7 @@ { "term": "Power", "context": "Power", - "reference": "Modules/Settings/WidgetsTab.qml:245, Modules/ControlCenter/Details/BatteryDetail.qml:69", + "reference": "Modules/Settings/WidgetsTab.qml:245, Modules/ControlCenter/Details/BatteryDetail.qml:67", "comment": "" }, { @@ -5132,13 +5150,13 @@ { "term": "Power Profile Degradation", "context": "Power Profile Degradation", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:242, Modules/DankBar/Popouts/BatteryPopout.qml:620", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:240, Modules/DankBar/Popouts/BatteryPopout.qml:620", "comment": "" }, { "term": "Power profile management available", "context": "Power profile management available", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:103", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:101", "comment": "" }, { @@ -5276,13 +5294,13 @@ { "term": "Profile Image Error", "context": "Profile Image Error", - "reference": "Services/PortalService.qml:162", + "reference": "Services/PortalService.qml:157", "comment": "" }, { "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:153", + "reference": "Services/PortalService.qml:148", "comment": "" }, { @@ -5876,7 +5894,7 @@ { "term": "Selected image file not found.", "context": "Selected image file not found.", - "reference": "Services/PortalService.qml:157", + "reference": "Services/PortalService.qml:152", "comment": "" }, { @@ -6752,13 +6770,13 @@ { "term": "Time remaining: %1", "context": "Time remaining: %1", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:106", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:104", "comment": "" }, { "term": "Time until full: %1", "context": "Time until full: %1", - "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:106", + "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:104", "comment": "" }, { @@ -6950,7 +6968,7 @@ { "term": "Unknown", "context": "Unknown", - "reference": "Modules/Settings/PrinterTab.qml:1296, Modules/Settings/NetworkTab.qml:121, Modules/Settings/NetworkTab.qml:163, Modules/Settings/NetworkTab.qml:369, Modules/Settings/NetworkTab.qml:390, Modules/Settings/NetworkTab.qml:538, Modules/Settings/NetworkTab.qml:667, Modules/Settings/NetworkTab.qml:1071, Modules/ControlCenter/Details/BatteryDetail.qml:179, Modules/ControlCenter/Components/HeaderPane.qml:60", + "reference": "Modules/Settings/PrinterTab.qml:1296, Modules/Settings/NetworkTab.qml:121, Modules/Settings/NetworkTab.qml:163, Modules/Settings/NetworkTab.qml:369, Modules/Settings/NetworkTab.qml:390, Modules/Settings/NetworkTab.qml:538, Modules/Settings/NetworkTab.qml:667, Modules/Settings/NetworkTab.qml:1071, Modules/ControlCenter/Details/BatteryDetail.qml:177, Modules/ControlCenter/Components/HeaderPane.qml:60", "comment": "" }, { @@ -7592,7 +7610,7 @@ { "term": "dgop not available", "context": "dgop not available", - "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:64, Modules/ControlCenter/Widgets/DiskUsagePill.qml:47", + "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:62, Modules/ControlCenter/Widgets/DiskUsagePill.qml:45", "comment": "" }, { @@ -7604,7 +7622,7 @@ { "term": "dms/binds.kdl is now included in config.kdl", "context": "dms/binds.kdl is now included in config.kdl", - "reference": "Services/KeybindsService.qml:217", + "reference": "Services/KeybindsService.qml:218", "comment": "" }, { diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index 1068abac..61a60e45 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "" }, - "Active: ": { - "Active: ": "Activo:" + "Active: %1": { + "Active: %1": "" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "" }, "Active: None": { "Active: None": "Activo: Ninguno" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "Añade un recuadro alrededor del dock" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "" + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "Ajustar cuántas columnas se muestran en la cuadrícula." }, @@ -209,6 +215,12 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "Mostrar siempre al menos 3 espacios, aunque haya menos disponibles" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "" + }, "Amount": { "Amount": "" }, @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "Dispositivos de audio" }, + "Audio Input": { + "Audio Input": "" + }, + "Audio Output": { + "Audio Output": "" + }, "Audio Output Devices (": { "Audio Output Devices (": "Salida de audio (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "" }, + "Audio volume control": { + "Audio volume control": "" + }, "Auth": { "Auth": "Autenticación" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "Ciclo automático" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "Calcular automáticamente el espacio desde la barra hasta el popup." - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "Rotar automáticamente entre los fondos de pantalla en la misma carpeta" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "Complementos disponibles" }, - "Available Screens (": { - "Available Screens (": "Pantallas disponibles (" + "Available Screens (%1)": { + "Available Screens (%1)": "" }, "BSSID": { "BSSID": "BSSID" @@ -392,6 +410,9 @@ "Background Opacity": { "Background Opacity": "" }, + "Backlight device": { + "Backlight device": "" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Colores armonizados con acentos definidos (base)." }, @@ -404,6 +425,9 @@ "Battery": { "Battery": "Batería" }, + "Battery and power management": { + "Battery and power management": "" + }, "Battery level and power management": { "Battery level and power management": "Nivel de batería y gestión de energía" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "" }, + "Block notifications": { + "Block notifications": "" + }, + "Blocked": { + "Blocked": "" + }, + "Blue light filter": { + "Blue light filter": "" + }, "Bluetooth": { "Bluetooth": "Bluetooth" }, "Bluetooth Settings": { "Bluetooth Settings": "Ajustes Bluetooth" }, - "Blur Layer": { - "Blur Layer": "Capa de desenfoque" + "Bluetooth not available": { + "Bluetooth not available": "" }, "Blur on Overview": { "Blur on Overview": "Desenfocar en la vista general" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "Brillo" }, - "Brightness OSD": { - "Brightness OSD": "Brillo OSD" + "Brightness Slider": { + "Brightness Slider": "" + }, + "Brightness control not available": { + "Brightness control not available": "" }, "Browse": { "Browse": "Explorar" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "Servidor de impresión CUPS" }, + "CUPS not available": { + "CUPS not available": "" + }, "Camera": { "Camera": "Cámara" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "Cancelado" }, + "Cannot pair": { + "Cannot pair": "" + }, "Capabilities": { "Capabilities": "Capacidades" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "Indicador de Bloq Mayús" }, - "Caps Lock OSD": { - "Caps Lock OSD": "Bloq Mayús OSD" - }, "Center Section": { "Center Section": "Sección central" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "Cambiar apariencia de la barra" }, - "Changes:": { - "Changes:": "Cambios:" - }, "Channel": { "Channel": "Canal" }, + "Charging": { + "Charging": "" + }, "Check for system updates": { "Check for system updates": "Comprobar actualizaciones del sistema" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Elegir Color del Icono en el Lanzador" }, + "Choose a color": { + "Choose a color": "" + }, + "Choose colors from palette": { + "Choose colors from palette": "" + }, "Choose icon": { "Choose icon": "Elegir icono" }, @@ -569,9 +614,6 @@ "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" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "Color de acento del contorno" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Elegir posición de las notificaciones" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" + }, + "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": "Clic en importar para añadir un archivo .ovpn o .conf" }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "" }, - "Clock show seconds": { - "Clock show seconds": "Mostrar segundos en el reloj" - }, "Close": { "Close": "Cerrar" }, @@ -683,24 +728,6 @@ "Command": { "Command": "Comando" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "Comando a ejecutar al hibernar" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "Comando a ejecutar al bloquear" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "Comando a ejecutar al cerrar sesión" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "Comando a ejecutar al apagar" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "Comando a ejecutar al reiniciar" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "Comando a ejecutar al suspender" - }, "Communication": { "Communication": "Comunicación" }, @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "Conectando al dispositivo" }, + "Connecting...": { + "Connecting...": "" + }, "Contrast": { "Contrast": "Contraste" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "Controla la opacidad de todas las ventanas, modales y sus capas de contenido (DankDash, Ajustes, Cajón de aplicaciones, Centro de control, etc.)" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "Controla la opacidad de los widgets individuales dentro de DankBar" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "Controla la opacidad del fondo de DankBar" - }, "Cooldown": { "Cooldown": "" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "Condiciones meteorológicas y temperatura actuales" }, + "Current: %1": { + "Current: %1": "" + }, "Custom": { "Custom": "Personal" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "Personalizar qué acciones aparecen en el menú de energía" }, + "DDC/CI monitor": { + "DDC/CI monitor": "" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "DEMOSTRACIÓN - Haz clic en cualquier lugar para salir" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Tamaño de fuente" - }, "DankSearch not available": { "DankSearch not available": "DankSearch no disponible" }, @@ -1019,6 +1043,9 @@ "Device": { "Device": "Dispositivo" }, + "Device connections": { + "Device connections": "" + }, "Device paired": { "Device paired": "Dispositivo emparejado" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "" - }, "Disable History Persistence": { "Disable History Persistence": "" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "Desactivado" }, + "Disabling WiFi...": { + "Disabling WiFi...": "" + }, "Discard": { "Discard": "" }, @@ -1088,6 +1115,9 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Mostrar iconos de aplicaciones en los espacios" }, + "Display brightness control": { + "Display brightness control": "" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "" }, @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "" }, - "Display settings for ": { - "Display settings for ": "Ajustes de pantalla para " - }, "Display the power system menu": { "Display the power system menu": "" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "Dominio (opcional)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Donar en Ko-fi" + "Don't Change": { + "Don't Change": "" + }, + "Don't Save": { + "Don't Save": "" }, "Door Open": { "Door Open": "Puera abierta" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "Desenfocar fondo de pantalla" }, - "Duration": { - "Duration": "Duración" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "Habilitar barra" }, - "Enable Border": { - "Enable Border": "" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "Habilitar WiFi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Activar capa de desenfoque dirigida por el compositor (namespace: dms:blurwallpaper). Requiere configuración manual de Niri." }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "Habilitado" }, + "Enabling WiFi...": { + "Enabling WiFi...": "" + }, "End": { "End": "Final" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "Ingrese nombre de archivo..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "" + }, "Enter passkey for ": { "Enter passkey for ": "Ingresar clave para " }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "" }, + "Exponential": { + "Exponential": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Accionar • F10: Ayudar" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "Hubo un error al conectar con la VPN" }, - "Failed to connect to ": { - "Failed to connect to ": "Error al conectar a " + "Failed to connect to %1": { + "Failed to connect to %1": "" }, "Failed to copy entry": { "Failed to copy entry": "" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "Error al desactivar la aceptación de trabajos" }, + "Failed to disable night mode": { + "Failed to disable night mode": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Error al desconectar VPN" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "Error al desconectar Wi‑Fi" }, + "Failed to enable IP location": { + "Failed to enable IP location": "" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "Error al activar el WiFi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "Error al habilitar la aceptación de trabajos" }, + "Failed to enable night mode": { + "Failed to enable night mode": "" + }, "Failed to hold job": { "Failed to hold job": "Error al retener el trabajo" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "" }, + "Failed to set brightness": { + "Failed to set brightness": "" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "" + }, "Failed to set profile image": { "Failed to set profile image": "Hubo un error al poner la imágen de perfil" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "Hubo un error al poner la imagen de perfil:" + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "" }, - "Failed to start connection to ": { - "Failed to start connection to ": "Error al iniciar la conexión a" + "Failed to start connection to %1": { + "Failed to start connection to %1": "" }, "Failed to update VPN": { "Failed to update VPN": "Error al actualizar VPN" @@ -1448,6 +1499,9 @@ "Files": { "Files": "Archivos" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "" + }, "Find in Text": { "Find in Text": "Encontrar texto" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "Olvidar red" }, - "Forgot network ": { - "Forgot network ": "Se olvidó la red" + "Forgot network %1": { + "Forgot network %1": "" }, "Format Legend": { "Format Legend": "Guía de formato" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "Temperatura de GPU" }, - "GPU temperature display": { - "GPU temperature display": "Mostrar temperatura de GPU" - }, "Games": { "Games": "Juegos" }, @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "Duración antes de ocultar (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Ocultar el dock cuando no esté en uso y mostrarlo cuando se pasé el ratón cerca del área de este" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "Paleta de alto contraste para mejor visibilidad." - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Paleta fiel que conserva los tonos originales." }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "Cuanto tiempo se debe mantener el botón para confirmar la acción" - }, "How often to change wallpaper": { "How often to change wallpaper": "Con qué frecuencia cambiar el fondo de pantalla" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "Inhibir inactividad" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "Inhibir inactividad OSD" - }, "Idle Settings": { "Idle Settings": "Ajustes de inactividad" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "Mantener activo mientras se reproduce audio o video" - }, "Input Devices": { "Input Devices": "Dispositivos de entrada" }, + "Input Volume Slider": { + "Input Volume Slider": "" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "Instalar complementos de los registros de complementos DMS" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "" + }, "Last launched %1": { "Last launched %1": "Usado hace %1" }, @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "Modo claro" }, + "Linear": { + "Linear": "" + }, "Lines: %1": { "Lines: %1": "Líneas: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "Paleta vibrante con acentos saturados." }, + "Loading codecs...": { + "Loading codecs...": "" + }, "Loading keybinds...": { "Loading keybinds...": "Cargando los atajos..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "Administra hasta 4 barras diferentes. Cada una tiene su posición, widgets, estilo y pantalla asignada." }, + "Management": { + "Management": "" + }, "Manual Coordinates": { "Manual Coordinates": "Coordenadas manuales" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Paleta de Matugen" }, - "Matugen Settings": { - "Matugen Settings": "Ajustes de Matugen" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Monitor objetivo de Matugen" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "Volumen de multimedia" }, - "Media Volume OSD": { - "Media Volume OSD": "Volumen multimedia OSD" - }, "Medium": { "Medium": "Medio" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "Silenciar micrófono" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "Silencio del micrófono OSD" + "Microphone settings": { + "Microphone settings": "" + }, + "Microphone volume control": { + "Microphone volume control": "" }, "Middle Section": { "Middle Section": "Sección central" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "Modo:" }, - "Mode: ": { - "Mode: ": "Modo: " - }, "Model": { "Model": "Modelo" }, @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "Información de red" }, - "Network Settings": { - "Network Settings": "Ajustes de red" - }, "Network Speed Monitor": { "Network Speed Monitor": "Monitor de velocidad de red" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "Sin adaptadores" }, + "No battery": { + "No battery": "" + }, + "No brightness devices available": { + "No brightness devices available": "" + }, "No changes": { "No changes": "Sin cambios" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "No se encontraron dispositivos" }, + "No disk data": { + "No disk data": "" + }, + "No disk data available": { + "No disk data available": "" + }, "No drivers found": { "No drivers found": "No se encontraron controladores" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "Prioridad normal" }, + "Not available": { + "Not available": "" + }, "Not connected": { "Not connected": "No conectado" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "Otro" }, - "Outline Color": { - "Outline Color": "Color" - }, - "Outline Opacity": { - "Outline Opacity": "Opacidad" - }, - "Outline Thickness": { - "Outline Thickness": "Ancho" - }, "Output Area Almost Full": { "Output Area Almost Full": "Área de salida casi llena" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Emparejar dispositivo Bluetooth" }, + "Paired": { + "Paired": "" + }, "Pairing failed": { "Pairing failed": "Emparejamiento fallido" }, + "Pairing...": { + "Pairing...": "" + }, "Passkey:": { "Passkey:": "Clave de acceso:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "Personalización" }, + "Pin": { + "Pin": "" + }, "Pin to Dock": { "Pin to Dock": "Fijar al dock" }, + "Pinned": { + "Pinned": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Pon aquí el directorio de complementos. Cada complemento debe tener un archivo plugin.json adjunto." }, - "Place plugins in": { - "Place plugins in": "Coloca complementos en" + "Place plugins in %1": { + "Place plugins in %1": "" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "Reproducir sonido al recibir una nueva notificación" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "Enchufado" }, + "Plugged in": { + "Plugged in": "" + }, + "Plugin": { + "Plugin": "" + }, "Plugin Directory": { "Plugin Directory": "Directorio de complementos" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "Complementos" }, - "Plugins:": { - "Plugins:": "Complementos:" - }, "Pointer": { "Pointer": "" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "Posición" }, - "Position: ": { - "Position: ": "Posición: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "Perfil de Energía Degradada" }, - "Power Profile OSD": { - "Power Profile OSD": "Perfil de energía OSD" + "Power profile management available": { + "Power profile management available": "" }, "Power source": { "Power source": "" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "Presión" }, - "Prevent idle for media": { - "Prevent idle for media": "No pausar el reproductor por inactividad" - }, "Prevent screen timeout": { "Prevent screen timeout": "Evitar que la pantalla se apague por inactividad" }, "Primary": { "Primary": "Primario" }, + "Print Server Management": { + "Print Server Management": "" + }, "Print Server not available": { "Print Server not available": "Servidor de impresión no disponible" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "Reporte" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Pedir confirmación al seleccionar apagar, reiniciar, suspender, hibernar u otras acciones para cerrar sesión" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Requiere mantener pulsado el botón/tecla para confirmar apagar, reiniciar, suspender, hibernar y cerrar sesión" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "" + }, + "Requires DMS %1": { + "Requires DMS %1": "" }, "Requires DWL compositor": { "Requires DWL compositor": "Requiere un compositor DWL" }, + "Requires night mode support": { + "Requires night mode support": "" + }, "Reset": { "Reset": "Reiniciar" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "" }, - "Resources": { - "Resources": "Recursos" - }, - "Restart": { - "Restart": "Reiniciar" - }, "Restart DMS": { "Restart DMS": "Reiniciar DMS" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "Revertir" }, - "Reverting in:": { - "Reverting in:": "Revirtiendo en:" - }, "Right": { "Right": "Derecha" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "Clic derecho en la barra para cambiar" }, + "Root Filesystem": { + "Root Filesystem": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "Escanear" }, + "Scanning": { + "Scanning": "" + }, "Scanning...": { "Scanning...": "Escaneando..." }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "" + }, "Scrolling": { "Scrolling": "Desplazamiento" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "Selecciona un color de la paleta o usa el deslizador" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "Selecciona un ajuste predefinido o arrastra el deslizador" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "Elija un widget para añadir. Puede añadir varias copias del mismo widget si es necesario." }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "" + }, "Show All Tags": { "Show All Tags": "Mostrar todas las etiquetas" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "Mostrar una confirmación en las opciones de energía y apagado" - }, "Show Date": { "Show Date": "" }, @@ -2969,9 +3029,6 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "Mostrar solo espacios de trabajo ocupados" }, - "Show Power Actions": { - "Show Power Actions": "Mostrar acciones de apagado" - }, "Show Power Off": { "Show Power Off": "Mostrar Apagar" }, @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "Mostrar contraseña" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "Mostrar los botones de apagar, reiniciar y cerrar sesión en la pantalla de bloqueo" - }, - "Show seconds": { - "Show seconds": "Mostrar segundos" - }, "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" }, @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "Espacio" }, + "Speaker settings": { + "Speaker settings": "" + }, "Speed": { "Speed": "Velocidad" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "Atardecer" }, - "Support Development": { - "Support Development": "Apoyar desarrollo" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "Actualizaciones del sistema" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "Barra del sistema con widgets e información del sistema" - }, "System notification area icons": { "System notification area icons": "Iconos del área de notificaciones del sistema" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "" }, + "System theme toggle": { + "System theme toggle": "" + }, "System toast notifications": { "System toast notifications": "Notificaciones emergentes del sistema" }, - "System tray icons": { - "System tray icons": "Iconos de la bandeja del sistema" - }, "System update custom command": { "System update custom command": "Comando al actualizar" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "Texto" }, + "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.": "" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "La variable de entorno DMS_SOCKET no está configurada o el socket no está disponible. La gestión automática de complementos requiere DMS_SOCKET." }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "" }, + "Time remaining: %1": { + "Time remaining: %1": "" + }, + "Time until full: %1": { + "Time until full: %1": "" + }, "Timed Out": { "Timed Out": "Tiempo agotado" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "Desconocido" }, + "Unknown Config": { + "Unknown Config": "" + }, + "Unknown Device": { + "Unknown Device": "" + }, + "Unknown Monitor": { + "Unknown Monitor": "" + }, + "Unknown Network": { + "Unknown Network": "" + }, "Unpin from Dock": { "Unpin from Dock": "Desfijar del dock" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "Usado" }, + "User": { + "User": "" + }, "Username": { "Username": "Nombre de usuario" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "Configuración VPN actualizada" }, + "VPN connections": { + "VPN connections": "" + }, "VPN deleted": { "VPN deleted": "VPN eliminada" }, - "VPN imported: ": { - "VPN imported: ": "VPN importada:" + "VPN imported: %1": { + "VPN imported: %1": "" + }, + "VPN not available": { + "VPN not available": "" }, "VPN status and quick connect": { "VPN status and quick connect": "Estado de VPN y conexión rápida" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "" }, - "VRR: ": { - "VRR: ": "VRR: " - }, "Variable Refresh Rate": { "Variable Refresh Rate": "" }, @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "Cambio de volumen" }, - "Volume OSD": { - "Volume OSD": "Volumen OSD" + "Volume Slider": { + "Volume Slider": "" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volumen, brillo y otros indicadores en pantalla" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "Clima" }, - "Website:": { - "Website:": "Sitio web:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Al activarse, las aplicaciones se ordenan alfabéticamente. Al desactivarse, se ordenan por frecuencia de uso." }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Con esto activo, se mostrará el lanzador automáticamente cuando escribas algo en la vista general de Niri. Desactiva esto si prefieres que el lanzador no se abra al escribir en la vista general." - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "", "When updater widget is used, then hide it if no update found": "" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "Contraseña Wi-Fi" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "" + }, "WiFi": { "WiFi": "Wi-Fi" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "" }, - "Widgets": { - "Widgets": "Widgets" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "Viento" @@ -3696,21 +3775,27 @@ "days": { "days": "" }, + "dgop not available": { + "dgop not available": "" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "" + }, "events": { "events": "eventos" }, diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index 55b59666..b7dd4159 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "המסך הפעיל שבו מוצג מסך הנעילה" }, - "Active: ": { - "Active: ": "פעיל: " + "Active: %1": { + "Active: %1": "" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "" }, "Active: None": { "Active: None": "פעיל: אין" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "הוסף/י מסגרת מסביב לDock" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "" + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "התאם/י את מספר העמודות במצב תצוגת רשת." }, @@ -209,6 +215,12 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "הצג/י תמיד לפחות 3 סביבות עבודה, גם אם קיימות פחות סביבות פעילות" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "" + }, "Amount": { "Amount": "" }, @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "התקני אודיו" }, + "Audio Input": { + "Audio Input": "" + }, + "Audio Output": { + "Audio Output": "" + }, "Audio Output Devices (": { "Audio Output Devices (": "התקני פלט אודיו (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "" }, + "Audio volume control": { + "Audio volume control": "" + }, "Auth": { "Auth": "אימות" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "מעבר מחזורי אוטומטי" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "חישוב אוטומטי של מרחק החלונית הקופצת מקצה הרצועה." - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "עבור/עברי באופן אוטומטי ומחזורי בין רקעים שנמצאים באותה תיקייה" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "תוספים זמינים" }, - "Available Screens (": { - "Available Screens (": "מסכים זמינים (" + "Available Screens (%1)": { + "Available Screens (%1)": "" }, "BSSID": { "BSSID": "BSSID" @@ -392,6 +410,9 @@ "Background Opacity": { "Background Opacity": "" }, + "Backlight device": { + "Backlight device": "" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "פלטה מאוזנת עם דגשים ממוקדים (ברירת מחדל)." }, @@ -404,6 +425,9 @@ "Battery": { "Battery": "סוללה" }, + "Battery and power management": { + "Battery and power management": "" + }, "Battery level and power management": { "Battery level and power management": "רמת סוללה וניהול חשמל" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "" }, + "Block notifications": { + "Block notifications": "" + }, + "Blocked": { + "Blocked": "" + }, + "Blue light filter": { + "Blue light filter": "" + }, "Bluetooth": { "Bluetooth": "Bluetooth" }, "Bluetooth Settings": { "Bluetooth Settings": "הגדרות Bluetooth" }, - "Blur Layer": { - "Blur Layer": "שכבת טשטוש" + "Bluetooth not available": { + "Bluetooth not available": "" }, "Blur on Overview": { "Blur on Overview": "טשטוש בסקירה" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "בהירות" }, - "Brightness OSD": { - "Brightness OSD": "תצוגת בהירות (OSD)" + "Brightness Slider": { + "Brightness Slider": "" + }, + "Brightness control not available": { + "Brightness control not available": "" }, "Browse": { "Browse": "עיון" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "שרת ההדפסה של CUPS" }, + "CUPS not available": { + "CUPS not available": "" + }, "Camera": { "Camera": "מצלמה" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "בוטל" }, + "Cannot pair": { + "Cannot pair": "" + }, "Capabilities": { "Capabilities": "יכולות" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "מחוון Caps Lock" }, - "Caps Lock OSD": { - "Caps Lock OSD": "תצוגת Caps Lock (OSD)" - }, "Center Section": { "Center Section": "קטע אמצעי" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "שנה/י את מראה הסרגל" }, - "Changes:": { - "Changes:": "שינויים:" - }, "Channel": { "Channel": "ערוץ" }, + "Charging": { + "Charging": "" + }, "Check for system updates": { "Check for system updates": "בדוק/בדקי עדכוני מערכת" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "בחר/י צבע לוגו המשגר" }, + "Choose a color": { + "Choose a color": "" + }, + "Choose colors from palette": { + "Choose colors from palette": "" + }, "Choose icon": { "Choose icon": "בחר/י סמל" }, @@ -569,9 +614,6 @@ "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "בחר/י את הלוגו המוצג על כפתור המשגר בDankBar" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "בחר/י את צבע ההדגשה של מתאר הווידג׳ט" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "בחר/י היכן יופיעו התראות קופצות על המסך" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" + }, + "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." }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "" }, - "Clock show seconds": { - "Clock show seconds": "הצגת שניות בשעון" - }, "Close": { "Close": "סגירה" }, @@ -683,24 +728,6 @@ "Command": { "Command": "פקודה" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "פקודה או סקריפט להרצה במקום תהליך התרדמת הסטנדרטי" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "פקודה או סקריפט להרצה במקום תהליך הנעילה הסטנדרטי" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "פקודה או סקריפט להרצה במקום תהליך היציאה הסטנדרטי" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "פקודה או סקריפט להרצה במקום תהליך הכיבוי הסטנדרטי" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "פקודה או סקריפט להרצה במקום תהליך ההפעלה מחדש הסטנדרטי" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "פקודה או סקריפט להרצה במקום תהליך ההשהיה הסטנדרטי" - }, "Communication": { "Communication": "תקשורת" }, @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "מתחבר להתקן" }, + "Connecting...": { + "Connecting...": "" + }, "Contrast": { "Contrast": "ניגודיות" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "שולט בשקיפות של כל החלונות הקופצים, המודלים ושכבות התוכן שלהם" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "שולט בשקיפות של כל החלוניות הקופצות, הדיאלוגים ושכבות התוכן שלהם (DankDash, הגדרות, מגירת אפליקציות, מרכז בקרה וכו')" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "שולט בשקיפות של ווידג׳טים בודדים בתוך DankBar" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "שולט בשקיפות של רקע הלוח DankBar" - }, "Cooldown": { "Cooldown": "" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "תנאי מזג אוויר וטמפרטורה נוכחיים" }, + "Current: %1": { + "Current: %1": "" + }, "Custom": { "Custom": "מותאם אישית" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "התאם/י אישית אילו פעולות יופיעו בתפריט הכיבוי" }, + "DDC/CI monitor": { + "DDC/CI monitor": "" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "מצב הדגמה - לחץ/י בכל מקום כדי לצאת" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "קנה מידה לגופן של DankBar" - }, "DankSearch not available": { "DankSearch not available": "DankSearch אינו זמין" }, @@ -1019,6 +1043,9 @@ "Device": { "Device": "התקן" }, + "Device connections": { + "Device connections": "" + }, "Device paired": { "Device paired": "ההתקן צומד" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "" - }, "Disable History Persistence": { "Disable History Persistence": "" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "מושבת" }, + "Disabling WiFi...": { + "Disabling WiFi...": "" + }, "Discard": { "Discard": "" }, @@ -1088,6 +1115,9 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "הצג/י סמלי אפליקציות במצייני סביבת העבודה" }, + "Display brightness control": { + "Display brightness control": "" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "" }, @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "הצג/י שניות בשעון" }, - "Display settings for ": { - "Display settings for ": "הגדרות תצוגה עבור " - }, "Display the power system menu": { "Display the power system menu": "" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "דומיין (לא חובה)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "תרומה בKo-fi" + "Don't Change": { + "Don't Change": "" + }, + "Don't Save": { + "Don't Save": "" }, "Door Open": { "Door Open": "דלת פתוחה" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "שכפל/י רקע עם טשטוש" }, - "Duration": { - "Duration": "משך" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "צאת הכוכבים (דמדומים אסטרונומיים)" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "הפעל/י סרגל" }, - "Enable Border": { - "Enable Border": "הפעל/י מסגרת" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "הפעל/י Wi-Fi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "הפעל/י קו מתאר לווידג׳טים" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "הפעל/י שכבת טשטוש הניתנת לזיהוי על ידי הקומפוזיטור (namespace: dms:blurwallpaper). דורש הגדרה ידנית של niri." }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "מופעל" }, + "Enabling WiFi...": { + "Enabling WiFi...": "" + }, "End": { "End": "סוף" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "הקלד/י שם קובץ..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "" + }, "Enter passkey for ": { "Enter passkey for ": "הזן/הזיני מפתח גישה עבור " }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "" }, + "Exponential": { + "Exponential": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: החלפה • F10: עזרה" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "החיבור לVPN נכשל" }, - "Failed to connect to ": { - "Failed to connect to ": "כישלון בעת החיבור אל " + "Failed to connect to %1": { + "Failed to connect to %1": "" }, "Failed to copy entry": { "Failed to copy entry": "" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "השבתת קבלת עבודות נכשלה" }, + "Failed to disable night mode": { + "Failed to disable night mode": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "הניתוק מVPN נכשל" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "ניתוק הWiFi נכשל" }, + "Failed to enable IP location": { + "Failed to enable IP location": "" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "הפעלת הWiFi נכשלה" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "הפעלת קבלת עבודות נכשלה" }, + "Failed to enable night mode": { + "Failed to enable night mode": "" + }, "Failed to hold job": { "Failed to hold job": "השהיית העבודה נכשלה" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "שמירת קיצור המקלדת נכשלה" }, + "Failed to set brightness": { + "Failed to set brightness": "" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "" + }, "Failed to set profile image": { "Failed to set profile image": "הגדרת תמונת הפרופיל נכשלה" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "הגדרת תמונת הפרופיל נכשלה: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "" }, - "Failed to start connection to ": { - "Failed to start connection to ": "כישלון בעת התחלת החיבור אל " + "Failed to start connection to %1": { + "Failed to start connection to %1": "" }, "Failed to update VPN": { "Failed to update VPN": "עדכון הVPN נכשל" @@ -1448,6 +1499,9 @@ "Files": { "Files": "קבצים" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "" + }, "Find in Text": { "Find in Text": "חפש/י בטקסט" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "שכח/י רשת" }, - "Forgot network ": { - "Forgot network ": "לשכוח את הרשת " + "Forgot network %1": { + "Forgot network %1": "" }, "Format Legend": { "Format Legend": "מקרא תבניות" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "טמפרטורת GPU" }, - "GPU temperature display": { - "GPU temperature display": "תצוגת טמפרטורת GPU" - }, "Games": { "Games": "משחקים" }, @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "עיכוב הסתרה" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "השהיית הסתרה (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "הסתר/י את הDock כשאינו בשימוש והצג/י אותו מחדש בעת ריחוף ליד אזור העגינה" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "פלטת צבעים בעלת ניגודיות גבוהה להבדלים ויזואליים מובהקים." - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "פלטת צבעים בנאמנות גבוהה המשמרת את גווני המקור." }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "תחזית שעתית" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "כמה זמן להחזיק את הכפתור כדי לאשר את הפעולה" - }, "How often to change wallpaper": { "How often to change wallpaper": "כל כמה זמן להחליף רקע" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "מונע ההמתנה" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "תצוגת מונע ההמתנה (OSD)" - }, "Idle Settings": { "Idle Settings": "הגדרות המתנה" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "מנע/י כיבוי מסך אוטומטי בעת ניגון שמע או וידאו" - }, "Input Devices": { "Input Devices": "התקני קלט" }, + "Input Volume Slider": { + "Input Volume Slider": "" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "התקן/י תוספים ממאגר התוספים של DMS" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "" + }, "Last launched %1": { "Last launched %1": "ההפעלה האחרונה הייתה %1" }, @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "מצב בהיר" }, + "Linear": { + "Linear": "" + }, "Lines: %1": { "Lines: %1": "שורות: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "פלטת צבעים תוססת עם דגשים רוויים." }, + "Loading codecs...": { + "Loading codecs...": "" + }, "Loading keybinds...": { "Loading keybinds...": "טוען קיצורי מקלדת..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "נהל/י עד 4 תצורות סרגל עצמאיות. לכל סרגל יש מיקום, ווידג׳טים, סגנון והקצאת תצוגה משלו." }, + "Management": { + "Management": "" + }, "Manual Coordinates": { "Manual Coordinates": "קואורדינטות ידניות" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "פלטת צבעים של Matugen" }, - "Matugen Settings": { - "Matugen Settings": "הגדרות Matugen" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "מסך יעד עבור Matugen" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "עוצמת מדיה" }, - "Media Volume OSD": { - "Media Volume OSD": "תצוגת עוצמת מדיה (OSD)" - }, "Medium": { "Medium": "בינוני" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "השתקת מיקרופון" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "תצוגת השתקת מיקרופון (OSD)" + "Microphone settings": { + "Microphone settings": "" + }, + "Microphone volume control": { + "Microphone volume control": "" }, "Middle Section": { "Middle Section": "קטע אמצעי" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "מצב:" }, - "Mode: ": { - "Mode: ": "מצב: " - }, "Model": { "Model": "דגם" }, @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "מידע רשת מפורט" }, - "Network Settings": { - "Network Settings": "הגדרות רשת" - }, "Network Speed Monitor": { "Network Speed Monitor": "מנטר מהירות רשת" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "אין מתאמים" }, + "No battery": { + "No battery": "" + }, + "No brightness devices available": { + "No brightness devices available": "" + }, "No changes": { "No changes": "אין שינויים" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "לא נמצאו התקנים" }, + "No disk data": { + "No disk data": "" + }, + "No disk data available": { + "No disk data available": "" + }, "No drivers found": { "No drivers found": "לא נמצאו מנהלי התקן" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "עדיפות רגילה" }, + "Not available": { + "Not available": "" + }, "Not connected": { "Not connected": "לא מחובר" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "אחר" }, - "Outline Color": { - "Outline Color": "צבע מתאר" - }, - "Outline Opacity": { - "Outline Opacity": "שקיפות מתאר" - }, - "Outline Thickness": { - "Outline Thickness": "עובי מתאר" - }, "Output Area Almost Full": { "Output Area Almost Full": "אזור הפלט כמעט מלא" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "צמד/י התקן Bluetooth" }, + "Paired": { + "Paired": "" + }, "Pairing failed": { "Pairing failed": "הצימוד נכשל" }, + "Pairing...": { + "Pairing...": "" + }, "Passkey:": { "Passkey:": "מפתח גישה:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "התאמה אישית" }, + "Pin": { + "Pin": "" + }, "Pin to Dock": { "Pin to Dock": "נעץ/י בDock" }, + "Pinned": { + "Pinned": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "מקם/י כאן את תיקיות התוספים. לכל תוסף צריך להיות קובץ מניפסט בשם plugin.json." }, - "Place plugins in": { - "Place plugins in": "מקם/י תוספים ב" + "Place plugins in %1": { + "Place plugins in %1": "" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "ניגון צליל כשהתראה חדשה מגיעה" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "מחובר לחשמל" }, + "Plugged in": { + "Plugged in": "" + }, + "Plugin": { + "Plugin": "" + }, "Plugin Directory": { "Plugin Directory": "תיקיית תוספים" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "תוספים" }, - "Plugins:": { - "Plugins:": "תוספים:" - }, "Pointer": { "Pointer": "" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "מיקום" }, - "Position: ": { - "Position: ": "מיקום: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "קונפליקטים אפשריים של דריסה" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "ירידת ביצועים בפרופיל צריכת החשמל" }, - "Power Profile OSD": { - "Power Profile OSD": "תצוגת פרופיל חשמל (OSD)" + "Power profile management available": { + "Power profile management available": "" }, "Power source": { "Power source": "מקור חשמל" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "לחץ" }, - "Prevent idle for media": { - "Prevent idle for media": "מנע/י מצב המתנה עבור מדיה" - }, "Prevent screen timeout": { "Prevent screen timeout": "מנע/י כיבוי מסך אוטומטי" }, "Primary": { "Primary": "ראשי" }, + "Print Server Management": { + "Print Server Management": "" + }, "Print Server not available": { "Print Server not available": "שרת ההדפסה אינו זמין" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "דיווח" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "בקש/י אישור לפני פעולות כיבוי, הפעלה מחדש, השהיה, תרדמת ויציאה מהמערכת" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "דרוש/דרשי החזקה של הכפתור לאישור כיבוי, הפעלה מחדש, השהיה, שינה עמוקה והתנתקות" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "" + }, + "Requires DMS %1": { + "Requires DMS %1": "" }, "Requires DWL compositor": { "Requires DWL compositor": "דורש קומפוזיטור DWL" }, + "Requires night mode support": { + "Requires night mode support": "" + }, "Reset": { "Reset": "איפוס" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "" }, - "Resources": { - "Resources": "משאבים" - }, - "Restart": { - "Restart": "הפעלה מחדש" - }, "Restart DMS": { "Restart DMS": "הפעל/י מחדש את DMS" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "חזור/חזרי" }, - "Reverting in:": { - "Reverting in:": "משחזר בעוד:" - }, "Right": { "Right": "ימין" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "לחץ/י קליק ימני על הווידג׳ט כדי לעבור במעגל" }, + "Root Filesystem": { + "Root Filesystem": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "סריקה" }, + "Scanning": { + "Scanning": "" + }, "Scanning...": { "Scanning...": "סורק..." }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "גלילה של שם השיר" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "" + }, "Scrolling": { "Scrolling": "גלילה" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "בחר/י צבע מהפלטה או השתמש/י במחוונים מותאמים אישית" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "בחר/י ערכה מוכנה או גרור/י את המחוון להתאמה אישית" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "בחר/י ווידג׳ט להוספה. ניתן להוסיף מספר מופעים של אותו ווידג׳ט במידת הצורך." }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "קיצורי דרך" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "" + }, "Show All Tags": { "Show All Tags": "הצג/י את כל התגים" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "הצג/י אישור עבור פעולות חשמל" - }, "Show Date": { "Show Date": "" }, @@ -2969,9 +3029,6 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "הצג/י רק סביבות עבודה שתפוסות" }, - "Show Power Actions": { - "Show Power Actions": "הצג/י פעולות חשמל" - }, "Show Power Off": { "Show Power Off": "הצג/י כיבוי" }, @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "הצג/י סיסמה" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "הצג/י כפתורי כיבוי, הפעלה מחדש ויציאה במסך הנעילה" - }, - "Show seconds": { - "Show seconds": "הצגת שניות" - }, "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "הצג/י מידע על מזג האוויר בסרגל העליון ובמרכז הבקרה" }, @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "ריווח" }, + "Speaker settings": { + "Speaker settings": "" + }, "Speed": { "Speed": "מהירות" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "שקיעה" }, - "Support Development": { - "Support Development": "תמיכה בפיתוח" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "דכא/י חלונות קופצים של התראות בזמן שמופעל" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "עדכוני מערכת" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "סרגל מערכת עם ווידג'טים ומידע על המערכת" - }, "System notification area icons": { "System notification area icons": "סמלי אזור ההתראות של המערכת" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "צלילי מערכת אינם זמינים. התקן/י את canberra-gtk-play לתמיכה בצלילים." }, + "System theme toggle": { + "System theme toggle": "" + }, "System toast notifications": { "System toast notifications": "התראות מערכת קופצות" }, - "System tray icons": { - "System tray icons": "סמלים של מגש המערכת" - }, "System update custom command": { "System update custom command": "פקודה מותאמת אישית לעדכון המערכת" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "טקסט" }, + "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.": "" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "משתנה הסביבה DMS_SOCKET אינו מוגדר או שהsocket אינו זמין. ניהול תוספים אוטומטי דורש את DMS_SOCKET." }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "פורמט שעה" }, + "Time remaining: %1": { + "Time remaining: %1": "" + }, + "Time until full: %1": { + "Time until full: %1": "" + }, "Timed Out": { "Timed Out": "הזמן אזל" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "לא ידוע" }, + "Unknown Config": { + "Unknown Config": "" + }, + "Unknown Device": { + "Unknown Device": "" + }, + "Unknown Monitor": { + "Unknown Monitor": "" + }, + "Unknown Network": { + "Unknown Network": "" + }, "Unpin from Dock": { "Unpin from Dock": "בטל/י נעיצה על הDock" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "בשימוש" }, + "User": { + "User": "" + }, "Username": { "Username": "שם משתמש" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "תצורת הVPN עודכנה" }, + "VPN connections": { + "VPN connections": "" + }, "VPN deleted": { "VPN deleted": "הVPN נמחק" }, - "VPN imported: ": { - "VPN imported: ": "VPN יובא: " + "VPN imported: %1": { + "VPN imported: %1": "" + }, + "VPN not available": { + "VPN not available": "" }, "VPN status and quick connect": { "VPN status and quick connect": "מצב הVPN וחיבור מהיר" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "" }, - "VRR: ": { - "VRR: ": "VRR: " - }, "Variable Refresh Rate": { "Variable Refresh Rate": "" }, @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "עוצמת השמע השתנתה" }, - "Volume OSD": { - "Volume OSD": "תצוגת עוצמת שמע (OSD)" + "Volume Slider": { + "Volume Slider": "" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "עוצמת שמע, בהירות ותצוגות מערכת (OSD) אחרות על המסך" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "ווידג׳ט מזג האוויר" }, - "Website:": { - "Website:": "אתר אינטרנט:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "כאשר האפשרות פעילה, האפליקציות ממוינות לפי סדר אלפביתי. כאשר היא כבויה, האפליקציות ממוינות לפי תדירות השימוש." }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "כאשר אפשרות זו מופעלת, שכבת המשגר תוצג מעל הסקירה של Niri בעת הקלדה. השבת/י את האפשרות הזו אם את/ה מעדיף/ה שהמשגר לא יופיע מעל הסקירה של Niri כשאת/ה מקליד/ה, או אם ברצונך להשתמש במשגר אחר בסקירה." - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "", "When updater widget is used, then hide it if no update found": "" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "סיסמת Wi-Fi" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "" }, - "Widgets": { - "Widgets": "ווידג׳טים" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "רוח" @@ -3696,21 +3775,27 @@ "days": { "days": "" }, + "dgop not available": { + "dgop not available": "" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl קיים אך אינו כלול בconfig.kdl. קיצורי מקלדת מותאמים אישית לא יעבדו עד שהבעיה תתוקן." }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl לא כלול בconfig.kdl. קיצורי מקלדת מותאמים אישית לא יעבדו עד שהבעיה תתוקן." - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl כעת כלול בconfig.kdl" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "לדוגמא: firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "לדוגמא: focus-workspace 3, resize-column -10" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "" + }, "events": { "events": "אירועים" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index 11192aaf..d5432b68 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -51,7 +51,7 @@ "10 seconds": "10 másodperc" }, "10-bit Color": { - "10-bit Color": "" + "10-bit Color": "10 bites színmélység" }, "14 days": { "14 days": "14 nap" @@ -60,7 +60,7 @@ "15 seconds": "15 másodperc" }, "180°": { - "180°": "" + "180°": "180 fok" }, "2 minutes": { "2 minutes": "2 perc" @@ -72,7 +72,7 @@ "24-hour format": "24 órás formátum" }, "270°": { - "270°": "" + "270°": "270 fok" }, "3 days": { "3 days": "3 nap" @@ -105,7 +105,7 @@ "90 days": "90 nap" }, "90°": { - "90°": "" + "90°": "90 fok" }, "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "Már létezik ilyen nevű fájl. Felül szeretnéd írni?" @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "Aktív zárolási képernyő monitor" }, - "Active: ": { - "Active: ": "Aktív: " + "Active: %1": { + "Active: %1": "Aktív: %1" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "Aktív: %1 +%2" }, "Active: None": { "Active: None": "Aktív: Nincs" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "Szegély hozzáadása a dokk körül" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Adj meg egy egyedi előtagot minden alkalmazás indításához. Ez használható például 'uwsm-app', 'systemd-run' vagy más parancscsomagolókhoz." + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "Oszlopok számának beállítása rácsnézet módban." }, @@ -209,11 +215,17 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "Mindig mutasson legalább 3 munkaterületet, még ha nincs is annyi" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "Dokk mutatása mindig, ha a niri-áttekintés nyitva van" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "Megjelenítés mindig, amikor csak egy csatlakoztatott kijelző van" + }, "Amount": { "Amount": "Mennyiség" }, "Analog": { - "Analog": "" + "Analog": "Analóg" }, "Animation Speed": { "Animation Speed": "Animáció sebessége" @@ -234,7 +246,7 @@ "Applications": "Alkalmazások" }, "Apply Changes": { - "Apply Changes": "" + "Apply Changes": "Változtatások alkalmazása" }, "Apply GTK Colors": { "Apply GTK Colors": "GTK-színek alkalmazása" @@ -243,7 +255,7 @@ "Apply Qt Colors": "Qt-színek alkalmazása" }, "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { - "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Meleg színhőmérséklet alkalmazása a szem megerőltetésének csökkentése érdekében. Az alábbi automatizálási beállítások segítségével szabályozhatja, hogy mikor aktiválódjon." + "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Meleg színhőmérséklet alkalmazása a szem megerőltetésének csökkentése érdekében. Az alábbi automatizálási beállítások segítségével szabályozhatod, hogy mikor aktiválódjon." }, "Apps Icon": { "Apps Icon": "Alkalmazások ikon" @@ -252,7 +264,7 @@ "Apps are ordered by usage frequency, then last used, then alphabetically.": "Az alkalmazások használati gyakoriság, majd utolsó használat, majd betűrend szerint vannak rendezve." }, "Arrange displays and configure resolution, refresh rate, and VRR": { - "Arrange displays and configure resolution, refresh rate, and VRR": "" + "Arrange displays and configure resolution, refresh rate, and VRR": "Képernyők elrendezése és felbontás, frissítési frekvencia, valamint VRR beállítása" }, "Audio": { "Audio": "Hang" @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "Hangeszközök" }, + "Audio Input": { + "Audio Input": "Hangbemenet" + }, + "Audio Output": { + "Audio Output": "Hangkimenet" + }, "Audio Output Devices (": { "Audio Output Devices (": "Hangkimeneti eszközök (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "Hangvizualizáló" }, + "Audio volume control": { + "Audio volume control": "Hangerőszabályozó" + }, "Auth": { "Auth": "Hitelesítés" }, @@ -306,13 +327,13 @@ "Auto": "Automatikus" }, "Auto (Wide)": { - "Auto (Wide)": "" + "Auto (Wide)": "Automatikus (széles)" }, "Auto Location": { - "Auto Location": "Automatikus tartózkodási hely" + "Auto Location": "Automatikus helymeghatározás" }, "Auto Popup Gaps": { - "Auto Popup Gaps": "Automatikus előugró ablak rések" + "Auto Popup Gaps": "Automatikus felugró ablak rések" }, "Auto-Clear After": { "Auto-Clear After": "Automatikus törlés" @@ -344,11 +365,8 @@ "Automatic Cycling": { "Automatic Cycling": "Automatikus váltás" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "Automatikusan kiszámítja az előugró ablak távolságát a sáv szélétől." - }, "Automatically cycle through wallpapers in the same folder": { - "Automatically cycle through wallpapers in the same folder": "Automatikusan váltson a háttérképek közül ugyanabban a mappából" + "Automatically cycle through wallpapers in the same folder": "Automatikus váltás az ugyanabban a mappában lévő háttérképek között" }, "Automatically delete entries older than this": { "Automatically delete entries older than this": "Automatikusan törli az ennél régebbi bejegyzéseket" @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "Elérhető bővítmények" }, - "Available Screens (": { - "Available Screens (": "Elérhető kijelzők (" + "Available Screens (%1)": { + "Available Screens (%1)": "Elérhető kijelzők (%1)" }, "BSSID": { "BSSID": "BSSID" @@ -390,7 +408,10 @@ "Backend": "Háttérrendszer" }, "Background Opacity": { - "Background Opacity": "" + "Background Opacity": "Háttér átlátszósága" + }, + "Backlight device": { + "Backlight device": "Háttérvilágítás eszköz" }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Kiegyensúlyozott paletta fókuszált kiemelésekkel (alapértelmezett)." @@ -404,6 +425,9 @@ "Battery": { "Battery": "Akkumulátor" }, + "Battery and power management": { + "Battery and power management": "Akku és energia menedzsment" + }, "Battery level and power management": { "Battery level and power management": "Akkumulátor töltöttségi szintje és energiagazdálkodás" }, @@ -420,7 +444,16 @@ "Binds include added": "A billentyűket tartalmazó include-fájl hozzáadva" }, "Bit Depth": { - "Bit Depth": "" + "Bit Depth": "Színmélység" + }, + "Block notifications": { + "Block notifications": "Értesítések tiltása" + }, + "Blocked": { + "Blocked": "Tiltva" + }, + "Blue light filter": { + "Blue light filter": "Kék fény szűrő" }, "Bluetooth": { "Bluetooth": "Bluetooth" @@ -428,8 +461,8 @@ "Bluetooth Settings": { "Bluetooth Settings": "Bluetooth-beállítások" }, - "Blur Layer": { - "Blur Layer": "Elmosás réteg" + "Bluetooth not available": { + "Bluetooth not available": "Bluetooth nem elérhető" }, "Blur on Overview": { "Blur on Overview": "Elmosás az áttekintésben" @@ -453,10 +486,10 @@ "Bottom": "Alul" }, "Bottom Left": { - "Bottom Left": "" + "Bottom Left": "Bal Lent" }, "Bottom Right": { - "Bottom Right": "" + "Bottom Right": "Jobb Lent" }, "Bottom Section": { "Bottom Section": "Alsó rész" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "Fényerő" }, - "Brightness OSD": { - "Brightness OSD": "Fényerő OSD" + "Brightness Slider": { + "Brightness Slider": "Fényerőszabályozó" + }, + "Brightness control not available": { + "Brightness control not available": "A fényerő-szabályozás nem elérhető" }, "Browse": { "Browse": "Böngészés" @@ -480,7 +516,7 @@ "CPU": "CPU" }, "CPU Graph": { - "CPU Graph": "" + "CPU Graph": "CPU grafikon" }, "CPU Temperature": { "CPU Temperature": "CPU hőmérséklet" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "CUPS nyomtatószerver" }, + "CUPS not available": { + "CUPS not available": "CUPS nem elérhető" + }, "Camera": { "Camera": "Kamera" }, @@ -512,11 +551,14 @@ "Canceled": { "Canceled": "Törölve" }, + "Cannot pair": { + "Cannot pair": "Nem lehet párosítani" + }, "Capabilities": { "Capabilities": "Képességek" }, "Capacity": { - "Capacity": "Tárhely" + "Capacity": "Kapacitás" }, "Caps Lock": { "Caps Lock": "Caps Lock" @@ -524,14 +566,11 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "Caps Lock jelző" }, - "Caps Lock OSD": { - "Caps Lock OSD": "Caps Lock OSD" - }, "Center Section": { "Center Section": "Középső rész" }, "Center Single Column": { - "Center Single Column": "" + "Center Single Column": "Középső egyoszlopos" }, "Center Tiling": { "Center Tiling": "Központi csempézés" @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "Sáv megjelenésének megváltoztatása" }, - "Changes:": { - "Changes:": "Változtatások:" - }, "Channel": { "Channel": "Csatorna" }, + "Charging": { + "Charging": "Töltés" + }, "Check for system updates": { "Check for system updates": "Rendszerfrissítések keresése" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Indítóikon színének kiválasztása" }, + "Choose a color": { + "Choose a color": "Válassz színt" + }, + "Choose colors from palette": { + "Choose colors from palette": "Válassz színeket a palettáról" + }, "Choose icon": { "Choose icon": "Ikon kiválasztása" }, @@ -569,9 +614,6 @@ "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Válaszd ki a DankBar indítógombján megjelenő logót" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "Válaszd ki a widget körvonalának kiemelőszínét" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Válaszd ki, hogy a felugró értesítések hol jelenjenek meg a képernyőn" }, @@ -579,7 +621,7 @@ "Choose where on-screen displays appear on screen": "Válaszd ki, hogy hol jelenjenek meg a képernyőn megjelenő kijelzők" }, "Choose which displays show this widget": { - "Choose which displays show this widget": "" + "Choose which displays show this widget": "Válaszd ki, mely kijelzők mutassák ezt a widgetet" }, "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Válaszd ki, melyik monitor jelenítse meg a zárolási képernyő felületét. A többi monitor egy színt fog mutatni az OLED beégés elleni védelem miatt." @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "Törlés indításkor" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Kattints a 'Beállítás' gombra a dms/binds.kdl létrehozásához, és add hozzá az include-fájlt a config.kdl-hez." + }, + "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 konfig létrehozásához, és add hozzá az 'include'-ot a kompozitorod 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" }, @@ -633,10 +681,7 @@ "Clock": "Óra" }, "Clock Style": { - "Clock Style": "" - }, - "Clock show seconds": { - "Clock show seconds": "Másodpercek megjelenítése az órán" + "Clock Style": "Órastílius" }, "Close": { "Close": "Bezárás" @@ -648,10 +693,10 @@ "Color": "Szín" }, "Color Gamut": { - "Color Gamut": "" + "Color Gamut": "Színtér" }, "Color Management": { - "Color Management": "" + "Color Management": "Színkezelés" }, "Color Mode": { "Color Mode": "Színmód" @@ -678,29 +723,11 @@ "Colorful mix of bright contrasting accents.": "Színes keverék, fényes kontrasztos kiemelésekkel." }, "Column": { - "Column": "" + "Column": "Oszlop" }, "Command": { "Command": "Parancs" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "Parancs vagy szkript futtatása a normál hibernálási eljárás helyett" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "Parancs vagy szkript futtatása a normál zárolási eljárás helyett" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "Parancs vagy szkript futtatása a normál kijelentkezési eljárás helyett" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "Parancs vagy szkript futtatása a normál kikapcsolási eljárás helyett" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "Parancs vagy szkript futtatása a normál újraindítási eljárás helyett" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "Parancs vagy szkript futtatása a normál felfüggesztési eljárás helyett" - }, "Communication": { "Communication": "Kommunikáció" }, @@ -714,25 +741,25 @@ "Compositor": "Kompozitor" }, "Compositor Settings": { - "Compositor Settings": "" + "Compositor Settings": "Kompozitorbeállítások" }, "Config Format": { - "Config Format": "" + "Config Format": "Konfigurációformátum" }, "Config action: %1": { "Config action: %1": "Konfigurációs művelet: %1" }, "Config validation failed": { - "Config validation failed": "" + "Config validation failed": "Konfiguráció ellenőrzése sikertelen" }, "Configuration": { - "Configuration": "" + "Configuration": "Konfiguráció" }, "Configuration activated": { "Configuration activated": "Konfiguráció aktiválva" }, "Configuration will be preserved when this display reconnects": { - "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" }, "Configure a new printer": { "Configure a new printer": "Új nyomtató konfigurálása" @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "Csatlakozás az eszközhöz" }, + "Connecting...": { + "Connecting...": "Csatlakozás..." + }, "Contrast": { "Contrast": "Kontraszt" }, @@ -783,20 +813,11 @@ "Control currently playing media": "Jelenleg játszott média vezérlése" }, "Control workspaces and columns by scrolling on the bar": { - "Control workspaces and columns by scrolling on the bar": "" + "Control workspaces and columns by scrolling on the bar": "Munkaterületek és oszlopok vezérlése görgetéssel a sávon" }, "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "Szabályozza az összes felugró ablak, modális párbeszédpanel és tartalomréteg átlátszóságát" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "Szabályozza az összes felugró, modális ablak és azok tartalomrétegeinek átlátszóságát (DankDash, Beállítások, Alkalmazásfiók, Vezérlőpult, stb.)" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "Szabályozza az egyes widgetek átlátszóságát a DankBar belsejében" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "Szabályozza a DankBar panel háttérének átlátszóságát" - }, "Cooldown": { "Cooldown": "Várakozási idő" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "Jelenlegi időjárási viszonyok és hőmérséklet" }, + "Current: %1": { + "Current: %1": "Jelenleg: %1" + }, "Custom": { "Custom": "Egyéni" }, @@ -891,7 +915,7 @@ "Custom Transparency": "Egyéni átlátszóság" }, "Custom...": { - "Custom...": "" + "Custom...": "Egyéni..." }, "Custom: ": { "Custom: ": "Egyéni: " @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "A főkapcsoló menüben megjelenő műveletek testreszabása" }, + "DDC/CI monitor": { + "DDC/CI monitor": "DDC/CI monitor" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "DEMO MÓD - Kattints valahova a kilépéshez" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank sáv" }, - "DankBar Font Scale": { - "DankBar Font Scale": "DankBar betűméret-skála" - }, "DankSearch not available": { "DankSearch not available": "A DankSearch nem elérhető" }, @@ -975,7 +999,7 @@ "Default": "Alapértelmezett" }, "Default Width (%)": { - "Default Width (%)": "" + "Default Width (%)": "Alapértelmezett szélesség (%)" }, "Default selected action": { "Default selected action": "Alapértelmezett kiválasztott művelet" @@ -1005,10 +1029,10 @@ "Description": "Leírás" }, "Desktop Clock": { - "Desktop Clock": "" + "Desktop Clock": "Asztali óra" }, "Desktop Widgets": { - "Desktop Widgets": "" + "Desktop Widgets": "Asztali widgetek" }, "Desktop background images": { "Desktop background images": "Asztali háttérképek" @@ -1019,11 +1043,14 @@ "Device": { "Device": "Eszköz" }, + "Device connections": { + "Device connections": "Eszköz csatlakozások" + }, "Device paired": { "Device paired": "Eszköz párosítva" }, "Digital": { - "Digital": "" + "Digital": "Digitális" }, "Disable Autoconnect": { "Disable Autoconnect": "Automatikus csatlakozás kikapcsolása" @@ -1031,14 +1058,11 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "A vágólapkezelő kikapcsolása" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "Vágólap-tulajdon letiltása" - }, "Disable History Persistence": { "Disable History Persistence": "Előzménymentés letiltása" }, "Disable Output": { - "Disable Output": "" + "Disable Output": "Kimenet letiltása" }, "Disable clipboard manager entirely (requires restart)": { "Disable clipboard manager entirely (requires restart)": "Vágólapkezelő teljes letiltása (újraindítást igényel)" @@ -1046,8 +1070,11 @@ "Disabled": { "Disabled": "Kikapcsolva" }, + "Disabling WiFi...": { + "Disabling WiFi...": "WiFi kikapcsolása..." + }, "Discard": { - "Discard": "" + "Discard": "Elvetés" }, "Disconnect": { "Disconnect": "Lecsatlakozás" @@ -1074,7 +1101,7 @@ "Display Name Format": "Kijelző név formátuma" }, "Display Settings": { - "Display Settings": "" + "Display Settings": "Kijelző beállítások" }, "Display a dock with pinned and running applications": { "Display a dock with pinned and running applications": "Dokk megjelenítése rögzített és futó alkalmazásokkal" @@ -1088,8 +1115,11 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Alkalmazás ikonok megjelenítése a munkaterület-jelzőkben" }, + "Display brightness control": { + "Display brightness control": "Kijelző fényerő szabályozás" + }, "Display configuration is not available. WLR output management protocol not supported.": { - "Display configuration is not available. WLR output management protocol not supported.": "" + "Display configuration is not available. WLR output management protocol not supported.": "Kijelző konfiguráció nem elérhető. A WLR kimenetkezelési protokoll nem támogatott." }, "Display currently focused application title": { "Display currently focused application title": "Jelenleg fókuszban lévő alkalmazás címének megjelenítése" @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "Másodpercek megjelenítése az órán" }, - "Display settings for ": { - "Display settings for ": "Kijelző beállítások ehhez: " - }, "Display the power system menu": { "Display the power system menu": "A főkapcsoló rendszermenüjének megjelenítése" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "Tartomány (opcionális)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Adományozz Ko-fin" + "Don't Change": { + "Don't Change": "Ne módosítsa" + }, + "Don't Save": { + "Don't Save": "Ne mentse" }, "Door Open": { "Door Open": "Ajtó nyitva" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "Háttérkép megkettőzése elmosással" }, - "Duration": { - "Duration": "Időtartam" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "Szürkület (csillagászati szürkület)" }, @@ -1182,7 +1209,7 @@ "Empty": "Üres" }, "Enable 10-bit color depth for wider color gamut and HDR support": { - "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" }, "Enable Autoconnect": { "Enable Autoconnect": "Automatikus csatlakozás bekapcsolása" @@ -1190,11 +1217,8 @@ "Enable Bar": { "Enable Bar": "Sáv engedélyezése" }, - "Enable Border": { - "Enable Border": "Keret engedélyezése" - }, "Enable Desktop Clock": { - "Enable Desktop Clock": "" + "Enable Desktop Clock": "Asztali óra engedélyezése" }, "Enable Do Not Disturb": { "Enable Do Not Disturb": "Ne zavarjanak engedélyezése" @@ -1206,7 +1230,7 @@ "Enable Overview Overlay": "Áttekintő fedvény engedélyezése" }, "Enable System Monitor": { - "Enable System Monitor": "" + "Enable System Monitor": "Rendszerfigyelő engedélyezése" }, "Enable System Sounds": { "Enable System Sounds": "Rendszerhangok engedélyezése" @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "WiFi engedélyezése" }, - "Enable Widget Outline": { - "Enable Widget Outline": "Widget körvonal engedélyezése" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Kompozitor által célozható elmosás réteg engedélyezése (névtér: dms:blurwallpaper). Kézi niri-konfigurációt igényel." }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "Engedélyezve" }, + "Enabling WiFi...": { + "Enabling WiFi...": "WiFi bekapcsolása..." + }, "End": { "End": "Vége" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "Adj meg egy fájlnevet..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "Írd be az indítási előtagot (pl. 'uwsm-app')" + }, "Enter passkey for ": { "Enter passkey for ": "Jelszó megadása ehhez: " }, @@ -1296,10 +1323,13 @@ "Ethernet": "Ethernet" }, "Exclusive Zone Offset": { - "Exclusive Zone Offset": "Exkluzív zóna eltolás" + "Exclusive Zone Offset": "Exkluzív zóna eltolása" }, "Experimental Feature": { - "Experimental Feature": "" + "Experimental Feature": "Kísérleti funkció" + }, + "Exponential": { + "Exponential": "Exponenciális" }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: be- és kikapcsolás • F10: Segítség" @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "Nem sikerült csatlakozni a VPN-hez" }, - "Failed to connect to ": { - "Failed to connect to ": "Nem sikerült csatlakozni ehhez: " + "Failed to connect to %1": { + "Failed to connect to %1": "Nem sikerült csatlakozni ehhez: %1" }, "Failed to copy entry": { "Failed to copy entry": "A bejegyzés másolása sikertelen" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "A feladatok elfogadásának letiltása sikertelen" }, + "Failed to disable night mode": { + "Failed to disable night mode": "Nem sikerült kikapcsolni az éjszakai módot" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Nem sikerült lecsatlakozni a VPN-ről" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "Nem sikerült lecsatlakozni a WiFi-ről" }, + "Failed to enable IP location": { + "Failed to enable IP location": "Nem sikerült engedélyezni az IP-helymeghatározást" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "Nem sikerült engedélyezni a WiFi-t" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "A feladatok elfogadásának engedélyezése sikertelen" }, + "Failed to enable night mode": { + "Failed to enable night mode": "Nem sikerült bekapcsolni az éjszakai módot" + }, "Failed to hold job": { "Failed to hold job": "A feladat felfüggesztése sikertelen" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "Nem sikerült menteni a billentyűparancsot" }, + "Failed to set brightness": { + "Failed to set brightness": "Nem sikerült beállítani a fényerőt" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "Nem sikerült beállítani az éjszakai mód helyét" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "Nem sikerült beállítani az éjszakai mód ütemezését" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "Nem sikerült beállítani az éjszakai mód hőmérsékletét" + }, "Failed to set profile image": { "Failed to set profile image": "Nem sikerült beállítani a profilképet" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "Nem sikerült beállítani a profilképet: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "Nem sikerült beállítani a profilképet: %1" }, - "Failed to start connection to ": { - "Failed to start connection to ": "Nem sikerült elindítani a kapcsolatot ehhez: " + "Failed to start connection to %1": { + "Failed to start connection to %1": "Nem sikerült elindítani a csatlakozást ehhez: %1" }, "Failed to update VPN": { "Failed to update VPN": "Nem sikerült frissíteni a VPN-t" @@ -1431,10 +1482,10 @@ "Failed to update sharing": "A megosztás frissítése sikertelen" }, "Failed to write temp file for validation": { - "Failed to write temp file for validation": "" + "Failed to write temp file for validation": "Nem sikerült írni az ideiglenes fájlt az ellenőrzéshez" }, "Feels Like": { - "Feels Like": "Érzésre" + "Feels Like": "Hőérzet" }, "File": { "File": "Fájl" @@ -1448,6 +1499,9 @@ "Files": { "Files": "Fájlok" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "Fájlrendszer használat figyelése" + }, "Find in Text": { "Find in Text": "Keresés szövegben..." }, @@ -1467,19 +1521,19 @@ "Fixing...": "Javítás..." }, "Flipped": { - "Flipped": "" + "Flipped": "Tükrözött" }, "Flipped 180°": { - "Flipped 180°": "" + "Flipped 180°": "180 fokkal tükrözött" }, "Flipped 270°": { - "Flipped 270°": "" + "Flipped 270°": "270 fokkal tükrözött" }, "Flipped 90°": { - "Flipped 90°": "" + "Flipped 90°": "90 fokkal tükrözött" }, "Focus at Startup": { - "Focus at Startup": "" + "Focus at Startup": "Fókusz indításkor" }, "Focused Window": { "Focused Window": "Fókuszált ablak" @@ -1500,13 +1554,13 @@ "Font Weight": "Betűvastagság" }, "Force HDR": { - "Force HDR": "" + "Force HDR": "HDR kényszerítése" }, "Force Kill Process": { "Force Kill Process": "Folyamat kényszerített leállítása" }, "Force Wide Color": { - "Force Wide Color": "" + "Force Wide Color": "Széles színskála kényszerítése" }, "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Terminálalkalmazások kényszerítése sötét színsémák használatára" @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "Hálózat elfelejtése" }, - "Forgot network ": { - "Forgot network ": "Hálózat elfelejtése " + "Forgot network %1": { + "Forgot network %1": "Elfelejtett hálózat: %1" }, "Format Legend": { "Format Legend": "Formátum magyarázat" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "GPU hőmérséklet" }, - "GPU temperature display": { - "GPU temperature display": "GPU hőmérséklet kijelző" - }, "Games": { "Games": "Játékok" }, @@ -1566,13 +1617,13 @@ "Goth Corner Radius": "Gótikus sarokrádiusz" }, "Goth Corners": { - "Goth Corners": "Gótikus Sarkok" + "Goth Corners": "Gótikus sarkok" }, "Gradually fade the screen before locking with a configurable grace period": { "Gradually fade the screen before locking with a configurable grace period": "Fokozatosan halványítsa el a képernyőt a zárolás előtt egy konfigurálható türelmi idővel" }, "Graph Time Range": { - "Graph Time Range": "" + "Graph Time Range": "Grafikon időtartománya" }, "Graphics": { "Graphics": "Grafika" @@ -1590,13 +1641,13 @@ "Group multiple windows of the same app together with a window count indicator": "Ugyanazon alkalmazás több ablakának csoportosítása egy ablakszám jelzővel" }, "HDR (EDID)": { - "HDR (EDID)": "" + "HDR (EDID)": "HDR (EDID)" }, "HDR Tone Mapping": { - "HDR Tone Mapping": "" + "HDR Tone Mapping": "HDR-tónusleképezés" }, "HDR mode is experimental. Verify your monitor supports HDR before enabling.": { - "HDR mode is experimental. Verify your monitor supports HDR before enabling.": "" + "HDR mode is experimental. Verify your monitor supports HDR before enabling.": "A HDR mód kísérleti jellegű. Engedélyezés előtt ellenőrizd, hogy a monitor támogatja-e a HDR-t." }, "HSV": { "HSV": "HSV" @@ -1608,7 +1659,7 @@ "Held": "Felfüggesztve" }, "Help": { - "Help": "" + "Help": "Súgó" }, "Hex": { "Hex": "Hex" @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "Elrejtési késleltetés" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "Elrejtési késleltetés (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Dokk elrejtése, amikor az nincs használatban és megjelenítés, amikor az egér a dokkterület közelében van" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "Nagy kontrasztú paletta az erős vizuális megkülönböztetéshez." - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Nagy hűségű paletta, amely megőrzi a forrás árnyalatait." }, @@ -1650,7 +1695,7 @@ "Hold to confirm (%1s)": "Tartsd lenyomva a megerősítéshez (%1mp)" }, "Hot Corners": { - "Hot Corners": "" + "Hot Corners": "Aktív sarok" }, "Hotkey overlay title (optional)": { "Hotkey overlay title (optional)": "Billentyűparancs-átfedés címe (opcionális)" @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "Óránkénti előrejelzés" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "Meddig kell nyomva tartani a gombot a művelet megerősítéséhez" - }, "How often to change wallpaper": { "How often to change wallpaper": "Milyen gyakran változzon a háttérkép" }, @@ -1689,10 +1731,7 @@ "Idle": "Tétlen" }, "Idle Inhibitor": { - "Idle Inhibitor": "Inaktivitás gátló" - }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "Inaktivitás gátló OSD" + "Idle Inhibitor": "Inaktivitás megakadályozása" }, "Idle Settings": { "Idle Settings": "Inaktivitási beállítások" @@ -1722,7 +1761,7 @@ "Include Transitions": "Átmenetekkel együtt" }, "Incompatible Plugins Loaded": { - "Incompatible Plugins Loaded": "" + "Incompatible Plugins Loaded": "Inkompatibilis bővítmények betöltve" }, "Incorrect password": { "Incorrect password": "Helytelen jelszó" @@ -1737,14 +1776,14 @@ "Individual bar configuration": "Egyéni sáv konfiguráció" }, "Inherit": { - "Inherit": "" - }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "Tétlenségi időtúllépés tiltása, ha hang vagy videó játszódik le" + "Inherit": "Öröklés" }, "Input Devices": { "Input Devices": "Bemeneti eszközök" }, + "Input Volume Slider": { + "Input Volume Slider": "Bemeneti hangerő csúszka" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "Bővítmények telepítése a DMS bővítményregisztrációból" }, @@ -1761,7 +1800,7 @@ "Interval": "Intervallum" }, "Invalid configuration": { - "Invalid configuration": "" + "Invalid configuration": "Érvénytelen konfiguráció" }, "Invert on mode change": { "Invert on mode change": "Invertálás módváltáskor" @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "LED-eszköz" + }, "Last launched %1": { "Last launched %1": "Utoljára elindítva: %1" }, @@ -1836,7 +1878,7 @@ "Layout": "Elrendezés" }, "Layout Overrides": { - "Layout Overrides": "" + "Layout Overrides": "Elrendezés felülbírálása" }, "Left": { "Left": "Bal" @@ -1847,15 +1889,21 @@ "Light Mode": { "Light Mode": "Világos mód" }, + "Linear": { + "Linear": "Lineáris" + }, "Lines: %1": { "Lines: %1": "%1 sor" }, "List": { - "List": "" + "List": "Lista" }, "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "Élénk paletta telített kiemelésekkel." }, + "Loading codecs...": { + "Loading codecs...": "Kodekek betöltése..." + }, "Loading keybinds...": { "Loading keybinds...": "Billentyűparancsok betöltése..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "Legfeljebb 4 független sávkonfiguráció kezelése. Minden sávnak megvan a saját pozíciója, widgetjei, stílusa és kijelző-hozzárendelése." }, + "Management": { + "Management": "Kezelés" + }, "Manual Coordinates": { "Manual Coordinates": "Manuális koordináták" }, @@ -1947,14 +1998,11 @@ "Marker Waste Full": "Jelölőanyag-hulladék tele" }, "Material Colors": { - "Material Colors": "Material Színek" + "Material Colors": "Material színek" }, "Matugen Palette": { "Matugen Palette": "Matugen paletta" }, - "Matugen Settings": { - "Matugen Settings": "Matugen-beállítások" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Matugen célmonitor" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "Média hangereje" }, - "Media Volume OSD": { - "Media Volume OSD": "Média hangerő OSD" - }, "Medium": { "Medium": "Közepes" }, @@ -2019,7 +2064,7 @@ "Memory": "Memória" }, "Memory Graph": { - "Memory Graph": "" + "Memory Graph": "Memória grafikon" }, "Memory Usage": { "Memory Usage": "Memóriahasználat" @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "Mikrofon némítás" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "Mikrofon némítás OSD" + "Microphone settings": { + "Microphone settings": "Mikrofonbeállítások" + }, + "Microphone volume control": { + "Microphone volume control": "Mikrofon hangerőszabályozó" }, "Middle Section": { "Middle Section": "Középső szekció" @@ -2051,26 +2099,23 @@ "Mode:": { "Mode:": "Mód:" }, - "Mode: ": { - "Mode: ": "Mód: " - }, "Model": { "Model": "Modell" }, "Modified": { - "Modified": "" + "Modified": "Módosítva" }, "Monitor Configuration": { - "Monitor Configuration": "" + "Monitor Configuration": "Monitorkonfiguráció" }, "Monitor whose wallpaper drives dynamic theming colors": { - "Monitor whose wallpaper drives dynamic theming colors": "Monitor aminek a háttérképe vezérli a dinamikus témázási színeket" + "Monitor whose wallpaper drives dynamic theming colors": "Az a monitor, amelynek háttérképe meghatározza a dinamikus témaszíneket" }, "Monocle": { "Monocle": "Monokli" }, "Monospace Font": { - "Monospace Font": "Egyszeres térközű betűtípus" + "Monospace Font": "Monospace betűtípus" }, "Morning": { "Morning": "Reggel" @@ -2079,7 +2124,7 @@ "Mount": "Csatlakoztatás" }, "Move Widget": { - "Move Widget": "" + "Move Widget": "Widget mozgatása" }, "Moving to Paused": { "Moving to Paused": "Szüneteltetésre váltás" @@ -2103,7 +2148,7 @@ "Network": "Hálózat" }, "Network Graph": { - "Network Graph": "" + "Network Graph": "Hálózati grafikon" }, "Network Info": { "Network Info": "Hálózati információ" @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "Hálózati információ" }, - "Network Settings": { - "Network Settings": "Hálózati beállítások" - }, "Network Speed Monitor": { "Network Speed Monitor": "Hálózati sebességfigyelő" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "Nincs adapter" }, + "No battery": { + "No battery": "Nincs akkumulátor" + }, + "No brightness devices available": { + "No brightness devices available": "Nincs elérhető fényerő eszköz" + }, "No changes": { "No changes": "Nincs változás" }, @@ -2198,11 +2246,17 @@ "No devices found": { "No devices found": "Nem található eszköz" }, + "No disk data": { + "No disk data": "Nincs lemezadat" + }, + "No disk data available": { + "No disk data available": "Nincs lemezadat elérhető" + }, "No drivers found": { "No drivers found": "Nem található illesztőprogram" }, "No features enabled": { - "No features enabled": "" + "No features enabled": "Nincs funkció engedélyezve" }, "No files found": { "No files found": "Nem található fájl" @@ -2232,13 +2286,13 @@ "No printers found": "Nem található nyomtató" }, "No variants created. Click Add to create a new monitor widget.": { - "No variants created. Click Add to create a new monitor widget.": "" + "No variants created. Click Add to create a new monitor widget.": "Nincsenek létrehozott variánsok. Kattints a Hozzáadás gombra új monitor widget létrehozásához." }, "None": { "None": "Nincs" }, "Normal": { - "Normal": "" + "Normal": "Normál" }, "Normal Font": { "Normal Font": "Normál betűtípus" @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "Normál prioritás" }, + "Not available": { + "Not available": "Nem elérhető" + }, "Not connected": { "Not connected": "Nincs csatlakozva" }, @@ -2292,7 +2349,7 @@ "OSD Position": "OSD pozíció" }, "Off": { - "Off": "" + "Off": "Kikapcsolva" }, "Office": { "Office": "Iroda" @@ -2307,7 +2364,7 @@ "On-screen Displays": "Képernyőn megjelenő kijelzők" }, "Only adjust gamma based on time or location rules.": { - "Only adjust gamma based on time or location rules.": "Csak idő- vagy helyszabályok alapján állítsa be a gammát." + "Only adjust gamma based on time or location rules.": "Csak az idő- vagy helyalapú szabályok szerint állítsa a gammát." }, "Only visible if hibernate is supported by your system": { "Only visible if hibernate is supported by your system": "Csak akkor látható, ha a hibernálás támogatott a rendszeren" @@ -2339,15 +2396,6 @@ "Other": { "Other": "Egyéb" }, - "Outline Color": { - "Outline Color": "Körvonal színe" - }, - "Outline Opacity": { - "Outline Opacity": "Körvonal átlátszósága" - }, - "Outline Thickness": { - "Outline Thickness": "Körvonal vastagsága" - }, "Output Area Almost Full": { "Output Area Almost Full": "Kimeneti terület majdnem tele" }, @@ -2358,7 +2406,7 @@ "Output Tray Missing": "Kimeneti tálca hiányzik" }, "Outputs Include Missing": { - "Outputs Include Missing": "" + "Outputs Include Missing": "A kimenetek include-fájl hiányzik" }, "Overridden by config": { "Overridden by config": "Felülírta a konfiguráció" @@ -2367,7 +2415,7 @@ "Override": "Felülírás" }, "Override global layout settings for this output": { - "Override global layout settings for this output": "" + "Override global layout settings for this output": "Globális elrendezési beállítások felülbírálása ehhez a kimenethez" }, "Overrides": { "Overrides": "Felülírások" @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Bluetooth-eszköz párosítása" }, + "Paired": { + "Paired": "Párosítva" + }, "Pairing failed": { "Pairing failed": "Párosítás sikertelen" }, + "Pairing...": { + "Pairing...": "Párosítás..." + }, "Passkey:": { "Passkey:": "Jelszó:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "Személyre szabás" }, + "Pin": { + "Pin": "Rögzítés" + }, "Pin to Dock": { "Pin to Dock": "Rögzítés a dokkra" }, + "Pinned": { + "Pinned": "Rögzítve" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Helyezd ide a bővítménykönyvtárakat. Minden bővítménynek rendelkeznie kell egy plugin.json fájllal." }, - "Place plugins in": { - "Place plugins in": "Helyezd a bővítményeket ide" + "Place plugins in %1": { + "Place plugins in %1": "Helyezd a bővítményeket ide: %1" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "Hang lejátszása az értesítések érkezésekor" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "Csatlakoztatva" }, + "Plugged in": { + "Plugged in": "Csatlakoztatva" + }, + "Plugin": { + "Plugin": "Bővítmény" + }, "Plugin Directory": { "Plugin Directory": "Bővítménymappa" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "Bővítmények" }, - "Plugins:": { - "Plugins:": "Bővítmények:" - }, "Pointer": { "Pointer": "Mutató" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "Pozíció" }, - "Position: ": { - "Position: ": "Pozíció: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "Lehetséges felülírási konfliktusok" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "Energiaprofil romlása" }, - "Power Profile OSD": { - "Power Profile OSD": "Energia profil OSD" + "Power profile management available": { + "Power profile management available": "Energia profil kezelés elérhető" }, "Power source": { "Power source": "Áramforrás" @@ -2529,7 +2589,7 @@ "Preference": "Beállítás" }, "Preset Widths (%)": { - "Preset Widths (%)": "" + "Preset Widths (%)": "Előre beállított szélességek (%)" }, "Press key...": { "Press key...": "Nyomj meg egy billentyűt..." @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "Légnyomás" }, - "Prevent idle for media": { - "Prevent idle for media": "Tétlenség megakadályozása média esetén" - }, "Prevent screen timeout": { "Prevent screen timeout": "Képernyő időtúllépésének megakadályozása" }, "Primary": { "Primary": "Elsődleges" }, + "Print Server Management": { + "Print Server Management": "Nyomtatószerver kezelés" + }, "Print Server not available": { "Print Server not available": "Nyomtatószerver nem érhető el" }, @@ -2580,7 +2640,7 @@ "Process": "Folyamat" }, "Process Count": { - "Process Count": "" + "Process Count": "Folyamatszám" }, "Processing": { "Processing": "Feldolgozás" @@ -2651,38 +2711,35 @@ "Report": { "Report": "Jelentés" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Megerősítés kérése a kikapcsolás, újraindítás, felfüggesztés, hibernálás és kijelentkezés műveleteknél" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Megköveteli a gomb/billentyű nyomva tartását a kikapcsolás, újraindítás, felfüggesztés, hibernálás és kijelentkezés megerősítéséhez" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "Szükséges a 'dgop' eszköz" + }, + "Requires DMS %1": { + "Requires DMS %1": "Szükséges DMS %1" }, "Requires DWL compositor": { "Requires DWL compositor": "Szükséges a DWL kompozitor" }, + "Requires night mode support": { + "Requires night mode support": "Éjszakai mód támogatás szükséges" + }, "Reset": { "Reset": "Visszaállítás" }, "Reset Position": { - "Reset Position": "" + "Reset Position": "Pozíció visszaállítása" }, "Reset Size": { - "Reset Size": "" + "Reset Size": "Méret visszaállítása" }, "Resize Widget": { - "Resize Widget": "" + "Resize Widget": "Widget méretezése" }, "Resolution & Refresh": { - "Resolution & Refresh": "" - }, - "Resources": { - "Resources": "Források" - }, - "Restart": { - "Restart": "Újraindítás" + "Resolution & Refresh": "Felbontás és frissítés" }, "Restart DMS": { "Restart DMS": "DMS újraindítása" @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "Visszaállítás" }, - "Reverting in:": { - "Reverting in:": "Visszaállítás ideje:" - }, "Right": { "Right": "Jobb" }, @@ -2709,14 +2763,17 @@ "Right Tiling": "Jobb oldali csempézés" }, "Right-click and drag anywhere on the widget": { - "Right-click and drag anywhere on the widget": "" + "Right-click and drag anywhere on the widget": "Kattints jobb gombbal és húzd bárhol a widgeten" }, "Right-click and drag the bottom-right corner": { - "Right-click and drag the bottom-right corner": "" + "Right-click and drag the bottom-right corner": "Kattints jobb gombbal és húzd a jobb alsó sarkot" }, "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "Kattints jobb gombbal a sáv widgetre a váltáshoz" }, + "Root Filesystem": { + "Root Filesystem": "Root fájlrendszer" + }, "Run DMS Templates": { "Run DMS Templates": "DMS-sablonok futtatása" }, @@ -2739,10 +2796,10 @@ "Running Apps Settings": "Futó alkalmazások beállításai" }, "SDR Brightness": { - "SDR Brightness": "" + "SDR Brightness": "SDR-fényerő" }, "SDR Saturation": { - "SDR Saturation": "" + "SDR Saturation": "SDR-színtelítettség" }, "Save": { "Save": "Mentés" @@ -2760,7 +2817,7 @@ "Saved Configurations": "Mentett konfigurációk" }, "Scale": { - "Scale": "" + "Scale": "Skála" }, "Scale DankBar font sizes independently": { "Scale DankBar font sizes independently": "A DankBar betűméretének független méretezése" @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "Szkennelés" }, + "Scanning": { + "Scanning": "Szkennelés" + }, "Scanning...": { "Scanning...": "Keresés..." }, @@ -2781,11 +2841,14 @@ "Screen sharing": "Képernyő megosztás" }, "Scroll Wheel": { - "Scroll Wheel": "" + "Scroll Wheel": "Egérgörgő" }, "Scroll song title": { "Scroll song title": "Zeneszám címének görgetése" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "Görgesd a címet, ha nem fér bele a widgetbe" + }, "Scrolling": { "Scrolling": "Görgetés" }, @@ -2814,7 +2877,7 @@ "Searching...": "Keresés..." }, "Secondary": { - "Secondary": "" + "Secondary": "Másodlagos" }, "Secured": { "Secured": "Védett" @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "Válassz színt a palettáról, vagy használd az egyéni csúszkákat" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "Válassz egy előbeállítást, vagy húzd a csúszkát az egyéni beállításhoz" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "Válassz ki egy widgetet a hozzáadáshoz. Több példányt is hozzáadhatsz ugyanabból a widgetből, ha szükséges." }, @@ -2909,41 +2969,41 @@ "Shortcuts": { "Shortcuts": "Parancsikonok" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "Billentyűparancsok (%1)" + }, "Show All Tags": { "Show All Tags": "Összes címke megjelenítése" }, "Show CPU": { - "Show CPU": "" + "Show CPU": "CPU mutatása" }, "Show CPU Graph": { - "Show CPU Graph": "" + "Show CPU Graph": "CPU grafikon mutatása" }, "Show CPU Temp": { - "Show CPU Temp": "" - }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "Megerősítés megjelenítése a főkapcsoló-műveleteknél" + "Show CPU Temp": "CPU hőmérséklet mutatása" }, "Show Date": { - "Show Date": "" + "Show Date": "Dátum mutatása" }, "Show Disk": { - "Show Disk": "" + "Show Disk": "Lemez mutatása" }, "Show Dock": { "Show Dock": "Dokk megjelenítése" }, "Show GPU Temperature": { - "Show GPU Temperature": "" + "Show GPU Temperature": "GPU hőmérséklet mutatása" }, "Show Header": { - "Show Header": "" + "Show Header": "Fejléc mutatása" }, "Show Hibernate": { "Show Hibernate": "Hibernáció megjelenítése" }, "Show Hour Numbers": { - "Show Hour Numbers": "" + "Show Hour Numbers": "Óraszámok mutatása" }, "Show Line Numbers": { "Show Line Numbers": "Sorok számának megjelenítése" @@ -2955,23 +3015,20 @@ "Show Log Out": "Kijelentkezés megjelenítése" }, "Show Memory": { - "Show Memory": "" + "Show Memory": "Memória mutatása" }, "Show Memory Graph": { - "Show Memory Graph": "" + "Show Memory Graph": "Memória grafikon mutatása" }, "Show Network": { - "Show Network": "" + "Show Network": "Hálózat mutatása" }, "Show Network Graph": { - "Show Network Graph": "" + "Show Network Graph": "Hálózati grafikon mutatása" }, "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "Csak az elfoglalt munkaterületek megjelenítése" }, - "Show Power Actions": { - "Show Power Actions": "Energiakezelési műveletek megjelenítése" - }, "Show Power Off": { "Show Power Off": "Leállítás megjelenítése" }, @@ -2988,13 +3045,13 @@ "Show Suspend": "Felfüggesztés megjelenítése" }, "Show Top Processes": { - "Show Top Processes": "" + "Show Top Processes": "Top folyamatok mutatása" }, "Show Workspace Apps": { "Show Workspace Apps": "Munkaterület alkalmazások megjelenítése" }, "Show all 9 tags instead of only occupied tags (DWL only)": { - "Show all 9 tags instead of only occupied tags (DWL only)": "Mutassa mind a 9 címkét, ahelyett, hogy csak a foglalt címkéket mutatná (csak DWL)" + "Show all 9 tags instead of only occupied tags (DWL only)": "Mind a 9 címke megjelenítése a csak foglalt címkék helyett (csak DWL)" }, "Show cava audio visualizer in media widget": { "Show cava audio visualizer in media widget": "Cava hangvizualizáló mutatása a média widgetben" @@ -3027,7 +3084,7 @@ "Show on-screen display when cycling audio output devices": "Képernyőn megjelenő kijelző mutatása 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őn megjelenő kijelző mutatása, amikor az inaktivitás gátló állapota változik" + "Show on-screen display when idle inhibitor state changes": "Képernyőn megjelenő kijelző mutatása, amikor az inaktivitás megakadályozó állapota változik" }, "Show on-screen display when media player volume changes": { "Show on-screen display when media player volume changes": "Képernyőn megjelenő kijelző mutatása, amikor a médialejátszó hangereje változik" @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "Jelszó megjelenítése" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "A bekapcsolás, újraindítás és kijelentkezés gombok megjelenítése a zárolási képernyőn" - }, - "Show seconds": { - "Show seconds": "Másodpercek mutatása" - }, "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "Időjárás információk megjelenítése a felső sávon és a vezérlőpulton" }, @@ -3093,13 +3144,13 @@ "Sizing": "Méretezés" }, "Some plugins require a newer version of DMS:": { - "Some plugins require a newer version of DMS:": "" + "Some plugins require a newer version of DMS:": "Néhány bővítmény a DMS újabb verzióját igényli:" }, "Sort Alphabetically": { "Sort Alphabetically": "Rendezés betűrend szerint" }, "Sort By": { - "Sort By": "" + "Sort By": "Rendezés" }, "Sorting & Layout": { "Sorting & Layout": "Rendezés és elrendezés" @@ -3111,11 +3162,14 @@ "Sounds": "Hangok" }, "Spacer": { - "Spacer": "Elválasztó" + "Spacer": "Térköz" }, "Spacing": { "Spacing": "Távolság" }, + "Speaker settings": { + "Speaker settings": "Hangszóró-beállítások" + }, "Speed": { "Speed": "Sebesség" }, @@ -3126,7 +3180,7 @@ "Square Corners": "Szögletes sarkok" }, "Stacked": { - "Stacked": "" + "Stacked": "Halmozott" }, "Start": { "Start": "Indítás" @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "Napnyugta" }, - "Support Development": { - "Support Development": "Fejlesztés támogatása" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "Értesítési felugró ablakok elnyomása, amíg engedélyezve van" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "Rendszerfrissítések" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "Rendszersáv widgetekkel és rendszerinformációkkal" - }, "System notification area icons": { "System notification area icons": "Rendszer értesítési terület ikonjai" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "Rendszerhangok nem érhetők el. Telepítse a canberra-gtk-play programot a hangtámogatáshoz." }, + "System theme toggle": { + "System theme toggle": "Rendszertéma-váltó" + }, "System toast notifications": { "System toast notifications": "Rendszer értesítési lebegő üzenetek" }, - "System tray icons": { - "System tray icons": "Rendszertálca ikonok" - }, "System update custom command": { "System update custom command": "Rendszerfrissítési egyéni parancs" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "Szöveg" }, + "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 'dgop' eszköz szükséges a rendszerfigyeléshez.\nTelepítsd a dgop-ot a funkció használatához." + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "A DMS_SOCKET környezeti változó nincs beállítva, vagy a socket nem elérhető. Az automatizált bővítménykezeléshez a DMS_SOCKET szükséges." }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "Időformátum" }, + "Time remaining: %1": { + "Time remaining: %1": "Hátralévő idő: %1" + }, + "Time until full: %1": { + "Time until full: %1": "Teljes töltésig hátralévő idő: %1" + }, "Timed Out": { "Timed Out": "Időtúllépés" }, @@ -3348,13 +3405,13 @@ "Top Bar Format": "Felső sáv formátuma" }, "Top Left": { - "Top Left": "" + "Top Left": "Bal Felül" }, "Top Processes": { - "Top Processes": "" + "Top Processes": "Top folyamatok" }, "Top Right": { - "Top Right": "" + "Top Right": "Jobb Felül" }, "Top Section": { "Top Section": "Felső szakasz" @@ -3363,10 +3420,10 @@ "Total Jobs": "Összes feladat" }, "Transform": { - "Transform": "" + "Transform": "Átalakítás" }, "Transition Effect": { - "Transition Effect": "Átmenet hatás" + "Transition Effect": "Átmeneti hatás" }, "Transparency": { "Transparency": "Átlátszóság" @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "Ismeretlen" }, + "Unknown Config": { + "Unknown Config": "Ismeretlen konfiguráció" + }, + "Unknown Device": { + "Unknown Device": "Ismeretlen eszköz" + }, + "Unknown Monitor": { + "Unknown Monitor": "Ismeretlen monitor" + }, + "Unknown Network": { + "Unknown Network": "Ismeretlen hálózat" + }, "Unpin from Dock": { "Unpin from Dock": "Rögzítés feloldása a Dokkról" }, @@ -3438,7 +3507,7 @@ "Use System Theme": "Rendszertéma használata" }, "Use animated wave progress bars for media playback": { - "Use animated wave progress bars for media playback": "Animált, hullámzó folyamatjelző sáv használata a médialejátszáshoz" + "Use animated wave progress bars for media playback": "Animált, hullámzó folyamatjelzők használata a médialejátszáshoz" }, "Use custom command for update your system": { "Use custom command for update your system": "Egyéni parancs használata a rendszer frissítéséhez" @@ -3458,6 +3527,9 @@ "Used": { "Used": "Használt" }, + "User": { + "User": "Felhasználó" + }, "Username": { "Username": "Felhasználónév" }, @@ -3479,35 +3551,38 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-konfiguráció frissítve" }, + "VPN connections": { + "VPN connections": "VPN kapcsolatok" + }, "VPN deleted": { "VPN deleted": "VPN-kapcsolat törölve" }, - "VPN imported: ": { - "VPN imported: ": "VPN-konfiguráció importálva: " + "VPN imported: %1": { + "VPN imported: %1": "VPN-profil importálva: %1" + }, + "VPN not available": { + "VPN not available": "VPN nem elérhető" }, "VPN status and quick connect": { "VPN status and quick connect": "VPN-állapot és gyors csatlakozás" }, "VRR": { - "VRR": "" + "VRR": "VRR" }, "VRR On-Demand": { - "VRR On-Demand": "" + "VRR On-Demand": "VRR igény szerint" }, "VRR activates only when applications request it": { - "VRR activates only when applications request it": "" - }, - "VRR: ": { - "VRR: ": "VRR: " + "VRR activates only when applications request it": "A VRR csak akkor aktiválódik, ha az alkalmazások kérik" }, "Variable Refresh Rate": { - "Variable Refresh Rate": "" + "Variable Refresh Rate": "Változó frissítési gyakoriság" }, "Variant created - expand to configure": { - "Variant created - expand to configure": "" + "Variant created - expand to configure": "Variáns létrehozva - bontsd ki a konfiguráláshoz" }, "Variant removed": { - "Variant removed": "" + "Variant removed": "Variáns eltávolítva" }, "Version": { "Version": "Verzió" @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "Hangerő megváltozott" }, - "Volume OSD": { - "Volume OSD": "Hangerő OSD" + "Volume Slider": { + "Volume Slider": "Hangerőszabályozó" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Hangerő, fényerő és egyéb rendszer OSD-k" @@ -3567,7 +3642,7 @@ "Warning": "Figyelmeztetés" }, "Wave Progress Bars": { - "Wave Progress Bars": "Hullámzó folyamatjelző sávok" + "Wave Progress Bars": "Hullámzó folyamatjelzők" }, "Weather": { "Weather": "Időjárás" @@ -3575,22 +3650,22 @@ "Weather Widget": { "Weather Widget": "Időjárás widget" }, - "Website:": { - "Website:": "Weboldal:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Ha engedélyezve van, az alkalmazások betűrendben vannak rendezve. Ha ki van kapcsolva, az alkalmazások használati gyakoriság szerint vannak rendezve." }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Bekapcsolva mutatja az indító átfedését, amikor Niri áttekintés-módban gépelsz. Kapcsold ki, ha nem szeretnéd, hogy az indító megjelenjen a Niri-áttekintésben való gépeléskor, vagy ha másik indítót szeretnél használni az áttekintésben." - }, "When updater widget is used, then hide it if no update found": { - "Hide Updater Widget": "", - "When updater widget is used, then hide it if no update found": "" + "Hide Updater Widget": "Frissítő widget elrejtése", + "When updater widget is used, then hide it if no update found": "Ha a frissítő widget használatban van, akkor elrejtés, ha nem található frissítés" }, "Wi-Fi Password": { "Wi-Fi Password": "Wi-Fi jelszó" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "Wi-Fi- és ethernet-kapcsolatok" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "Wi-Fi nem elérhető" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3607,7 +3682,7 @@ "WiFi is off": "A Wi-Fi ki van kapcsolva" }, "Wide (BT2020)": { - "Wide (BT2020)": "" + "Wide (BT2020)": "Széles (BT2020)" }, "Widget Background Color": { "Widget Background Color": "Widget háttérszíne" @@ -3619,19 +3694,23 @@ "Widget Outline": "Widget körvonal" }, "Widget Style": { - "Widget Style": "Widgetstílus" + "Widget Style": "Widget stílus" }, "Widget Styling": { - "Widget Styling": "Widgetstílus" + "Widget Styling": "Widget stílus" }, "Widget Transparency": { "Widget Transparency": "Widget átlátszósága" }, "Widget Variants": { - "Widget Variants": "" + "Widget Variants": "Widget variánsok" }, - "Widgets": { - "Widgets": "Widgetek" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "Szél" @@ -3640,7 +3719,7 @@ "Wind Speed": "Szélsebesség" }, "Window Gaps (px)": { - "Window Gaps (px)": "" + "Window Gaps (px)": "Ablakközök (px)" }, "Workspace": { "Workspace": "Munkaterület" @@ -3664,10 +3743,10 @@ "Workspaces & Widgets": "Munkaterületek és widgetek" }, "X Axis": { - "X Axis": "" + "X Axis": "X tengely" }, "Y Axis": { - "Y Axis": "" + "Y Axis": "Y tengely" }, "Yes": { "Yes": "Igen" @@ -3696,21 +3775,27 @@ "days": { "days": "nap" }, + "dgop not available": { + "dgop not available": "dgop nem elérhető" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "A dms/binds.kdl létezik, de nincs benne a config.kdl-ben. Az egyéni billentyűparancsok nem fognak működni, amíg ez nincs javítva." }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "A dms/binds.kdl nincs belefoglalva a config.kdl fájlba. Az egyéni billentyűparancsok nem fognak működni, amíg ezt nincs javítva." - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "A dms/binds.kdl most már szerepel a config.kdl fájlban" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "A dms/outputs konfiguráció létezik, de nincs benne a kompozitorod konfigurációjában. A kijelző változások nem maradnak meg." + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "pl.: firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "pl.: focus-workspace 3, resize-column -10" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "pl. notify-send 'Hello' && sleep 1" + }, "events": { "events": "események" }, @@ -3742,7 +3827,7 @@ "Settings": "Beállítások" }, "settings_displays": { - "Widgets": "" + "Widgets": "Widgetek" }, "sysmon window title": { "System Monitor": "Rendszerfigyelő" diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index 50829507..66cd637c 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "Monitor Attivo per Schermata di Blocco" }, - "Active: ": { - "Active: ": "Attivo: " + "Active: %1": { + "Active: %1": "Attivo: %1" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "Attivo: %1 +%2" }, "Active: None": { "Active: None": "Attivo: Nessuno" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "Aggiungi un bordo alla dock" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Aggiungi un prefisso personalizzato all'avvio di tutte le applicazioni. Può essere utilizzato per strumenti come 'uwsm-app', 'systemd-run' o altri wrapper di comandi." + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "Regola il numero di colonne nella modalità di visualizzazione a griglia." }, @@ -207,7 +213,13 @@ "Always on icons": "Icone sempre attive" }, "Always show a minimum of 3 workspaces, even if fewer are available": { - "Always show a minimum of 3 workspaces, even if fewer are available": "Visualizza sempre un minimo di 3 workspaces, anche se ne sono visibili meno" + "Always show a minimum of 3 workspaces, even if fewer are available": "Visualizza sempre un minimo di 3 spazi di lavoro, anche se ne sono visibili meno" + }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "Mostra sempre la dock quando la vista panoramica di niri è aperta" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "Mostra sempre quando è presente un solo display connesso" }, "Amount": { "Amount": "Quantità" @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "Dispositivi Audio" }, + "Audio Input": { + "Audio Input": "Input Audio" + }, + "Audio Output": { + "Audio Output": "Output Audio" + }, "Audio Output Devices (": { "Audio Output Devices (": "Dispositivi Uscita Audio (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "Visualizzatore Audio" }, + "Audio volume control": { + "Audio volume control": "Controllo volume audio" + }, "Auth": { "Auth": "Autenticazione" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "Rotazione Automatica" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "Calcola automaticamente la distanza del popup dall'angolo della barra" - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "Scorre automaticamente gli sfondi nella stessa cartella" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "Plugins Disponibili" }, - "Available Screens (": { - "Available Screens (": "Schermi Disponibili (" + "Available Screens (%1)": { + "Available Screens (%1)": "Schermi disponibili (%1)" }, "BSSID": { "BSSID": "BSSID" @@ -390,7 +408,10 @@ "Backend": "Backend" }, "Background Opacity": { - "Background Opacity": "Opacità dello sfondo" + "Background Opacity": "Opacità dello Sfondo" + }, + "Backlight device": { + "Backlight device": "Dispositivo di retroilluminazione" }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Tavolozza bilanciata con accenti focalizzati (default)." @@ -404,6 +425,9 @@ "Battery": { "Battery": "Batteria" }, + "Battery and power management": { + "Battery and power management": "Gestione batteria e alimentazione" + }, "Battery level and power management": { "Battery level and power management": "Livello batteria e gestione energetica" }, @@ -420,7 +444,16 @@ "Binds include added": "Le scorciatoie includono elementi aggiunti" }, "Bit Depth": { - "Bit Depth": "Profondità di bit" + "Bit Depth": "Profondità di Bit" + }, + "Block notifications": { + "Block notifications": "Blocca notifiche" + }, + "Blocked": { + "Blocked": "Bloccato" + }, + "Blue light filter": { + "Blue light filter": "Filtro luce blu" }, "Bluetooth": { "Bluetooth": "Bluetooth" @@ -428,8 +461,8 @@ "Bluetooth Settings": { "Bluetooth Settings": "Impostazioni Bluetooth" }, - "Blur Layer": { - "Blur Layer": "Livello Sfocatura" + "Bluetooth not available": { + "Bluetooth not available": "Bluetooth non disponibile" }, "Blur on Overview": { "Blur on Overview": "Sfocatura su Panoramica" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "Luminosità" }, - "Brightness OSD": { - "Brightness OSD": "OSD Luminosità" + "Brightness Slider": { + "Brightness Slider": "Slider Luminosità" + }, + "Brightness control not available": { + "Brightness control not available": "Controllo luminosità non disponibile" }, "Browse": { "Browse": "Sfoglia" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "Server di stampa CUPS" }, + "CUPS not available": { + "CUPS not available": "CUPS non disponibile" + }, "Camera": { "Camera": "Fotocamera" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "Annullato" }, + "Cannot pair": { + "Cannot pair": "Impossibile associare" + }, "Capabilities": { "Capabilities": "Capacità" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "Indicatore Maiuscolo" }, - "Caps Lock OSD": { - "Caps Lock OSD": "OSD Maiuscolo" - }, "Center Section": { "Center Section": "Sezione Centrale" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "Cambia aspetto barra" }, - "Changes:": { - "Changes:": "Modifiche:" - }, "Channel": { "Channel": "Canale" }, + "Charging": { + "Charging": "In Carica" + }, "Check for system updates": { "Check for system updates": "Controlla aggiornamenti di sistema" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Scegli Colore Logo Launcher" }, + "Choose a color": { + "Choose a color": "Scegli un colore" + }, + "Choose colors from palette": { + "Choose colors from palette": "Scegli i colori dalla tavolozza" + }, "Choose icon": { "Choose icon": "Scegli icona" }, @@ -569,9 +614,6 @@ "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 bottone lanciatore nella DankBar" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "Scegli il colore di accento del bordo del widget" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Scegli dove i popup delle notifiche appaiono sullo schermo" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "Cancella all'Avvio" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Clicca su 'Configura' per creare dms/binds.kdl e aggiungere l'istruzione include a config.kdl." + }, + "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.": "Clicca 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": "Clicka su Importa per aggiungere un file .ovpn o .conf" }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "Stile dell’Orologio" }, - "Clock show seconds": { - "Clock show seconds": "Orologio mostra secondi" - }, "Close": { "Close": "Chiudi" }, @@ -683,24 +728,6 @@ "Command": { "Command": "Comando" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "Comando e script da eseguire invece della procedura standard di ibernazione" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "Comando e script da eseguire invece della procedura standard di blocco" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "Comando e script da eseguire invece della procedura standard di logout" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "Comando e script da eseguire invece della procedura standard di spegnimento" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "Comando e script da eseguire invece della procedura standard di riavvio" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "Comando e script da eseguire invece della procedura standard di sospensione" - }, "Communication": { "Communication": "Comunicazione" }, @@ -738,7 +765,7 @@ "Configure a new printer": "Configura una nuova stampante" }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { - "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Configura le icone per i workspaces con nome. Le icone hanno la priorità su numeri quando sono entrambi abilitati" + "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Configura le icone per gli spazi di lavoro con nome. Le icone hanno la priorità su numeri quando sono entrambi abilitati." }, "Configure which displays show shell components": { "Configure which displays show shell components": "Configura quale display mostra i componenti della shell" @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "Connessione al Dispositivo" }, + "Connecting...": { + "Connecting...": "Connessione in corso..." + }, "Contrast": { "Contrast": "Contrasto" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "Controlla l'opacità di tutti i popup, le finestre modali e i loro livelli di contenuto" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "Controlla l'opacità di tutti i popup, delle finestre modali e dei relativi livelli di contenuto (Dank Dash, Impostazioni, App Drawer, Centro di controllo, ecc.)" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "Controlla l'opacità di ogni widget nella DankBar" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "Controlla l'opacità dello sfondo del pannello della DankBar" - }, "Cooldown": { "Cooldown": "Tempo di Attesa" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "Temperatura e condizioni meteo attuali" }, + "Current: %1": { + "Current: %1": "Attuale: %1" + }, "Custom": { "Custom": "Personalizzato" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "Personalizza quale azione visualizzare nel menù alimentazione" }, + "DDC/CI monitor": { + "DDC/CI monitor": "Monitor DDC/CI" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "DEMO MODE - Clicca ovunque per uscire" }, @@ -915,7 +942,7 @@ "DMS service is not connected. Clipboard settings are unavailable.": "Il servizio DMS non è connesso. Le impostazioni degli clipboard non sono disponibili." }, "DMS shell actions (launcher, clipboard, etc.)": { - "DMS shell actions (launcher, clipboard, etc.)": "Azioni della shell DMS (lanuncher, appunti, ecc.)" + "DMS shell actions (launcher, clipboard, etc.)": "Azioni della shell DMS (launcher, clipboard, ecc.)" }, "DMS_SOCKET not available": { "DMS_SOCKET not available": "DMS_SOCKET non disponibile" @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Scala Font DankBar" - }, "DankSearch not available": { "DankSearch not available": "DankSearch non disponibile" }, @@ -1005,7 +1029,7 @@ "Description": "Descrizione" }, "Desktop Clock": { - "Desktop Clock": "Orologio del Desktop" + "Desktop Clock": "Orologio Desktop" }, "Desktop Widgets": { "Desktop Widgets": "Widget del Desktop" @@ -1019,6 +1043,9 @@ "Device": { "Device": "Dispositivo" }, + "Device connections": { + "Device connections": "Connessioni del Dispositivo" + }, "Device paired": { "Device paired": "Dispositivo accoppiato" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "Disabilita Gestore Clipboard" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "Disabilita Proprietà degli Clipboard" - }, "Disable History Persistence": { "Disable History Persistence": "Disabilita la persistenza della cronologia" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "Disabilitato" }, + "Disabling WiFi...": { + "Disabling WiFi...": "Disattivazione Wi-Fi..." + }, "Discard": { "Discard": "Scarta" }, @@ -1086,7 +1113,10 @@ "Display and switch DWL layouts": "Visualizza e cambia i layouts DWL" }, "Display application icons in workspace indicators": { - "Display application icons in workspace indicators": "Mostra icone applicazioni negli indicatori dei workspaces" + "Display application icons in workspace indicators": "Mostra icone applicazioni negli indicatori degli spazi di lavoro" + }, + "Display brightness control": { + "Display brightness control": "Controllo luminosità del display" }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "La configurazione del display non è disponibile. Il protocollo WLR Output Management non è supportato." @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "Mostra i secondi nell'orologio" }, - "Display settings for ": { - "Display settings for ": "Impostazioni display per " - }, "Display the power system menu": { "Display the power system menu": "Mostra il menu di sistema alimentazione" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "Dominio (opzionale)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Dona su Ko-fi" + "Don't Change": { + "Don't Change": "Non Modificare" + }, + "Don't Save": { + "Don't Save": "Non Salvare" }, "Door Open": { "Door Open": "Sportello Aperto" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "Duplica Sfondo con Sfocatura" }, - "Duration": { - "Duration": "Durata" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "Crepuscolo (Crepuscolo Astronomico)" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "Abilita Barra" }, - "Enable Border": { - "Enable Border": "Abilita Bordi" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "Abilita Orologio del Desktop" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "Abilita WiFi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "Abilita Contorno Widget" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Abilitare il livello di sfocatura compositore-targetable (namespace: dms:blurwallpaper). Richiede la configurazione manuale di niri." }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "Abilitato" }, + "Enabling WiFi...": { + "Enabling WiFi...": "Attivazione Wi-Fi..." + }, "End": { "End": "Fine" }, @@ -1269,7 +1293,7 @@ "Enter credentials for ": "Inserisci credenziali per " }, "Enter custom lock screen format (e.g., dddd, MMMM d)": { - "Enter custom lock screen format (e.g., dddd, MMMM d)": "Inserisci il formato blocca schermo personalizzato ( es., ddds, MMMM d)" + "Enter custom lock screen format (e.g., dddd, MMMM d)": "Inserisci il formato blocca schermo personalizzato ( es., dddd, MMMM d)" }, "Enter custom top bar format (e.g., ddd MMM d)": { "Enter custom top bar format (e.g., ddd MMM d)": "Inserisci formato personalizzato barra superiore (es., ddd MMM d)" @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "Inserisci nome file..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "Inserisci il prefisso di avvio (es. 'uwsm-app')" + }, "Enter passkey for ": { "Enter passkey for ": "Inserisci passkey per" }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "Funzionalità Sperimentale" }, + "Exponential": { + "Exponential": "Esponenziale" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Cambia • F10: Help" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "Impossibile connettersi alla VPN" }, - "Failed to connect to ": { - "Failed to connect to ": "Impossibile connettersi a " + "Failed to connect to %1": { + "Failed to connect to %1": "Connessione a %1 non riuscita" }, "Failed to copy entry": { "Failed to copy entry": "Impossibile copiare la voce" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "Impossibile disabilitare l'accettazione dei lavori" }, + "Failed to disable night mode": { + "Failed to disable night mode": "Impossibile disattivare la modalità notturna" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Impossibile disconnettersi dalla VPN" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "Impossibile disconnettere WiFi" }, + "Failed to enable IP location": { + "Failed to enable IP location": "Impossibile attivare la posizione tramite IP" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "Impossibile abilitare WiFi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "Impossibile abilitare l'accettazione dei lavori" }, + "Failed to enable night mode": { + "Failed to enable night mode": "Impossibile attivare la modalità notturna" + }, "Failed to hold job": { "Failed to hold job": "Impossibile sospendere il lavoro" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "Impossibile salvare la scorciatoia" }, + "Failed to set brightness": { + "Failed to set brightness": "Impossibile impostare la luminosità" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "Impossibile impostare la posizione per la modalità notturna" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "Impossibile impostare la programmazione della modalità notturna" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "Impossibile impostare la temperatura della modalità notturna" + }, "Failed to set profile image": { "Failed to set profile image": "Impossibile impostare immagine profilo" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "Impossibile impostare immagine profilo: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "Impossibile impostare l'immagine del profilo: %1" }, - "Failed to start connection to ": { - "Failed to start connection to ": "Impossibile avviare connessione a " + "Failed to start connection to %1": { + "Failed to start connection to %1": "Impossibile avviare la connessione a %1" }, "Failed to update VPN": { "Failed to update VPN": "Impossibile aggiornare la VPN" @@ -1448,6 +1499,9 @@ "Files": { "Files": "File" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "Monitoraggio utilizzo del filesystem" + }, "Find in Text": { "Find in Text": "Trova nel Testo" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "Dimentica Rete" }, - "Forgot network ": { - "Forgot network ": "Dimentica rete " + "Forgot network %1": { + "Forgot network %1": "Rete %1 dimenticata" }, "Format Legend": { "Format Legend": "Legenda Formato" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "Temperatura GPU" }, - "GPU temperature display": { - "GPU temperature display": "Mostra temperatura GPU" - }, "Games": { "Games": "Giochi" }, @@ -1619,14 +1670,8 @@ "Hide Delay": { "Hide Delay": "Ritardo Nascondi" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "Ritardo Scomparsa (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { - "Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando " - }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "Tavolozza a contrasto elevato per una forte distinzione visiva\n" + "Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando non è in uso e mostrala quando il cursore passa vicino all’area della dock" }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Tavolozza alta-fedeltà per preservare la tonalità della sorgente" @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "Previsioni Orarie" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "Quanto tempo tenere premuto il pulsante per confermare l'azione" - }, "How often to change wallpaper": { "How often to change wallpaper": "Quanto spesso cambiare lo sfondo" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "Inibitore Riposo" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "OSD Inibitore inattività" - }, "Idle Settings": { "Idle Settings": "Impostazioni Riposo" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "Eredita" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "Impedisci tempo inattività quando audio o video sono in riproduzione" - }, "Input Devices": { "Input Devices": "Dispositivi Input" }, + "Input Volume Slider": { + "Input Volume Slider": "Slider Volume di Input" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "Installa plugins dal registro dei plugin DMS" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "Dispositivo LED" + }, "Last launched %1": { "Last launched %1": "Ultimo avviato %1" }, @@ -1809,7 +1851,7 @@ "Last launched %1 hour%2 ago": "Ultimo avviato %1 ora%2 fa" }, "Last launched %1 minute%2 ago": { - "Last launched %1 minute%2 ago": "Ultimo avviato %1 minito%2 fa" + "Last launched %1 minute%2 ago": "Ultimo avviato %1 minuto%2 fa" }, "Last launched just now": { "Last launched just now": "Ultimo avviato ora" @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "Modalità Chiara" }, + "Linear": { + "Linear": "Lineare" + }, "Lines: %1": { "Lines: %1": "Linee: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "Tavolozza vivace con accenti saturi." }, + "Loading codecs...": { + "Loading codecs...": "Caricamento codec in corso..." + }, "Loading keybinds...": { "Loading keybinds...": "Caricando Scorciatoie..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "Gestisci fino a 4 configurazioni di barre indipendenti. Ogni barra ha la propria posizione, widget, stile e assegnazione di visualizzazione. " }, + "Management": { + "Management": "Gestione" + }, "Manual Coordinates": { "Manual Coordinates": "Coordinate Manuali" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Tavolozza Matugen" }, - "Matugen Settings": { - "Matugen Settings": "Impostazioni Matugen" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Monitor di destinazione Matugen" }, @@ -1962,7 +2010,7 @@ "Matugen Templates": "Template Matugen" }, "Max apps to show": { - "Max apps to show": "Applicazioni massime da mostrare" + "Max apps to show": "Numero massimo di app da visualizzare" }, "Maximize Detection": { "Maximize Detection": "Rilevamento Massimizzazione" @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "Volume Media" }, - "Media Volume OSD": { - "Media Volume OSD": "OSD Volume Media" - }, "Medium": { "Medium": "Medio" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "Silenzia Microfono" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "OSD Microfono Muto" + "Microphone settings": { + "Microphone settings": "Impostazioni Microfono" + }, + "Microphone volume control": { + "Microphone volume control": "Controllo volume microfono" }, "Middle Section": { "Middle Section": "Sezione Centrale" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "Modalità:" }, - "Mode: ": { - "Mode: ": "Modalità:" - }, "Model": { "Model": "Modello" }, @@ -2094,7 +2139,7 @@ "Name": "Nome" }, "Named Workspace Icons": { - "Named Workspace Icons": "Icone Workspace con Nome" + "Named Workspace Icons": "Icone Spazi di Lavoro con Nome" }, "Navigation": { "Navigation": "Navigazione" @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "Informazioni Rete" }, - "Network Settings": { - "Network Settings": "Impostazioni Rete" - }, "Network Speed Monitor": { "Network Speed Monitor": "Monitor Velocità Rete" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "Nessun Adattatore" }, + "No battery": { + "No battery": "Nessuna batteria" + }, + "No brightness devices available": { + "No brightness devices available": "Nessun dispositivo di luminosità disponibile" + }, "No changes": { "No changes": "Nessun cambiamento" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "Nessun dispositivo trovato" }, + "No disk data": { + "No disk data": "Nessun dato sul disco" + }, + "No disk data available": { + "No disk data available": "Nessun dato sul disco disponibile" + }, "No drivers found": { "No drivers found": "Nessun driver trovato" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "Priorità Normale" }, + "Not available": { + "Not available": "Non disponibile" + }, "Not connected": { "Not connected": "Non connesso" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "Altro" }, - "Outline Color": { - "Outline Color": "Colore Contorno" - }, - "Outline Opacity": { - "Outline Opacity": "Opacità Contorno" - }, - "Outline Thickness": { - "Outline Thickness": "Spessore Contorno" - }, "Output Area Almost Full": { "Output Area Almost Full": "Area Uscita Quasi Piena" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Accoppia Dispositivo Bluetooth" }, + "Paired": { + "Paired": "Associato" + }, "Pairing failed": { "Pairing failed": "Accoppiamento fallito" }, + "Pairing...": { + "Pairing...": "Associazione in Corso..." + }, "Passkey:": { "Passkey:": "Passkey:" }, @@ -2418,7 +2472,7 @@ "Per-Monitor Wallpapers": "Sfondo Per Monitor" }, "Per-Monitor Workspaces": { - "Per-Monitor Workspaces": "Workspaces Per Monitor" + "Per-Monitor Workspaces": "Spazi di Lavoro Per Monitor" }, "Percentage": { "Percentage": "Percentuale" @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "Personalizzazione" }, + "Pin": { + "Pin": "Pin" + }, "Pin to Dock": { "Pin to Dock": "Blocca sulla Dock" }, + "Pinned": { + "Pinned": "Fissato" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Posizione la cartella plugin qui. Ogni plugin deve avere un file manifesto plugin.json" }, - "Place plugins in": { - "Place plugins in": "Posiziona i plugins in" + "Place plugins in %1": { + "Place plugins in %1": "Inserisci i plugin in %1" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "Riproduci suono quando arriva una nuova notifica" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "Connesso" }, + "Plugged in": { + "Plugged in": "Collegato all'alimentazione" + }, + "Plugin": { + "Plugin": "Plugin" + }, "Plugin Directory": { "Plugin Directory": "Cartella Plugin" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "Plugins" }, - "Plugins:": { - "Plugins:": "Plugins:" - }, "Pointer": { "Pointer": "Puntatore" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "Posizione" }, - "Position: ": { - "Position: ": "Posizione" - }, "Possible Override Conflicts": { "Possible Override Conflicts": "Possibili Conflitti di Sovrascrittura" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "Degradamento profilo energetico" }, - "Power Profile OSD": { - "Power Profile OSD": "OSD Profilo Alimentazione" + "Power profile management available": { + "Power profile management available": "Gestione dei profili energetici disponibile" }, "Power source": { "Power source": "Sorgente di alimentazione" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "Pressione" }, - "Prevent idle for media": { - "Prevent idle for media": "Previeni sospensione per media" - }, "Prevent screen timeout": { "Prevent screen timeout": "Previeni timeout schermo" }, "Primary": { "Primary": "Primario" }, + "Print Server Management": { + "Print Server Management": "Gestione Server di Stampa" + }, "Print Server not available": { "Print Server not available": "Server di Stampa non disponibile" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "Riepilogo" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Richiedi conferma alle azioni di spegnimento, riavvio, sospensione, hibernazione e logout" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Richiede di tenere premuto il pulsante/tasto per confermare lo spegnimento, il riavvio, la sospensione, l'ibernazione e il logout" }, - "Requires DMS": { - "Requires DMS": "Richiede DMS" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "Richiede lo strumento 'dgop'" + }, + "Requires DMS %1": { + "Requires DMS %1": "Richiede DMS %1" }, "Requires DWL compositor": { "Requires DWL compositor": "Richiede compositor DWL" }, + "Requires night mode support": { + "Requires night mode support": "Richiede il supporto alla modalità notturna" + }, "Reset": { "Reset": "Resetta" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "Risoluzione e Frequenza di Aggiornamento" }, - "Resources": { - "Resources": "Risorse" - }, - "Restart": { - "Restart": "Riavvia" - }, "Restart DMS": { "Restart DMS": "Riavvia DMS" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "Ripristina" }, - "Reverting in:": { - "Reverting in:": "Ripristina in:" - }, "Right": { "Right": "Destra" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "Click destro sulla barra per scorrimento" }, + "Root Filesystem": { + "Root Filesystem": "Filesystem root" + }, "Run DMS Templates": { "Run DMS Templates": "Esegui Teplate DMS" }, @@ -2733,7 +2790,7 @@ "Running Apps": "Apps In Esecuzione" }, "Running Apps Only In Current Workspace": { - "Running Apps Only In Current Workspace": "Apps In Esecuzione Solo Nel Workspace Attuale" + "Running Apps Only In Current Workspace": "Apps In Esecuzione Solo Nello Spazio di Lavoro Attuale" }, "Running Apps Settings": { "Running Apps Settings": "Impostazioni Apps In Esecuzione" @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "Scansiona" }, + "Scanning": { + "Scanning": "Scansionando" + }, "Scanning...": { "Scanning...": "Scansione..." }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "Scorri Titolo Canzone" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "Scorri il titolo se non entra nel widget" + }, "Scrolling": { "Scrolling": "Scorrimento" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "Seleziona un colore dalla tavolozza o usa lo slider di personalizzazione" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "Selezione un preset o trascina per personalizzare" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "Seleziona un widget da aggiungere. Se necessario, puoi aggiungere più istanze dello stesso widget." }, @@ -2853,7 +2913,7 @@ "Select font weight for UI text": "Seleziona lo spessore del font per il testo dell'interfaccia utente" }, "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Selezionare il monitor per configurare lo sconto" + "Select monitor to configure wallpaper": "Seleziona il monitor per configurare lo sfondo" }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Seleziona font monospace per lista processi e visualizzazioni tecniche" @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "Scorciatoie" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "Scorciatoie (%1)" + }, "Show All Tags": { "Show All Tags": "Mostra tutti i tags" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "Mostra Temperatura CPU" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "Chiedi Conferma per Azione Engertiche" - }, "Show Date": { "Show Date": "Mostra Data" }, @@ -2967,10 +3027,7 @@ "Show Network Graph": "Mostra Grafico Rete" }, "Show Occupied Workspaces Only": { - "Show Occupied Workspaces Only": "Mostra Solo Spazi Di Lavoro Occupati" - }, - "Show Power Actions": { - "Show Power Actions": "Mostra Azioni Alimentazione" + "Show Occupied Workspaces Only": "Mostra Solo Spazi di Lavoro Occupati" }, "Show Power Off": { "Show Power Off": "Mostra Spegni" @@ -2991,7 +3048,7 @@ "Show Top Processes": "Mostra Processi Principali" }, "Show Workspace Apps": { - "Show Workspace Apps": "Mostra Apps Workspace" + "Show Workspace Apps": "Mostra Icone negli Spazi di Lavoro" }, "Show all 9 tags instead of only occupied tags (DWL only)": { "Show all 9 tags instead of only occupied tags (DWL only)": "Mostra tutti i 9 tags invece dei soli tags occupati (solo DWL)" @@ -3042,7 +3099,7 @@ "Show on-screen display when volume changes": "Visualizza un messaggio a schermo quando il volume cambia" }, "Show only apps running in current workspace": { - "Show only apps running in current workspace": "Mostra solo apps eseguite nel workspace attuale" + "Show only apps running in current workspace": "Mostra solo apps eseguite nello spazio di lavoro attuale" }, "Show only workspaces belonging to each specific monitor.": { "Show only workspaces belonging to each specific monitor.": "Mostra solo gli spazi di lavoro appartenenti a ciascun monitor specifico." @@ -3050,23 +3107,17 @@ "Show password": { "Show password": "Mostra password" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "Mostra i bottoni spegni, riavvia, e logout nella schermata di blocco" - }, - "Show seconds": { - "Show seconds": "Mostra secondi" - }, "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 workspace index numbers in the top bar workspace switcher": { - "Show workspace index numbers in the top bar workspace switcher": "Mostra i numeri d'indice dei workspace nello switcher dei workspace nella barra superiore" + "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" }, "Shows all running applications with focus indication": { "Shows all running applications with focus indication": "Mostra tutte le applicazioni in esecuzione con indicazione focus" }, "Shows current workspace and allows switching": { - "Shows current workspace and allows switching": "Mostra workspace corrente e permette cambio" + "Shows current workspace and allows switching": "Visualizza lo spazio di lavoro attuale e consente di passare ad un altro" }, "Shows when caps lock is active": { "Shows when caps lock is active": "Indica quando il maiuscolo è attivo" @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "Spaziatura" }, + "Speaker settings": { + "Speaker settings": "Impostazioni altoparlanti" + }, "Speed": { "Speed": "Velocità" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "Tramonto" }, - "Support Development": { - "Support Development": "Supporta Sviluppo" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "Sopprimi i popup di notifica mentre abilitato" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "Aggiornamenti Sistema" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "Barra di sistema con widget ed informazioni di sistema" - }, "System notification area icons": { "System notification area icons": "Icone area notifiche di sistema" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "I suoni di sistema non sono disponibili. Installa canberra-gtk-play per il supporto audio." }, + "System theme toggle": { + "System theme toggle": "Interruttore tema di sistema" + }, "System toast notifications": { "System toast notifications": "Notiche toast di sistema" }, - "System tray icons": { - "System tray icons": "Icone vassoio di sistema" - }, "System update custom command": { "System update custom command": "Comando personalizzato aggiornamento sistema" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "Testo" }, + "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 funzione." + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "La variabile di sistema DMS_SOCKET non è settata o il socket non è disponibile. La gestione automatica dei plugin richiede il DMS_SOCKET " }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "Formato orario" }, + "Time remaining: %1": { + "Time remaining: %1": "Tempo rimanente: %1" + }, + "Time until full: %1": { + "Time until full: %1": "Tempo alla carica completa: %1" + }, "Timed Out": { "Timed Out": "Scaduto" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "Sconosciuto" }, + "Unknown Config": { + "Unknown Config": "Configurazione sconosciuta" + }, + "Unknown Device": { + "Unknown Device": "Dispositivo sconosciuto" + }, + "Unknown Monitor": { + "Unknown Monitor": "Monitor sconosciuto" + }, + "Unknown Network": { + "Unknown Network": "Rete sconosciuta" + }, "Unpin from Dock": { "Unpin from Dock": "Sblocca da Dock" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "Usato" }, + "User": { + "User": "Utente" + }, "Username": { "Username": "Username" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "Configurazione VPN aggiornata" }, + "VPN connections": { + "VPN connections": "Connessioni VPN" + }, "VPN deleted": { "VPN deleted": "VPN eliminata" }, - "VPN imported: ": { - "VPN imported: ": "Vpn importata: " + "VPN imported: %1": { + "VPN imported: %1": "VPN importata: %1" + }, + "VPN not available": { + "VPN not available": "VPN non disponibile" }, "VPN status and quick connect": { "VPN status and quick connect": "Stato VPN e connessione veloce" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "Il VRR si attiva solo quando richiesto dalle applicazioni" }, - "VRR: ": { - "VRR: ": "VRR:" - }, "Variable Refresh Rate": { "Variable Refresh Rate": "Frequenza di Aggiornamento Variabile" }, @@ -3531,7 +3606,7 @@ "Visibility": "Visibilità" }, "Visual divider between widgets": { - "Visual divider between widgets": "Speratore visivo tra i widget" + "Visual divider between widgets": "Separatore visivo tra i widget" }, "Visual effect used when wallpaper changes": { "Visual effect used when wallpaper changes": "Effetto visivo usato quando cambia lo sfondo" @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "Volume Cambiato" }, - "Volume OSD": { - "Volume OSD": "OSD Volume" + "Volume Slider": { + "Volume Slider": "Slider VOlume" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volume, luminosità, e altri OSD di sistema" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "Widget Meteo" }, - "Website:": { - "Website:": "Sito web:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Quando abilitato, le applicazioni sono ordinate alfabeticamente. Quando disabilitato, le applicazioni sono ordinate per frequenza d'uso" }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Se abilitato, mostra la sovrapposizione del launcher durante la digitazione nella modalità panoramica di Niri. Disabilitalo se preferisci non avere il launcher durante la digitazione nella panoramica di Niri o desideri utilizzare un altro launcher nella panoramica." - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "Nascondi Widget di Aggiornamento", "When updater widget is used, then hide it if no update found": "Se si usa il widget aggiornamenti, nascondilo se non ne vengono trovati" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "Password Wi-Fi" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "Connessione Wi-Fi ed Ethernet" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "Wi-Fi non disponibile" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "Varianti del Widget" }, - "Widgets": { - "Widgets": "Widgets" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "Vento" @@ -3643,19 +3722,19 @@ "Window Gaps (px)": "Spazi tra finestre (px)" }, "Workspace": { - "Workspace": "Workspace" + "Workspace": "Spazio di Lavoro" }, "Workspace Index Numbers": { - "Workspace Index Numbers": "Numeri Indice Workspace" + "Workspace Index Numbers": "Numeri Indice Spazi di Lavoro" }, "Workspace Padding": { - "Workspace Padding": "Padding Workspace" + "Workspace Padding": "Margine degli Spazi di Lavoro" }, "Workspace Settings": { - "Workspace Settings": "Impostazioni Workspace" + "Workspace Settings": "Impostazioni Spazi di Lavoro" }, "Workspace Switcher": { - "Workspace Switcher": "Switcher Workspace" + "Workspace Switcher": "Switcher Spazi di Lavoro" }, "Workspaces": { "Workspaces": "Spazi di Lavoro" @@ -3696,20 +3775,26 @@ "days": { "days": "Giorni" }, + "dgop not available": { + "dgop not available": "dgop non disponibile" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl esiste ma non è incluso in config.kdl. Le scorciatoie personalizzate non funzioneranno finché questo non sarà risolto." }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl non è incluso in config.kdl. Le scorciatoie personalizzate non funzioneranno finché questo non sarà corretto." - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl è ora incluso in config.kdl" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configurazione dms/outputs esiste ma non è inclusa nella configurazione del compositor. Le modifiche al display non saranno persistenti." + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "ad es., firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { - "e.g., focus-workspace 3, resize-column -10": "ad es., focus-workspace 3, resize-column -10" + "e.g., focus-workspace 3, resize-column -10": "ad es., passa allo spazio di lavoro 3, ridimensiona colonna -10." + }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "es. notify-send 'Ciao' && sleep 1" }, "events": { "events": "eventi" @@ -3781,7 +3866,7 @@ "• MMMM - Month (January)": "• MMMM - Mese (Gennaio)" }, "• Plugins may contain bugs or security issues": { - "• Plugins may contain bugs or security issues": "• I Plugins possono contere errori o problemi di sicurezza" + "• Plugins may contain bugs or security issues": "• I Plugins possono contenere errori o problemi di sicurezza" }, "• Review code before installation when possible": { "• Review code before installation when possible": "• Controlla il codice prima dell'installazione quando possibile" diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index cf8825d6..528046fa 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "" }, - "Active: ": { - "Active: ": "" + "Active: %1": { + "Active: %1": "" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "" }, "Active: None": { "Active: None": "" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "" + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "グリッド表示モードでの列数を調整します。" }, @@ -209,6 +215,12 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "使用可能なワークスペースが少ない場合でも、常に最低 3 つを表示" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "" + }, "Amount": { "Amount": "" }, @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "オーディオデバイス" }, + "Audio Input": { + "Audio Input": "" + }, + "Audio Output": { + "Audio Output": "" + }, "Audio Output Devices (": { "Audio Output Devices (": "オーディオ出力デバイス(" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "" }, + "Audio volume control": { + "Audio volume control": "" + }, "Auth": { "Auth": "" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "自動サイクリング" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "バーの端からのポップアップ距離を自動的に計算。" - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "同じフォルダ内の壁紙を自動的に切り替える" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "利用可能なプラグイン" }, - "Available Screens (": { - "Available Screens (": "利用可能なスクリーン(" + "Available Screens (%1)": { + "Available Screens (%1)": "" }, "BSSID": { "BSSID": "" @@ -392,6 +410,9 @@ "Background Opacity": { "Background Opacity": "" }, + "Backlight device": { + "Backlight device": "" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。" }, @@ -404,6 +425,9 @@ "Battery": { "Battery": "バッテリー" }, + "Battery and power management": { + "Battery and power management": "" + }, "Battery level and power management": { "Battery level and power management": "バッテリーレベルおよび電源管理" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "" }, + "Block notifications": { + "Block notifications": "" + }, + "Blocked": { + "Blocked": "" + }, + "Blue light filter": { + "Blue light filter": "" + }, "Bluetooth": { "Bluetooth": "" }, "Bluetooth Settings": { "Bluetooth Settings": "Bluetooth設定" }, - "Blur Layer": { - "Blur Layer": "ぼかしレイヤー" + "Bluetooth not available": { + "Bluetooth not available": "" }, "Blur on Overview": { "Blur on Overview": "概要でぼかす" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "明るさ" }, - "Brightness OSD": { - "Brightness OSD": "明るさOSD" + "Brightness Slider": { + "Brightness Slider": "" + }, + "Brightness control not available": { + "Brightness control not available": "" }, "Browse": { "Browse": "ブラウズ" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "" }, + "CUPS not available": { + "CUPS not available": "" + }, "Camera": { "Camera": "カメラ" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "" }, + "Cannot pair": { + "Cannot pair": "" + }, "Capabilities": { "Capabilities": "" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "Caps Lock インジケーター" }, - "Caps Lock OSD": { - "Caps Lock OSD": "Caps Lock OSD" - }, "Center Section": { "Center Section": "センターセクション" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "バーの見た目を変更" }, - "Changes:": { - "Changes:": "変更:" - }, "Channel": { "Channel": "" }, + "Charging": { + "Charging": "" + }, "Check for system updates": { "Check for system updates": "システムアップデートを検査" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "ランチャーロゴの色を選ぶ" }, + "Choose a color": { + "Choose a color": "" + }, + "Choose colors from palette": { + "Choose colors from palette": "" + }, "Choose icon": { "Choose icon": "アイコンを選ぶ" }, @@ -569,9 +614,6 @@ "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "Dank Barのランチャーボタンに表示されるロゴを選ぶ" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "通知ポップアップが画面に表示される場所を選ぶ" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" + }, + "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": "" }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "" }, - "Clock show seconds": { - "Clock show seconds": "時計に秒数を表示" - }, "Close": { "Close": "閉じる" }, @@ -683,24 +728,6 @@ "Command": { "Command": "" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "標準の休止状態手順の代わりにコマンドまたはスクリプトで実行" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "標準のロック手順の代わりにコマンドまたはスクリプトで実行" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "標準のログアウト手順の代わりにコマンドまたはスクリプトで実行" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "標準の電源オフ手順の代わりにコマンドまたはスクリプトで実行" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "標準の再起動手順の代わりにコマンドまたはスクリプトで実行" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "標準の一時停止手順の代わりにコマンドまたはスクリプトで実行" - }, "Communication": { "Communication": "コミュニケーション" }, @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "デバイスに接続中" }, + "Connecting...": { + "Connecting...": "" + }, "Contrast": { "Contrast": "コントラスト" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "すべてのポップアウト、モーダル、およびそれらのコンテンツレイヤー(DankDash、設定、アプリドロワー、コントロールセンターなど)の不透明度を制御" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "DankBar内の個々のウィジェットの不透明度を制御" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "DankBarパネルの背景の不透明度を制御" - }, "Cooldown": { "Cooldown": "" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "現在の天気状況と気温" }, + "Current: %1": { + "Current: %1": "" + }, "Custom": { "Custom": "カスタム" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "電源メニューに表示されるアクションをカスタマイズ" }, + "DDC/CI monitor": { + "DDC/CI monitor": "" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "デモモード -任意の場所をクリックして 終了" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Dank Bar フォントスケール" - }, "DankSearch not available": { "DankSearch not available": "DankSearchが利用できません" }, @@ -1019,6 +1043,9 @@ "Device": { "Device": "デバイス" }, + "Device connections": { + "Device connections": "" + }, "Device paired": { "Device paired": "デバイスがペアリングされました" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "" - }, "Disable History Persistence": { "Disable History Persistence": "" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "無効化されました" }, + "Disabling WiFi...": { + "Disabling WiFi...": "" + }, "Discard": { "Discard": "" }, @@ -1088,6 +1115,9 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "ワークスペース インジケーターにアプリのアイコンを表示" }, + "Display brightness control": { + "Display brightness control": "" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "" }, @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "" }, - "Display settings for ": { - "Display settings for ": "以下の設定を表示 " - }, "Display the power system menu": { "Display the power system menu": "" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "ドメイン (オプション)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Ko-fiで寄付" + "Don't Change": { + "Don't Change": "" + }, + "Don't Save": { + "Don't Save": "" }, "Door Open": { "Door Open": "ドアオープン" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "ぼかしで壁紙を複製" }, - "Duration": { - "Duration": "期間" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "バーを起用" }, - "Enable Border": { - "Enable Border": "" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "WiFiを有効にする" }, - "Enable Widget Outline": { - "Enable Widget Outline": "" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "コンポジターをターゲットに設定できるぼかしレイヤー(名前空間:dms:blurwallpaper)を有効にします。Niri を手動で設定する必要があります。" }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "有効化されました" }, + "Enabling WiFi...": { + "Enabling WiFi...": "" + }, "End": { "End": "終わり" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "ファイル名を入力してください..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "" + }, "Enter passkey for ": { "Enter passkey for ": "パスキーを入力してください " }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "" }, + "Exponential": { + "Exponential": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切り替え • F10: ヘルプ" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "VPNへの接続が失敗しました" }, - "Failed to connect to ": { - "Failed to connect to ": "接続ができませんでした " + "Failed to connect to %1": { + "Failed to connect to %1": "" }, "Failed to copy entry": { "Failed to copy entry": "" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "" }, + "Failed to disable night mode": { + "Failed to disable night mode": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "VPNへの切断が失敗しました" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "WiFiの切断ができませんでした" }, + "Failed to enable IP location": { + "Failed to enable IP location": "" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "WiFiを有効化にできませんでした" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "" }, + "Failed to enable night mode": { + "Failed to enable night mode": "" + }, "Failed to hold job": { "Failed to hold job": "" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "" }, + "Failed to set brightness": { + "Failed to set brightness": "" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "" + }, "Failed to set profile image": { "Failed to set profile image": "プロフィール画像の設定に失敗しました" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "プロフィール画像の設定に失敗しました: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "" }, - "Failed to start connection to ": { - "Failed to start connection to ": "接続ができませんでした " + "Failed to start connection to %1": { + "Failed to start connection to %1": "" }, "Failed to update VPN": { "Failed to update VPN": "" @@ -1448,6 +1499,9 @@ "Files": { "Files": "" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "" + }, "Find in Text": { "Find in Text": "テキスト内検索" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "ネットワークを忘れる" }, - "Forgot network ": { - "Forgot network ": "ネットワークを削除しました " + "Forgot network %1": { + "Forgot network %1": "" }, "Format Legend": { "Format Legend": "フォーマット凡例" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "GPU温度" }, - "GPU temperature display": { - "GPU temperature display": "GPU温度表示" - }, "Games": { "Games": "ゲーム" }, @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "遅延を隠す (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "使用していないときはドックを非表示にし、ドックエリアの近くにホバーすると表示されます" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "視覚的な区別を強くするためのハイコントラストパレット。" - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "ソースの色相を保持する忠実度の高いパレット。" }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "" - }, "How often to change wallpaper": { "How often to change wallpaper": "壁紙を切り替える間隔" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "アイドルインヒビター" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "アイドルインヒビターOSD" - }, "Idle Settings": { "Idle Settings": "アイドル設定" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "オーディオまたはビデオの再生中のアイドルタイムアウトを禁止" - }, "Input Devices": { "Input Devices": "入力デバイス" }, + "Input Volume Slider": { + "Input Volume Slider": "" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "DMSプラグインレジストリからプラグインをインストールする" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "" }, + "LED device": { + "LED device": "" + }, "Last launched %1": { "Last launched %1": "最終起動日 %1" }, @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "ライトモード" }, + "Linear": { + "Linear": "" + }, "Lines: %1": { "Lines: %1": "行数: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "彩度の高いアクセントを備えた生き生きとしたパレット。" }, + "Loading codecs...": { + "Loading codecs...": "" + }, "Loading keybinds...": { "Loading keybinds...": "" }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "最大4つの独立したバー構成を管理できます。各バーには独自の位置、ウィジェット、スタイリング、表示割り当てがあります。" }, + "Management": { + "Management": "" + }, "Manual Coordinates": { "Manual Coordinates": "手動座標" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Matugen Palette" }, - "Matugen Settings": { - "Matugen Settings": "Matugen設定" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Matugenターゲットモニター" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "" }, - "Media Volume OSD": { - "Media Volume OSD": "メディア音量OSD" - }, "Medium": { "Medium": "" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "マイクミュートOSD" + "Microphone settings": { + "Microphone settings": "" + }, + "Microphone volume control": { + "Microphone volume control": "" }, "Middle Section": { "Middle Section": "中間区間" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "モード:" }, - "Mode: ": { - "Mode: ": "モード: " - }, "Model": { "Model": "モデル" }, @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "ネットワーク情報" }, - "Network Settings": { - "Network Settings": "ネットワーク設定" - }, "Network Speed Monitor": { "Network Speed Monitor": "ネットワーク速度モニター" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "" }, + "No battery": { + "No battery": "" + }, + "No brightness devices available": { + "No brightness devices available": "" + }, "No changes": { "No changes": "" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "" }, + "No disk data": { + "No disk data": "" + }, + "No disk data available": { + "No disk data available": "" + }, "No drivers found": { "No drivers found": "" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "通常の優先度" }, + "Not available": { + "Not available": "" + }, "Not connected": { "Not connected": "" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "他" }, - "Outline Color": { - "Outline Color": "" - }, - "Outline Opacity": { - "Outline Opacity": "" - }, - "Outline Thickness": { - "Outline Thickness": "" - }, "Output Area Almost Full": { "Output Area Almost Full": "アウトプットエリアがほぼ満杯" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Bluetoothデバイスのペアリング" }, + "Paired": { + "Paired": "" + }, "Pairing failed": { "Pairing failed": "ペアリングが失敗しました" }, + "Pairing...": { + "Pairing...": "" + }, "Passkey:": { "Passkey:": "パスキー:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "パーソナライゼーション" }, + "Pin": { + "Pin": "" + }, "Pin to Dock": { "Pin to Dock": "ドックにピン留め" }, + "Pinned": { + "Pinned": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "プラグインディレクトリをここに配置します。各プラグインには plugin.json マニフェストファイルが必要です。" }, - "Place plugins in": { - "Place plugins in": "プラグインを配置する場所" + "Place plugins in %1": { + "Place plugins in %1": "" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "新しい通知が届いたときにサウンドを再生" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "接続" }, + "Plugged in": { + "Plugged in": "" + }, + "Plugin": { + "Plugin": "" + }, "Plugin Directory": { "Plugin Directory": "プラグインディレクトリ" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "プラグイン" }, - "Plugins:": { - "Plugins:": "プラグイン:" - }, "Pointer": { "Pointer": "" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "位置" }, - "Position: ": { - "Position: ": "位置: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "電源プロファイルの劣化" }, - "Power Profile OSD": { - "Power Profile OSD": "電源プロファイルOSD" + "Power profile management available": { + "Power profile management available": "" }, "Power source": { "Power source": "" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "プレッシャー" }, - "Prevent idle for media": { - "Prevent idle for media": "メディアのアイドル状態を防止" - }, "Prevent screen timeout": { "Prevent screen timeout": "画面のタイムアウトを防止" }, "Primary": { "Primary": "プライマリー" }, + "Print Server Management": { + "Print Server Management": "" + }, "Print Server not available": { "Print Server not available": "プリントサーバーが利用できません" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "報告" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "電源オフ、再起動、一時停止、休止状態、ログアウトアクションの確認を要求" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "" + }, + "Requires DMS %1": { + "Requires DMS %1": "" }, "Requires DWL compositor": { "Requires DWL compositor": "DWLコンポジターが必要" }, + "Requires night mode support": { + "Requires night mode support": "" + }, "Reset": { "Reset": "リセット" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "" }, - "Resources": { - "Resources": "リソース" - }, - "Restart": { - "Restart": "再起動" - }, "Restart DMS": { "Restart DMS": "DMSを再起動" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "戻す" }, - "Reverting in:": { - "Reverting in:": "元に戻す:" - }, "Right": { "Right": "右" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "バーウィジェットを右クリックして循環" }, + "Root Filesystem": { + "Root Filesystem": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "スキャン" }, + "Scanning": { + "Scanning": "" + }, "Scanning...": { "Scanning...": "" }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "" + }, "Scrolling": { "Scrolling": "スクロール" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "パレットから色を選ぶか、カスタムスライダーを使用します" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "プリセットを選択するか、スライダーをドラッグしてカスタマイズします" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "" }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "" + }, "Show All Tags": { "Show All Tags": "すべてのタグを表示" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "電源アクションの確認を表示" - }, "Show Date": { "Show Date": "" }, @@ -2969,9 +3029,6 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "" }, - "Show Power Actions": { - "Show Power Actions": "電源アクションを表示" - }, "Show Power Off": { "Show Power Off": "パワーオフを表示" }, @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "パスワードを表示" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "ロック画面に電源ボタン、再起動ボタン、ログアウトボタンを表示" - }, - "Show seconds": { - "Show seconds": "秒数を表示" - }, "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "トップバーとコントロールセンターに天気情報を表示" }, @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "間隔" }, + "Speaker settings": { + "Speaker settings": "" + }, "Speed": { "Speed": "" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "" }, - "Support Development": { - "Support Development": "開発をサポート" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "システムアップデート" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "ウィジェットとシステム情報を含むシステムバー" - }, "System notification area icons": { "System notification area icons": "システム通知エリアアイコン" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "" }, + "System theme toggle": { + "System theme toggle": "" + }, "System toast notifications": { "System toast notifications": "システムトースト通知" }, - "System tray icons": { - "System tray icons": "システムトレイアイコン" - }, "System update custom command": { "System update custom command": "システム更新カスタムコマンド" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "テキスト" }, + "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.": "" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "DMS_SOCKET環境変数が設定されていないか、ソケットが利用できません。自動プラグイン管理にはDMS_SOCKETが必要です。" }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "" }, + "Time remaining: %1": { + "Time remaining: %1": "" + }, + "Time until full: %1": { + "Time until full: %1": "" + }, "Timed Out": { "Timed Out": "タイムアウト" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "" }, + "Unknown Config": { + "Unknown Config": "" + }, + "Unknown Device": { + "Unknown Device": "" + }, + "Unknown Monitor": { + "Unknown Monitor": "" + }, + "Unknown Network": { + "Unknown Network": "" + }, "Unpin from Dock": { "Unpin from Dock": "ドックから固定を解除" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "使用済み" }, + "User": { + "User": "" + }, "Username": { "Username": "ユーザー名" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "" }, + "VPN connections": { + "VPN connections": "" + }, "VPN deleted": { "VPN deleted": "" }, - "VPN imported: ": { - "VPN imported: ": "" + "VPN imported: %1": { + "VPN imported: %1": "" + }, + "VPN not available": { + "VPN not available": "" }, "VPN status and quick connect": { "VPN status and quick connect": "VPNステータスとクイック接続" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "" }, - "VRR: ": { - "VRR: ": "VRR: " - }, "Variable Refresh Rate": { "Variable Refresh Rate": "" }, @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "音量変更" }, - "Volume OSD": { - "Volume OSD": "音量OSD" + "Volume Slider": { + "Volume Slider": "" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "音量、明るさ、その他のシステム OSD" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "天気ウィジェット" }, - "Website:": { - "Website:": "ウェブサイト:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "有効にすると、アプリはアルファベット順に並べ替えられます。無効にすると、アプリは使用頻度で並べ替えられます。" }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "" - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "", "When updater widget is used, then hide it if no update found": "" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "" + }, "WiFi": { "WiFi": "" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "" }, - "Widgets": { - "Widgets": "ウィジェット" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "風" @@ -3696,21 +3775,27 @@ "days": { "days": "" }, + "dgop not available": { + "dgop not available": "" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "" + }, "events": { "events": "イベント" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index bf6b3719..3e8fc810 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "Aktywny monitor blokady ekranu" }, - "Active: ": { - "Active: ": "Aktywny: " + "Active: %1": { + "Active: %1": "" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "" }, "Active: None": { "Active: None": "Aktywny: Brak" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "Dodaj obramowanie wokół doku" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "" + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "Dostosuj liczbę kolumn w widoku siatki." }, @@ -209,6 +215,12 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "Zawsze pokazuj co najmniej 3 obszary robocze, nawet jeśli jest ich mniej." }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "" + }, "Amount": { "Amount": "" }, @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "Urządzenia audio" }, + "Audio Input": { + "Audio Input": "" + }, + "Audio Output": { + "Audio Output": "" + }, "Audio Output Devices (": { "Audio Output Devices (": "Urządzenia wyjściowe audio (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "" }, + "Audio volume control": { + "Audio volume control": "" + }, "Auth": { "Auth": "Uwierzytelnianie" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "Automatyczne cykl" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "Automatycznie obliczaj odległość wyskakującego okienka od krawędzi paska." - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "Automatycznie zmieniaj tapety z tego samego katalogu" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "Dostępne wtyczki" }, - "Available Screens (": { - "Available Screens (": "Dostępne ekrany (" + "Available Screens (%1)": { + "Available Screens (%1)": "" }, "BSSID": { "BSSID": "BSSID" @@ -392,6 +410,9 @@ "Background Opacity": { "Background Opacity": "" }, + "Backlight device": { + "Backlight device": "" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Zrównoważona paleta ze skupionymi akcentami (domyślnie)." }, @@ -404,6 +425,9 @@ "Battery": { "Battery": "Bateria" }, + "Battery and power management": { + "Battery and power management": "" + }, "Battery level and power management": { "Battery level and power management": "Poziom baterii i zarządzanie zasilaniem" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "" }, + "Block notifications": { + "Block notifications": "" + }, + "Blocked": { + "Blocked": "" + }, + "Blue light filter": { + "Blue light filter": "" + }, "Bluetooth": { "Bluetooth": "Bluetooth" }, "Bluetooth Settings": { "Bluetooth Settings": "Ustawienia Bluetooth" }, - "Blur Layer": { - "Blur Layer": "Warstwa rozmycia" + "Bluetooth not available": { + "Bluetooth not available": "" }, "Blur on Overview": { "Blur on Overview": "Rozmycie w podglądzie" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "Jasność" }, - "Brightness OSD": { - "Brightness OSD": "OSD Jasności" + "Brightness Slider": { + "Brightness Slider": "" + }, + "Brightness control not available": { + "Brightness control not available": "" }, "Browse": { "Browse": "Przeglądaj" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "Serwer wydruku CUPS" }, + "CUPS not available": { + "CUPS not available": "" + }, "Camera": { "Camera": "Kamera" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "Anulowane" }, + "Cannot pair": { + "Cannot pair": "" + }, "Capabilities": { "Capabilities": "Możliwości" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "Wskaźnik caps locka" }, - "Caps Lock OSD": { - "Caps Lock OSD": "OSD Caps Lock" - }, "Center Section": { "Center Section": "Sekcja środkowa" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "Zmień wygląd paska" }, - "Changes:": { - "Changes:": "Zmiany:" - }, "Channel": { "Channel": "Kanał" }, + "Charging": { + "Charging": "" + }, "Check for system updates": { "Check for system updates": "Sprawdź aktualizacje systemu" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Wybierz kolor logo launchera" }, + "Choose a color": { + "Choose a color": "" + }, + "Choose colors from palette": { + "Choose colors from palette": "" + }, "Choose icon": { "Choose icon": "Wybierz ikonę" }, @@ -569,9 +614,6 @@ "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" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "Wybierz kolor akcentu obramowania widżetu" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Wybierz, gdzie na ekranie mają pojawiać się powiadomienia" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" + }, + "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": "Kliknij Importuj, aby dodać plik .ovpn lub .conf" }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "" }, - "Clock show seconds": { - "Clock show seconds": "Pokazuj sekundy" - }, "Close": { "Close": "Zamknij" }, @@ -683,24 +728,6 @@ "Command": { "Command": "Rozkaz" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "Polecenie lub skrypt do uruchomienia zamiast standardowej procedury hibernacji" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "Polecenie lub skrypt do uruchomienia zamiast standardowej procedury blokady" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "Polecenie lub skrypt do uruchomienia zamiast standardowej procedury wylogowania" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "Polecenie lub skrypt do uruchomienia zamiast standardowej procedury wyłączania zasilania" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "Polecenie lub skrypt do uruchomienia zamiast standardowej procedury restartu." - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "Polecenie lub skrypt do uruchomienia zamiast standardowej procedury wstrzymania." - }, "Communication": { "Communication": "Komunikacja" }, @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "Łączenie z urządzeniem" }, + "Connecting...": { + "Connecting...": "" + }, "Contrast": { "Contrast": "Kontrast" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "Steruje kryciem wszystkich okien pop-up, modów i ich warstw zawartości" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "Kontroluje przezroczystość wszystkich wyskakujących okienek, okien modalnych i ich warstw zawartości (DankDash, Ustawienia, Szuflada aplikacji, Centrum sterowania itp.)" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "Kontroluje przezroczystość poszczególnych widżetów wewnątrz DankBar" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "Kontroluje przezroczystość tła panelu DankBar" - }, "Cooldown": { "Cooldown": "" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "Aktualne warunki pogodowe i temperatura" }, + "Current: %1": { + "Current: %1": "" + }, "Custom": { "Custom": "Niestandardowy" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "Dostosuj, które akcje będą wyświetlane w menu zasilania" }, + "DDC/CI monitor": { + "DDC/CI monitor": "" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "TRYB DEMO - Kliknij gdziekolwiek aby wyjść" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Skala czcionki DankBar" - }, "DankSearch not available": { "DankSearch not available": "DankSearch niedostępny" }, @@ -1019,6 +1043,9 @@ "Device": { "Device": "Urządzenie" }, + "Device connections": { + "Device connections": "" + }, "Device paired": { "Device paired": "Urządzenie sparowane" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "" - }, "Disable History Persistence": { "Disable History Persistence": "" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "Wyłączony" }, + "Disabling WiFi...": { + "Disabling WiFi...": "" + }, "Discard": { "Discard": "" }, @@ -1088,6 +1115,9 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego" }, + "Display brightness control": { + "Display brightness control": "" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "" }, @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "Wyświetlanie sekund na zegarze" }, - "Display settings for ": { - "Display settings for ": "Ustawienia wyświetlania dla " - }, "Display the power system menu": { "Display the power system menu": "" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "Domena (opcjonalnie)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Wesprzyj na Ko-fi" + "Don't Change": { + "Don't Change": "" + }, + "Don't Save": { + "Don't Save": "" }, "Door Open": { "Door Open": "Drzwi otwarte" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "Powiel tapetę z rozmyciem" }, - "Duration": { - "Duration": "Czas trwania" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "Zmierzch (Zmierzch astronomiczny)" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "Włącz pasek" }, - "Enable Border": { - "Enable Border": "Włącz obramowanie" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "Włącz Wi-Fi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "Włącz kontur widżetu" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Włącz warstwę rozmycia dla kompozytora (przestrzeń nazw: dms:blurwallpaper). Wymaga ręcznej konfiguracji niri." }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "Włączony" }, + "Enabling WiFi...": { + "Enabling WiFi...": "" + }, "End": { "End": "Koniec" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "Podaj nazwę pliku..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "" + }, "Enter passkey for ": { "Enter passkey for ": "Wprowadź klucz dostępu dla " }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "" }, + "Exponential": { + "Exponential": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Przełącz • F10: Pomoc" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "Nie udało się połączyć z VPN" }, - "Failed to connect to ": { - "Failed to connect to ": "Nie udało się połączyć z " + "Failed to connect to %1": { + "Failed to connect to %1": "" }, "Failed to copy entry": { "Failed to copy entry": "" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "Nie udało się wyłączyć akceptowania zadań" }, + "Failed to disable night mode": { + "Failed to disable night mode": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Nie udało się rozłączyć z VPN" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "Nie udało się rozłączyć z Wi-Fi" }, + "Failed to enable IP location": { + "Failed to enable IP location": "" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "Nie udało się włączyć Wi-Fi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "Nie udało się włączyć akceptowania zadań" }, + "Failed to enable night mode": { + "Failed to enable night mode": "" + }, "Failed to hold job": { "Failed to hold job": "Nie udało się wstrzymać zadania" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "Nie udało się zapisać skrótu klawiszowego" }, + "Failed to set brightness": { + "Failed to set brightness": "" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "" + }, "Failed to set profile image": { "Failed to set profile image": "Nie udało się ustawić zdjęcia profilowego" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "Nie udało się ustawić zdjęcia profilowego: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "" }, - "Failed to start connection to ": { - "Failed to start connection to ": "Nie udało się rozpocząć połączenia z " + "Failed to start connection to %1": { + "Failed to start connection to %1": "" }, "Failed to update VPN": { "Failed to update VPN": "Nie udało się zaktualizować VPN" @@ -1448,6 +1499,9 @@ "Files": { "Files": "Akta" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "" + }, "Find in Text": { "Find in Text": "Znajdź w tekście" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "Zapomnij sieć" }, - "Forgot network ": { - "Forgot network ": "Zapomnij sieć " + "Forgot network %1": { + "Forgot network %1": "" }, "Format Legend": { "Format Legend": "Legenda formatowania" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "Temperatura GPU" }, - "GPU temperature display": { - "GPU temperature display": "Wskaźnik temperatury GPU" - }, "Games": { "Games": "Gry" }, @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "Ukryj opóźnienie" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "Opóźnienie ukrycia (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Ukryj dok, gdy nie jest używany, i odkryj go po najechaniu kursorem w jego pobliże" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "Paleta o wysokim kontraście dla silnego wyróżnienia wizualnego." - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Wysokiej jakości paleta, która zachowuje źródłowe odcienie." }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "Prognoza godzinowa" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "Jak długo przytrzymać przycisk, aby potwierdzić akcję" - }, "How often to change wallpaper": { "How often to change wallpaper": "Jak często zmieniać tapetę" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "Inhibitor bezczynności" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "OSD Inhibitora Bezczynności" - }, "Idle Settings": { "Idle Settings": "Ustawienia bezczynności" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu" - }, "Input Devices": { "Input Devices": "Urządzenia wejściowe" }, + "Input Volume Slider": { + "Input Volume Slider": "" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "Instaluj wtyczki z rejestru wtyczek DMS" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "" + }, "Last launched %1": { "Last launched %1": "Ostatnio uruchomiony %1" }, @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "Jasny Motyw" }, + "Linear": { + "Linear": "" + }, "Lines: %1": { "Lines: %1": "Linie: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "Żywa paleta z nasyconymi akcentami." }, + "Loading codecs...": { + "Loading codecs...": "" + }, "Loading keybinds...": { "Loading keybinds...": "Ładowanie skrótów klawiszowych..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "Zarządzaj maksymalnie 4 niezależnymi konfiguracjami pasków. Każdy pasek ma własną pozycję, widżety, styl i przypisanie do wyświetlacza." }, + "Management": { + "Management": "" + }, "Manual Coordinates": { "Manual Coordinates": "Ręczne współrzędne" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Paleta Matugen" }, - "Matugen Settings": { - "Matugen Settings": "Ustawienia Matugen" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Monitor docelowy Matugen" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "Głośność Multimediów" }, - "Media Volume OSD": { - "Media Volume OSD": "OSD głośności multimediów" - }, "Medium": { "Medium": "Średni" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "Wyciszenie mikrofonu" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "OSD Wyciszenia Mikrofonu" + "Microphone settings": { + "Microphone settings": "" + }, + "Microphone volume control": { + "Microphone volume control": "" }, "Middle Section": { "Middle Section": "Sekcja środkowa" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "Tryb:" }, - "Mode: ": { - "Mode: ": "Tryb: " - }, "Model": { "Model": "Model" }, @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "Informacje sieciowe" }, - "Network Settings": { - "Network Settings": "Ustwaienia sieci" - }, "Network Speed Monitor": { "Network Speed Monitor": "Monitor prędkości sieci" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "Brak adapterów" }, + "No battery": { + "No battery": "" + }, + "No brightness devices available": { + "No brightness devices available": "" + }, "No changes": { "No changes": "Bez zmian" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "Nie znaleziono urządzeń" }, + "No disk data": { + "No disk data": "" + }, + "No disk data available": { + "No disk data available": "" + }, "No drivers found": { "No drivers found": "Nie znaleziono sterowników" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "Normalny priorytet" }, + "Not available": { + "Not available": "" + }, "Not connected": { "Not connected": "Nie połączono" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "Inne" }, - "Outline Color": { - "Outline Color": "Kolor obramowania" - }, - "Outline Opacity": { - "Outline Opacity": "Krycie obramowania" - }, - "Outline Thickness": { - "Outline Thickness": "Grubość obramowania" - }, "Output Area Almost Full": { "Output Area Almost Full": "Obszar wyjściowy prawie pełny" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Paruj urządzenie Bluetooth" }, + "Paired": { + "Paired": "" + }, "Pairing failed": { "Pairing failed": "Parowanie nieudane" }, + "Pairing...": { + "Pairing...": "" + }, "Passkey:": { "Passkey:": "Klucz dostępu:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "Personalizacja" }, + "Pin": { + "Pin": "" + }, "Pin to Dock": { "Pin to Dock": "Przypnij do doku" }, + "Pinned": { + "Pinned": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Umieść tutaj katalogi wtyczek. Każda wtyczka powinna zawierać plik manifestu plugin.json." }, - "Place plugins in": { - "Place plugins in": "Umieść wtyczki w" + "Place plugins in %1": { + "Place plugins in %1": "" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "Odtwórz dźwięk, gdy nadejdzie nowe powiadomienie" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "Wpięty do zasilania" }, + "Plugged in": { + "Plugged in": "" + }, + "Plugin": { + "Plugin": "" + }, "Plugin Directory": { "Plugin Directory": "Katalog z pluginami" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "Pluginy" }, - "Plugins:": { - "Plugins:": "Wtyczki:" - }, "Pointer": { "Pointer": "" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "Pozycja" }, - "Position: ": { - "Position: ": "Stanowisko: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "Możliwe konflikty nadpisywania" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "Pogorszenie profilu zasilania" }, - "Power Profile OSD": { - "Power Profile OSD": "OSD Profilu Zasilania" + "Power profile management available": { + "Power profile management available": "" }, "Power source": { "Power source": "Źródło zasilania" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "Ciśnienie" }, - "Prevent idle for media": { - "Prevent idle for media": "Zapobiegaj bezczynności nośników" - }, "Prevent screen timeout": { "Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu" }, "Primary": { "Primary": "Główny" }, + "Print Server Management": { + "Print Server Management": "" + }, "Print Server not available": { "Print Server not available": "Serwer wydruku niedostępny" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "Raport" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Poproś o potwierdzenie czynności wyłączenia, ponownego uruchomienia, zawieszenia, hibernacji i wylogowania." - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Wymagaj przytrzymania przycisku/klawisza, aby potwierdzić wyłączenie, ponowne uruchomienie, wstrzymanie, hibernację i wylogowanie" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "" + }, + "Requires DMS %1": { + "Requires DMS %1": "" }, "Requires DWL compositor": { "Requires DWL compositor": "Wymaga kompozytora DWL" }, + "Requires night mode support": { + "Requires night mode support": "" + }, "Reset": { "Reset": "Resetuj" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "" }, - "Resources": { - "Resources": "Źródła" - }, - "Restart": { - "Restart": "Uruchom ponownie" - }, "Restart DMS": { "Restart DMS": "Uruchom ponownie DMS" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "Odwracać" }, - "Reverting in:": { - "Reverting in:": "Przywracanie w:" - }, "Right": { "Right": "Prawo" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "Kliknij prawym przyciskiem myszy pasek widżetu, aby przejść do następnego" }, + "Root Filesystem": { + "Root Filesystem": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "Skanuj" }, + "Scanning": { + "Scanning": "" + }, "Scanning...": { "Scanning...": "Skanowanie..." }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "Przewiń tytuł piosenki" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "" + }, "Scrolling": { "Scrolling": "Przewijanie" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "Wybierz kolor z palety lub użyj niestandardowych suwaków" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "Wybierz ustawienie wstępne lub przeciągnij suwak, aby je dostosować" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "Wybierz widżet do dodania. W razie potrzeby można dodać wiele instancji tego samego widżetu." }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "Skróty" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "" + }, "Show All Tags": { "Show All Tags": "Pokaż wszystkie tagi" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "Pokaż potwierdzenie dla akcji zasilania" - }, "Show Date": { "Show Date": "" }, @@ -2969,9 +3029,6 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "Pokaż tylko zajęte obszary robocze" }, - "Show Power Actions": { - "Show Power Actions": "Pokaż akcje zasilania" - }, "Show Power Off": { "Show Power Off": "Pokaż wyłączone zasilanie" }, @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "Pokaż hasło" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "Pokaż przyciski zasilania, restartu i wylogowania na ekranie blokady." - }, - "Show seconds": { - "Show seconds": "Pokaż sekundy" - }, "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" }, @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "Odstępy" }, + "Speaker settings": { + "Speaker settings": "" + }, "Speed": { "Speed": "Prędkość" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "Zachód słońca" }, - "Support Development": { - "Support Development": "Wspieraj rozwój" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "Wyłącz wyskakujące okienka powiadomień, gdy opcja jest włączona" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "Aktualizacje systemu" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "Pasek systemowy z widżetami i informacjami systemowymi" - }, "System notification area icons": { "System notification area icons": "Ikony obszaru powiadomień systemowych" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "Dźwięki systemowe nie są dostępne. Zainstaluj canberra-gtk-play, aby uzyskać obsługę dźwięku." }, + "System theme toggle": { + "System theme toggle": "" + }, "System toast notifications": { "System toast notifications": "Powiadomienia o toastach systemowych" }, - "System tray icons": { - "System tray icons": "Ikony zasobnika systemowego" - }, "System update custom command": { "System update custom command": "Niestandardowe polecenie aktualizacji systemu" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "Tekst" }, + "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.": "" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "Zmienna środowiskowa DMS_SOCKET nie jest ustawiona lub gniazdo jest niedostępne. Automatyczne zarządzanie wtyczkami wymaga zmiennej DMS_SOCKET." }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "Format czasu" }, + "Time remaining: %1": { + "Time remaining: %1": "" + }, + "Time until full: %1": { + "Time until full: %1": "" + }, "Timed Out": { "Timed Out": "Przekroczono limit czasu" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "Nieznany" }, + "Unknown Config": { + "Unknown Config": "" + }, + "Unknown Device": { + "Unknown Device": "" + }, + "Unknown Monitor": { + "Unknown Monitor": "" + }, + "Unknown Network": { + "Unknown Network": "" + }, "Unpin from Dock": { "Unpin from Dock": "Odepnij z doku" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "Użyto" }, + "User": { + "User": "" + }, "Username": { "Username": "Nazwa użytkownika" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "Konfiguracja VPN zaktualizowana" }, + "VPN connections": { + "VPN connections": "" + }, "VPN deleted": { "VPN deleted": "VPN usunięty" }, - "VPN imported: ": { - "VPN imported: ": "VPN zaimportowany: " + "VPN imported: %1": { + "VPN imported: %1": "" + }, + "VPN not available": { + "VPN not available": "" }, "VPN status and quick connect": { "VPN status and quick connect": "Status VPN i szybkie połączenie" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "" }, - "VRR: ": { - "VRR: ": "VRR: " - }, "Variable Refresh Rate": { "Variable Refresh Rate": "" }, @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "Zmiana Głośności" }, - "Volume OSD": { - "Volume OSD": "OSD Głośności" + "Volume Slider": { + "Volume Slider": "" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Głośność, jasność i inne systemowe menu ekranowe" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "Widżet pogody" }, - "Website:": { - "Website:": "Strona WWW:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Po włączeniu aplikacje są sortowane alfabetycznie. Po wyłączeniu aplikacje są sortowane według częstotliwości użytkowania." }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Po włączeniu wyświetla nakładkę programu uruchamiającego podczas pisania w trybie przeglądu Niri. Wyłącz tę opcję, jeśli wolisz nie wyświetlać programu uruchamiającego podczas pisania w trybie przeglądu Niri lub chcesz używać innego programu uruchamiającego w tym trybie." - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "", "When updater widget is used, then hide it if no update found": "" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "Hasło Wi-Fi" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "" }, - "Widgets": { - "Widgets": "Widżety" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "Wiatr" @@ -3696,21 +3775,27 @@ "days": { "days": "" }, + "dgop not available": { + "dgop not available": "" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "Plik dms/binds.kdl istnieje, ale nie jest uwzględniony w pliku config.kdl. Niestandardowe skróty klawiszowe nie będą działać, dopóki ten problem nie zostanie rozwiązany." }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "Plik dms/binds.kdl nie jest zawarty w pliku config.kdl. Niestandardowe skróty klawiszowe nie będą działać, dopóki ten problem nie zostanie rozwiązany." - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "Plik dms/binds.kdl jest teraz zawarty w pliku config.kdl" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "np. firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "np. fokus-obszar roboczy 3, zmiana rozmiaru kolumny -10" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "" + }, "events": { "events": "wydarzenia" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index b6a37094..8dcfe3e3 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -3,7 +3,7 @@ "%1 DMS bind(s) may be overridden by config binds that come after the include.": "" }, "%1 adapter(s), none connected": { - "%1 adapter(s), none connected": "" + "%1 adapter(s), none connected": "%1 adaptador(es), nenhum conectado" }, "%1 characters": { "%1 characters": "%1 caracteres" @@ -12,10 +12,10 @@ "%1 class(es)": "" }, "%1 connected": { - "%1 connected": "" + "%1 connected": "%1 conectado(s)" }, "%1 display(s)": { - "%1 display(s)": "" + "%1 display(s)": "%1 monitor(es)" }, "%1 job(s)": { "%1 job(s)": "" @@ -24,7 +24,7 @@ "%1 printer(s)": "" }, "%1 widgets": { - "%1 widgets": "" + "%1 widgets": "%1 widgets" }, "(Unnamed)": { "(Unnamed)": "(Sem nome)" @@ -141,28 +141,31 @@ "Actions": "Ações" }, "Activate": { - "Activate": "" + "Activate": "Ativar" }, "Active": { - "Active": "" + "Active": "Ativa" }, "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "" }, - "Active: ": { - "Active: ": "" + "Active: %1": { + "Active: %1": "" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "" }, "Active: None": { - "Active: None": "" + "Active: None": "Ativa: Nenhuma" }, "Adapters": { - "Adapters": "" + "Adapters": "Adaptadores" }, "Add": { "Add": "Adicionar" }, "Add Bar": { - "Add Bar": "" + "Add Bar": "Adicionar Barra" }, "Add Printer": { "Add Printer": "" @@ -171,13 +174,16 @@ "Add Widget": "Adicionar Widget" }, "Add Widget to %1 Section": { - "Add Widget to %1 Section": "" + "Add Widget to %1 Section": "Adicionar Widget para a Seção %1" }, "Add a border around the dock": { "Add a border around the dock": "" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "" + }, "Adjust the number of columns in grid view mode.": { - "Adjust the number of columns in grid view mode.": "" + "Adjust the number of columns in grid view mode.": "Ajusta o número de colunas no modo de visualização em grade" }, "Advanced": { "Advanced": "" @@ -204,11 +210,17 @@ "Always Show Percentage": "" }, "Always on icons": { - "Always on icons": "" + "Always on icons": "Ícones sempre ligados" }, "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "Sempre mostrar o mínimo de 3 áreas de trabalho, mesmo se menos estiverem disponíveis" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "" + }, "Amount": { "Amount": "" }, @@ -219,7 +231,7 @@ "Animation Speed": "Velocidade de Animação" }, "Anonymous Identity": { - "Anonymous Identity": "" + "Anonymous Identity": "Identidade Anônima" }, "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identidade Anônima (opcional)" @@ -255,7 +267,7 @@ "Arrange displays and configure resolution, refresh rate, and VRR": "" }, "Audio": { - "Audio": "" + "Audio": "Áudio" }, "Audio Codec": { "Audio Codec": "Codec de Áudio" @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "Dispositivos de Áudio" }, + "Audio Input": { + "Audio Input": "" + }, + "Audio Output": { + "Audio Output": "" + }, "Audio Output Devices (": { "Audio Output Devices (": "Dispositivos de Saída de Áudio (" }, @@ -275,17 +293,20 @@ "Audio Visualizer": { "Audio Visualizer": "" }, + "Audio volume control": { + "Audio volume control": "" + }, "Auth": { - "Auth": "" + "Auth": "Autenticação" }, "Auth Type": { - "Auth Type": "" + "Auth Type": "Tipo de Autenticação" }, "Authenticate": { "Authenticate": "Autenticar" }, "Authentication": { - "Authentication": "" + "Authentication": "Autenticação" }, "Authentication Required": { "Authentication Required": "Autenticação Necessária" @@ -303,7 +324,7 @@ "Authorize service for ": "Autorizar serviço para " }, "Auto": { - "Auto": "" + "Auto": "Automático" }, "Auto (Wide)": { "Auto (Wide)": "" @@ -333,10 +354,10 @@ "Autoconnect": "" }, "Autoconnect disabled": { - "Autoconnect disabled": "" + "Autoconnect disabled": "Conexão automática desativada" }, "Autoconnect enabled": { - "Autoconnect enabled": "" + "Autoconnect enabled": "Conexão automática ativada" }, "Automatic Control": { "Automatic Control": "Controle Automático" @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "Rotação Automática" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "Calcular distância do popup até a borda da barra automaticamente." - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "Circular automaticamente dentre os papéis de parede na mesma pasta" }, @@ -369,7 +387,7 @@ "Available": "Disponível" }, "Available Layouts": { - "Available Layouts": "" + "Available Layouts": "Layouts Disponíveis" }, "Available Networks": { "Available Networks": "" @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "Plugins disponíveis" }, - "Available Screens (": { - "Available Screens (": "Telas disponíveis(" + "Available Screens (%1)": { + "Available Screens (%1)": "" }, "BSSID": { "BSSID": "" @@ -392,18 +410,24 @@ "Background Opacity": { "Background Opacity": "" }, + "Backlight device": { + "Backlight device": "" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Paleta equilibrada com destaques de cor focados (padrão)." }, "Bar Configurations": { - "Bar Configurations": "" + "Bar Configurations": "Configurações da Barra" }, "Bar Transparency": { - "Bar Transparency": "" + "Bar Transparency": "Trasparência da Barra" }, "Battery": { "Battery": "Bateria" }, + "Battery and power management": { + "Battery and power management": "" + }, "Battery level and power management": { "Battery level and power management": "Nível de bateria e manejamento de energia" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "" }, + "Block notifications": { + "Block notifications": "" + }, + "Blocked": { + "Blocked": "" + }, + "Blue light filter": { + "Blue light filter": "" + }, "Bluetooth": { "Bluetooth": "" }, "Bluetooth Settings": { "Bluetooth Settings": "Configurações do Bluetooth" }, - "Blur Layer": { - "Blur Layer": "Camada de Desfoque" + "Bluetooth not available": { + "Bluetooth not available": "" }, "Blur on Overview": { "Blur on Overview": "Desfoque na Visão Geral" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "Brilho" }, - "Brightness OSD": { - "Brightness OSD": "" + "Brightness Slider": { + "Brightness Slider": "" + }, + "Brightness control not available": { + "Brightness control not available": "" }, "Browse": { "Browse": "Navegar" @@ -495,16 +531,19 @@ "CPU usage indicator": "Indicador de uso da CPU" }, "CUPS Insecure Filter Warning": { - "CUPS Insecure Filter Warning": "" + "CUPS Insecure Filter Warning": "Aviso de Filtro Inseguro do CUPS" }, "CUPS Missing Filter Warning": { - "CUPS Missing Filter Warning": "" + "CUPS Missing Filter Warning": "Aviso de Filtro Inseguro do CUPS" }, "CUPS Print Server": { "CUPS Print Server": "" }, + "CUPS not available": { + "CUPS not available": "" + }, "Camera": { - "Camera": "" + "Camera": "Câmera" }, "Cancel": { "Cancel": "Cancelar" @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "" }, + "Cannot pair": { + "Cannot pair": "" + }, "Capabilities": { "Capabilities": "" }, @@ -522,10 +564,7 @@ "Caps Lock": "" }, "Caps Lock Indicator": { - "Caps Lock Indicator": "" - }, - "Caps Lock OSD": { - "Caps Lock OSD": "" + "Caps Lock Indicator": "Indicador de Caps Lock" }, "Center Section": { "Center Section": "Seção Central" @@ -534,34 +573,40 @@ "Center Single Column": "" }, "Center Tiling": { - "Center Tiling": "" + "Center Tiling": "Centralizar Tiling" }, "Certificate Password": { "Certificate Password": "" }, "Change bar appearance": { - "Change bar appearance": "" - }, - "Changes:": { - "Changes:": "" + "Change bar appearance": "Alterar aparência da barra" }, "Channel": { "Channel": "" }, + "Charging": { + "Charging": "" + }, "Check for system updates": { "Check for system updates": "Verificar por atualizações de sistema" }, "Choose Color": { - "Choose Color": "" + "Choose Color": "Escolha a Cor" }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Escolher a cor para a logo do Lançador" }, + "Choose a color": { + "Choose a color": "" + }, + "Choose colors from palette": { + "Choose colors from palette": "" + }, "Choose icon": { "Choose icon": "Escolher Ícone" }, "Choose the background color for widgets": { - "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" @@ -569,14 +614,11 @@ "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" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Escolher onde as notificações irão aparecer na tela" }, "Choose where on-screen displays appear on screen": { - "Choose where on-screen displays appear on screen": "" + "Choose where on-screen displays appear on screen": "Escolher onde OSDs aparecerão na tela" }, "Choose which displays show this widget": { "Choose which displays show this widget": "" @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" + }, + "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": "" }, @@ -635,14 +683,11 @@ "Clock Style": { "Clock Style": "" }, - "Clock show seconds": { - "Clock show seconds": "Relógio mostra segundos" - }, "Close": { "Close": "Fechar" }, "Close Overview on Launch": { - "Close Overview on Launch": "" + "Close Overview on Launch": "Fechar Overview ao Lançar Aplicativos" }, "Color": { "Color": "" @@ -683,24 +728,6 @@ "Command": { "Command": "" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "Comando ou script serão executados em vez do procedimento padrão de hibernação" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "Comando ou script para rodar ao invés do procedimento de bloqueio padrão" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "Comando ou script irão ser executados em vez do procedimento padrão de logout" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "Comando ou script irão ser executados em vez do procedimento padrão de desligamento" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "Comando ou script irão ser executados em vez do procedimento padrão de reinicialização" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "Comando ou script irão ser executados em vez do procedimento de suspensão padrão" - }, "Communication": { "Communication": "Comunicação" }, @@ -747,7 +774,7 @@ "Confirm": "Confirmar" }, "Confirm Display Changes": { - "Confirm Display Changes": "" + "Confirm Display Changes": "Confirmar Alterações de Tela" }, "Confirm passkey for ": { "Confirm passkey for ": "Confirmar chave de acesso para " @@ -771,7 +798,10 @@ "Connected Displays": "Telas Conectadas" }, "Connecting to Device": { - "Connecting to Device": "" + "Connecting to Device": "Conectando ao Dispositivo" + }, + "Connecting...": { + "Connecting...": "" }, "Contrast": { "Contrast": "Contraste" @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "" - }, "Cooldown": { "Cooldown": "" }, @@ -816,13 +837,13 @@ "Corner Radius": "" }, "Corner Radius Override": { - "Corner Radius Override": "" + "Corner Radius Override": "Sobrescrever Arredondamento" }, "Corners & Background": { "Corners & Background": "" }, "Cover Open": { - "Cover Open": "" + "Cover Open": "Tampa Aberta" }, "Create Dir": { "Create Dir": "Criar pasta" @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "Condições de clima atuais e temperatura" }, + "Current: %1": { + "Current: %1": "" + }, "Custom": { "Custom": "Customizado" }, @@ -900,7 +924,10 @@ "Customizable empty space": "Espaço vazio customizável" }, "Customize which actions appear in the power menu": { - "Customize which actions appear in the power menu": "" + "Customize which actions appear in the power menu": "Customize quais ações aparecerão no menu de energia" + }, + "DDC/CI monitor": { + "DDC/CI monitor": "" }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "MODO DEMONSTRAÇÃO - Clique em qualquer lugar para sair" @@ -921,7 +948,7 @@ "DMS_SOCKET not available": "DMS_SOCKET não está disponível" }, "DWL service not available": { - "DWL service not available": "" + "DWL service not available": "Serviço do DWL não disponível" }, "Daily Forecast": { "Daily Forecast": "" @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Escala das fontes no Dank Bar" - }, "DankSearch not available": { "DankSearch not available": "DankSearch não disponível" }, @@ -945,10 +969,10 @@ "DankShell & System Icons (requires restart)": "" }, "Dark Mode": { - "Dark Mode": "" + "Dark Mode": "Modo Escuro" }, "Darken Modal Background": { - "Darken Modal Background": "" + "Darken Modal Background": "Escurecer Fundo de Modais" }, "Date Format": { "Date Format": "Formatação de Data" @@ -969,7 +993,7 @@ "Daytime": "" }, "Deck": { - "Deck": "" + "Deck": "Deck" }, "Default": { "Default": "Padrão" @@ -978,7 +1002,7 @@ "Default Width (%)": "" }, "Default selected action": { - "Default selected action": "" + "Default selected action": "Ação selecionada por padrão" }, "Defaults": { "Defaults": "Padrões" @@ -1019,6 +1043,9 @@ "Device": { "Device": "Dispositivo" }, + "Device connections": { + "Device connections": "" + }, "Device paired": { "Device paired": "Dispositivo pareado" }, @@ -1026,14 +1053,11 @@ "Digital": "" }, "Disable Autoconnect": { - "Disable Autoconnect": "" + "Disable Autoconnect": "Desativar conexão automática" }, "Disable Clipboard Manager": { "Disable Clipboard Manager": "" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "" - }, "Disable History Persistence": { "Disable History Persistence": "" }, @@ -1044,7 +1068,10 @@ "Disable clipboard manager entirely (requires restart)": "" }, "Disabled": { - "Disabled": "" + "Disabled": "Desativado" + }, + "Disabling WiFi...": { + "Disabling WiFi...": "" }, "Discard": { "Discard": "" @@ -1068,10 +1095,10 @@ "Dismiss": "Descartar" }, "Display Assignment": { - "Display Assignment": "" + "Display Assignment": "Atribuição de Monitores" }, "Display Name Format": { - "Display Name Format": "" + "Display Name Format": "Formato do Nome do Monitor" }, "Display Settings": { "Display Settings": "" @@ -1083,11 +1110,14 @@ "Display all priorities over fullscreen apps": "Exibir todas as prioridades em aplicativos de tela cheia" }, "Display and switch DWL layouts": { - "Display and switch DWL layouts": "" + "Display and switch DWL layouts": "Mostra e altera layouts do DWL" }, "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Mostrar ícones de aplicativos em indicadores de espaço de trabalho" }, + "Display brightness control": { + "Display brightness control": "" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "" }, @@ -1098,14 +1128,11 @@ "Display only workspaces that contain windows": "" }, "Display power menu actions in a grid instead of a list": { - "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": "" }, - "Display settings for ": { - "Display settings for ": "" - }, "Display the power system menu": { "Display the power system menu": "" }, @@ -1145,11 +1172,14 @@ "Domain (optional)": { "Domain (optional)": "Domínio (opcional)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Doe no Ko-fi" + "Don't Change": { + "Don't Change": "" + }, + "Don't Save": { + "Don't Save": "" }, "Door Open": { - "Door Open": "" + "Door Open": "Porta Aberta" }, "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": { "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": "Arraste Widgets para reordená-los nas seções. Use o ícone de olho para esconder ou mostrá-los (manter o espaçamento), ou clique no X para removê-los por completo." @@ -1158,10 +1188,7 @@ "Driver": "" }, "Duplicate Wallpaper with Blur": { - "Duplicate Wallpaper with Blur": "" - }, - "Duration": { - "Duration": "Duração" + "Duplicate Wallpaper with Blur": "Duplicar Papel de Parede com Blur" }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "" @@ -1185,13 +1212,10 @@ "Enable 10-bit color depth for wider color gamut and HDR support": "" }, "Enable Autoconnect": { - "Enable Autoconnect": "" + "Enable Autoconnect": "Ativar conexão automática" }, "Enable Bar": { - "Enable Bar": "" - }, - "Enable Border": { - "Enable Border": "" + "Enable Bar": "Habilitar Barra" }, "Enable Desktop Clock": { "Enable Desktop Clock": "" @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "Ativar WiFi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Habilitar camada de desfoque direcionável ao compositor (namespace: dms:blurwallpaper). Requer configuração manual do niri." }, @@ -1248,7 +1269,10 @@ "Show System Time": "" }, "Enabled": { - "Enabled": "" + "Enabled": "Ativado" + }, + "Enabling WiFi...": { + "Enabling WiFi...": "" }, "End": { "End": "Fim" @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "Insira nome do arquivo..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "" + }, "Enter passkey for ": { "Enter passkey for ": "Entre chave de acesso para " }, @@ -1284,13 +1311,13 @@ "Enter password for ": "Insira senha para " }, "Enter this passkey on ": { - "Enter this passkey on ": "" + "Enter this passkey on ": "Entre esse código em " }, "Enterprise": { "Enterprise": "" }, "Error": { - "Error": "" + "Error": "Erro" }, "Ethernet": { "Ethernet": "" @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "" }, + "Exponential": { + "Exponential": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Ativar • F10: Ajuda" }, @@ -1320,16 +1350,16 @@ "Failed to add printer to class": "" }, "Failed to cancel all jobs": { - "Failed to cancel all jobs": "" + "Failed to cancel all jobs": "Falha ao cancelar todos os trabalhos" }, "Failed to cancel selected job": { - "Failed to cancel selected job": "" + "Failed to cancel selected job": "Falha ao cancelar o trabalho selecionado" }, "Failed to connect VPN": { "Failed to connect VPN": "Erro ao conectar à VPN" }, - "Failed to connect to ": { - "Failed to connect to ": "Erro ao conectar a " + "Failed to connect to %1": { + "Failed to connect to %1": "" }, "Failed to copy entry": { "Failed to copy entry": "" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "" }, + "Failed to disable night mode": { + "Failed to disable night mode": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Erro ao desconectar VPN" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "Erro ao disconectar WiFi" }, + "Failed to enable IP location": { + "Failed to enable IP location": "" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "Erro ao habilitar WiFi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "" }, + "Failed to enable night mode": { + "Failed to enable night mode": "" + }, "Failed to hold job": { "Failed to hold job": "" }, @@ -1380,7 +1419,7 @@ "Failed to move job": "" }, "Failed to pause printer": { - "Failed to pause printer": "" + "Failed to pause printer": "Falha ao pausar impressora" }, "Failed to print test page": { "Failed to print test page": "" @@ -1398,7 +1437,7 @@ "Failed to restart job": "" }, "Failed to resume printer": { - "Failed to resume printer": "" + "Failed to resume printer": "Falha ao resumir impressora" }, "Failed to save clipboard setting": { "Failed to save clipboard setting": "" @@ -1406,20 +1445,32 @@ "Failed to save keybind": { "Failed to save keybind": "" }, + "Failed to set brightness": { + "Failed to set brightness": "" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "" + }, "Failed to set profile image": { "Failed to set profile image": "Erro ao definir imagem de perfil" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "Erro ao definir imagem de perfil: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "" }, - "Failed to start connection to ": { - "Failed to start connection to ": "Erro ao iniciar conexão a " + "Failed to start connection to %1": { + "Failed to start connection to %1": "" }, "Failed to update VPN": { "Failed to update VPN": "" }, "Failed to update autoconnect": { - "Failed to update autoconnect": "" + "Failed to update autoconnect": "Erro ao atualizar conexão automática" }, "Failed to update description": { "Failed to update description": "" @@ -1448,6 +1499,9 @@ "Files": { "Files": "" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "" + }, "Find in Text": { "Find in Text": "Procurar no Texto" }, @@ -1509,7 +1563,7 @@ "Force Wide Color": "" }, "Force terminal applications to always use dark color schemes": { - "Force terminal applications to always use dark color schemes": "" + "Force terminal applications to always use dark color schemes": "Forçar aplicativos de terminal a usar sempre temas escuros" }, "Forecast Not Available": { "Forecast Not Available": "" @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "Esquecer Internet" }, - "Forgot network ": { - "Forgot network ": "Esquecer rede " + "Forgot network %1": { + "Forgot network %1": "" }, "Format Legend": { "Format Legend": "Formatar Legenda" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "Temperatura da GPU" }, - "GPU temperature display": { - "GPU temperature display": "Exibir Temperatura da GPU" - }, "Games": { "Games": "Jogos" }, @@ -1563,7 +1614,7 @@ "Good": "Bom" }, "Goth Corner Radius": { - "Goth Corner Radius": "" + "Goth Corner Radius": "Arredondamento do Canto Gótico" }, "Goth Corners": { "Goth Corners": "Cantos Gotícos" @@ -1578,10 +1629,10 @@ "Graphics": "Gráficos" }, "Grid": { - "Grid": "" + "Grid": "Grade" }, "Grid Columns": { - "Grid Columns": "" + "Grid Columns": "Colunas da Grade" }, "Group by App": { "Group by App": "Agrupar por App" @@ -1599,7 +1650,7 @@ "HDR mode is experimental. Verify your monitor supports HDR before enabling.": "" }, "HSV": { - "HSV": "" + "HSV": "HSV" }, "Health": { "Health": "Saúde" @@ -1611,7 +1662,7 @@ "Help": "" }, "Hex": { - "Hex": "" + "Hex": "Hex" }, "Hibernate": { "Hibernate": "Hibernar" @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Esconder a dock quando não usada e mostrar ao passar o mouse próximo da área" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "Paleta de alto contraste para forte distinção visual." - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Paleta de alta fidelidade que preserva tons da fonte." }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "" - }, "How often to change wallpaper": { "How often to change wallpaper": "Tempo entre papéis de parede" }, @@ -1686,14 +1728,11 @@ "Icon Theme": "Tema de Ícones" }, "Idle": { - "Idle": "" + "Idle": "Em espera" }, "Idle Inhibitor": { "Idle Inhibitor": "Inibitor de inatividade" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "" - }, "Idle Settings": { "Idle Settings": "Configurações de inatividade" }, @@ -1734,17 +1773,17 @@ "Individual Batteries": "Baterias Individuais" }, "Individual bar configuration": { - "Individual bar configuration": "" + "Individual bar configuration": "Configuração individual da barra" }, "Inherit": { "Inherit": "" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "" - }, "Input Devices": { "Input Devices": "Dispositivos de Entrada" }, + "Input Volume Slider": { + "Input Volume Slider": "" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "Instale plugins a partir do registro de plugins do DMS" }, @@ -1752,7 +1791,7 @@ "Interface:": "" }, "Interlock Open": { - "Interlock Open": "" + "Interlock Open": "Trava de Segurança Aberta" }, "Internet": { "Internet": "Internet" @@ -1767,19 +1806,19 @@ "Invert on mode change": "Inverter na mudança de modo" }, "Jobs": { - "Jobs": "" + "Jobs": "Trabalhos" }, "Jobs: ": { - "Jobs: ": "" + "Jobs: ": "Trabalhos:" }, "Keep Awake": { - "Keep Awake": "" + "Keep Awake": "Manter Ligado" }, "Keep Changes": { - "Keep Changes": "" + "Keep Changes": "Manter Alterações" }, "Keeping Awake": { - "Keeping Awake": "" + "Keeping Awake": "Mantendo Ligado" }, "Key": { "Key": "" @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "" }, + "LED device": { + "LED device": "" + }, "Last launched %1": { "Last launched %1": "Lançado pela última vez em %1" }, @@ -1833,7 +1875,7 @@ "Launcher Button Logo": "Logo do botão do Lançador" }, "Layout": { - "Layout": "" + "Layout": "Layout" }, "Layout Overrides": { "Layout Overrides": "" @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "Modo Claro" }, + "Linear": { + "Linear": "" + }, "Lines: %1": { "Lines: %1": "Linhas: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "Paleta vívida com destaques de cor saturados." }, + "Loading codecs...": { + "Loading codecs...": "" + }, "Loading keybinds...": { "Loading keybinds...": "" }, @@ -1875,7 +1923,7 @@ "Location Search": "Procurar Localização" }, "Lock": { - "Lock": "" + "Lock": "Bloquear" }, "Lock Screen": { "Lock Screen": "Tela de Bloqueio" @@ -1920,7 +1968,10 @@ "Manage and configure plugins for extending DMS functionality": "Gerencia e configure plugins para extender funcionalidades do DMS" }, "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { - "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "" + "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "Gerencie até 4 configurações de barras independentes. Cada barra possui sua própria posição, widgets, estilo e atribuição de telas." + }, + "Management": { + "Management": "" }, "Manual Coordinates": { "Manual Coordinates": "Coordenadas Manuais" @@ -1932,19 +1983,19 @@ "Manual Show/Hide": "Mostrar/Esconder Manualmente" }, "Margin": { - "Margin": "" + "Margin": "Margem" }, "Marker Supply Empty": { - "Marker Supply Empty": "" + "Marker Supply Empty": "Suprimento Vazio" }, "Marker Supply Low": { - "Marker Supply Low": "" + "Marker Supply Low": "Suprimento Baixo" }, "Marker Waste Almost Full": { - "Marker Waste Almost Full": "" + "Marker Waste Almost Full": "Coletor de Resíduos Quase Cheio" }, "Marker Waste Full": { - "Marker Waste Full": "" + "Marker Waste Full": "Coletor de Resíduos Cheio" }, "Material Colors": { "Material Colors": "Cores Material" @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Paleta Matugen" }, - "Matugen Settings": { - "Matugen Settings": "Configurações do Matugen" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Monitor-alvo do Matugen" }, @@ -1986,16 +2034,16 @@ "Media Controls": "Controles de Mídia" }, "Media Empty": { - "Media Empty": "" + "Media Empty": "Sem Papel" }, "Media Jam": { - "Media Jam": "" + "Media Jam": "Papel Atolado" }, "Media Low": { - "Media Low": "" + "Media Low": "Papel Baixo" }, "Media Needed": { - "Media Needed": "" + "Media Needed": "Papel Necessário" }, "Media Player": { "Media Player": "" @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "" }, - "Media Volume OSD": { - "Media Volume OSD": "" - }, "Medium": { "Medium": "" }, @@ -2028,16 +2073,19 @@ "Memory usage indicator": "Indicador de uso de memória" }, "Microphone": { - "Microphone": "" + "Microphone": "Microfone" }, "Microphone Mute": { "Microphone Mute": "" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "" + "Microphone settings": { + "Microphone settings": "" + }, + "Microphone volume control": { + "Microphone volume control": "" }, "Middle Section": { - "Middle Section": "" + "Middle Section": "Seção do Meio" }, "Minimal palette built around a single hue.": { "Minimal palette built around a single hue.": "Paleta mínima construída ao redor de um único tom." @@ -2051,11 +2099,8 @@ "Mode:": { "Mode:": "Modo:" }, - "Mode: ": { - "Mode: ": "" - }, "Model": { - "Model": "" + "Model": "Modelo" }, "Modified": { "Modified": "" @@ -2067,7 +2112,7 @@ "Monitor whose wallpaper drives dynamic theming colors": "Monitor o qual papel de parede controla cores de tema dinâmicas" }, "Monocle": { - "Monocle": "" + "Monocle": "Monocle" }, "Monospace Font": { "Monospace Font": "Fonte Mono espaço" @@ -2082,7 +2127,7 @@ "Move Widget": "" }, "Moving to Paused": { - "Moving to Paused": "" + "Moving to Paused": "Movendo para Pausado" }, "Muted palette with subdued, calming tones.": { "Muted palette with subdued, calming tones.": "Paleta suave com tons sutis e calmantes." @@ -2091,7 +2136,7 @@ "NM not supported": "NM não suportado" }, "Name": { - "Name": "" + "Name": "Nome" }, "Named Workspace Icons": { "Named Workspace Icons": "Ícones de Áreas de Trabalho Nomeadas" @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "Informações de Rede" }, - "Network Settings": { - "Network Settings": "Configurações de Rede" - }, "Network Speed Monitor": { "Network Speed Monitor": "Monitor de Velocidade da Rede" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "" }, + "No battery": { + "No battery": "" + }, + "No brightness devices available": { + "No brightness devices available": "" + }, "No changes": { "No changes": "" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "" }, + "No disk data": { + "No disk data": "" + }, + "No disk data available": { + "No disk data available": "" + }, "No drivers found": { "No drivers found": "" }, @@ -2223,7 +2277,7 @@ "No plugins found.": "Nenhum plugin encontrado." }, "No printer found": { - "No printer found": "" + "No printer found": "Nenhuma impressora encontrada" }, "No printers configured": { "No printers configured": "" @@ -2235,7 +2289,7 @@ "No variants created. Click Add to create a new monitor widget.": "" }, "None": { - "None": "" + "None": "Nenhum" }, "Normal": { "Normal": "" @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "Prioridade Normal" }, + "Not available": { + "Not available": "" + }, "Not connected": { "Not connected": "" }, @@ -2289,7 +2346,7 @@ "OS Logo": "Logo do SO" }, "OSD Position": { - "OSD Position": "" + "OSD Position": "Posição do OSD" }, "Off": { "Off": "" @@ -2298,19 +2355,19 @@ "Office": "Escritório" }, "Offline Report": { - "Offline Report": "" + "Offline Report": "Relatório Offline" }, "On-Screen Displays": { "On-Screen Displays": "Displays na Tela (OSDs)" }, "On-screen Displays": { - "On-screen Displays": "" + "On-screen Displays": "Exibições OSD" }, "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 visible if hibernate is supported by your system": { - "Only visible if hibernate is supported by your system": "" + "Only visible if hibernate is supported by your system": "Apenas visível se suportado por seu sistema" }, "Opacity": { "Opacity": "Opacidade" @@ -2337,25 +2394,16 @@ "Options": "" }, "Other": { - "Other": "" - }, - "Outline Color": { - "Outline Color": "" - }, - "Outline Opacity": { - "Outline Opacity": "" - }, - "Outline Thickness": { - "Outline Thickness": "" + "Other": "Outro" }, "Output Area Almost Full": { - "Output Area Almost Full": "" + "Output Area Almost Full": "Área de Saída Quase Cheia" }, "Output Area Full": { - "Output Area Full": "" + "Output Area Full": "Área de Saída Cheia" }, "Output Tray Missing": { - "Output Tray Missing": "" + "Output Tray Missing": "Bandeja de Saída Ausente" }, "Outputs Include Missing": { "Outputs Include Missing": "" @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Emparelhar Dispositivo Bluetooth" }, + "Paired": { + "Paired": "" + }, "Pairing failed": { "Pairing failed": "Erro ao emparelhar" }, + "Pairing...": { + "Pairing...": "" + }, "Passkey:": { "Passkey:": "Chave de acesso:" }, @@ -2403,10 +2457,10 @@ "Password": "Senha" }, "Pause": { - "Pause": "" + "Pause": "Pausar" }, "Paused": { - "Paused": "" + "Paused": "Pausado" }, "Pending": { "Pending": "" @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "Personalização" }, + "Pin": { + "Pin": "" + }, "Pin to Dock": { "Pin to Dock": "Fixar ao Dock" }, + "Pinned": { + "Pinned": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Use este local para os diretórios de plugin. Cada plugin deve ter um arquivo de manifesto plugin.json." }, - "Place plugins in": { - "Place plugins in": "Coloque plugins em" + "Place plugins in %1": { + "Place plugins in %1": "" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "Reproduzir som ao conectar o cabo de energia" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "Conectado" }, + "Plugged in": { + "Plugged in": "" + }, + "Plugin": { + "Plugin": "" + }, "Plugin Directory": { "Plugin Directory": "Diretório de Plugins" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "Plugins" }, - "Plugins:": { - "Plugins:": "Plugins:" - }, "Pointer": { "Pointer": "" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "Posição" }, - "Position: ": { - "Position: ": "" - }, "Possible Override Conflicts": { "Possible Override Conflicts": "" }, @@ -2502,7 +2562,7 @@ "Power Action Confirmation": "Confirmação de Ação de Energia" }, "Power Menu Customization": { - "Power Menu Customization": "" + "Power Menu Customization": "Customização do Menu de Energia" }, "Power Off": { "Power Off": "Desligar" @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "Degradação do Perfil de Energia" }, - "Power Profile OSD": { - "Power Profile OSD": "" + "Power profile management available": { + "Power profile management available": "" }, "Power source": { "Power source": "" @@ -2537,17 +2597,17 @@ "Pressure": { "Pressure": "Pressão" }, - "Prevent idle for media": { - "Prevent idle for media": "" - }, "Prevent screen timeout": { "Prevent screen timeout": "Impedir suspensão da tela" }, "Primary": { "Primary": "Primário" }, + "Print Server Management": { + "Print Server Management": "" + }, "Print Server not available": { - "Print Server not available": "" + "Print Server not available": "Servidor de Impressão indisponível" }, "Printer": { "Printer": "" @@ -2565,10 +2625,10 @@ "Printer name (no spaces)": "" }, "Printers": { - "Printers": "" + "Printers": "Impressoras" }, "Printers: ": { - "Printers: ": "" + "Printers: ": "Impressoras: " }, "Privacy Indicator": { "Privacy Indicator": "Indicador de Privacidade" @@ -2583,7 +2643,7 @@ "Process Count": "" }, "Processing": { - "Processing": "" + "Processing": "Processando" }, "Profile Image Error": { "Profile Image Error": "Erro da Imagem de Perfil" @@ -2607,7 +2667,7 @@ "Quick note-taking slideout panel": "Painel deslizante para anotações rápidas" }, "RGB": { - "RGB": "" + "RGB": "RGB" }, "Rain Chance": { "Rain Chance": "Chance de Chuva" @@ -2616,7 +2676,7 @@ "Rate": "" }, "Reason": { - "Reason": "" + "Reason": "Razão" }, "Reboot": { "Reboot": "Reiniciar" @@ -2649,19 +2709,22 @@ "Remove gaps and border when windows are maximized": "" }, "Report": { - "Report": "" - }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Pedir confirmação ao desligar, reiniciar, suspender, hibernar e encerrar sessão" + "Report": "Relatório" }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "" + }, + "Requires DMS %1": { + "Requires DMS %1": "" }, "Requires DWL compositor": { - "Requires DWL compositor": "" + "Requires DWL compositor": "Requer o compositor DWL" + }, + "Requires night mode support": { + "Requires night mode support": "" }, "Reset": { "Reset": "Resetar" @@ -2678,26 +2741,17 @@ "Resolution & Refresh": { "Resolution & Refresh": "" }, - "Resources": { - "Resources": "Recursos" - }, - "Restart": { - "Restart": "" - }, "Restart DMS": { - "Restart DMS": "" + "Restart DMS": "Reiniciar DMS" }, "Restart the DankMaterialShell": { - "Restart the DankMaterialShell": "" + "Restart the DankMaterialShell": "Reinicie o DankMaterialShell" }, "Resume": { - "Resume": "" + "Resume": "Resumir" }, "Revert": { - "Revert": "" - }, - "Reverting in:": { - "Reverting in:": "" + "Revert": "Reverter" }, "Right": { "Right": "Direita" @@ -2706,7 +2760,7 @@ "Right Section": "Seção da Direita" }, "Right Tiling": { - "Right Tiling": "" + "Right Tiling": "Tiling na Direita" }, "Right-click and drag anywhere on the widget": { "Right-click and drag anywhere on the widget": "" @@ -2715,7 +2769,10 @@ "Right-click and drag the bottom-right corner": "" }, "Right-click bar widget to cycle": { - "Right-click bar widget to cycle": "" + "Right-click bar widget to cycle": "Clique no widget com o botão direito para alternar" + }, + "Root Filesystem": { + "Root Filesystem": "" }, "Run DMS Templates": { "Run DMS Templates": "" @@ -2751,7 +2808,7 @@ "Save Notepad File": "Salvar Arquivo do Bloco de Notas" }, "Save password": { - "Save password": "" + "Save password": "Salvar senha" }, "Saved": { "Saved": "Salvo" @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "Escanear" }, + "Scanning": { + "Scanning": "" + }, "Scanning...": { "Scanning...": "" }, @@ -2778,7 +2838,7 @@ "Science": "Ciência" }, "Screen sharing": { - "Screen sharing": "" + "Screen sharing": "Compartilhamento de tela" }, "Scroll Wheel": { "Scroll Wheel": "" @@ -2786,8 +2846,11 @@ "Scroll song title": { "Scroll song title": "" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "" + }, "Scrolling": { - "Scrolling": "" + "Scrolling": "Scrolling" }, "Search file contents": { "Search file contents": "Pesquisar conteúdos de arquivos" @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "Escolha uma cor na paleta ou use controles deslizantes" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "Selecione uma predefinição ou arraste o controle deslizante para customizar" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "" }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "" + }, "Show All Tags": { "Show All Tags": "Mostrar Todas as Tags" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "Mostrar Confirmação em Ações de Energia" - }, "Show Date": { "Show Date": "" }, @@ -2940,7 +3000,7 @@ "Show Header": "" }, "Show Hibernate": { - "Show Hibernate": "" + "Show Hibernate": "Mostrar Hibernar" }, "Show Hour Numbers": { "Show Hour Numbers": "" @@ -2949,10 +3009,10 @@ "Show Line Numbers": "Mostrar Numeração de Linha" }, "Show Lock": { - "Show Lock": "" + "Show Lock": "Mostrar Bloquear" }, "Show Log Out": { - "Show Log Out": "" + "Show Log Out": "Mostrar Sair" }, "Show Memory": { "Show Memory": "" @@ -2969,23 +3029,20 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "" }, - "Show Power Actions": { - "Show Power Actions": "Mostrar Ações de Energia" - }, "Show Power Off": { - "Show Power Off": "" + "Show Power Off": "Mostra Desligar" }, "Show Reboot": { - "Show Reboot": "" + "Show Reboot": "Mostrar Reiniciar" }, "Show Restart DMS": { - "Show Restart DMS": "" + "Show Restart DMS": "Mostrar Reiniciar DMS" }, "Show Seconds": { "Show Seconds": "" }, "Show Suspend": { - "Show Suspend": "" + "Show Suspend": "Mostrar Suspender" }, "Show Top Processes": { "Show Top Processes": "" @@ -3000,7 +3057,7 @@ "Show cava audio visualizer in media widget": "" }, "Show darkened overlay behind modal dialogs": { - "Show darkened overlay behind modal dialogs": "" + "Show darkened overlay behind modal dialogs": "Exibir sobreposição escurecida atrás de diálogos modais" }, "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.": "" @@ -3018,28 +3075,28 @@ "Show on screens:": "Mostrar nas telas:" }, "Show on-screen display when brightness changes": { - "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": "" + "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": "" + "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": "" + "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 volume changes": { - "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": "" + "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": "" + "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": "" + "Show on-screen display when volume changes": "Mostrar aviso na tela quando o volume mudar" }, "Show only apps running in current workspace": { "Show only apps running in current workspace": "Mostrar apenas aplicativos rodando na área de trabalho atual" @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "Mostrar senha" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "Mostrar botões de desligar, reiniciar e encerrar sessão na tela de bloqueio" - }, - "Show seconds": { - "Show seconds": "Mostrar segundos" - }, "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" }, @@ -3069,13 +3120,13 @@ "Shows current workspace and allows switching": "Mostra a área de trabalho atual e permite alternar entre elas" }, "Shows when caps lock is active": { - "Shows when caps lock is active": "" + "Shows when caps lock is active": "Mostra quando caps lock está ativo" }, "Shows when microphone, camera, or screen sharing is active": { "Shows when microphone, camera, or screen sharing is active": "Mostra quando microfone, câmera, ou compartilhamento de tela está ativado" }, "Shutdown": { - "Shutdown": "" + "Shutdown": "Desligar" }, "Signal": { "Signal": "" @@ -3116,11 +3167,14 @@ "Spacing": { "Spacing": "Espaçamento" }, + "Speaker settings": { + "Speaker settings": "" + }, "Speed": { "Speed": "" }, "Spool Area Full": { - "Spool Area Full": "" + "Spool Area Full": "Área de Spool Cheia" }, "Square Corners": { "Square Corners": "Cantos Retos" @@ -3141,13 +3195,13 @@ "Status": "Status" }, "Stopped": { - "Stopped": "" + "Stopped": "Parado" }, "Stopped Partly": { - "Stopped Partly": "" + "Stopped Partly": "Parado Parcialmente" }, "Stopping": { - "Stopping": "" + "Stopping": "Parando" }, "Storage & Disks": { "Storage & Disks": "Armazenamento & Discos" @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "" }, - "Support Development": { - "Support Development": "Apoie o Desenvolvimento" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "" }, @@ -3171,7 +3222,7 @@ "Suspend": "Suspender" }, "Suspend behavior": { - "Suspend behavior": "" + "Suspend behavior": "Comportamento de suspensão" }, "Suspend system after": { "Suspend system after": "Suspender sitema após" @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "Atualizações do Sistema" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "Barra do sistema com widgets e informações do sistema" - }, "System notification area icons": { "System notification area icons": "Área de ícones de notificações do sistema" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "" }, + "System theme toggle": { + "System theme toggle": "" + }, "System toast notifications": { "System toast notifications": "Notificações toast do sistema" }, - "System tray icons": { - "System tray icons": "Ícones da bandeja do sistema" - }, "System update custom command": { "System update custom command": "Comando personalizado para atualização do sistema" }, @@ -3243,7 +3291,7 @@ "Terminal custom additional parameters": "Parâmetros adicionais para o terminal" }, "Terminals - Always use Dark Theme": { - "Terminals - Always use Dark Theme": "" + "Terminals - Always use Dark Theme": "Terminais - Sempre usar Tema Escuro" }, "Test Page": { "Test Page": "" @@ -3254,6 +3302,9 @@ "Text": { "Text": "Texto" }, + "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.": "" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "A variável de ambiente DMS_SOCKET não está definida ou o socket está indisponível. O gerenciamento automático de plugins requer a DMS_SOCKET." }, @@ -3261,7 +3312,7 @@ "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).": "As configurações abaixo vão modificar suas configurações GTK e Qt. Se você deseja preservá-las, por favor faça um back up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0)." }, "The job queue of this printer is empty": { - "The job queue of this printer is empty": "" + "The job queue of this printer is empty": "A fila de trabalhos dessa impressora está vazia" }, "Theme & Colors": { "Theme & Colors": "Tema & Cores" @@ -3288,7 +3339,7 @@ "This will permanently delete all clipboard history.": "Isso vai apagar permanentemetne todo o histórico da área de transferência." }, "Tiling": { - "Tiling": "" + "Tiling": "Tiling" }, "Time & Weather": { "Time & Weather": "Hora & Clima" @@ -3296,8 +3347,14 @@ "Time Format": { "Time Format": "" }, + "Time remaining: %1": { + "Time remaining: %1": "" + }, + "Time until full: %1": { + "Time until full: %1": "" + }, "Timed Out": { - "Timed Out": "" + "Timed Out": "Tempo Limite Esgotado" }, "Timeout for critical priority notifications": { "Timeout for critical priority notifications": "" @@ -3327,7 +3384,7 @@ "Today": "Hoje" }, "Toggle visibility of this bar configuration": { - "Toggle visibility of this bar configuration": "" + "Toggle visibility of this bar configuration": "Alternar visibilidade dessa configuração de barra" }, "Toggling...": { "Toggling...": "" @@ -3336,10 +3393,10 @@ "Tomorrow": "Amanhã" }, "Toner Empty": { - "Toner Empty": "" + "Toner Empty": "Toner Vazio" }, "Toner Low": { - "Toner Low": "" + "Toner Low": "Toner Baixo" }, "Top": { "Top": "Topo" @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "" }, + "Unknown Config": { + "Unknown Config": "" + }, + "Unknown Device": { + "Unknown Device": "" + }, + "Unknown Monitor": { + "Unknown Monitor": "" + }, + "Unknown Network": { + "Unknown Network": "" + }, "Unpin from Dock": { "Unpin from Dock": "Desafixar do Dock" }, @@ -3420,16 +3489,16 @@ "Use Custom Command": "Usar Comando Personalizado" }, "Use Grid Layout": { - "Use Grid Layout": "" + "Use Grid Layout": "Usar Layout em Grade" }, "Use IP Location": { "Use IP Location": "Usar Localização do Endereço IP" }, "Use Imperial Units": { - "Use Imperial Units": "" + "Use Imperial Units": "Usar Medidas Imperiais" }, "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": { - "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "" + "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "Usar unidades Imperiais (°F, mph, inHg) ao invés de Métricas (°C, km/h, hPa)" }, "Use Monospace Font": { "Use Monospace Font": "Usar Fonte Monoespaçada" @@ -3458,6 +3527,9 @@ "Used": { "Used": "Usado" }, + "User": { + "User": "" + }, "Username": { "Username": "Nome de usuário" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "" }, + "VPN connections": { + "VPN connections": "" + }, "VPN deleted": { "VPN deleted": "" }, - "VPN imported: ": { - "VPN imported: ": "" + "VPN imported: %1": { + "VPN imported: %1": "" + }, + "VPN not available": { + "VPN not available": "" }, "VPN status and quick connect": { "VPN status and quick connect": "Status de VPN e conexão rápida" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "" }, - "VRR: ": { - "VRR: ": "" - }, "Variable Refresh Rate": { "Variable Refresh Rate": "" }, @@ -3513,16 +3588,16 @@ "Version": "" }, "Vertical Deck": { - "Vertical Deck": "" + "Vertical Deck": "Deck Vertical" }, "Vertical Grid": { - "Vertical Grid": "" + "Vertical Grid": "Grade Vertical" }, "Vertical Scrolling": { - "Vertical Scrolling": "" + "Vertical Scrolling": "Scrolling Vertical" }, "Vertical Tiling": { - "Vertical Tiling": "" + "Vertical Tiling": "Tiling Vertical" }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Paleta vibrante com saturação divertida." @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "Volume Alterado" }, - "Volume OSD": { - "Volume OSD": "" + "Volume Slider": { + "Volume Slider": "" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volume, brilho, e outros OSDs do sistema" @@ -3564,7 +3639,7 @@ "Warm color temperature to apply": "" }, "Warning": { - "Warning": "" + "Warning": "Aviso" }, "Wave Progress Bars": { "Wave Progress Bars": "Barra de Progresso de Ondas" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "Widget de Clima" }, - "Website:": { - "Website:": "Website:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Quando ativado, apps são ordenados alfabeticamente. Quando desativado, apps são ordenados por frequência de uso." }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "" - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "", "When updater widget is used, then hide it if no update found": "" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "" + }, "WiFi": { "WiFi": "" }, @@ -3610,7 +3685,7 @@ "Wide (BT2020)": "" }, "Widget Background Color": { - "Widget Background Color": "" + "Widget Background Color": "Cor de Fundo dos Widgets" }, "Widget Management": { "Widget Management": "Gerenciamento de Widgets" @@ -3619,19 +3694,23 @@ "Widget Outline": "" }, "Widget Style": { - "Widget Style": "" + "Widget Style": "Estilo dos Widgets" }, "Widget Styling": { "Widget Styling": "Estilo dos Widgets" }, "Widget Transparency": { - "Widget Transparency": "" + "Widget Transparency": "Transparência dos Widgets" }, "Widget Variants": { "Widget Variants": "" }, - "Widgets": { - "Widgets": "Widgets" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "Vento" @@ -3688,29 +3767,35 @@ "apps": "" }, "custom theme file browser title": { - "Select Custom Theme": "" + "Select Custom Theme": "Selecionar Tema Customizado" }, "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": { - "Select Wallpaper": "" + "Select Wallpaper": "Selecionar Papel de Parede" }, "days": { "days": "" }, + "dgop not available": { + "dgop not available": "" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "" + }, "events": { "events": "eventos" }, @@ -3733,25 +3818,25 @@ "official": "oficial" }, "profile image file browser title": { - "Select Profile Image": "" + "Select Profile Image": "Selecionar Imagem de Perfil" }, "seconds": { "seconds": "" }, "settings window title": { - "Settings": "" + "Settings": "Configurações" }, "settings_displays": { "Widgets": "" }, "sysmon window title": { - "System Monitor": "" + "System Monitor": "Monitor do Sistema" }, "update dms for NM integration.": { "update dms for NM integration.": "atualize dms para integração com o NM." }, "wallpaper directory file browser title": { - "Select Wallpaper Directory": "" + "Select Wallpaper Directory": "Selecionar Diretório de Papéis de Parede" }, "wallpaper settings disable description": { "Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "" diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index 0234346e..5e4cdb83 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "Aktif Kilit Ekranı Monitörü" }, - "Active: ": { - "Active: ": "Etkin: " + "Active: %1": { + "Active: %1": "Aktif: %1" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "Aktif: %1 +%2" }, "Active: None": { "Active: None": "Etkin: Hiçbiri" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "Dock etrafına kenarlık ekle" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Tüm uygulama başlatmalarına özel bir önek ekleyin. Bu, 'uwsm-app', 'systemd-run' veya diğer komut sarmalayıcıları gibi şeyler için kullanılabilir." + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "Izgara görünümü modunda sütun sayısını ayarla" }, @@ -209,6 +215,12 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "Her zaman en az 3 çalışma alanı göster, daha azı kullanılabilir olsa da" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "Niri'nin genel görünümü açıkken her zaman dock'u göster" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "Yalnızca bir ekran bağlı olduğunda her zaman göster" + }, "Amount": { "Amount": "Miktar" }, @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "Ses Aygıtları" }, + "Audio Input": { + "Audio Input": "Ses Girişi" + }, + "Audio Output": { + "Audio Output": "Ses Çıkışı" + }, "Audio Output Devices (": { "Audio Output Devices (": "Ses Çıkış Aygıtları (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "Ses Görselleştirici" }, + "Audio volume control": { + "Audio volume control": "Ses seviyesi kontrolü" + }, "Auth": { "Auth": "Kimlik" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "Otomatik Döngü" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "Çubuk kenarından açılır pencere uzaklığını otomatik hesapla" - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "Aynı klasördeki duvar kağıtlarını otomatik olarak değiştir" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "Kullanılabilir Eklentiler" }, - "Available Screens (": { - "Available Screens (": "Kullanılabilir Ekranlar (" + "Available Screens (%1)": { + "Available Screens (%1)": "Kullanılabilir Ekranlar (%1)" }, "BSSID": { "BSSID": "BSSID" @@ -392,6 +410,9 @@ "Background Opacity": { "Background Opacity": "Arkaplan Opaklığı" }, + "Backlight device": { + "Backlight device": "Arka aydınlatma cihazı" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)." }, @@ -404,6 +425,9 @@ "Battery": { "Battery": "Batarya" }, + "Battery and power management": { + "Battery and power management": "Batarya ve güç yönetimi" + }, "Battery level and power management": { "Battery level and power management": "Batarya seviyesi ve güç yönetimi" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "Bit Derinliği" }, + "Block notifications": { + "Block notifications": "Bildirimleri engelle" + }, + "Blocked": { + "Blocked": "Engellendi" + }, + "Blue light filter": { + "Blue light filter": "Mavi ışık filtresi" + }, "Bluetooth": { "Bluetooth": "Bluetooth" }, "Bluetooth Settings": { "Bluetooth Settings": "Bluetooth Ayarları" }, - "Blur Layer": { - "Blur Layer": "Bulanıklık Katmanı" + "Bluetooth not available": { + "Bluetooth not available": "Bluetooth kullanılamıyor" }, "Blur on Overview": { "Blur on Overview": "Genel Görünümde Bulanıklık" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "Parlaklık" }, - "Brightness OSD": { - "Brightness OSD": "Parlaklık OSD" + "Brightness Slider": { + "Brightness Slider": "Parlaklık Kaydırıcı" + }, + "Brightness control not available": { + "Brightness control not available": "Parlaklık kontrolü kullanılamıyor" }, "Browse": { "Browse": "Göz at" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "CUPS Yazıcı Sunucusu" }, + "CUPS not available": { + "CUPS not available": "CUPS kullanılamıyor" + }, "Camera": { "Camera": "Kamera" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "İptal Edildi" }, + "Cannot pair": { + "Cannot pair": "Eşleştirilemedi" + }, "Capabilities": { "Capabilities": "Yetenekler" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "Caps Lock Göstergesi" }, - "Caps Lock OSD": { - "Caps Lock OSD": "Caps Lock OSD" - }, "Center Section": { "Center Section": "Orta Bölüm" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "Bar görünümünü değiştir" }, - "Changes:": { - "Changes:": "Değişiklikler:" - }, "Channel": { "Channel": "Kanal" }, + "Charging": { + "Charging": "Şarj ediliyor" + }, "Check for system updates": { "Check for system updates": "Sistem güncellemelerini kontrol et" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Başlatıcı Logo Rengini Seçin" }, + "Choose a color": { + "Choose a color": "Renk seç" + }, + "Choose colors from palette": { + "Choose colors from palette": "Paletten renkler seç" + }, "Choose icon": { "Choose icon": "Simge seçin" }, @@ -569,9 +614,6 @@ "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" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "Widget çerçeve vurgu rengini seçin" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Bildirim açılır pencerelerinin ekranda nerede görüneceğini seçin" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "Başlangıçta Temizle" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "dms/binds.kdl dosyasını oluşturmak ve config.kdl dosyasına eklemek için 'Kur' düğmesine tıklayın." + }, + "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." }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "Saat Stili" }, - "Clock show seconds": { - "Clock show seconds": "Saat saniyeleri gösterir" - }, "Close": { "Close": "Kapat" }, @@ -683,24 +728,6 @@ "Command": { "Command": "Komut" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "Standart hazırda bekleme prosedürü yerine çalıştırılacak komut veya komut dosyası" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "Standart kilit prosedürü yerine çalıştırılacak komut veya komut dosyası" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "Standart çıkış prosedürü yerine çalıştırılacak komut veya komut dosyası" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "Standart kapatma prosedürü yerine çalıştırılacak komut veya komut dosyası" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "Standart yeniden başlatma prosedürü yerine çalıştırılacak komut veya komut dosyası" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "Standart askıya alma prosedürü yerine çalıştırılacak komut veya komut dosyası" - }, "Communication": { "Communication": "İletişim" }, @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "Cihaza Bağlanma" }, + "Connecting...": { + "Connecting...": "Bağlanıyor..." + }, "Contrast": { "Contrast": "Kontrast" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "Tüm açılır pencerelerin, modal pencerelerin ve bunların içerik katmanlarının opaklığını kontrol eder." }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "Tüm açılır pencerelerin, modal pencerelerin ve bunların içerik katmanlarının (DankDash, Ayarlar, Uygulama Çekmecesi, Kontrol Merkezi vb.) opaklığını kontrol eder" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "DankBar içindeki her widget için ayrı opaklığı kontrol eder" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "DankBar panelinin arka plan opaklığını kontrol eder" - }, "Cooldown": { "Cooldown": "Bekleme" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "Mevcut hava koşulları ve sıcaklık" }, + "Current: %1": { + "Current: %1": "Mevcut: %1" + }, "Custom": { "Custom": "Özel" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "Güç menüsünde hangi eylemlerin görüneceğini özelleştirin" }, + "DDC/CI monitor": { + "DDC/CI monitor": "DDC/CI monitörü" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "DEMO MODU - Çıkmak için herhangi bir yere tıklayın" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "DankBar Yazı Tipi Ölçeği" - }, "DankSearch not available": { "DankSearch not available": "DankSearch kullanılamıyor" }, @@ -1019,6 +1043,9 @@ "Device": { "Device": "Aygıt" }, + "Device connections": { + "Device connections": "Cihaz bağlantıları" + }, "Device paired": { "Device paired": "Cihaz eşleştirildi" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "Pano Yöneticisini Devre Dışı Bırak" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "Pano Sahipliğini Devre Dışı Bırak" - }, "Disable History Persistence": { "Disable History Persistence": "Geçmiş Kalıcılığını Devre Dışı Bırak" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "Devre Dışı" }, + "Disabling WiFi...": { + "Disabling WiFi...": "WiFi kapatılıyor..." + }, "Discard": { "Discard": "Yok Say" }, @@ -1088,6 +1115,9 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster" }, + "Display brightness control": { + "Display brightness control": "Ekran parlaklık kontrolü" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "Ekran yapılandırması kullanılamıyor. WLR çıktı yönetimi protokolü desteklenmiyor." }, @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "Saatte saniyeleri göster" }, - "Display settings for ": { - "Display settings for ": "Ekran ayarları: " - }, "Display the power system menu": { "Display the power system menu": "Güç sistem menüsünü göster" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "Etki alanı (isteğe bağlı)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "Ko-fi üzerinden bağış yap" + "Don't Change": { + "Don't Change": "Değiştirme" + }, + "Don't Save": { + "Don't Save": "Kaydetme" }, "Door Open": { "Door Open": "Kapı Açık" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "Duvar kağıdını bulanıklık ile çoğalt" }, - "Duration": { - "Duration": "Süre" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "Alacakaranlık (Astronomik Alacakaranlık)" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "Barı Etkinleştir" }, - "Enable Border": { - "Enable Border": "Kenarlığı Etkinleştir" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "Masaüstü Saatini Etkinleştir" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "WiFi Etkinleştir" }, - "Enable Widget Outline": { - "Enable Widget Outline": "Widget Çerçevesini Etkinleştir" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Kompozitör tarafından hedeflenebilir bulanıklık katmanını etkinleştir (isim alanı: dms:blurwallpaper). Manuel Niri yapılandırması gerektirir." }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "Etkin" }, + "Enabling WiFi...": { + "Enabling WiFi...": "WiFi açılıyor..." + }, "End": { "End": "Son" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "Dosya adı girin..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "Başlatma önekini girin (örneğin, 'uwsm-app')" + }, "Enter passkey for ": { "Enter passkey for ": "Şunun için şifre gir: " }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "Deneysel Özellik" }, + "Exponential": { + "Exponential": "Üstel" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "VPN bağlantısı kurulamadı" }, - "Failed to connect to ": { - "Failed to connect to ": "Bağlanılamadı " + "Failed to connect to %1": { + "Failed to connect to %1": "%1 bağlanılamadı" }, "Failed to copy entry": { "Failed to copy entry": "Kayıt kopyalanamadı" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "İş kabulü devre dışı bırakılamadı" }, + "Failed to disable night mode": { + "Failed to disable night mode": "Gece modu devre dışı bırakılamadı" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "VPN bağlantısı kesilemedi" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "WiFi bağlantısı kesilemedi" }, + "Failed to enable IP location": { + "Failed to enable IP location": "IP konumunu etkinleştiremedi" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "WiFi etkinleştirilemedi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "İş kabulü etkinleştirilemedi" }, + "Failed to enable night mode": { + "Failed to enable night mode": "Gece modu etkinleştiremedi" + }, "Failed to hold job": { "Failed to hold job": "İş bekletilemedi" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "Tuş kombinasyonu kaydedilemedi" }, + "Failed to set brightness": { + "Failed to set brightness": "Parlaklık ayarlanamadı" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "Gece modu konumu ayarlanamadı" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "Gece modu zamanlaması ayarlanamadı" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "Gece modu sıcaklığı ayarlanamadı" + }, "Failed to set profile image": { "Failed to set profile image": "Profil resmi ayarlanamadı" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "Profil resmi ayarlanamadı: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "Profil resmi ayarlanamadı: %1" }, - "Failed to start connection to ": { - "Failed to start connection to ": "Bağlantı başlatılamadı " + "Failed to start connection to %1": { + "Failed to start connection to %1": "%1 bağlantı başlatılamadı" }, "Failed to update VPN": { "Failed to update VPN": "VPN güncellenemedi" @@ -1448,6 +1499,9 @@ "Files": { "Files": "Dosyalar" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "Dosya sistemi kullanım izlemesi" + }, "Find in Text": { "Find in Text": "Metinde Bul" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "Ağı Unut" }, - "Forgot network ": { - "Forgot network ": "Ağı unut " + "Forgot network %1": { + "Forgot network %1": "%1 ağını unut" }, "Format Legend": { "Format Legend": "Biçim Açıklaması" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "GPU Sıcaklığı" }, - "GPU temperature display": { - "GPU temperature display": "GPU sıcaklık göstergesi" - }, "Games": { "Games": "Oyunlar" }, @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "Gizleme Gecikmesi" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "Gizleme Gecikmesi (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "Kullanılmadığında dock'u gizle ve dock alanının yakınına geldiğinizde göster" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "Güçlü görsel ayrım için yüksek kontrastlı palet." - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "Kaynak tonları koruyan yüksek sadakatli palet" }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "Saatlik Hava Tahmini" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "Eylemi onaylamak için düğmeye basılı tutma süresi" - }, "How often to change wallpaper": { "How often to change wallpaper": "Duvar kağıdı değiştirme sıklığı" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "Boşta Kalma Engelleyici" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "Boşta Kalma Engelleyici OSD" - }, "Idle Settings": { "Idle Settings": "Boşta Kalma Ayarları" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "Devral" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "Ses veya video oynatılırken boşta kalma süresini engelle" - }, "Input Devices": { "Input Devices": "Giriş Aygıtları" }, + "Input Volume Slider": { + "Input Volume Slider": "Giriş Ses Seviyesi Kaydırıcı" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "DMS eklenti deposundan eklentiler yükle" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "LED cihazı" + }, "Last launched %1": { "Last launched %1": "Son başlatma %1" }, @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "Aydınlık Modu" }, + "Linear": { + "Linear": "Doğrusal" + }, "Lines: %1": { "Lines: %1": "Satırlar: %1" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "Doygun vurgularla canlı renk paleti." }, + "Loading codecs...": { + "Loading codecs...": "Kodekler yükleniyor..." + }, "Loading keybinds...": { "Loading keybinds...": "Tuş kombinasyonları yükleniyor..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "4 adede kadar bağımsız bar yapılandırmasını yönetin. Her barın kendi konumu, widget'ları, stili ve ekran ataması vardır." }, + "Management": { + "Management": "Yönetim" + }, "Manual Coordinates": { "Manual Coordinates": "Manuel Koordinatlar" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Matugen Paleti" }, - "Matugen Settings": { - "Matugen Settings": "Matugen Ayarları" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Matugen Hedef Monitör" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "Medya Ses Seviyesi" }, - "Media Volume OSD": { - "Media Volume OSD": "Medya Ses OSD" - }, "Medium": { "Medium": "Orta" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "Microfon Sessiz" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "Mikrofon Sessiz OSD" + "Microphone settings": { + "Microphone settings": "Mikrofon ayarları" + }, + "Microphone volume control": { + "Microphone volume control": "Mikrofon ses seviyesi kontrolü" }, "Middle Section": { "Middle Section": "Orta Bölüm" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "Mod:" }, - "Mode: ": { - "Mode: ": "Mod: " - }, "Model": { "Model": "Model" }, @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "Ağ Bilgisi" }, - "Network Settings": { - "Network Settings": "Ağ Ayarları" - }, "Network Speed Monitor": { "Network Speed Monitor": "Ağ Hız Monitörü" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "Bağdaştırıcı yok" }, + "No battery": { + "No battery": "Batarya yok" + }, + "No brightness devices available": { + "No brightness devices available": "Parlaklık cihazı yok" + }, "No changes": { "No changes": "Değişiklik yok" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "Aygıt bulunamadı" }, + "No disk data": { + "No disk data": "Disk verisi yok" + }, + "No disk data available": { + "No disk data available": "Disk verisi mevcut değil" + }, "No drivers found": { "No drivers found": "Sürücü bulunamadı" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "Normal Öncelik" }, + "Not available": { + "Not available": "Mevcut değil" + }, "Not connected": { "Not connected": "Bağlı değil" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "Diğer" }, - "Outline Color": { - "Outline Color": "Çerçeve Rengi" - }, - "Outline Opacity": { - "Outline Opacity": "Çerçeve Opaklığı" - }, - "Outline Thickness": { - "Outline Thickness": "Çerçeve Kalınlığı" - }, "Output Area Almost Full": { "Output Area Almost Full": "Çıkış Alanı Neredeyse Dolu" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "Bluetooth Cihazı Eşleştir" }, + "Paired": { + "Paired": "Eşleşti" + }, "Pairing failed": { "Pairing failed": "Eşleşme başarısız" }, + "Pairing...": { + "Pairing...": "Eşleşiyor..." + }, "Passkey:": { "Passkey:": "Şifre:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "Kişiselleştirme" }, + "Pin": { + "Pin": "Sabitle" + }, "Pin to Dock": { "Pin to Dock": "Dock'a Sabitle" }, + "Pinned": { + "Pinned": "Sabitlendi" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Eklenti klasörlerini buraya yerleştirin. Her eklenti plugin.json manifest dosyasına sahip olmalı." }, - "Place plugins in": { - "Place plugins in": "Eklentileri yerleştirin" + "Place plugins in %1": { + "Place plugins in %1": "Eklentileri %1 konumuna yerleştirin" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "Yeni bildirim geldiğinde ses çal" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "Bağlandı" }, + "Plugged in": { + "Plugged in": "Takılı" + }, + "Plugin": { + "Plugin": "Eklenti" + }, "Plugin Directory": { "Plugin Directory": "Eklenti Dizini" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "Eklentiler" }, - "Plugins:": { - "Plugins:": "Eklentiler:" - }, "Pointer": { "Pointer": "İşaretçi" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "Pozisyon" }, - "Position: ": { - "Position: ": "Pozisyon: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "Olası Geçersiz Kılma Çakışmaları" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "Güç Profili Dejenerasyonu" }, - "Power Profile OSD": { - "Power Profile OSD": "Güç Profili OSD" + "Power profile management available": { + "Power profile management available": "Güç profili yönetimi mevcut" }, "Power source": { "Power source": "Güç kaynağı" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "Basınç" }, - "Prevent idle for media": { - "Prevent idle for media": "Medya için boşta kalmayı önle" - }, "Prevent screen timeout": { "Prevent screen timeout": "Ekran zaman aşımını önle" }, "Primary": { "Primary": "Birincil" }, + "Print Server Management": { + "Print Server Management": "Yazdırma Sunucusu Yönetimi" + }, "Print Server not available": { "Print Server not available": "Yazıcı Sunucusu Kullanılamıyor" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "Rapor" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerinde onay iste" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Güç kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerini onaylamak için düğmeyi/tuşu basılı tutmak gerekir" }, - "Requires DMS": { - "Requires DMS": "DMS Gerektirir" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "'dgop' aracını gerektirir" + }, + "Requires DMS %1": { + "Requires DMS %1": "DMS %1 gerektirir" }, "Requires DWL compositor": { "Requires DWL compositor": "DWL kompozitör gerektirir" }, + "Requires night mode support": { + "Requires night mode support": "Gece modu desteği gerektirir" + }, "Reset": { "Reset": "Sıfırla" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "Çözünürlük ve Yenileme" }, - "Resources": { - "Resources": "Kaynaklar" - }, - "Restart": { - "Restart": "Yeniden Başlat" - }, "Restart DMS": { "Restart DMS": "DMS'yi Yeniden Başlat" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "Geri Al" }, - "Reverting in:": { - "Reverting in:": "Geri dönülüyor:" - }, "Right": { "Right": "Sağ" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "Çubuk widget'ını sağ tıklayarak döngüye değiştir" }, + "Root Filesystem": { + "Root Filesystem": "Kök Dosya Sistemi" + }, "Run DMS Templates": { "Run DMS Templates": "DMS Şablonlarını Çalıştır" }, @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "Tara" }, + "Scanning": { + "Scanning": "Taranıyor" + }, "Scanning...": { "Scanning...": "Taranıyor..." }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "Şarkı başlığını kaydır" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "Widget'a sığmazsa başlığı kaydırın" + }, "Scrolling": { "Scrolling": "Kaydırma" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "Paletten bir renk seç veya özel kaydırıcıları kullan" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "Ön ayarı seçin veya kaydırıcıyı sürükleyerek özelleştirin" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "Eklemek için bir widget seçin. Gerekirse aynı widget'ın birden fazla örneğini ekleyebilirsiniz." }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "Kısayollar" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "Kısayollar (%1)" + }, "Show All Tags": { "Show All Tags": "Tüm Etiketleri Göster" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "CPU Sıcaklığını Göster" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "Güç Eylemlerinde Onay Göster" - }, "Show Date": { "Show Date": "Tarihi Göster" }, @@ -2969,9 +3029,6 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "Sadece Dolu Çalışma Alanlarını Göster" }, - "Show Power Actions": { - "Show Power Actions": "Güç Eylemlerini Göster" - }, "Show Power Off": { "Show Power Off": "Kapatı Göster" }, @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "Parolayı göster" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "Kilit ekranında kapatma, yeniden başlatma ve çıkış düğmelerini göster" - }, - "Show seconds": { - "Show seconds": "Saniyeyi göster" - }, "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" }, @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "Boşluk" }, + "Speaker settings": { + "Speaker settings": "Hoparlör ayarları" + }, "Speed": { "Speed": "Hız" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "Günbatımı" }, - "Support Development": { - "Support Development": "Gelişimi Destekle" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "Ekinken bildirim açılır pencerelerini bastır" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "Sistem Güncellemeleri" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "Widget'lar ve sistem bilgileri içeren sistem çubuğu" - }, "System notification area icons": { "System notification area icons": "Sistem bildirim alanı simgeleri" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "Sistem sesleri mevcut değil. Ses desteği için canberra-gtk-play'i yükleyin." }, + "System theme toggle": { + "System theme toggle": "Sistem teması geçişi" + }, "System toast notifications": { "System toast notifications": "Sistem anlık bildirimleri" }, - "System tray icons": { - "System tray icons": "Sistem çekmecesi simgeleri" - }, "System update custom command": { "System update custom command": "Sistem güncelleme özel komutu" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "Metin" }, + "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.": "Sistem izleme için 'dgop' aracı gereklidir.\\nBu özelliği kullanmak için lütfen dgop'u yükleyin." + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "DMS_SOCKET ortam değişkeni ayarlanmamış veya soket kullanılamıyor. Otomatik eklenti yönetimi için DMS_SOCKET gereklidir." }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "Zaman Biçimi" }, + "Time remaining: %1": { + "Time remaining: %1": "Kalan zaman: %1" + }, + "Time until full: %1": { + "Time until full: %1": "Dolmasına kalan: %1" + }, "Timed Out": { "Timed Out": "Zaman Aşımı" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "Bilinmeyen" }, + "Unknown Config": { + "Unknown Config": "Bilinmeyen Yapılandırma" + }, + "Unknown Device": { + "Unknown Device": "Bilinmeyen Cihaz" + }, + "Unknown Monitor": { + "Unknown Monitor": "Bilinmeyen Monitör" + }, + "Unknown Network": { + "Unknown Network": "Bilinmeyen Ağ" + }, "Unpin from Dock": { "Unpin from Dock": "Dock'tan Sabitlemeyi Kaldır" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "Kullanıldı" }, + "User": { + "User": "Kullanıcı" + }, "Username": { "Username": "Kullanıcı Adı" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "VPN ayarı güncellendi" }, + "VPN connections": { + "VPN connections": "VPN bağlantıları" + }, "VPN deleted": { "VPN deleted": "VPN silindi" }, - "VPN imported: ": { - "VPN imported: ": "VPN içe aktarıldı: " + "VPN imported: %1": { + "VPN imported: %1": "VPN içe aktarıldı: %1" + }, + "VPN not available": { + "VPN not available": "VPN mevcut değil" }, "VPN status and quick connect": { "VPN status and quick connect": "VPN durumu ve hızlı bağlanma" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "VRR, yalnızca uygulamalar talep ettiğinde etkinleştirilir" }, - "VRR: ": { - "VRR: ": "VRR: " - }, "Variable Refresh Rate": { "Variable Refresh Rate": "Değişken Yenileme Hızı" }, @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "Ses Seviyesi Değişti" }, - "Volume OSD": { - "Volume OSD": "Ses OSD" + "Volume Slider": { + "Volume Slider": "Ses Seviyesi Kaydırıcı" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Ses, parlaklık ve diğer sistem ekran üstü gösterimleri" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "Hava Durumu Widget'ı" }, - "Website:": { - "Website:": "Website:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Etkinleştirildiğinde, uygulamalar alfabetik olarak sıralanır. Devre dışı bırakıldığında, uygulamalar kullanım sıklığına göre sıralanır." }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Etkinleştirildiğinde, Niri genel görünümünde yazarken başlatıcı katmanını gösterir. Niri genel görünümünde yazarken başlatıcının olmasını tercih etmiyorsanız veya genel görünümde başka bir başlatıcı kullanmak istiyorsanız bunu devre dışı bırakın." - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "Güncelleyici Widgetını Gizle", "When updater widget is used, then hide it if no update found": "Güncelleyici widgetı kullanıldığında, güncelleme bulunmazsa gizle" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "Wi-Fi Parolası" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "Wi-Fi ve Ethernet bağlantısı" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "Wi-Fi mevcut değil" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "Widget Varyantları" }, - "Widgets": { - "Widgets": "Widgetlar" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "Rüzgar" @@ -3696,21 +3775,27 @@ "days": { "days": "gün" }, + "dgop not available": { + "dgop not available": "dgop mevcut değil" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl dosyası mevcut ancak config.kdl dosyasına dahil edilmemiştir. Bu sorun giderilene kadar özel tuş atamaları çalışmayacaktır." }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl, config.kdl dosyasına dahil değildir. Bu sorun giderilene kadar özel tuş atamaları çalışmayacaktır." - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl artık config.kdl dosyasına dahil edilmiştir." }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs yapılandırması mevcut ancak kompozitör yapılandırmanıza dahil edilmemiş. Ekran değişiklikleri kalıcı olmayacaktır." + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "örn. firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "örn. focus-workspace 3, resize-column -10" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "Örneğin, notify-send 'Merhaba' && sleep 1" + }, "events": { "events": "etkinlikler" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index be00ae1b..e5b030f2 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -51,7 +51,7 @@ "10 seconds": "10 秒" }, "10-bit Color": { - "10-bit Color": "" + "10-bit Color": "10位色彩" }, "14 days": { "14 days": "14天" @@ -60,7 +60,7 @@ "15 seconds": "15 秒" }, "180°": { - "180°": "" + "180°": "180°" }, "2 minutes": { "2 minutes": "2 分钟" @@ -72,7 +72,7 @@ "24-hour format": "24小时制" }, "270°": { - "270°": "" + "270°": "270°" }, "3 days": { "3 days": "3天" @@ -105,7 +105,7 @@ "90 days": "90天" }, "90°": { - "90°": "" + "90°": "90°" }, "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "已存在同名文件,是否覆盖?" @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "活动锁屏显示器" }, - "Active: ": { - "Active: ": "活动:" + "Active: %1": { + "Active: %1": "激活:%1" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "激活:%1 +%2" }, "Active: None": { "Active: None": "活动: 无" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "在程序坞周围添加边框" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "在所有应用启动后添加自定义前缀。这可以用来处理诸如uwsm-app、systemd-run或其他命令封装器。" + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "在网格模式中按需调整列的数量。" }, @@ -209,11 +215,17 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "即使不足也总是显示至少三个工作区" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "当Niri的概览打开时,也总是显示程序坞" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "当仅连接一个显示器时,总是显示" + }, "Amount": { "Amount": "数量" }, "Analog": { - "Analog": "" + "Analog": "模拟" }, "Animation Speed": { "Animation Speed": "动画速度" @@ -234,7 +246,7 @@ "Applications": "应用程序" }, "Apply Changes": { - "Apply Changes": "" + "Apply Changes": "应用更改" }, "Apply GTK Colors": { "Apply GTK Colors": "应用 GTK 配色" @@ -252,7 +264,7 @@ "Apps are ordered by usage frequency, then last used, then alphabetically.": "应用按使用频率、最近使用时间和字母顺序排序。" }, "Arrange displays and configure resolution, refresh rate, and VRR": { - "Arrange displays and configure resolution, refresh rate, and VRR": "" + "Arrange displays and configure resolution, refresh rate, and VRR": "排列显示器、配置分辨率、刷新率和VRR" }, "Audio": { "Audio": "音频" @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "音频设备" }, + "Audio Input": { + "Audio Input": "音频输入" + }, + "Audio Output": { + "Audio Output": "音频输出" + }, "Audio Output Devices (": { "Audio Output Devices (": "音频输出设备 (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "音频可视化" }, + "Audio volume control": { + "Audio volume control": "音量控制" + }, "Auth": { "Auth": "认证" }, @@ -306,7 +327,7 @@ "Auto": "自动" }, "Auto (Wide)": { - "Auto (Wide)": "" + "Auto (Wide)": "自动(宽角)" }, "Auto Location": { "Auto Location": "自动定位" @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "自动轮换" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "自动计算弹出窗口与顶栏边缘的距离。" - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "自动轮换文件夹中的壁纸" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "可用插件" }, - "Available Screens (": { - "Available Screens (": "可用显示器 (" + "Available Screens (%1)": { + "Available Screens (%1)": "可用屏幕(%1)" }, "BSSID": { "BSSID": "BSSID" @@ -390,7 +408,10 @@ "Backend": "后端" }, "Background Opacity": { - "Background Opacity": "" + "Background Opacity": "背景透明度" + }, + "Backlight device": { + "Backlight device": "背光设备" }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "均衡配色,强调重点(默认)" @@ -404,6 +425,9 @@ "Battery": { "Battery": "电池" }, + "Battery and power management": { + "Battery and power management": "电池与电源管理" + }, "Battery level and power management": { "Battery level and power management": "电池电量与电源管理" }, @@ -420,7 +444,16 @@ "Binds include added": "已添加绑定包含" }, "Bit Depth": { - "Bit Depth": "" + "Bit Depth": "位深" + }, + "Block notifications": { + "Block notifications": "屏蔽通知" + }, + "Blocked": { + "Blocked": "已屏蔽" + }, + "Blue light filter": { + "Blue light filter": "蓝光过滤器" }, "Bluetooth": { "Bluetooth": "蓝牙" @@ -428,8 +461,8 @@ "Bluetooth Settings": { "Bluetooth Settings": "蓝牙设置" }, - "Blur Layer": { - "Blur Layer": "模糊层" + "Bluetooth not available": { + "Bluetooth not available": "蓝牙不可用" }, "Blur on Overview": { "Blur on Overview": "在概览中模糊" @@ -453,10 +486,10 @@ "Bottom": "底部" }, "Bottom Left": { - "Bottom Left": "" + "Bottom Left": "左下角" }, "Bottom Right": { - "Bottom Right": "" + "Bottom Right": "右下角" }, "Bottom Section": { "Bottom Section": "底部区域" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "亮度" }, - "Brightness OSD": { - "Brightness OSD": "OSD亮度" + "Brightness Slider": { + "Brightness Slider": "亮度滑块" + }, + "Brightness control not available": { + "Brightness control not available": "亮度控制不可用" }, "Browse": { "Browse": "浏览" @@ -480,7 +516,7 @@ "CPU": "CPU" }, "CPU Graph": { - "CPU Graph": "" + "CPU Graph": "CPU图表" }, "CPU Temperature": { "CPU Temperature": "CPU 温度" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "CUPS 打印服务器" }, + "CUPS not available": { + "CUPS not available": "CUPS不可用" + }, "Camera": { "Camera": "摄像头" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "已取消" }, + "Cannot pair": { + "Cannot pair": "无法配对" + }, "Capabilities": { "Capabilities": "功能" }, @@ -524,14 +566,11 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "大小写指示灯" }, - "Caps Lock OSD": { - "Caps Lock OSD": "OSD大小写" - }, "Center Section": { "Center Section": "中间区域" }, "Center Single Column": { - "Center Single Column": "" + "Center Single Column": "居中单列" }, "Center Tiling": { "Center Tiling": "中心平铺" @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "更改状态栏外观" }, - "Changes:": { - "Changes:": "更改:" - }, "Channel": { "Channel": "频道" }, + "Charging": { + "Charging": "充电" + }, "Check for system updates": { "Check for system updates": "检查系统更新" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "设置启动器 Logo 颜色" }, + "Choose a color": { + "Choose a color": "选择颜色" + }, + "Choose colors from palette": { + "Choose colors from palette": "从调色板中选择颜色" + }, "Choose icon": { "Choose icon": "选择图标" }, @@ -569,9 +614,6 @@ "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "选择在 Dank Bar 启动器按钮上显示的 Logo" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "选择小组件轮廓强调色" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "设置通知弹窗的出现位置" }, @@ -579,7 +621,7 @@ "Choose where on-screen displays appear on screen": "选择OSD在屏幕上出现的位置" }, "Choose which displays show this widget": { - "Choose which displays show this widget": "" + "Choose which displays show this widget": "选择要在哪个显示器显示该小部件" }, "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "选择哪个显示器显示锁屏界面。其他显示器将显示纯色以保护 OLED 屏幕防烧伤。" @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "启动时清除" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "点击设置以创建 dms/binds.kdl,并添加至config.kdl。" + }, + "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 文件" }, @@ -633,10 +681,7 @@ "Clock": "时钟" }, "Clock Style": { - "Clock Style": "" - }, - "Clock show seconds": { - "Clock show seconds": "时钟显示秒数" + "Clock Style": "表盘样式" }, "Close": { "Close": "关闭" @@ -648,10 +693,10 @@ "Color": "颜色" }, "Color Gamut": { - "Color Gamut": "" + "Color Gamut": "色域" }, "Color Management": { - "Color Management": "" + "Color Management": "色彩管理" }, "Color Mode": { "Color Mode": "颜色模式" @@ -678,29 +723,11 @@ "Colorful mix of bright contrasting accents.": "色彩鲜明、对比强烈的配色。" }, "Column": { - "Column": "" + "Column": "列" }, "Command": { "Command": "命令" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "用于替代标准休眠流程的命令或脚本" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "用于替代标准锁定流程的命令或脚本" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "用于替代标准注销流程的命令或脚本" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "用于替代标准关机流程的命令或脚本" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "用于替代标准重启流程的命令或脚本" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "用于替代标准挂起流程的命令或脚本" - }, "Communication": { "Communication": "通讯" }, @@ -714,25 +741,25 @@ "Compositor": "合成器" }, "Compositor Settings": { - "Compositor Settings": "" + "Compositor Settings": "合成器设置" }, "Config Format": { - "Config Format": "" + "Config Format": "配置格式" }, "Config action: %1": { "Config action: %1": "配置操作:%1" }, "Config validation failed": { - "Config validation failed": "" + "Config validation failed": "配置验证失败" }, "Configuration": { - "Configuration": "" + "Configuration": "配置" }, "Configuration activated": { "Configuration activated": "已应用配置" }, "Configuration will be preserved when this display reconnects": { - "Configuration will be preserved when this display reconnects": "" + "Configuration will be preserved when this display reconnects": "当该显示器重新连接时,配置将被保留" }, "Configure a new printer": { "Configure a new printer": "配置新打印机" @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "连接设备中" }, + "Connecting...": { + "Connecting...": "连接中..." + }, "Contrast": { "Contrast": "对比度" }, @@ -783,20 +813,11 @@ "Control currently playing media": "控制当前播放的媒体" }, "Control workspaces and columns by scrolling on the bar": { - "Control workspaces and columns by scrolling on the bar": "" + "Control workspaces and columns by scrolling on the bar": "在状态栏上滚动时也会控制工作区和列" }, "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "控制所有弹出窗口、模态框及其内容层的透明度" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "控制所有弹出窗口、模态及其内容层(DankDash、设置、应用抽屉、控制中心等)的不透明度" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "控制 DankBar 中各个控件的不透明度" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "控制 DankBar 面板背景的不透明度" - }, "Cooldown": { "Cooldown": "冷却" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "当前天气及气温" }, + "Current: %1": { + "Current: %1": "当前:%1" + }, "Custom": { "Custom": "自定义" }, @@ -891,7 +915,7 @@ "Custom Transparency": "自定义透明度" }, "Custom...": { - "Custom...": "" + "Custom...": "自定义..." }, "Custom: ": { "Custom: ": "自定义: " @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "自定义电源菜单选项" }, + "DDC/CI monitor": { + "DDC/CI monitor": "DDC/CI监视器" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "演示模式 - 点击任意位置退出" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Dank Bar 字体缩放" - }, "DankSearch not available": { "DankSearch not available": "DankSearch 不可用" }, @@ -975,7 +999,7 @@ "Default": "默认" }, "Default Width (%)": { - "Default Width (%)": "" + "Default Width (%)": "默认宽度(%)" }, "Default selected action": { "Default selected action": "默认选项" @@ -1005,10 +1029,10 @@ "Description": "描述" }, "Desktop Clock": { - "Desktop Clock": "" + "Desktop Clock": "桌面时钟" }, "Desktop Widgets": { - "Desktop Widgets": "" + "Desktop Widgets": "桌面挂件" }, "Desktop background images": { "Desktop background images": "桌面壁纸" @@ -1019,11 +1043,14 @@ "Device": { "Device": "设备" }, + "Device connections": { + "Device connections": "设备连接" + }, "Device paired": { "Device paired": "设备已配对" }, "Digital": { - "Digital": "" + "Digital": "电子" }, "Disable Autoconnect": { "Disable Autoconnect": "禁用自动连接" @@ -1031,14 +1058,11 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "禁用剪切板管理器" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "禁用剪贴板所有权" - }, "Disable History Persistence": { "Disable History Persistence": "禁用历史持久化" }, "Disable Output": { - "Disable Output": "" + "Disable Output": "禁止输出" }, "Disable clipboard manager entirely (requires restart)": { "Disable clipboard manager entirely (requires restart)": "完全禁用剪贴板管理器(需要重启)" @@ -1046,8 +1070,11 @@ "Disabled": { "Disabled": "已关闭" }, + "Disabling WiFi...": { + "Disabling WiFi...": "正在禁用WiFi..." + }, "Discard": { - "Discard": "" + "Discard": "放弃" }, "Disconnect": { "Disconnect": "断开连接" @@ -1074,7 +1101,7 @@ "Display Name Format": "显示名称格式" }, "Display Settings": { - "Display Settings": "" + "Display Settings": "显示设置" }, "Display a dock with pinned and running applications": { "Display a dock with pinned and running applications": "显示带有固定和运行中应用程序的程序坞" @@ -1088,8 +1115,11 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "在工作区指示器中显示应用程序图标" }, + "Display brightness control": { + "Display brightness control": "显示亮度控制" + }, "Display configuration is not available. WLR output management protocol not supported.": { - "Display configuration is not available. WLR output management protocol not supported.": "" + "Display configuration is not available. WLR output management protocol not supported.": "显示配置不可用。WLR输出管理协议不受支持。" }, "Display currently focused application title": { "Display currently focused application title": "显示当前聚焦应用的标题" @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "在时钟中显示秒数" }, - "Display settings for ": { - "Display settings for ": "显示设置 " - }, "Display the power system menu": { "Display the power system menu": "显示电源菜单" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "域(可选)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "在Ko-fi上赞助" + "Don't Change": { + "Don't Change": "不要更改" + }, + "Don't Save": { + "Don't Save": "不要保存" }, "Door Open": { "Door Open": "打印机维护口已打开" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "带模糊效果的壁纸复本" }, - "Duration": { - "Duration": "持续时间" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "黄昏(天文暮光)" }, @@ -1182,7 +1209,7 @@ "Empty": "空" }, "Enable 10-bit color depth for wider color gamut and HDR support": { - "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位色深" }, "Enable Autoconnect": { "Enable Autoconnect": "启用自动连接" @@ -1190,11 +1217,8 @@ "Enable Bar": { "Enable Bar": "启用状态栏" }, - "Enable Border": { - "Enable Border": "启用边框" - }, "Enable Desktop Clock": { - "Enable Desktop Clock": "" + "Enable Desktop Clock": "启用桌面时钟" }, "Enable Do Not Disturb": { "Enable Do Not Disturb": "启用请勿打扰" @@ -1206,7 +1230,7 @@ "Enable Overview Overlay": "启用概览叠加层" }, "Enable System Monitor": { - "Enable System Monitor": "" + "Enable System Monitor": "启用系统监视器" }, "Enable System Sounds": { "Enable System Sounds": "启用系统声音" @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "启用 Wi-Fi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "启用小部件轮廓" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "启用合成器可定位的模糊层(命名空间:dms:blurwallpaper),需要手动配置 niri。" }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "已开启" }, + "Enabling WiFi...": { + "Enabling WiFi...": "正在启用WiFi..." + }, "End": { "End": "结束" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "输入文件名..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "输入启动前缀(例如 uwsm-app)" + }, "Enter passkey for ": { "Enter passkey for ": "输入密钥 " }, @@ -1299,7 +1326,10 @@ "Exclusive Zone Offset": "独占区域偏移量" }, "Experimental Feature": { - "Experimental Feature": "" + "Experimental Feature": "实验性质功能" + }, + "Exponential": { + "Exponential": "指数" }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切换 • F10: 帮助" @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "连接 VPN 失败" }, - "Failed to connect to ": { - "Failed to connect to ": "无法连接至 " + "Failed to connect to %1": { + "Failed to connect to %1": "连接至%1失败" }, "Failed to copy entry": { "Failed to copy entry": "无法复制项目" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "禁用任务接受失败" }, + "Failed to disable night mode": { + "Failed to disable night mode": "禁用夜间模式失败" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "断开 VPN 失败" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "无法断开 Wi-Fi 连接" }, + "Failed to enable IP location": { + "Failed to enable IP location": "启用IP位置失败" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "无法启用 Wi-Fi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "启用任务接受失败" }, + "Failed to enable night mode": { + "Failed to enable night mode": "启用夜间模式失败" + }, "Failed to hold job": { "Failed to hold job": "暂停任务失败" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "保存按键绑定失败" }, + "Failed to set brightness": { + "Failed to set brightness": "设置亮度失败" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "设置夜间模式位置失败" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "设置夜间模式计划失败" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "设置夜间模式温度失败" + }, "Failed to set profile image": { "Failed to set profile image": "无法设置个人资料图片" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "无法设置个人资料图片:" + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "设置用户头像:%1失败" }, - "Failed to start connection to ": { - "Failed to start connection to ": "无法启动连接至 " + "Failed to start connection to %1": { + "Failed to start connection to %1": "连接至%1失败" }, "Failed to update VPN": { "Failed to update VPN": "更新 VPN 失败" @@ -1431,7 +1482,7 @@ "Failed to update sharing": "更新共享失败" }, "Failed to write temp file for validation": { - "Failed to write temp file for validation": "" + "Failed to write temp file for validation": "未能写入临时文件进行验证" }, "Feels Like": { "Feels Like": "体感温度" @@ -1448,6 +1499,9 @@ "Files": { "Files": "文件" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "监视文件系统使用率" + }, "Find in Text": { "Find in Text": "查找文本" }, @@ -1467,19 +1521,19 @@ "Fixing...": "正在修复..." }, "Flipped": { - "Flipped": "" + "Flipped": "翻转" }, "Flipped 180°": { - "Flipped 180°": "" + "Flipped 180°": "翻转180°" }, "Flipped 270°": { - "Flipped 270°": "" + "Flipped 270°": "翻转270°" }, "Flipped 90°": { - "Flipped 90°": "" + "Flipped 90°": "翻转90°" }, "Focus at Startup": { - "Focus at Startup": "" + "Focus at Startup": "启动时聚焦" }, "Focused Window": { "Focused Window": "当前窗口" @@ -1500,13 +1554,13 @@ "Font Weight": "字体粗细" }, "Force HDR": { - "Force HDR": "" + "Force HDR": "强制HDR" }, "Force Kill Process": { "Force Kill Process": "强制结束进程" }, "Force Wide Color": { - "Force Wide Color": "" + "Force Wide Color": "强制广色域" }, "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "强制终端应用使用暗色" @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "取消保存" }, - "Forgot network ": { - "Forgot network ": "取消保存网络 " + "Forgot network %1": { + "Forgot network %1": "忘记网络%1" }, "Format Legend": { "Format Legend": "参考格式" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "GPU 温度" }, - "GPU temperature display": { - "GPU temperature display": "显示 GPU 温度" - }, "Games": { "Games": "游戏" }, @@ -1572,7 +1623,7 @@ "Gradually fade the screen before locking with a configurable grace period": "在锁定前通过可配置的宽限期逐渐淡出屏幕" }, "Graph Time Range": { - "Graph Time Range": "" + "Graph Time Range": "图表时间范围" }, "Graphics": { "Graphics": "图形" @@ -1590,13 +1641,13 @@ "Group multiple windows of the same app together with a window count indicator": "将同一应用的多个窗口合并显示,并标注窗口数量" }, "HDR (EDID)": { - "HDR (EDID)": "" + "HDR (EDID)": "HDR(EDID)" }, "HDR Tone Mapping": { - "HDR Tone Mapping": "" + "HDR Tone Mapping": "HDR色调映射" }, "HDR mode is experimental. Verify your monitor supports HDR before enabling.": { - "HDR mode is experimental. Verify your monitor supports HDR before enabling.": "" + "HDR mode is experimental. Verify your monitor supports HDR before enabling.": "HDR模式仍处实验性质。请先确认你的显示器支持HDR再启用。" }, "HSV": { "HSV": "色相、饱和度、明度" @@ -1608,7 +1659,7 @@ "Held": "已暂停" }, "Help": { - "Help": "" + "Help": "帮助" }, "Hex": { "Hex": "十六进制" @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "隐藏延迟" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "隐藏延迟 (ms)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "高对比度配色,在视觉上营造强烈对比。" - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "高保真配色,保留原始色调。" }, @@ -1650,7 +1695,7 @@ "Hold to confirm (%1s)": "按住以确认 (%1s)" }, "Hot Corners": { - "Hot Corners": "" + "Hot Corners": "热区" }, "Hotkey overlay title (optional)": { "Hotkey overlay title (optional)": "热键叠加层标题(可选)" @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "每小时预报" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "需要按住按钮多长时间来确认操作" - }, "How often to change wallpaper": { "How often to change wallpaper": "壁纸轮换频率" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "待机抑制器" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "OSD空闲抑制" - }, "Idle Settings": { "Idle Settings": "待机设置" }, @@ -1722,7 +1761,7 @@ "Include Transitions": "包含过渡效果" }, "Incompatible Plugins Loaded": { - "Incompatible Plugins Loaded": "" + "Incompatible Plugins Loaded": "加载了不兼容的插件" }, "Incorrect password": { "Incorrect password": "密码错误" @@ -1737,14 +1776,14 @@ "Individual bar configuration": "单栏配置" }, "Inherit": { - "Inherit": "" - }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "在播放音频或视频时,禁止待机超时" + "Inherit": "继承" }, "Input Devices": { "Input Devices": "输入设备" }, + "Input Volume Slider": { + "Input Volume Slider": "输入音量滑块" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "从 DMS 插件库安装插件" }, @@ -1761,7 +1800,7 @@ "Interval": "轮换间隔" }, "Invalid configuration": { - "Invalid configuration": "" + "Invalid configuration": "无效配置" }, "Invert on mode change": { "Invert on mode change": "切换模式时反色" @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "LED设备" + }, "Last launched %1": { "Last launched %1": "上次启动于 %1" }, @@ -1836,7 +1878,7 @@ "Layout": "布局" }, "Layout Overrides": { - "Layout Overrides": "" + "Layout Overrides": "布局覆盖" }, "Left": { "Left": "左" @@ -1847,15 +1889,21 @@ "Light Mode": { "Light Mode": "浅色模式" }, + "Linear": { + "Linear": "线性" + }, "Lines: %1": { "Lines: %1": "行数: %1" }, "List": { - "List": "" + "List": "列表" }, "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "活力十足的配色,带有高饱和点缀色。" }, + "Loading codecs...": { + "Loading codecs...": "加载编解码器..." + }, "Loading keybinds...": { "Loading keybinds...": "正在加载按键绑定..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "至多可管理4个独立的状态栏配置。每个状态栏都有自己的位置、控件、样式和显示布局。" }, + "Management": { + "Management": "管理" + }, "Manual Coordinates": { "Manual Coordinates": "手动设置坐标" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Matugen 配色方案" }, - "Matugen Settings": { - "Matugen Settings": "Matugen 设置" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Matugen 目标显示器" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "媒体音量" }, - "Media Volume OSD": { - "Media Volume OSD": "媒体音量OSD" - }, "Medium": { "Medium": "中" }, @@ -2019,7 +2064,7 @@ "Memory": "内存" }, "Memory Graph": { - "Memory Graph": "" + "Memory Graph": "内存图表" }, "Memory Usage": { "Memory Usage": "内存占用" @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "麦克风静音" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "OSD麦克风静音" + "Microphone settings": { + "Microphone settings": "麦克风设置" + }, + "Microphone volume control": { + "Microphone volume control": "麦克风音量控制" }, "Middle Section": { "Middle Section": "中间区域" @@ -2051,17 +2099,14 @@ "Mode:": { "Mode:": "模式:" }, - "Mode: ": { - "Mode: ": "模式: " - }, "Model": { "Model": "型号" }, "Modified": { - "Modified": "" + "Modified": "改装" }, "Monitor Configuration": { - "Monitor Configuration": "" + "Monitor Configuration": "监视器配置" }, "Monitor whose wallpaper drives dynamic theming colors": { "Monitor whose wallpaper drives dynamic theming colors": "监视使用动态主题色的壁纸" @@ -2079,7 +2124,7 @@ "Mount": "挂载" }, "Move Widget": { - "Move Widget": "" + "Move Widget": "移动挂件" }, "Moving to Paused": { "Moving to Paused": "正在暂停打印机" @@ -2103,7 +2148,7 @@ "Network": "网络" }, "Network Graph": { - "Network Graph": "" + "Network Graph": "网络图表" }, "Network Info": { "Network Info": "网络信息" @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "网络信息" }, - "Network Settings": { - "Network Settings": "网络设置" - }, "Network Speed Monitor": { "Network Speed Monitor": "实时网速显示" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "无适配器" }, + "No battery": { + "No battery": "无电池" + }, + "No brightness devices available": { + "No brightness devices available": "无可用亮度设备" + }, "No changes": { "No changes": "无更改" }, @@ -2198,11 +2246,17 @@ "No devices found": { "No devices found": "未找到设备" }, + "No disk data": { + "No disk data": "无磁盘数据" + }, + "No disk data available": { + "No disk data available": "无可用磁盘数据" + }, "No drivers found": { "No drivers found": "未找到驱动程序" }, "No features enabled": { - "No features enabled": "" + "No features enabled": "未启用功能" }, "No files found": { "No files found": "未找到文件" @@ -2232,13 +2286,13 @@ "No printers found": "未找到打印机" }, "No variants created. Click Add to create a new monitor widget.": { - "No variants created. Click Add to create a new monitor widget.": "" + "No variants created. Click Add to create a new monitor widget.": "没有任何变体。点击添加以创建新的显示器小部件。" }, "None": { "None": "无" }, "Normal": { - "Normal": "" + "Normal": "正常" }, "Normal Font": { "Normal Font": "普通字体" @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "标准通知" }, + "Not available": { + "Not available": "不可用" + }, "Not connected": { "Not connected": "未连接" }, @@ -2292,7 +2349,7 @@ "OSD Position": "OSD位置" }, "Off": { - "Off": "" + "Off": "关闭" }, "Office": { "Office": "办公" @@ -2339,15 +2396,6 @@ "Other": { "Other": "其他" }, - "Outline Color": { - "Outline Color": "轮廓颜色" - }, - "Outline Opacity": { - "Outline Opacity": "轮廓不透明度" - }, - "Outline Thickness": { - "Outline Thickness": "轮廓厚度" - }, "Output Area Almost Full": { "Output Area Almost Full": "出纸盒即将饱和" }, @@ -2358,7 +2406,7 @@ "Output Tray Missing": "未检测到出纸盒" }, "Outputs Include Missing": { - "Outputs Include Missing": "" + "Outputs Include Missing": "输出包括缺失" }, "Overridden by config": { "Overridden by config": "被配置覆盖" @@ -2367,7 +2415,7 @@ "Override": "覆盖" }, "Override global layout settings for this output": { - "Override global layout settings for this output": "" + "Override global layout settings for this output": "为此输出覆盖全局布局设置" }, "Overrides": { "Overrides": "覆盖" @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "配对蓝牙设备" }, + "Paired": { + "Paired": "已配对" + }, "Pairing failed": { "Pairing failed": "配对失败" }, + "Pairing...": { + "Pairing...": "配对中..." + }, "Passkey:": { "Passkey:": "密钥:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "个性化" }, + "Pin": { + "Pin": "固定" + }, "Pin to Dock": { "Pin to Dock": "固定到程序坞" }, + "Pinned": { + "Pinned": "已固定" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "此处为插件目录,每个插件应带有一个 plugin.json 描述文件。" }, - "Place plugins in": { - "Place plugins in": "请将插件放置于" + "Place plugins in %1": { + "Place plugins in %1": "将插件放在%1" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "有新通知时播放声音" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "连接电源" }, + "Plugged in": { + "Plugged in": "插件已置入" + }, + "Plugin": { + "Plugin": "插件" + }, "Plugin Directory": { "Plugin Directory": "插件目录" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "插件" }, - "Plugins:": { - "Plugins:": "插件:" - }, "Pointer": { "Pointer": "指示器" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "位置" }, - "Position: ": { - "Position: ": "位置: " - }, "Possible Override Conflicts": { "Possible Override Conflicts": "可能的覆盖冲突" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "电源配置性能下降" }, - "Power Profile OSD": { - "Power Profile OSD": "OSD电源配置" + "Power profile management available": { + "Power profile management available": "电源配置文件管理可用" }, "Power source": { "Power source": "电源" @@ -2529,7 +2589,7 @@ "Preference": "偏好设置" }, "Preset Widths (%)": { - "Preset Widths (%)": "" + "Preset Widths (%)": "预设宽度(%)" }, "Press key...": { "Press key...": "按键..." @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "气压" }, - "Prevent idle for media": { - "Prevent idle for media": "防止媒体播放时进入待机状态" - }, "Prevent screen timeout": { "Prevent screen timeout": "防止屏幕超时" }, "Primary": { "Primary": "主题色" }, + "Print Server Management": { + "Print Server Management": "打印服务器管理" + }, "Print Server not available": { "Print Server not available": "打印服务不可用" }, @@ -2580,7 +2640,7 @@ "Process": "进程" }, "Process Count": { - "Process Count": "" + "Process Count": "进程计数" }, "Processing": { "Processing": "处理中" @@ -2651,38 +2711,35 @@ "Report": { "Report": "报告" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "关机、重启、挂起、休眠和注销前请求确认" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "要求按住按钮/键以确认关机、重启、休眠、挂起和注销" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "需要dgop工具" + }, + "Requires DMS %1": { + "Requires DMS %1": "需要DMS %1" }, "Requires DWL compositor": { "Requires DWL compositor": "需要 DWL 合成器" }, + "Requires night mode support": { + "Requires night mode support": "需要夜间模式支持" + }, "Reset": { "Reset": "重置" }, "Reset Position": { - "Reset Position": "" + "Reset Position": "重置位置" }, "Reset Size": { - "Reset Size": "" + "Reset Size": "重置尺寸" }, "Resize Widget": { - "Resize Widget": "" + "Resize Widget": "调整挂件大小" }, "Resolution & Refresh": { - "Resolution & Refresh": "" - }, - "Resources": { - "Resources": "资源" - }, - "Restart": { - "Restart": "重启" + "Resolution & Refresh": "分辨率与刷新率" }, "Restart DMS": { "Restart DMS": "重启 DMS" @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "恢复: " }, - "Reverting in:": { - "Reverting in:": "恢复于:" - }, "Right": { "Right": "右侧" }, @@ -2709,14 +2763,17 @@ "Right Tiling": "右侧平铺" }, "Right-click and drag anywhere on the widget": { - "Right-click and drag anywhere on the widget": "" + "Right-click and drag anywhere on the widget": "在挂件上右键点击并拖拽任意位置" }, "Right-click and drag the bottom-right corner": { - "Right-click and drag the bottom-right corner": "" + "Right-click and drag the bottom-right corner": "右键点击并拖拽右下角" }, "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "点击 bar 上小部件以轮换" }, + "Root Filesystem": { + "Root Filesystem": "根文件系统" + }, "Run DMS Templates": { "Run DMS Templates": "运行DMS模板" }, @@ -2739,10 +2796,10 @@ "Running Apps Settings": "活动应用设置" }, "SDR Brightness": { - "SDR Brightness": "" + "SDR Brightness": "SDR亮度" }, "SDR Saturation": { - "SDR Saturation": "" + "SDR Saturation": "SDR饱和度" }, "Save": { "Save": "保存" @@ -2760,7 +2817,7 @@ "Saved Configurations": "已保存的配置" }, "Scale": { - "Scale": "" + "Scale": "缩放" }, "Scale DankBar font sizes independently": { "Scale DankBar font sizes independently": "独立调整 Dank Bar 字体缩放" @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "扫描" }, + "Scanning": { + "Scanning": "扫描中" + }, "Scanning...": { "Scanning...": "正在扫描..." }, @@ -2781,11 +2841,14 @@ "Screen sharing": "屏幕分享" }, "Scroll Wheel": { - "Scroll Wheel": "" + "Scroll Wheel": "滚动滚轮" }, "Scroll song title": { "Scroll song title": "滚动歌曲标题" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "如果在挂件中标题不适配,则可以滚动标题" + }, "Scrolling": { "Scrolling": "滚动" }, @@ -2814,7 +2877,7 @@ "Searching...": "检索中..." }, "Secondary": { - "Secondary": "" + "Secondary": "次要" }, "Secured": { "Secured": "安全" @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "从调色板中选择颜色,或使用自定义滑块" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "选择预设值或拖动滑块进行自定义" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "选择要添加的小组件。如果需要,您可以添加同一小组件的多个实例。" }, @@ -2909,41 +2969,41 @@ "Shortcuts": { "Shortcuts": "快捷键" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "快捷键(%1)" + }, "Show All Tags": { "Show All Tags": "显示所有标签" }, "Show CPU": { - "Show CPU": "" + "Show CPU": "显示CPU" }, "Show CPU Graph": { - "Show CPU Graph": "" + "Show CPU Graph": "显示CPU图表" }, "Show CPU Temp": { - "Show CPU Temp": "" - }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "显示电源操作确认弹窗" + "Show CPU Temp": "显示CPU温度" }, "Show Date": { - "Show Date": "" + "Show Date": "显示日期" }, "Show Disk": { - "Show Disk": "" + "Show Disk": "显示磁盘" }, "Show Dock": { "Show Dock": "显示程序坞" }, "Show GPU Temperature": { - "Show GPU Temperature": "" + "Show GPU Temperature": "显示GPU温度" }, "Show Header": { - "Show Header": "" + "Show Header": "显示表头" }, "Show Hibernate": { "Show Hibernate": "显示休眠" }, "Show Hour Numbers": { - "Show Hour Numbers": "" + "Show Hour Numbers": "显示小时数" }, "Show Line Numbers": { "Show Line Numbers": "显示行号" @@ -2955,23 +3015,20 @@ "Show Log Out": "显示注销" }, "Show Memory": { - "Show Memory": "" + "Show Memory": "显示内存" }, "Show Memory Graph": { - "Show Memory Graph": "" + "Show Memory Graph": "显示内存图表" }, "Show Network": { - "Show Network": "" + "Show Network": "显示网络" }, "Show Network Graph": { - "Show Network Graph": "" + "Show Network Graph": "显示网络图表" }, "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "仅显示占用工作区" }, - "Show Power Actions": { - "Show Power Actions": "显示电源操作" - }, "Show Power Off": { "Show Power Off": "显示关机" }, @@ -2988,7 +3045,7 @@ "Show Suspend": "显示挂起" }, "Show Top Processes": { - "Show Top Processes": "" + "Show Top Processes": "显示占用多的进程" }, "Show Workspace Apps": { "Show Workspace Apps": "显示工作区内应用" @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "显示密码" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "在锁屏界面上显示电源、重新启动和注销按钮" - }, - "Show seconds": { - "Show seconds": "显示秒数" - }, "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "在顶栏和控制中心显示天气信息" }, @@ -3093,13 +3144,13 @@ "Sizing": "大小调整" }, "Some plugins require a newer version of DMS:": { - "Some plugins require a newer version of DMS:": "" + "Some plugins require a newer version of DMS:": "有些插件需要更新版的 DMS:" }, "Sort Alphabetically": { "Sort Alphabetically": "按字母顺序排序" }, "Sort By": { - "Sort By": "" + "Sort By": "按顺序排列" }, "Sorting & Layout": { "Sorting & Layout": "排序与布局" @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "间距" }, + "Speaker settings": { + "Speaker settings": "扬声器设置" + }, "Speed": { "Speed": "速度" }, @@ -3126,7 +3180,7 @@ "Square Corners": "直角边框" }, "Stacked": { - "Stacked": "" + "Stacked": "堆叠" }, "Start": { "Start": "开始" @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "日落" }, - "Support Development": { - "Support Development": "支持开发" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "启用时抑制通知弹出窗口" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "系统更新" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "带有小组件和系统信息的状态栏" - }, "System notification area icons": { "System notification area icons": "系统通知区域图标" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "系统声音不可用。请安装 canberra-gtk-play 以获得声音支持。" }, + "System theme toggle": { + "System theme toggle": "切换系统主题" + }, "System toast notifications": { "System toast notifications": "系统弹出式通知" }, - "System tray icons": { - "System tray icons": "系统托盘图标" - }, "System update custom command": { "System update custom command": "自定义系统更新命令" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "文本" }, + "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以使用此功能。" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "未设置 DMS_SOCKET 环境变量或套接字不可用,无法使用自动插件管理。" }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "时间格式" }, + "Time remaining: %1": { + "Time remaining: %1": "剩余时间:%1" + }, + "Time until full: %1": { + "Time until full: %1": "充满时间:%1" + }, "Timed Out": { "Timed Out": "超时" }, @@ -3348,13 +3405,13 @@ "Top Bar Format": "顶栏格式" }, "Top Left": { - "Top Left": "" + "Top Left": "左上" }, "Top Processes": { - "Top Processes": "" + "Top Processes": "占用多的进程" }, "Top Right": { - "Top Right": "" + "Top Right": "右上" }, "Top Section": { "Top Section": "顶部区域" @@ -3363,7 +3420,7 @@ "Total Jobs": "总任务数" }, "Transform": { - "Transform": "" + "Transform": "变换" }, "Transition Effect": { "Transition Effect": "过渡效果" @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "未知" }, + "Unknown Config": { + "Unknown Config": "未知设置" + }, + "Unknown Device": { + "Unknown Device": "未知设备" + }, + "Unknown Monitor": { + "Unknown Monitor": "未知监视器" + }, + "Unknown Network": { + "Unknown Network": "未知网络" + }, "Unpin from Dock": { "Unpin from Dock": "从程序坞取消固定" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "已使用" }, + "User": { + "User": "用户" + }, "Username": { "Username": "用户名" }, @@ -3479,35 +3551,38 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 配置已更新" }, + "VPN connections": { + "VPN connections": "VPN连接" + }, "VPN deleted": { "VPN deleted": "VPN 已删除" }, - "VPN imported: ": { - "VPN imported: ": "VPN 已导入:" + "VPN imported: %1": { + "VPN imported: %1": "已导入VPN:%1" + }, + "VPN not available": { + "VPN not available": "VPN不可用" }, "VPN status and quick connect": { "VPN status and quick connect": "VPN 状态与快速连接" }, "VRR": { - "VRR": "" + "VRR": "VRR" }, "VRR On-Demand": { - "VRR On-Demand": "" + "VRR On-Demand": "按需VRR" }, "VRR activates only when applications request it": { - "VRR activates only when applications request it": "" - }, - "VRR: ": { - "VRR: ": "可变刷新率: " + "VRR activates only when applications request it": "只有当应用程序请求时,VRR才会被激活" }, "Variable Refresh Rate": { - "Variable Refresh Rate": "" + "Variable Refresh Rate": "可变刷新率" }, "Variant created - expand to configure": { - "Variant created - expand to configure": "" + "Variant created - expand to configure": "已创建变体 - 展开以配置" }, "Variant removed": { - "Variant removed": "" + "Variant removed": "已移除变体" }, "Version": { "Version": "版本" @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "音量变化" }, - "Volume OSD": { - "Volume OSD": "OSD音量" + "Volume Slider": { + "Volume Slider": "音量滑块" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "音量、亮度和其他系统屏幕显示" @@ -3575,22 +3650,22 @@ "Weather Widget": { "Weather Widget": "天气小组件" }, - "Website:": { - "Website:": "网站:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "启用后,应用按字母顺序排序;禁用则按使用频率排序" }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "启用后,在 Niri 概览模式下输入时会显示启动器叠加层。如果您不希望在 Niri 概览模式下输入时有启动器,或者想在概览中使用其他启动器,请禁用此选项。" - }, "When updater widget is used, then hide it if no update found": { - "Hide Updater Widget": "", - "When updater widget is used, then hide it if no update found": "" + "Hide Updater Widget": "隐藏更新器小挂件", + "When updater widget is used, then hide it if no update found": "当使用更新器小挂件时,如果找不到更新就隐藏它" }, "Wi-Fi Password": { "Wi-Fi Password": "Wi-Fi 密码" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "Wi-Fi与以太网连接" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "Wi-Fi不可用" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3607,7 +3682,7 @@ "WiFi is off": "Wi-Fi 已关闭" }, "Wide (BT2020)": { - "Wide (BT2020)": "" + "Wide (BT2020)": "广色域(BT2020)" }, "Widget Background Color": { "Widget Background Color": "小挂件背景色" @@ -3628,10 +3703,14 @@ "Widget Transparency": "小挂件透明度" }, "Widget Variants": { - "Widget Variants": "" + "Widget Variants": "挂件变体" }, - "Widgets": { - "Widgets": "小组件" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "风速" @@ -3640,7 +3719,7 @@ "Wind Speed": "风速" }, "Window Gaps (px)": { - "Window Gaps (px)": "" + "Window Gaps (px)": "窗口间隙(像素)" }, "Workspace": { "Workspace": "工作区" @@ -3664,10 +3743,10 @@ "Workspaces & Widgets": "工作区与小组件" }, "X Axis": { - "X Axis": "" + "X Axis": "X轴" }, "Y Axis": { - "Y Axis": "" + "Y Axis": "Y轴" }, "Yes": { "Yes": "是" @@ -3696,21 +3775,27 @@ "days": { "days": "天" }, + "dgop not available": { + "dgop not available": "dgop不可用" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl 存在,但未包含在 config.kdl 中。除非修复此问题,否则自定义键绑定将无法工作。" }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl 未包含在 config.kdl 中。在修复此问题之前,自定义按键绑定将无法工作。" - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 现已包含在 config.kdl 中" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/输出配置存在,但不包含在你的合成器配置里。显示更改不会保留。" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "例如:firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "例如:focus-workspace 3, resize-column -10" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "例如:通知发送 'Hello' && sleep 1" + }, "events": { "events": "事件" }, @@ -3742,7 +3827,7 @@ "Settings": "设置" }, "settings_displays": { - "Widgets": "" + "Widgets": "挂件" }, "sysmon window title": { "System Monitor": "系统监视器" diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index 3f707f08..f685e83d 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -149,8 +149,11 @@ "Active Lock Screen Monitor": { "Active Lock Screen Monitor": "活動鎖定畫面監視器" }, - "Active: ": { - "Active: ": "啟用:" + "Active: %1": { + "Active: %1": "" + }, + "Active: %1 +%2": { + "Active: %1 +%2": "" }, "Active: None": { "Active: None": "啟用:無" @@ -176,6 +179,9 @@ "Add a border around the dock": { "Add a border around the dock": "在 Dock 周圍新增邊框" }, + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": { + "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "" + }, "Adjust the number of columns in grid view mode.": { "Adjust the number of columns in grid view mode.": "調整網格檢視模式中的欄數。" }, @@ -209,6 +215,12 @@ "Always show a minimum of 3 workspaces, even if fewer are available": { "Always show a minimum of 3 workspaces, even if fewer are available": "始終顯示至少 3 個工作區,即使可用的工作區較少" }, + "Always show the dock when niri's overview is open": { + "Always show the dock when niri's overview is open": "" + }, + "Always show when there's only one connected display": { + "Always show when there's only one connected display": "" + }, "Amount": { "Amount": "" }, @@ -266,6 +278,12 @@ "Audio Devices": { "Audio Devices": "音訊設備" }, + "Audio Input": { + "Audio Input": "" + }, + "Audio Output": { + "Audio Output": "" + }, "Audio Output Devices (": { "Audio Output Devices (": "音訊輸出設備 (" }, @@ -275,6 +293,9 @@ "Audio Visualizer": { "Audio Visualizer": "" }, + "Audio volume control": { + "Audio volume control": "" + }, "Auth": { "Auth": "認證" }, @@ -344,9 +365,6 @@ "Automatic Cycling": { "Automatic Cycling": "桌布自動輪替" }, - "Automatically calculate popup distance from bar edge.": { - "Automatically calculate popup distance from bar edge.": "自動計算彈出框與資訊欄的距離。" - }, "Automatically cycle through wallpapers in the same folder": { "Automatically cycle through wallpapers in the same folder": "自動輪替更換同一資料夾中的桌布" }, @@ -377,8 +395,8 @@ "Available Plugins": { "Available Plugins": "可用的插件" }, - "Available Screens (": { - "Available Screens (": "可用的螢幕 (" + "Available Screens (%1)": { + "Available Screens (%1)": "" }, "BSSID": { "BSSID": "BSSID" @@ -392,6 +410,9 @@ "Background Opacity": { "Background Opacity": "" }, + "Backlight device": { + "Backlight device": "" + }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "顏色平衡且帶有重點點綴的調色板 (預設)。" }, @@ -404,6 +425,9 @@ "Battery": { "Battery": "電池" }, + "Battery and power management": { + "Battery and power management": "" + }, "Battery level and power management": { "Battery level and power management": "電量與電源管理" }, @@ -422,14 +446,23 @@ "Bit Depth": { "Bit Depth": "" }, + "Block notifications": { + "Block notifications": "" + }, + "Blocked": { + "Blocked": "" + }, + "Blue light filter": { + "Blue light filter": "" + }, "Bluetooth": { "Bluetooth": "藍牙" }, "Bluetooth Settings": { "Bluetooth Settings": "藍芽設定" }, - "Blur Layer": { - "Blur Layer": "模糊圖層" + "Bluetooth not available": { + "Bluetooth not available": "" }, "Blur on Overview": { "Blur on Overview": "模糊概覽" @@ -467,8 +500,11 @@ "Brightness": { "Brightness": "亮度" }, - "Brightness OSD": { - "Brightness OSD": "亮度 OSD" + "Brightness Slider": { + "Brightness Slider": "" + }, + "Brightness control not available": { + "Brightness control not available": "" }, "Browse": { "Browse": "瀏覽" @@ -503,6 +539,9 @@ "CUPS Print Server": { "CUPS Print Server": "CUPS 列印伺服器" }, + "CUPS not available": { + "CUPS not available": "" + }, "Camera": { "Camera": "相機" }, @@ -512,6 +551,9 @@ "Canceled": { "Canceled": "已取消" }, + "Cannot pair": { + "Cannot pair": "" + }, "Capabilities": { "Capabilities": "功能" }, @@ -524,9 +566,6 @@ "Caps Lock Indicator": { "Caps Lock Indicator": "大小寫鎖定指示器" }, - "Caps Lock OSD": { - "Caps Lock OSD": "大小寫鎖定 OSD" - }, "Center Section": { "Center Section": "中間區塊" }, @@ -542,12 +581,12 @@ "Change bar appearance": { "Change bar appearance": "變更欄外觀" }, - "Changes:": { - "Changes:": "變更:" - }, "Channel": { "Channel": "頻道" }, + "Charging": { + "Charging": "" + }, "Check for system updates": { "Check for system updates": "檢查系統更新" }, @@ -557,6 +596,12 @@ "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "選擇啟動器 Logo 顏色" }, + "Choose a color": { + "Choose a color": "" + }, + "Choose colors from palette": { + "Choose colors from palette": "" + }, "Choose icon": { "Choose icon": "選擇圖示" }, @@ -569,9 +614,6 @@ "Choose the logo displayed on the launcher button in DankBar": { "Choose the logo displayed on the launcher button in DankBar": "選擇 DankBar 啟動器按鈕上顯示的 logo" }, - "Choose the widget outline accent color": { - "Choose the widget outline accent color": "選擇部件外框的強調色" - }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "選擇通知彈出視窗在螢幕上出現的位置" }, @@ -605,6 +647,12 @@ "Clear at Startup": { "Clear at Startup": "" }, + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { + "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "" + }, + "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" }, @@ -635,9 +683,6 @@ "Clock Style": { "Clock Style": "" }, - "Clock show seconds": { - "Clock show seconds": "時鐘顯示秒" - }, "Close": { "Close": "關閉" }, @@ -683,24 +728,6 @@ "Command": { "Command": "指令" }, - "Command or script to run instead of the standard hibernate procedure": { - "Command or script to run instead of the standard hibernate procedure": "代替標準休眠的指令或腳本" - }, - "Command or script to run instead of the standard lock procedure": { - "Command or script to run instead of the standard lock procedure": "代替標準鎖定程式的指令或腳本" - }, - "Command or script to run instead of the standard logout procedure": { - "Command or script to run instead of the standard logout procedure": "代替標準登出程式的指令或腳本" - }, - "Command or script to run instead of the standard power off procedure": { - "Command or script to run instead of the standard power off procedure": "代替標準關機的指令或腳本" - }, - "Command or script to run instead of the standard reboot procedure": { - "Command or script to run instead of the standard reboot procedure": "代替標準重新啟動的指令或腳本" - }, - "Command or script to run instead of the standard suspend procedure": { - "Command or script to run instead of the standard suspend procedure": "代替標準暫停的指令或腳本" - }, "Communication": { "Communication": "通訊" }, @@ -773,6 +800,9 @@ "Connecting to Device": { "Connecting to Device": "正在連接裝置" }, + "Connecting...": { + "Connecting...": "" + }, "Contrast": { "Contrast": "對比" }, @@ -788,15 +818,6 @@ "Controls opacity of all popouts, modals, and their content layers": { "Controls opacity of all popouts, modals, and their content layers": "控制所有彈出視窗、模態視窗及其內容層的透明度" }, - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": { - "Controls opacity of all popouts, modals, and their content layers (DankDash, Settings, App Drawer, Control Center, etc.)": "控制所有彈出式介面、模態對話框及其內容層級的不透明度 (適用於 DankDash、設定、應用程式抽屜、控制中心等)" - }, - "Controls opacity of individual widgets inside DankBar": { - "Controls opacity of individual widgets inside DankBar": "控制 DankBar 內部各別部件的不透明度" - }, - "Controls opacity of the DankBar panel background": { - "Controls opacity of the DankBar panel background": "控制 DankBar 面板背景的不透明度" - }, "Cooldown": { "Cooldown": "" }, @@ -857,6 +878,9 @@ "Current weather conditions and temperature": { "Current weather conditions and temperature": "目前天氣狀況和溫度" }, + "Current: %1": { + "Current: %1": "" + }, "Custom": { "Custom": "自訂" }, @@ -902,6 +926,9 @@ "Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": "自訂電源選單中顯示的動作" }, + "DDC/CI monitor": { + "DDC/CI monitor": "" + }, "DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": "演示模式 - 點擊任意處關閉" }, @@ -935,9 +962,6 @@ "Dank Bar": { "Dank Bar": "Dank Bar" }, - "DankBar Font Scale": { - "DankBar Font Scale": "Dank Bar 字體縮放" - }, "DankSearch not available": { "DankSearch not available": "DankSearch 不可用" }, @@ -1019,6 +1043,9 @@ "Device": { "Device": "設備" }, + "Device connections": { + "Device connections": "" + }, "Device paired": { "Device paired": "裝置已配對" }, @@ -1031,9 +1058,6 @@ "Disable Clipboard Manager": { "Disable Clipboard Manager": "" }, - "Disable Clipboard Ownership": { - "Disable Clipboard Ownership": "" - }, "Disable History Persistence": { "Disable History Persistence": "" }, @@ -1046,6 +1070,9 @@ "Disabled": { "Disabled": "已停用" }, + "Disabling WiFi...": { + "Disabling WiFi...": "" + }, "Discard": { "Discard": "" }, @@ -1088,6 +1115,9 @@ "Display application icons in workspace indicators": { "Display application icons in workspace indicators": "在工作區標籤中顯示應用程式圖標" }, + "Display brightness control": { + "Display brightness control": "" + }, "Display configuration is not available. WLR output management protocol not supported.": { "Display configuration is not available. WLR output management protocol not supported.": "" }, @@ -1103,9 +1133,6 @@ "Display seconds in the clock": { "Display seconds in the clock": "在時鐘中顯示秒數" }, - "Display settings for ": { - "Display settings for ": "顯示設定適用於" - }, "Display the power system menu": { "Display the power system menu": "" }, @@ -1145,8 +1172,11 @@ "Domain (optional)": { "Domain (optional)": "網域 (可選)" }, - "Donate on Ko-fi": { - "Donate on Ko-fi": "在 Ko-fi 上捐款" + "Don't Change": { + "Don't Change": "" + }, + "Don't Save": { + "Don't Save": "" }, "Door Open": { "Door Open": "門開啟" @@ -1160,9 +1190,6 @@ "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "模糊化重複桌布" }, - "Duration": { - "Duration": "持續時間" - }, "Dusk (Astronomical Twilight)": { "Dusk (Astronomical Twilight)": "黃昏 (天文暮光)" }, @@ -1190,9 +1217,6 @@ "Enable Bar": { "Enable Bar": "啟用欄" }, - "Enable Border": { - "Enable Border": "" - }, "Enable Desktop Clock": { "Enable Desktop Clock": "" }, @@ -1217,9 +1241,6 @@ "Enable WiFi": { "Enable WiFi": "啟用 WiFi" }, - "Enable Widget Outline": { - "Enable Widget Outline": "" - }, "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "啟用合成器可定位的模糊圖層(命名空間:dms:blurwallpaper)。需要手動配置 niri。" }, @@ -1250,6 +1271,9 @@ "Enabled": { "Enabled": "已啟用" }, + "Enabling WiFi...": { + "Enabling WiFi...": "" + }, "End": { "End": "結束" }, @@ -1277,6 +1301,9 @@ "Enter filename...": { "Enter filename...": "請輸檔案名稱..." }, + "Enter launch prefix (e.g., 'uwsm-app')": { + "Enter launch prefix (e.g., 'uwsm-app')": "" + }, "Enter passkey for ": { "Enter passkey for ": "請輸入密碼給 " }, @@ -1301,6 +1328,9 @@ "Experimental Feature": { "Experimental Feature": "" }, + "Exponential": { + "Exponential": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切換 • F10: 幫助" }, @@ -1328,8 +1358,8 @@ "Failed to connect VPN": { "Failed to connect VPN": "VPN 連線失敗" }, - "Failed to connect to ": { - "Failed to connect to ": "無法連線到 " + "Failed to connect to %1": { + "Failed to connect to %1": "" }, "Failed to copy entry": { "Failed to copy entry": "" @@ -1349,6 +1379,9 @@ "Failed to disable job acceptance": { "Failed to disable job acceptance": "無法停用工作接受" }, + "Failed to disable night mode": { + "Failed to disable night mode": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "無法斷開 VPN" }, @@ -1358,12 +1391,18 @@ "Failed to disconnect WiFi": { "Failed to disconnect WiFi": "無法斷開 WiFi" }, + "Failed to enable IP location": { + "Failed to enable IP location": "" + }, "Failed to enable WiFi": { "Failed to enable WiFi": "無法啟用 WiFi" }, "Failed to enable job acceptance": { "Failed to enable job acceptance": "無法啟用工作接受" }, + "Failed to enable night mode": { + "Failed to enable night mode": "" + }, "Failed to hold job": { "Failed to hold job": "無法保留工作" }, @@ -1406,14 +1445,26 @@ "Failed to save keybind": { "Failed to save keybind": "保存按鍵綁定失敗" }, + "Failed to set brightness": { + "Failed to set brightness": "" + }, + "Failed to set night mode location": { + "Failed to set night mode location": "" + }, + "Failed to set night mode schedule": { + "Failed to set night mode schedule": "" + }, + "Failed to set night mode temperature": { + "Failed to set night mode temperature": "" + }, "Failed to set profile image": { "Failed to set profile image": "無法設定個人資料圖片" }, - "Failed to set profile image: ": { - "Failed to set profile image: ": "無法設定個人資料圖片: " + "Failed to set profile image: %1": { + "Failed to set profile image: %1": "" }, - "Failed to start connection to ": { - "Failed to start connection to ": "無法啟動連線到 " + "Failed to start connection to %1": { + "Failed to start connection to %1": "" }, "Failed to update VPN": { "Failed to update VPN": "更新 VPN 失敗" @@ -1448,6 +1499,9 @@ "Files": { "Files": "檔案" }, + "Filesystem usage monitoring": { + "Filesystem usage monitoring": "" + }, "Find in Text": { "Find in Text": "尋找文字" }, @@ -1523,8 +1577,8 @@ "Forget Network": { "Forget Network": "忘記網路" }, - "Forgot network ": { - "Forgot network ": "忘記網路 " + "Forgot network %1": { + "Forgot network %1": "" }, "Format Legend": { "Format Legend": "格式說明" @@ -1541,9 +1595,6 @@ "GPU Temperature": { "GPU Temperature": "GPU 溫度" }, - "GPU temperature display": { - "GPU temperature display": "GPU 溫度顯示" - }, "Games": { "Games": "遊戲" }, @@ -1619,15 +1670,9 @@ "Hide Delay": { "Hide Delay": "" }, - "Hide Delay (ms)": { - "Hide Delay (ms)": "隱藏延遲 (毫秒)" - }, "Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock,並在 Dock 區域附近懸停時顯示 Dock" }, - "High-contrast palette for strong visual distinction.": { - "High-contrast palette for strong visual distinction.": "高對比度調色板,帶來強烈的視覺區分。" - }, "High-fidelity palette that preserves source hues.": { "High-fidelity palette that preserves source hues.": "保留來源色調的高保真調色板。" }, @@ -1661,9 +1706,6 @@ "Hourly Forecast": { "Hourly Forecast": "每小時預報" }, - "How long to hold the button to confirm the action": { - "How long to hold the button to confirm the action": "按住按鈕確認動作的時長" - }, "How often to change wallpaper": { "How often to change wallpaper": "多久更換一次桌布" }, @@ -1691,9 +1733,6 @@ "Idle Inhibitor": { "Idle Inhibitor": "空閒抑制器" }, - "Idle Inhibitor OSD": { - "Idle Inhibitor OSD": "閒置抑制器 OSD" - }, "Idle Settings": { "Idle Settings": "閒置設定" }, @@ -1739,12 +1778,12 @@ "Inherit": { "Inherit": "" }, - "Inhibit idle timeout when audio or video is playing": { - "Inhibit idle timeout when audio or video is playing": "當音訊或視訊播放時禁止閒置逾時" - }, "Input Devices": { "Input Devices": "輸入設備" }, + "Input Volume Slider": { + "Input Volume Slider": "" + }, "Install plugins from the DMS plugin registry": { "Install plugins from the DMS plugin registry": "從 DMS 插件註冊表安裝插件" }, @@ -1799,6 +1838,9 @@ "Ko-fi": { "Ko-fi": "Ko-fi" }, + "LED device": { + "LED device": "" + }, "Last launched %1": { "Last launched %1": "上次啟動於 %1" }, @@ -1847,6 +1889,9 @@ "Light Mode": { "Light Mode": "淺色主題" }, + "Linear": { + "Linear": "" + }, "Lines: %1": { "Lines: %1": "行數:" }, @@ -1856,6 +1901,9 @@ "Lively palette with saturated accents.": { "Lively palette with saturated accents.": "活潑的色調,帶有飽和的色調。" }, + "Loading codecs...": { + "Loading codecs...": "" + }, "Loading keybinds...": { "Loading keybinds...": "正在載入按鍵綁定..." }, @@ -1922,6 +1970,9 @@ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": { "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "管理最多 4 個獨立的欄設定。每個欄都有自己的位置、小工具、樣式和顯示分配。" }, + "Management": { + "Management": "" + }, "Manual Coordinates": { "Manual Coordinates": "手動設定座標" }, @@ -1952,9 +2003,6 @@ "Matugen Palette": { "Matugen Palette": "Matugen 調色板" }, - "Matugen Settings": { - "Matugen Settings": "Matugen 設定" - }, "Matugen Target Monitor": { "Matugen Target Monitor": "Matugen 目標監視器" }, @@ -2009,9 +2057,6 @@ "Media Volume": { "Media Volume": "媒體音量" }, - "Media Volume OSD": { - "Media Volume OSD": "媒體音量 OSD" - }, "Medium": { "Medium": "中" }, @@ -2033,8 +2078,11 @@ "Microphone Mute": { "Microphone Mute": "麥克風靜音" }, - "Microphone Mute OSD": { - "Microphone Mute OSD": "麥克風靜音 OSD" + "Microphone settings": { + "Microphone settings": "" + }, + "Microphone volume control": { + "Microphone volume control": "" }, "Middle Section": { "Middle Section": "中間部分" @@ -2051,9 +2099,6 @@ "Mode:": { "Mode:": "模式:" }, - "Mode: ": { - "Mode: ": "模式:" - }, "Model": { "Model": "型號" }, @@ -2111,9 +2156,6 @@ "Network Information": { "Network Information": "網路資訊" }, - "Network Settings": { - "Network Settings": "網路設定" - }, "Network Speed Monitor": { "Network Speed Monitor": "網速監視" }, @@ -2189,6 +2231,12 @@ "No adapters": { "No adapters": "沒有介面卡" }, + "No battery": { + "No battery": "" + }, + "No brightness devices available": { + "No brightness devices available": "" + }, "No changes": { "No changes": "無更改" }, @@ -2198,6 +2246,12 @@ "No devices found": { "No devices found": "找不到裝置" }, + "No disk data": { + "No disk data": "" + }, + "No disk data available": { + "No disk data available": "" + }, "No drivers found": { "No drivers found": "找不到驅動程式" }, @@ -2246,6 +2300,9 @@ "Normal Priority": { "Normal Priority": "普通優先級" }, + "Not available": { + "Not available": "" + }, "Not connected": { "Not connected": "未連接" }, @@ -2339,15 +2396,6 @@ "Other": { "Other": "其他" }, - "Outline Color": { - "Outline Color": "外框顏色" - }, - "Outline Opacity": { - "Outline Opacity": "外框不透明度" - }, - "Outline Thickness": { - "Outline Thickness": "外框粗細" - }, "Output Area Almost Full": { "Output Area Almost Full": "輸出區域即將滿載" }, @@ -2393,9 +2441,15 @@ "Pair Bluetooth Device": { "Pair Bluetooth Device": "配對藍牙設備" }, + "Paired": { + "Paired": "" + }, "Pairing failed": { "Pairing failed": "配對失敗" }, + "Pairing...": { + "Pairing...": "" + }, "Passkey:": { "Passkey:": "密碼:" }, @@ -2429,14 +2483,20 @@ "Personalization": { "Personalization": "個人化" }, + "Pin": { + "Pin": "" + }, "Pin to Dock": { "Pin to Dock": "釘選到 Dock" }, + "Pinned": { + "Pinned": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "將插件資料夾放在這裡。每個插件都應該有一個 plugin.json 清單檔案。" }, - "Place plugins in": { - "Place plugins in": "將插件放入" + "Place plugins in %1": { + "Place plugins in %1": "" }, "Play sound when new notification arrives": { "Play sound when new notification arrives": "收到新通知時播放音效" @@ -2456,6 +2516,12 @@ "Plugged In": { "Plugged In": "已插入" }, + "Plugged in": { + "Plugged in": "" + }, + "Plugin": { + "Plugin": "" + }, "Plugin Directory": { "Plugin Directory": "插件資料夾" }, @@ -2468,9 +2534,6 @@ "Plugins": { "Plugins": "插件" }, - "Plugins:": { - "Plugins:": "插件:" - }, "Pointer": { "Pointer": "" }, @@ -2483,9 +2546,6 @@ "Position": { "Position": "位置" }, - "Position: ": { - "Position: ": "位置:" - }, "Possible Override Conflicts": { "Possible Override Conflicts": "可能存在的覆蓋衝突" }, @@ -2516,8 +2576,8 @@ "Power Profile Degradation": { "Power Profile Degradation": "電源配置降級" }, - "Power Profile OSD": { - "Power Profile OSD": "電源設定檔 OSD" + "Power profile management available": { + "Power profile management available": "" }, "Power source": { "Power source": "電源" @@ -2537,15 +2597,15 @@ "Pressure": { "Pressure": "氣壓" }, - "Prevent idle for media": { - "Prevent idle for media": "防止媒體閒置" - }, "Prevent screen timeout": { "Prevent screen timeout": "防止螢幕超時" }, "Primary": { "Primary": "主要" }, + "Print Server Management": { + "Print Server Management": "" + }, "Print Server not available": { "Print Server not available": "列印伺服器無法使用" }, @@ -2651,18 +2711,21 @@ "Report": { "Report": "報告" }, - "Request confirmation on power off, restart, suspend, hibernate and logout actions": { - "Request confirmation on power off, restart, suspend, hibernate and logout actions": "請求確認關機、重新啟動、暫停、休眠和登出操作" - }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "需要按住按鈕/鍵以確認關機、重新啟動、暫停、休眠和登出" }, - "Requires DMS": { - "Requires DMS": "" + "Requires 'dgop' tool": { + "Requires 'dgop' tool": "" + }, + "Requires DMS %1": { + "Requires DMS %1": "" }, "Requires DWL compositor": { "Requires DWL compositor": "需要 DWL 混成器" }, + "Requires night mode support": { + "Requires night mode support": "" + }, "Reset": { "Reset": "重設" }, @@ -2678,12 +2741,6 @@ "Resolution & Refresh": { "Resolution & Refresh": "" }, - "Resources": { - "Resources": "資源" - }, - "Restart": { - "Restart": "重新啟動" - }, "Restart DMS": { "Restart DMS": "重新啟動 DMS" }, @@ -2696,9 +2753,6 @@ "Revert": { "Revert": "還原" }, - "Reverting in:": { - "Reverting in:": "還原中:" - }, "Right": { "Right": "右方" }, @@ -2717,6 +2771,9 @@ "Right-click bar widget to cycle": { "Right-click bar widget to cycle": "右鍵點擊條形部件以循環" }, + "Root Filesystem": { + "Root Filesystem": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -2771,6 +2828,9 @@ "Scan": { "Scan": "掃描" }, + "Scanning": { + "Scanning": "" + }, "Scanning...": { "Scanning...": "掃描中..." }, @@ -2786,6 +2846,9 @@ "Scroll song title": { "Scroll song title": "滾動歌曲標題" }, + "Scroll title if it doesn't fit in widget": { + "Scroll title if it doesn't fit in widget": "" + }, "Scrolling": { "Scrolling": "滾動" }, @@ -2834,9 +2897,6 @@ "Select a color from the palette or use custom sliders": { "Select a color from the palette or use custom sliders": "從調色板中選取一個顏色,或使用滑條調整" }, - "Select a preset or drag the slider to customize": { - "Select a preset or drag the slider to customize": "選擇上方預設選項或拉動滑條調整" - }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { "Select a widget to add. You can add multiple instances of the same widget if needed.": "選擇要新增的部件。如果需要,可以新增相同部件部件的多個實例。" }, @@ -2909,6 +2969,9 @@ "Shortcuts": { "Shortcuts": "快捷方式" }, + "Shortcuts (%1)": { + "Shortcuts (%1)": "" + }, "Show All Tags": { "Show All Tags": "顯示所有標籤" }, @@ -2921,9 +2984,6 @@ "Show CPU Temp": { "Show CPU Temp": "" }, - "Show Confirmation on Power Actions": { - "Show Confirmation on Power Actions": "顯示電源操作確認" - }, "Show Date": { "Show Date": "" }, @@ -2969,9 +3029,6 @@ "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "只顯示已佔用的工作區" }, - "Show Power Actions": { - "Show Power Actions": "顯示電源選項" - }, "Show Power Off": { "Show Power Off": "顯示關機" }, @@ -3050,12 +3107,6 @@ "Show password": { "Show password": "顯示密碼" }, - "Show power, restart, and logout buttons on the lock screen": { - "Show power, restart, and logout buttons on the lock screen": "在鎖定畫面上顯示電源、重新啟動和登出按鈕" - }, - "Show seconds": { - "Show seconds": "顯示秒數" - }, "Show weather information in top bar and control center": { "Show weather information in top bar and control center": "在頂部欄和控制中心顯示天氣資訊" }, @@ -3116,6 +3167,9 @@ "Spacing": { "Spacing": "間距" }, + "Speaker settings": { + "Speaker settings": "" + }, "Speed": { "Speed": "速度" }, @@ -3158,9 +3212,6 @@ "Sunset": { "Sunset": "日落" }, - "Support Development": { - "Support Development": "支援開發" - }, "Suppress notification popups while enabled": { "Suppress notification popups while enabled": "啟用時抑制通知彈出視窗" }, @@ -3215,21 +3266,18 @@ "System Updates": { "System Updates": "系統更新" }, - "System bar with widgets and system information": { - "System bar with widgets and system information": "帶有部件和系統資訊的系統欄" - }, "System notification area icons": { "System notification area icons": "顯示常駐程式狀態圖示和系統通知" }, "System sounds are not available. Install canberra-gtk-play for sound support.": { "System sounds are not available. Install canberra-gtk-play for sound support.": "系統聲音不可用。請安裝 canberra-gtk-play 以獲得聲音支援。" }, + "System theme toggle": { + "System theme toggle": "" + }, "System toast notifications": { "System toast notifications": "系統快顯通知" }, - "System tray icons": { - "System tray icons": "系統匣圖示" - }, "System update custom command": { "System update custom command": "自訂系統更新指令" }, @@ -3254,6 +3302,9 @@ "Text": { "Text": "文字" }, + "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.": "" + }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "DMS_SOCKET 環境變數未設定或套接字不可用。自動插件管理需要 DMS_SOCKET。" }, @@ -3296,6 +3347,12 @@ "Time Format": { "Time Format": "時間格式" }, + "Time remaining: %1": { + "Time remaining: %1": "" + }, + "Time until full: %1": { + "Time until full: %1": "" + }, "Timed Out": { "Timed Out": "逾時" }, @@ -3392,6 +3449,18 @@ "Unknown": { "Unknown": "未知" }, + "Unknown Config": { + "Unknown Config": "" + }, + "Unknown Device": { + "Unknown Device": "" + }, + "Unknown Monitor": { + "Unknown Monitor": "" + }, + "Unknown Network": { + "Unknown Network": "" + }, "Unpin from Dock": { "Unpin from Dock": "取消 Dock 釘選" }, @@ -3458,6 +3527,9 @@ "Used": { "Used": "已使用" }, + "User": { + "User": "" + }, "Username": { "Username": "使用者名稱" }, @@ -3479,11 +3551,17 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 設定已更新" }, + "VPN connections": { + "VPN connections": "" + }, "VPN deleted": { "VPN deleted": "VPN 已刪除" }, - "VPN imported: ": { - "VPN imported: ": "VPN 已匯入:" + "VPN imported: %1": { + "VPN imported: %1": "" + }, + "VPN not available": { + "VPN not available": "" }, "VPN status and quick connect": { "VPN status and quick connect": "VPN 狀態和快速連線" @@ -3497,9 +3575,6 @@ "VRR activates only when applications request it": { "VRR activates only when applications request it": "" }, - "VRR: ": { - "VRR: ": "VRR:" - }, "Variable Refresh Rate": { "Variable Refresh Rate": "" }, @@ -3542,8 +3617,8 @@ "Volume Changed": { "Volume Changed": "音量改變" }, - "Volume OSD": { - "Volume OSD": "音量 OSD" + "Volume Slider": { + "Volume Slider": "" }, "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "音量、亮度及其他系統OSD" @@ -3575,15 +3650,9 @@ "Weather Widget": { "Weather Widget": "天氣部件" }, - "Website:": { - "Website:": "網站:" - }, "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": { "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "啟用後,應用程式將按字母順序排序。禁用後,應用程式將按使用頻率排序。" }, - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": { - "When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "啟用時,在 Niri 概覽模式下輸入時顯示啟動器疊加層。如果您在 Niri 概覽中輸入時不希望有啟動器,或者想在概覽中使用其他啟動器,請禁用此選項。" - }, "When updater widget is used, then hide it if no update found": { "Hide Updater Widget": "", "When updater widget is used, then hide it if no update found": "" @@ -3591,6 +3660,12 @@ "Wi-Fi Password": { "Wi-Fi Password": "Wi-Fi 密碼" }, + "Wi-Fi and Ethernet connection": { + "Wi-Fi and Ethernet connection": "" + }, + "Wi-Fi not available": { + "Wi-Fi not available": "" + }, "WiFi": { "WiFi": "WiFi" }, @@ -3630,8 +3705,12 @@ "Widget Variants": { "Widget Variants": "" }, - "Widgets": { - "Widgets": "部件" + "Widget grid keyboard hints": { + "G: grid • Z/X: size": "" + }, + "Widget grid snap status": { + "Grid: OFF": "", + "Grid: ON": "" }, "Wind": { "Wind": "風速" @@ -3696,21 +3775,27 @@ "days": { "days": "" }, + "dgop not available": { + "dgop not available": "" + }, "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": { "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "" }, - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": { - "dms/binds.kdl is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl 未包含在 config.kdl 中。在修復此問題之前,自定義按鍵綁定將無法使用。" - }, "dms/binds.kdl is now included in config.kdl": { "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 現已包含在 config.kdl 中" }, + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { + "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "" + }, "e.g., firefox, kitty --title foo": { "e.g., firefox, kitty --title foo": "例如,firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "例如,focus-workspace 3, resize-column -10" }, + "e.g., notify-send 'Hello' && sleep 1": { + "e.g., notify-send 'Hello' && sleep 1": "" + }, "events": { "events": "活動" }, diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index fa5b43d7..8900305e 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -3681,6 +3681,13 @@ "reference": "", "comment": "" }, + { + "term": "G: grid • Z/X: size", + "translation": "", + "context": "Widget grid keyboard hints", + "reference": "", + "comment": "" + }, { "term": "GPU", "translation": "", @@ -3786,6 +3793,20 @@ "reference": "", "comment": "" }, + { + "term": "Grid: OFF", + "translation": "", + "context": "Widget grid snap status", + "reference": "", + "comment": "" + }, + { + "term": "Grid: ON", + "translation": "", + "context": "Widget grid snap status", + "reference": "", + "comment": "" + }, { "term": "Group by App", "translation": "",