diff --git a/quickshell/Modals/FileBrowser/FileBrowserItemContextMenu.qml b/quickshell/Modals/FileBrowser/FileBrowserItemContextMenu.qml
index 13e3dae5..966f84aa 100644
--- a/quickshell/Modals/FileBrowser/FileBrowserItemContextMenu.qml
+++ b/quickshell/Modals/FileBrowser/FileBrowserItemContextMenu.qml
@@ -25,7 +25,7 @@ Popup {
dangerous: true
},
{
- text: I18n.tr("Copy Path"),
+ text: I18n.tr("Copy path"),
icon: "content_copy",
action: copyPath,
enabled: filePath.length > 0
diff --git a/quickshell/Modals/SwitchUserModal.qml b/quickshell/Modals/SwitchUserModal.qml
index 61eac520..c26f4200 100644
--- a/quickshell/Modals/SwitchUserModal.qml
+++ b/quickshell/Modals/SwitchUserModal.qml
@@ -250,7 +250,7 @@ DankModal {
DankButton {
visible: SessionsService.otherSessions().length === 0 && !root.lockOnSwitch
- text: I18n.tr("Log out")
+ text: I18n.tr("Log Out")
iconName: "logout"
backgroundColor: Theme.primary
textColor: Theme.primaryText
diff --git a/quickshell/Modules/ControlCenter/Models/WidgetModel.qml b/quickshell/Modules/ControlCenter/Models/WidgetModel.qml
index 1612c37e..c96939fb 100644
--- a/quickshell/Modules/ControlCenter/Models/WidgetModel.qml
+++ b/quickshell/Modules/ControlCenter/Models/WidgetModel.qml
@@ -245,7 +245,7 @@ QtObject {
{
"id": "builtin_vpn",
"text": I18n.tr("VPN"),
- "description": I18n.tr("VPN connections"),
+ "description": I18n.tr("VPN Connections"),
"icon": "vpn_key",
"type": "builtin_plugin",
"enabled": DMSNetworkService.available,
diff --git a/quickshell/Modules/ControlCenter/Widgets/BatteryPill.qml b/quickshell/Modules/ControlCenter/Widgets/BatteryPill.qml
index c14c3087..9937c2ac 100644
--- a/quickshell/Modules/ControlCenter/Widgets/BatteryPill.qml
+++ b/quickshell/Modules/ControlCenter/Widgets/BatteryPill.qml
@@ -25,7 +25,7 @@ CompoundPill {
return `${BatteryService.batteryLevel}% • ` + I18n.tr("Charging");
}
if (BatteryService.isPluggedIn) {
- return `${BatteryService.batteryLevel}% • ` + I18n.tr("Plugged in");
+ return `${BatteryService.batteryLevel}% • ` + I18n.tr("Plugged In");
}
return `${BatteryService.batteryLevel}%`;
}
diff --git a/quickshell/Modules/Settings/DankBarTab.qml b/quickshell/Modules/Settings/DankBarTab.qml
index e1b6b67b..7f17a9f3 100644
--- a/quickshell/Modules/Settings/DankBarTab.qml
+++ b/quickshell/Modules/Settings/DankBarTab.qml
@@ -966,7 +966,7 @@ Item {
SettingsControlledByFrame {
visible: SettingsData.frameEnabled
parentModal: dankBarTab.parentModal
- settingLabel: I18n.tr("Bar transparency")
+ settingLabel: I18n.tr("Bar Transparency")
reason: I18n.tr("Managed by Frame")
}
}
diff --git a/quickshell/Modules/Settings/DisplayWidgetsTab.qml b/quickshell/Modules/Settings/DisplayWidgetsTab.qml
index 59f65137..cf374f35 100644
--- a/quickshell/Modules/Settings/DisplayWidgetsTab.qml
+++ b/quickshell/Modules/Settings/DisplayWidgetsTab.qml
@@ -46,7 +46,7 @@ Item {
},
{
"id": "osd",
- "name": I18n.tr("On-Screen Displays"),
+ "name": I18n.tr("On-screen Displays"),
"description": I18n.tr("Volume, brightness, and other system OSDs"),
"icon": "picture_in_picture"
},
@@ -419,7 +419,7 @@ Item {
DankToggle {
width: parent.width
- text: I18n.tr("Focused monitor only")
+ text: I18n.tr("Focused Monitor Only")
description: I18n.tr("Show notifications only on the currently focused monitor")
visible: parent.componentId === "notifications"
checked: SettingsData.notificationFocusedMonitor
diff --git a/quickshell/Modules/Settings/GreeterTab.qml b/quickshell/Modules/Settings/GreeterTab.qml
index de97dd2b..16f18c8a 100644
--- a/quickshell/Modules/Settings/GreeterTab.qml
+++ b/quickshell/Modules/Settings/GreeterTab.qml
@@ -586,7 +586,7 @@ Item {
}
StyledText {
- text: I18n.tr("Time format")
+ text: I18n.tr("Time Format")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
@@ -605,7 +605,7 @@ Item {
SettingsToggleRow {
settingKey: "greeterShowSeconds"
tags: ["greeter", "time", "seconds"]
- text: I18n.tr("Show seconds")
+ text: I18n.tr("Show Seconds")
checked: SettingsData.greeterShowSeconds
onToggled: checked => SettingsData.set("greeterShowSeconds", checked)
}
@@ -630,7 +630,7 @@ Item {
SettingsDropdownRow {
settingKey: "greeterLockDateFormat"
tags: ["greeter", "date", "format"]
- text: I18n.tr("Date format")
+ text: I18n.tr("Date Format")
description: I18n.tr("Greeter only — format for the date on the login screen")
options: root._lockDateFormatPresets.map(p => p.label)
currentValue: {
diff --git a/quickshell/Modules/Settings/SystemUpdaterTab.qml b/quickshell/Modules/Settings/SystemUpdaterTab.qml
index c2c3376b..f59c9259 100644
--- a/quickshell/Modules/Settings/SystemUpdaterTab.qml
+++ b/quickshell/Modules/Settings/SystemUpdaterTab.qml
@@ -126,7 +126,7 @@ Item {
settingKey: "systemUpdaterAdvanced"
SettingsToggleRow {
- text: I18n.tr("Use custom command")
+ text: I18n.tr("Use Custom Command")
description: I18n.tr("Open a terminal and run a custom command instead of the in-shell upgrade flow.")
checked: SettingsData.updaterUseCustomCommand
onToggled: checked => {
diff --git a/quickshell/Modules/Settings/UsersTab.qml b/quickshell/Modules/Settings/UsersTab.qml
index a07a26bd..22a9b7a3 100644
--- a/quickshell/Modules/Settings/UsersTab.qml
+++ b/quickshell/Modules/Settings/UsersTab.qml
@@ -225,7 +225,7 @@ Item {
StyledText {
id: greeterChipText
anchors.centerIn: parent
- text: I18n.tr("greeter")
+ text: I18n.tr("Greeter")
font.pixelSize: Theme.fontSizeSmall
color: Theme.secondary
font.weight: Font.Medium
diff --git a/quickshell/Modules/Settings/WallpaperTab.qml b/quickshell/Modules/Settings/WallpaperTab.qml
index c0f83c18..59bd39ea 100644
--- a/quickshell/Modules/Settings/WallpaperTab.qml
+++ b/quickshell/Modules/Settings/WallpaperTab.qml
@@ -1131,7 +1131,7 @@ Item {
}
StyledText {
- text: I18n.tr("24-hour format")
+ text: I18n.tr("24-Hour Format")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
diff --git a/quickshell/Modules/Settings/WidgetsTabSection.qml b/quickshell/Modules/Settings/WidgetsTabSection.qml
index e1c7a2b4..56f30af2 100644
--- a/quickshell/Modules/Settings/WidgetsTabSection.qml
+++ b/quickshell/Modules/Settings/WidgetsTabSection.qml
@@ -1637,7 +1637,7 @@ Column {
rows: [
{
icon: "screen_record",
- label: I18n.tr("Screen Sharing"),
+ label: I18n.tr("Screen sharing"),
setting: "showScreenSharingIcon"
}
]
@@ -1801,7 +1801,7 @@ Column {
id: longestControlCenterLabelMetrics
font.pixelSize: Theme.fontSizeSmall
text: {
- const labels = [I18n.tr("Network"), I18n.tr("VPN"), I18n.tr("Bluetooth"), I18n.tr("Audio"), I18n.tr("Volume"), I18n.tr("Microphone"), I18n.tr("Microphone Volume"), I18n.tr("Brightness"), I18n.tr("Brightness Value"), I18n.tr("Battery"), I18n.tr("Printer"), I18n.tr("Screen Sharing"), I18n.tr("Idle Inhibitor"), I18n.tr("Do Not Disturb")];
+ const labels = [I18n.tr("Network"), I18n.tr("VPN"), I18n.tr("Bluetooth"), I18n.tr("Audio"), I18n.tr("Volume"), I18n.tr("Microphone"), I18n.tr("Microphone Volume"), I18n.tr("Brightness"), I18n.tr("Brightness Value"), I18n.tr("Battery"), I18n.tr("Printer"), I18n.tr("Screen sharing"), I18n.tr("Idle Inhibitor"), I18n.tr("Do Not Disturb")];
let longest = "";
for (let i = 0; i < labels.length; i++) {
if (labels[i].length > longest.length)
diff --git a/quickshell/Modules/Settings/WindowRulesTab.qml b/quickshell/Modules/Settings/WindowRulesTab.qml
index 2e199183..6974d748 100644
--- a/quickshell/Modules/Settings/WindowRulesTab.qml
+++ b/quickshell/Modules/Settings/WindowRulesTab.qml
@@ -34,12 +34,12 @@ Item {
readonly property var matchLabels: ({
"appId": I18n.tr("App ID"),
"title": I18n.tr("Title"),
- "isFloating": I18n.tr("Is Floating"),
- "isActive": I18n.tr("Is Active"),
- "isFocused": I18n.tr("Is Focused"),
- "isActiveInColumn": I18n.tr("Active In Column"),
+ "isFloating": I18n.tr("Floating"),
+ "isActive": I18n.tr("Active"),
+ "isFocused": I18n.tr("Focused"),
+ "isActiveInColumn": I18n.tr("Active in Column"),
"isWindowCastTarget": I18n.tr("Cast Target"),
- "isUrgent": I18n.tr("Is Urgent"),
+ "isUrgent": I18n.tr("Urgent"),
"atStartup": I18n.tr("At Startup"),
"xwayland": I18n.tr("XWayland"),
"fullscreen": I18n.tr("Fullscreen"),
@@ -64,7 +64,7 @@ Item {
continue;
const label = labels[k] || k;
if (typeof v === "boolean")
- out.push(label + ": " + (v ? I18n.tr("yes") : I18n.tr("no")));
+ out.push(label + ": " + (v ? I18n.tr("Yes") : I18n.tr("No")));
else
out.push(label + ": " + v);
}
@@ -699,7 +699,7 @@ Item {
return Object.keys(a).filter(k => a[k] !== undefined && a[k] !== null && a[k] !== "").map(k => {
const val = a[k];
if (typeof val === "boolean")
- return val ? (labels[k] || k) : (labels[k] || k) + ": " + I18n.tr("off");
+ return val ? (labels[k] || k) : (labels[k] || k) + ": " + I18n.tr("Off");
return (labels[k] || k) + ": " + val;
});
}
@@ -952,7 +952,7 @@ Item {
parts.push("title: " + m.title);
const base = parts.length > 0 ? parts.join(" · ") : I18n.tr("No match criteria");
const count = root.matchesOf(externalCard.modelData).length;
- return count > 1 ? I18n.tr("%1 (+%2 more)").arg(base).arg(count - 1) : base;
+ return count > 1 ? I18n.tr("%1 (+%2 more)").arg(base).arg(count - 1) : base;
}
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
@@ -976,7 +976,7 @@ Item {
return Object.keys(a).filter(k => a[k] !== undefined && a[k] !== null && a[k] !== "").map(k => {
const val = a[k];
if (typeof val === "boolean")
- return val ? (labels[k] || k) : (labels[k] || k) + ": " + I18n.tr("off");
+ return val ? (labels[k] || k) : (labels[k] || k) + ": " + I18n.tr("Off");
return (labels[k] || k) + ": " + val;
});
}
diff --git a/quickshell/Services/BatteryService.qml b/quickshell/Services/BatteryService.qml
index 8153a8c5..f191221f 100644
--- a/quickshell/Services/BatteryService.qml
+++ b/quickshell/Services/BatteryService.qml
@@ -218,7 +218,7 @@ Singleton {
// Aggregated battery status
readonly property string batteryStatus: {
if (!batteryAvailable) {
- return I18n.tr("No Battery", "battery status");
+ return I18n.tr("No battery", "battery status");
}
const targetBatteries = stateKnownBatteries.length > 0 ? stateKnownBatteries : batteries;
diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json
index 33f33d0a..582811b6 100644
--- a/quickshell/translations/en.json
+++ b/quickshell/translations/en.json
@@ -1,4 +1,10 @@
[
+ {
+ "term": "%1 (+%2 more)",
+ "context": "%1 (+%2 more)",
+ "reference": "Modules/Settings/WindowRulesTab.qml:79, Modules/Settings/WindowRulesTab.qml:955",
+ "comment": ""
+ },
{
"term": "%1 Animation Speed",
"context": "%1 Animation Speed",
@@ -92,13 +98,13 @@
{
"term": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.",
"context": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.",
- "reference": "Modules/Settings/KeybindsTab.qml:397",
+ "reference": "Modules/Settings/KeybindsTab.qml:406",
"comment": ""
},
{
"term": "%1 exists but is not included. Window rules won't apply.",
"context": "%1 exists but is not included. Window rules won't apply.",
- "reference": "Modules/Settings/WindowRulesTab.qml:362",
+ "reference": "Modules/Settings/WindowRulesTab.qml:520",
"comment": ""
},
{
@@ -122,7 +128,7 @@
{
"term": "%1 is now included in config",
"context": "%1 is now included in config",
- "reference": "Services/KeybindsService.qml:253",
+ "reference": "Services/KeybindsService.qml:256",
"comment": ""
},
{
@@ -209,6 +215,12 @@
"reference": "Services/NotificationService.qml:273",
"comment": ""
},
+ {
+ "term": "%command%",
+ "context": "%command%",
+ "reference": "Modules/Settings/AutoStartTab.qml:486",
+ "comment": ""
+ },
{
"term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.",
"context": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.",
@@ -242,7 +254,7 @@
{
"term": "0 = square corners",
"context": "0 = square corners",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1653",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1666",
"comment": ""
},
{
@@ -344,7 +356,7 @@
{
"term": "180°",
"context": "180°",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2475, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2496",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2581, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2602",
"comment": ""
},
{
@@ -380,7 +392,7 @@
{
"term": "24-Hour Format",
"context": "24-Hour Format",
- "reference": "Modules/Settings/TimeWeatherTab.qml:53",
+ "reference": "Modules/Settings/WallpaperTab.qml:1134, Modules/Settings/TimeWeatherTab.qml:53",
"comment": ""
},
{
@@ -389,12 +401,6 @@
"reference": "Modules/Settings/GreeterTab.qml:599",
"comment": ""
},
- {
- "term": "24-hour format",
- "context": "24-hour format",
- "reference": "Modules/Settings/WallpaperTab.qml:1134",
- "comment": ""
- },
{
"term": "25 seconds",
"context": "25 seconds",
@@ -410,7 +416,7 @@
{
"term": "270°",
"context": "270°",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2477, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2498",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2583, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2604",
"comment": ""
},
{
@@ -470,7 +476,7 @@
{
"term": "3rd party",
"context": "3rd party",
- "reference": "Modules/Settings/PluginBrowser.qml:531",
+ "reference": "Modules/Settings/PluginBrowser.qml:893",
"comment": ""
},
{
@@ -566,7 +572,7 @@
{
"term": "90°",
"context": "90°",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2473, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2494",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2579, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2600",
"comment": ""
},
{
@@ -626,7 +632,7 @@
{
"term": "About",
"context": "About",
- "reference": "Modals/Settings/SettingsSidebar.qml:349, Modules/Settings/AboutTab.qml:576",
+ "reference": "Modals/Settings/SettingsSidebar.qml:356, Modules/Settings/AboutTab.qml:576",
"comment": ""
},
{
@@ -674,7 +680,7 @@
{
"term": "Action",
"context": "Action",
- "reference": "Widgets/KeybindItem.qml:914, Widgets/KeybindItem.qml:1109, Modules/Settings/NotificationsTab.qml:597",
+ "reference": "Widgets/KeybindItem.qml:955, Widgets/KeybindItem.qml:1157, Modules/Settings/NotificationsTab.qml:597",
"comment": ""
},
{
@@ -698,7 +704,7 @@
{
"term": "Actions",
"context": "Actions",
- "reference": "Widgets/DankIconPicker.qml:51",
+ "reference": "Widgets/DankIconPicker.qml:51, Modules/Settings/WindowRulesTab.qml:1060",
"comment": ""
},
{
@@ -728,13 +734,13 @@
{
"term": "Active",
"context": "Active",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1434, Modules/Settings/NetworkTab.qml:750, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:196",
+ "reference": "Modals/WindowRuleModal.qml:814, Modules/DankDash/MediaDropdownOverlay.qml:368, Modules/Settings/ThemeColorsTab.qml:1447, Modules/Settings/NetworkTab.qml:750, Modules/Settings/WindowRulesTab.qml:38, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:196",
"comment": ""
},
{
"term": "Active Color",
"context": "Active Color",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2957",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:3102",
"comment": ""
},
{
@@ -749,10 +755,16 @@
"reference": "Services/DMSNetworkService.qml:108",
"comment": ""
},
+ {
+ "term": "Active in Column",
+ "context": "Active in Column",
+ "reference": "Modals/WindowRuleModal.qml:824, Modules/Settings/WindowRulesTab.qml:40",
+ "comment": ""
+ },
{
"term": "Active tile background and icon color",
"context": "Active tile background and icon color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1567",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1580",
"comment": "control center tile color setting description"
},
{
@@ -788,7 +800,7 @@
{
"term": "Add",
"context": "Add",
- "reference": "Widgets/KeybindItem.qml:1812, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:152",
+ "reference": "Widgets/KeybindItem.qml:1868, Modules/Plugins/ListSettingWithInput.qml:126, Modules/Settings/DesktopWidgetsTab.qml:152",
"comment": ""
},
{
@@ -815,6 +827,12 @@
"reference": "Modules/Settings/DesktopWidgetBrowser.qml:106, Modules/Settings/DesktopWidgetBrowser.qml:222",
"comment": ""
},
+ {
+ "term": "Add Entry",
+ "context": "Add Entry",
+ "reference": "Modules/Settings/AutoStartTab.qml:348",
+ "comment": ""
+ },
{
"term": "Add Printer",
"context": "Add Printer",
@@ -824,19 +842,25 @@
{
"term": "Add Title",
"context": "Add Title",
- "reference": "Modals/WindowRuleModal.qml:507",
+ "reference": "Modals/WindowRuleModal.qml:684",
"comment": ""
},
{
"term": "Add Widget",
"context": "Add Widget",
- "reference": "Modules/Settings/WidgetsTabSection.qml:851, Modules/Settings/WidgetSelectionPopup.qml:98, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:131, Modules/ControlCenter/Components/EditControls.qml:238",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:886, Modules/Settings/WidgetSelectionPopup.qml:107, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:131, Modules/ControlCenter/Components/EditControls.qml:238",
"comment": ""
},
{
- "term": "Add Widget to %1 Section",
- "context": "Add Widget to %1 Section",
- "reference": "Modules/Settings/WidgetSelectionPopup.qml:227",
+ "term": "Add Widget to %1",
+ "context": "Add Widget to %1",
+ "reference": "Modules/Settings/WidgetSelectionPopup.qml:236",
+ "comment": ""
+ },
+ {
+ "term": "Add Window Rule",
+ "context": "Add Window Rule",
+ "reference": "Modules/Settings/WindowRulesTab.qml:432",
"comment": ""
},
{
@@ -863,6 +887,12 @@
"reference": "Modules/Settings/PrinterTab.qml:390",
"comment": "Toggle button to manually add a printer by IP or hostname"
},
+ {
+ "term": "Add match",
+ "context": "Add match",
+ "reference": "Modals/WindowRuleModal.qml:775",
+ "comment": ""
+ },
{
"term": "Add the new user to the %1 group so they can run dms greeter sync --profile.",
"context": "Add the new user to the %1 group so they can run dms greeter sync --profile.",
@@ -875,6 +905,12 @@
"reference": "Modules/Settings/UsersTab.qml:458",
"comment": ""
},
+ {
+ "term": "Add to Autostart",
+ "context": "Add to Autostart",
+ "reference": "Modules/Settings/AutoStartTab.qml:576",
+ "comment": ""
+ },
{
"term": "Adjust the bar height via inner padding",
"context": "Adjust the bar height via inner padding",
@@ -896,7 +932,7 @@
{
"term": "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)",
"context": "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:548",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:561",
"comment": ""
},
{
@@ -920,8 +956,8 @@
{
"term": "All",
"context": "All",
- "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:2691, Modules/Settings/WidgetsTabSection.qml:2745, Modules/Settings/KeybindsTab.qml:459, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:131, Modules/Notifications/Center/HistoryNotificationList.qml:87",
- "comment": "Tailscale filter: all devices | notification history filter"
+ "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:2836, Modules/Settings/WidgetsTabSection.qml:2890, Modules/Settings/PluginBrowser.qml:112, Modules/Settings/KeybindsTab.qml:468, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:131, Modules/Notifications/Center/HistoryNotificationList.qml:87",
+ "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter"
},
{
"term": "All Monitors",
@@ -1010,7 +1046,7 @@
{
"term": "Always on icons",
"context": "Always on icons",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1959",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2104",
"comment": ""
},
{
@@ -1040,7 +1076,7 @@
{
"term": "Amount",
"context": "Amount",
- "reference": "Widgets/KeybindItem.qml:958",
+ "reference": "Widgets/KeybindItem.qml:1001",
"comment": ""
},
{
@@ -1091,22 +1127,46 @@
"reference": "Modals/WifiPasswordModal.qml:590",
"comment": ""
},
+ {
+ "term": "Any",
+ "context": "Any",
+ "reference": "Modals/WindowRuleModal.qml:499",
+ "comment": ""
+ },
+ {
+ "term": "Any window",
+ "context": "Any window",
+ "reference": "Modules/Settings/WindowRulesTab.qml:77, Modules/Settings/WindowRulesTab.qml:1051",
+ "comment": ""
+ },
{
"term": "App Customizations",
"context": "App Customizations",
"reference": "Modules/Settings/LauncherTab.qml:1283",
"comment": ""
},
+ {
+ "term": "App ID",
+ "context": "App ID",
+ "reference": "Modules/Settings/WindowRulesTab.qml:35",
+ "comment": ""
+ },
{
"term": "App ID Substitutions",
"context": "App ID Substitutions",
"reference": "Modules/Settings/RunningAppsTab.qml:25",
"comment": ""
},
+ {
+ "term": "App ID regex",
+ "context": "App ID regex",
+ "reference": "Modals/WindowRuleModal.qml:718",
+ "comment": ""
+ },
{
"term": "App ID regex (e.g. ^firefox$)",
"context": "App ID regex (e.g. ^firefox$)",
- "reference": "Modals/WindowRuleModal.qml:474",
+ "reference": "Modals/WindowRuleModal.qml:651",
"comment": ""
},
{
@@ -1133,6 +1193,12 @@
"reference": "Modules/Settings/LauncherTab.qml:606",
"comment": "launcher appearance settings"
},
+ {
+ "term": "Application",
+ "context": "Application",
+ "reference": "Modules/Settings/AutoStartTab.qml:376",
+ "comment": ""
+ },
{
"term": "Application Dock",
"context": "Application Dock",
@@ -1142,7 +1208,13 @@
{
"term": "Applications",
"context": "Applications",
- "reference": "Modals/DankLauncherV2/Controller.qml:207, Modals/Settings/SettingsSidebar.qml:232, Modules/Settings/ThemeColorsTab.qml:2283, Modules/Dock/DockLauncherButton.qml:25",
+ "reference": "Modals/DankLauncherV2/Controller.qml:207, Modals/Settings/SettingsSidebar.qml:232, Modules/Settings/ThemeColorsTab.qml:2296, Modules/Dock/DockLauncherButton.qml:25",
+ "comment": ""
+ },
+ {
+ "term": "Applications and commands to start automatically when you log in",
+ "context": "Applications and commands to start automatically when you log in",
+ "reference": "Modules/Settings/AutoStartTab.qml:601",
"comment": ""
},
{
@@ -1160,13 +1232,13 @@
{
"term": "Apply GTK Colors",
"context": "Apply GTK Colors",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2976",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2989",
"comment": ""
},
{
"term": "Apply Qt Colors",
"context": "Apply Qt Colors",
- "reference": "Modules/Settings/ThemeColorsTab.qml:3010",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:3023",
"comment": ""
},
{
@@ -1190,7 +1262,13 @@
{
"term": "Applying authentication changes…",
"context": "Applying authentication changes…",
- "reference": "Common/settings/Processes.qml:483",
+ "reference": "Common/settings/Processes.qml:648",
+ "comment": ""
+ },
+ {
+ "term": "Applying auto-login on startup…",
+ "context": "Applying auto-login on startup…",
+ "reference": "Common/settings/Processes.qml:573",
"comment": ""
},
{
@@ -1208,7 +1286,7 @@
{
"term": "Apps Dock Settings",
"context": "Apps Dock Settings",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2641",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2786",
"comment": ""
},
{
@@ -1259,6 +1337,12 @@
"reference": "Modules/Settings/DisplayConfigTab.qml:468",
"comment": ""
},
+ {
+ "term": "At Startup",
+ "context": "At Startup",
+ "reference": "Modals/WindowRuleModal.qml:839, Modules/Settings/WindowRulesTab.qml:43",
+ "comment": ""
+ },
{
"term": "At least one output must remain enabled",
"context": "At least one output must remain enabled",
@@ -1274,7 +1358,7 @@
{
"term": "Audio",
"context": "Audio",
- "reference": "Modals/Settings/SettingsSidebar.qml:259, Modules/Settings/WidgetsTabSection.qml:1454, Modules/Settings/WidgetsTabSection.qml:1663",
+ "reference": "Modals/Settings/SettingsSidebar.qml:266, Modules/Settings/WidgetsTabSection.qml:1575, Modules/Settings/WidgetsTabSection.qml:1804",
"comment": ""
},
{
@@ -1310,7 +1394,7 @@
{
"term": "Audio Output Devices (",
"context": "Audio Output Devices (",
- "reference": "Modules/DankDash/MediaDropdownOverlay.qml:277",
+ "reference": "Modules/DankDash/MediaDropdownOverlay.qml:291",
"comment": ""
},
{
@@ -1358,7 +1442,7 @@
{
"term": "Authenticating...",
"context": "Authenticating...",
- "reference": "Modules/Greetd/GreeterContent.qml:1154",
+ "reference": "Modules/Greetd/GreeterContent.qml:1194",
"comment": ""
},
{
@@ -1376,7 +1460,7 @@
{
"term": "Authentication changes applied.",
"context": "Authentication changes applied.",
- "reference": "Common/settings/Processes.qml:456",
+ "reference": "Common/settings/Processes.qml:621",
"comment": ""
},
{
@@ -1394,13 +1478,13 @@
{
"term": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.",
"context": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.",
- "reference": "Common/settings/Processes.qml:286",
+ "reference": "Common/settings/Processes.qml:315",
"comment": ""
},
{
"term": "Authentication error - try again",
"context": "Authentication error - try again",
- "reference": "Modules/Lock/LockScreenContent.qml:59, Modules/Greetd/GreeterContent.qml:229",
+ "reference": "Modules/Lock/LockScreenContent.qml:59, Modules/Greetd/GreeterContent.qml:233",
"comment": ""
},
{
@@ -1430,13 +1514,13 @@
{
"term": "Auto",
"context": "Auto",
- "reference": "Modules/Settings/ThemeColorsTab.qml:299, Modules/Settings/ThemeColorsTab.qml:299, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:879, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:884, Modules/Settings/NetworkTab.qml:887, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:879, Modules/Settings/NetworkTab.qml:883, Modules/Settings/NetworkTab.qml:884, Modules/Settings/NetworkTab.qml:887, Modules/Settings/DisplayConfigTab.qml:159, Modules/Settings/DisplayConfigTab.qml:205, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:351, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:359, Modules/Settings/Widgets/TerminalPickerRow.qml:7, Modules/ControlCenter/Details/NetworkDetail.qml:117, Modules/ControlCenter/Details/NetworkDetail.qml:118, Modules/ControlCenter/Details/NetworkDetail.qml:121, Modules/ControlCenter/Details/NetworkDetail.qml:124, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:29, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:106",
"comment": "theme category option"
},
{
"term": "Auto (Bar-aware)",
"context": "Auto (Bar-aware)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1746, Modules/Settings/ThemeColorsTab.qml:1750, Modules/Settings/ThemeColorsTab.qml:1763, Modules/Settings/DankBarTab.qml:1519, Modules/Settings/DankBarTab.qml:1523, Modules/Settings/DankBarTab.qml:1531",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1763, Modules/Settings/ThemeColorsTab.qml:1776, Modules/Settings/DankBarTab.qml:1519, Modules/Settings/DankBarTab.qml:1523, Modules/Settings/DankBarTab.qml:1531",
"comment": "bar shadow direction source option | shadow direction option"
},
{
@@ -1472,7 +1556,7 @@
{
"term": "Auto-Hide Timeout",
"context": "Auto-Hide Timeout",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2461",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2474",
"comment": ""
},
{
@@ -1499,6 +1583,30 @@
"reference": "Modules/Settings/DockTab.qml:55",
"comment": ""
},
+ {
+ "term": "Auto-login",
+ "context": "Auto-login",
+ "reference": "Modules/Greetd/GreeterContent.qml:1512",
+ "comment": ""
+ },
+ {
+ "term": "Auto-login disabled",
+ "context": "Auto-login disabled",
+ "reference": "Common/settings/Processes.qml:376",
+ "comment": ""
+ },
+ {
+ "term": "Auto-login enabled",
+ "context": "Auto-login enabled",
+ "reference": "Common/settings/Processes.qml:374",
+ "comment": ""
+ },
+ {
+ "term": "Auto-login on startup",
+ "context": "Auto-login on startup",
+ "reference": "Modules/Settings/GreeterTab.qml:750",
+ "comment": ""
+ },
{
"term": "Auto-saving...",
"context": "Auto-saving...",
@@ -1532,13 +1640,13 @@
{
"term": "Automatic Color Mode",
"context": "Automatic Color Mode",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1054",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1067",
"comment": ""
},
{
"term": "Automatic Control",
"context": "Automatic Control",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1065, Modules/Settings/GammaControlTab.qml:139",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1078, Modules/Settings/GammaControlTab.qml:139",
"comment": ""
},
{
@@ -1604,13 +1712,25 @@
{
"term": "Automation",
"context": "Automation",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1391",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1404",
+ "comment": ""
+ },
+ {
+ "term": "Autostart Apps",
+ "context": "Autostart Apps",
+ "reference": "Modals/Settings/SettingsSidebar.qml:251",
+ "comment": ""
+ },
+ {
+ "term": "Autostart Entries",
+ "context": "Autostart Entries",
+ "reference": "Modules/Settings/AutoStartTab.qml:590",
"comment": ""
},
{
"term": "Available",
"context": "Available",
- "reference": "Modules/Settings/PrinterTab.qml:202, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265",
+ "reference": "Modules/DankDash/MediaDropdownOverlay.qml:368, Modules/Settings/PrinterTab.qml:202, Modules/ControlCenter/Details/AudioInputDetail.qml:256, Modules/ControlCenter/Details/AudioOutputDetail.qml:265",
"comment": ""
},
{
@@ -1658,9 +1778,15 @@
{
"term": "Back",
"context": "Back",
- "reference": "Modals/Greeter/GreeterModal.qml:286, Modules/DankBar/Widgets/SystemTrayBar.qml:1805",
+ "reference": "Modals/Greeter/GreeterModal.qml:286, Modules/DankBar/Widgets/SystemTrayBar.qml:1809",
"comment": "greeter back button"
},
+ {
+ "term": "Back to user list",
+ "context": "Back to user list",
+ "reference": "Modules/Greetd/GreeterContent.qml:1343",
+ "comment": "greeter link to return from manual username entry to user picker"
+ },
{
"term": "Backend",
"context": "Backend",
@@ -1682,7 +1808,13 @@
{
"term": "Background Blur",
"context": "Background Blur",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1849, Modules/Settings/ThemeColorsTab.qml:1857",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1862, Modules/Settings/ThemeColorsTab.qml:1870",
+ "comment": ""
+ },
+ {
+ "term": "Background Effect",
+ "context": "Background Effect",
+ "reference": "Modals/WindowRuleModal.qml:1161",
"comment": ""
},
{
@@ -1694,7 +1826,7 @@
{
"term": "Background authentication sync failed. Trying terminal mode.",
"context": "Background authentication sync failed. Trying terminal mode.",
- "reference": "Common/settings/Processes.qml:467",
+ "reference": "Common/settings/Processes.qml:632",
"comment": ""
},
{
@@ -1712,13 +1844,13 @@
{
"term": "Balance power and performance",
"context": "Balance power and performance",
- "reference": "Common/Theme.qml:1564",
+ "reference": "Common/Theme.qml:1565",
"comment": "power profile description"
},
{
"term": "Balanced",
"context": "Balanced",
- "reference": "Common/Theme.qml:1551",
+ "reference": "Common/Theme.qml:1552",
"comment": "power profile option"
},
{
@@ -1736,13 +1868,13 @@
{
"term": "Bar Shadows",
"context": "Bar Shadows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1838",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1851",
"comment": ""
},
{
"term": "Bar Transparency",
"context": "Bar Transparency",
- "reference": "Modules/Settings/DankBarTab.qml:922",
+ "reference": "Modules/Settings/DankBarTab.qml:922, Modules/Settings/DankBarTab.qml:969",
"comment": ""
},
{
@@ -1763,16 +1895,10 @@
"reference": "Modules/Settings/DankBarTab.qml:756",
"comment": ""
},
- {
- "term": "Bar transparency",
- "context": "Bar transparency",
- "reference": "Modules/Settings/DankBarTab.qml:969",
- "comment": ""
- },
{
"term": "Base color for shadows (opacity is applied automatically)",
"context": "Base color for shadows (opacity is applied automatically)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1707",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1720",
"comment": ""
},
{
@@ -1784,13 +1910,13 @@
{
"term": "Battery",
"context": "Battery",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1499, Modules/Settings/WidgetsTabSection.qml:1663, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1620, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:176, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17",
"comment": ""
},
{
"term": "Battery %1",
"context": "Battery %1",
- "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:396",
+ "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:395",
"comment": ""
},
{
@@ -1838,37 +1964,37 @@
{
"term": "Binds Include Missing",
"context": "Binds Include Missing",
- "reference": "Modules/Settings/KeybindsTab.qml:381",
+ "reference": "Modules/Settings/KeybindsTab.qml:388",
"comment": ""
},
{
"term": "Binds include added",
"context": "Binds include added",
- "reference": "Services/KeybindsService.qml:253",
+ "reference": "Services/KeybindsService.qml:256",
"comment": ""
},
{
"term": "Bit Depth",
"context": "Bit Depth",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1869",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1931",
"comment": ""
},
{
"term": "Black",
"context": "Black",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:274, Modules/Settings/TypographyMotionTab.qml:306",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Block Out",
"context": "Block Out",
- "reference": "Modules/Settings/WindowRulesTab.qml:552",
+ "reference": "Modules/Settings/WindowRulesTab.qml:95",
"comment": ""
},
{
"term": "Block Out From",
"context": "Block Out From",
- "reference": "Modals/WindowRuleModal.qml:727",
+ "reference": "Modals/WindowRuleModal.qml:1075",
"comment": ""
},
{
@@ -1892,7 +2018,7 @@
{
"term": "Bluetooth",
"context": "Bluetooth",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1444, Modules/Settings/WidgetsTabSection.qml:1663, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:394",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1565, Modules/Settings/WidgetsTabSection.qml:1804, Modules/ControlCenter/Models/WidgetModel.qml:170, Modules/ControlCenter/Components/DragDropGrid.qml:422",
"comment": "bluetooth status"
},
{
@@ -1907,16 +2033,22 @@
"reference": "Modules/ControlCenter/Models/WidgetModel.qml:175",
"comment": ""
},
+ {
+ "term": "Blur",
+ "context": "Blur",
+ "reference": "Modals/WindowRuleModal.qml:1181, Modules/Settings/WindowRulesTab.qml:120",
+ "comment": ""
+ },
{
"term": "Blur Border Color",
"context": "Blur Border Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:140, Modules/Settings/ThemeColorsTab.qml:1895",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:153, Modules/Settings/ThemeColorsTab.qml:1908",
"comment": ""
},
{
"term": "Blur Border Opacity",
"context": "Blur Border Opacity",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1933",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1946",
"comment": ""
},
{
@@ -1934,7 +2066,7 @@
{
"term": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.",
"context": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1858",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1871",
"comment": ""
},
{
@@ -1953,7 +2085,7 @@
"term": "Bold",
"context": "Bold",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:270, Modules/Settings/TypographyMotionTab.qml:300",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Border",
@@ -1964,7 +2096,13 @@
{
"term": "Border Color",
"context": "Border Color",
- "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/FrameTab.qml:206",
+ "reference": "Modules/Settings/DockTab.qml:685, Modules/Settings/WorkspacesTab.qml:368, Modules/Settings/FrameTab.qml:206, Modules/Settings/WindowRulesTab.qml:124",
+ "comment": ""
+ },
+ {
+ "term": "Border Off",
+ "context": "Border Off",
+ "reference": "Modules/Settings/WindowRulesTab.qml:127",
"comment": ""
},
{
@@ -1982,7 +2120,7 @@
{
"term": "Border Size",
"context": "Border Size",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2036, Modules/Settings/ThemeColorsTab.qml:2139, Modules/Settings/ThemeColorsTab.qml:2242",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2049, Modules/Settings/ThemeColorsTab.qml:2152, Modules/Settings/ThemeColorsTab.qml:2255",
"comment": ""
},
{
@@ -2000,19 +2138,25 @@
{
"term": "Border color around blurred surfaces",
"context": "Border color around blurred surfaces",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1896",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1909",
"comment": ""
},
{
- "term": "Border with BG",
- "context": "Border with BG",
- "reference": "Modals/WindowRuleModal.qml:713",
+ "term": "Border w/ Bg",
+ "context": "Border w/ Bg",
+ "reference": "Modules/Settings/WindowRulesTab.qml:119",
+ "comment": ""
+ },
+ {
+ "term": "Border with Background",
+ "context": "Border with Background",
+ "reference": "Modals/WindowRuleModal.qml:1061",
"comment": ""
},
{
"term": "Bottom",
"context": "Bottom",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1746, Modules/Settings/ThemeColorsTab.qml:1756, Modules/Settings/ThemeColorsTab.qml:1769, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:289, Modules/Settings/DankBarTab.qml:438, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1560, Modules/Settings/DankBarTab.qml:1574, Modules/Settings/FrameTab.qml:316",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1769, Modules/Settings/ThemeColorsTab.qml:1782, Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:289, Modules/Settings/DankBarTab.qml:438, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1560, Modules/Settings/DankBarTab.qml:1574, Modules/Settings/FrameTab.qml:316",
"comment": "shadow direction option"
},
{
@@ -2036,7 +2180,7 @@
{
"term": "Bottom Section",
"context": "Bottom Section",
- "reference": "Modules/Settings/WidgetsTab.qml:1135",
+ "reference": "Modules/Settings/WidgetsTab.qml:1170",
"comment": ""
},
{
@@ -2048,7 +2192,7 @@
{
"term": "Brightness",
"context": "Brightness",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1484, Modules/Settings/WidgetsTabSection.qml:1663, Modules/Settings/DockTab.qml:498, Modules/Settings/LauncherTab.qml:519, Modules/Settings/OSDTab.qml:117",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1605, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/DockTab.qml:498, Modules/Settings/LauncherTab.qml:519, Modules/Settings/OSDTab.qml:117",
"comment": ""
},
{
@@ -2060,7 +2204,7 @@
{
"term": "Brightness Value",
"context": "Brightness Value",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1489, Modules/Settings/WidgetsTabSection.qml:1663",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1610, Modules/Settings/WidgetsTabSection.qml:1804",
"comment": ""
},
{
@@ -2072,7 +2216,7 @@
{
"term": "Browse",
"context": "Browse",
- "reference": "Modals/DankLauncherV2/SpotlightResultRow.qml:62, Modals/DankLauncherV2/Controller.qml:228, Modals/DankLauncherV2/Controller.qml:1376, Modules/Settings/ThemeColorsTab.qml:299, Modules/Settings/GreeterTab.qml:681, Modules/Settings/PluginsTab.qml:231, Modules/Settings/LockScreenTab.qml:327",
+ "reference": "Modals/DankLauncherV2/SpotlightResultRow.qml:62, Modals/DankLauncherV2/Controller.qml:228, Modals/DankLauncherV2/Controller.qml:1376, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/GreeterTab.qml:681, Modules/Settings/AutoStartTab.qml:454, Modules/Settings/PluginsTab.qml:231, Modules/Settings/LockScreenTab.qml:327",
"comment": "theme category option"
},
{
@@ -2084,13 +2228,13 @@
{
"term": "Browse Plugins",
"context": "Browse Plugins",
- "reference": "Modules/Settings/PluginBrowser.qml:148, Modules/Settings/PluginBrowser.qml:258, Modules/Settings/DesktopWidgetsTab.qml:101",
+ "reference": "Modules/Settings/PluginBrowser.qml:357, Modules/Settings/PluginBrowser.qml:467, Modules/Settings/DesktopWidgetsTab.qml:101",
"comment": "plugin browser header | plugin browser window title"
},
{
"term": "Browse Themes",
"context": "Browse Themes",
- "reference": "Modules/Settings/ThemeColorsTab.qml:800, Modules/Settings/ThemeBrowser.qml:147, Modules/Settings/ThemeBrowser.qml:244",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:813, Modules/Settings/ThemeBrowser.qml:147, Modules/Settings/ThemeBrowser.qml:244",
"comment": "browse themes button | theme browser header | theme browser window title"
},
{
@@ -2102,7 +2246,7 @@
{
"term": "Button Color",
"context": "Button Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1598",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1611",
"comment": ""
},
{
@@ -2180,13 +2324,13 @@
{
"term": "Camera",
"context": "Camera",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2040",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2185",
"comment": ""
},
{
"term": "Cancel",
"context": "Cancel",
- "reference": "DMSShell.qml:513, Modals/WindowRuleModal.qml:1130, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:273, Modals/WifiPasswordModal.qml:691, Widgets/KeybindItem.qml:1796, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:305, Modules/Settings/PluginBrowser.qml:123, Modules/Settings/PluginBrowser.qml:838, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankBar/Popouts/SystemUpdatePopout.qml:211",
+ "reference": "DMSShell.qml:513, Modals/WindowRuleModal.qml:1562, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:273, Modals/WifiPasswordModal.qml:691, Widgets/KeybindItem.qml:1852, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:316, Modules/Settings/PluginBrowser.qml:332, Modules/Settings/PluginBrowser.qml:1237, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankBar/Popouts/SystemUpdatePopout.qml:211",
"comment": ""
},
{
@@ -2246,7 +2390,7 @@
{
"term": "Capacity",
"context": "Capacity",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:177, Modules/DankBar/Popouts/BatteryPopout.qml:333, Modules/DankBar/Popouts/BatteryPopout.qml:491",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:176, Modules/DankBar/Popouts/BatteryPopout.qml:332, Modules/DankBar/Popouts/BatteryPopout.qml:490",
"comment": ""
},
{
@@ -2267,10 +2411,22 @@
"reference": "Modules/Lock/LockScreenContent.qml:1134",
"comment": ""
},
+ {
+ "term": "Cast Target",
+ "context": "Cast Target",
+ "reference": "Modals/WindowRuleModal.qml:829, Modules/Settings/WindowRulesTab.qml:41",
+ "comment": ""
+ },
+ {
+ "term": "Category",
+ "context": "Category",
+ "reference": "Modules/Settings/PluginBrowser.qml:40",
+ "comment": "plugin browser sort option"
+ },
{
"term": "Center Section",
"context": "Center Section",
- "reference": "Modules/Settings/WidgetsTab.qml:1062",
+ "reference": "Modules/Settings/WidgetSelectionPopup.qml:28, Modules/Settings/WidgetsTab.qml:1094",
"comment": ""
},
{
@@ -2306,7 +2462,7 @@
{
"term": "Change bar appearance",
"context": "Change bar appearance",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1517",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1530",
"comment": ""
},
{
@@ -2429,6 +2585,12 @@
"reference": "Modules/ControlCenter/Widgets/ColorPickerPill.qml:16",
"comment": ""
},
+ {
+ "term": "Choose a power profile",
+ "context": "Choose a power profile",
+ "reference": "Modals/PowerProfileModal.qml:138",
+ "comment": ""
+ },
{
"term": "Choose colors from palette",
"context": "Choose colors from palette",
@@ -2462,7 +2624,7 @@
{
"term": "Choose the background color for widgets",
"context": "Choose the background color for widgets",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1532",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1545",
"comment": ""
},
{
@@ -2489,6 +2651,12 @@
"reference": "Modules/Settings/OSDTab.qml:31",
"comment": ""
},
+ {
+ "term": "Choose whether to launch a desktop app or a command",
+ "context": "Choose whether to launch a desktop app or a command",
+ "reference": "Modules/Settings/AutoStartTab.qml:353",
+ "comment": ""
+ },
{
"term": "Choose which displays show this widget",
"context": "Choose which displays show this widget",
@@ -2504,7 +2672,7 @@
{
"term": "Chroma Style",
"context": "Chroma Style",
- "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:54",
+ "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:74",
"comment": ""
},
{
@@ -2519,10 +2687,16 @@
"reference": "Modules/Settings/DockTab.qml:191",
"comment": "dock indicator style option"
},
+ {
+ "term": "Class regex",
+ "context": "Class regex",
+ "reference": "Modals/WindowRuleModal.qml:718",
+ "comment": ""
+ },
{
"term": "Class regex (e.g. ^firefox$)",
"context": "Class regex (e.g. ^firefox$)",
- "reference": "Modals/WindowRuleModal.qml:474",
+ "reference": "Modals/WindowRuleModal.qml:651",
"comment": ""
},
{
@@ -2534,7 +2708,7 @@
{
"term": "Clear All",
"context": "Clear All",
- "reference": "Modals/Clipboard/ClipboardHeader.qml:68, Modals/Clipboard/ClipboardHistoryPopout.qml:154, Modals/Clipboard/ClipboardHistoryModal.qml:183, Modules/Settings/PrinterTab.qml:1370, Modules/DankBar/Widgets/ClipboardButton.qml:254",
+ "reference": "Modals/Clipboard/ClipboardHeader.qml:70, Modals/Clipboard/ClipboardHistoryPopout.qml:96, Modals/Clipboard/ClipboardHistoryModal.qml:83, Modules/Settings/PrinterTab.qml:1370, Modules/DankBar/Widgets/ClipboardButton.qml:254",
"comment": ""
},
{
@@ -2546,7 +2720,7 @@
{
"term": "Clear History?",
"context": "Clear History?",
- "reference": "Modals/Clipboard/ClipboardContent.qml:38, Modules/DankBar/DankBarContent.qml:734",
+ "reference": "Modals/Clipboard/ClipboardContent.qml:39, Modules/DankBar/DankBarContent.qml:734",
"comment": ""
},
{
@@ -2570,25 +2744,25 @@
{
"term": "Click 'Setup' to create %1 and add include to config.",
"context": "Click 'Setup' to create %1 and add include to config.",
- "reference": "Modules/Settings/KeybindsTab.qml:395",
+ "reference": "Modules/Settings/KeybindsTab.qml:404",
"comment": ""
},
{
"term": "Click 'Setup' to create %1 and add include to your compositor config.",
"context": "Click 'Setup' to create %1 and add include to your compositor config.",
- "reference": "Modules/Settings/WindowRulesTab.qml:362",
+ "reference": "Modules/Settings/WindowRulesTab.qml:520",
"comment": ""
},
{
"term": "Click 'Setup' to create cursor config and add include to your compositor config.",
"context": "Click 'Setup' to create cursor config and add include to your compositor config.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2360",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2373",
"comment": ""
},
{
"term": "Click 'Setup' to create the outputs config and add include to your compositor config.",
"context": "Click 'Setup' to create the outputs config and add include to your compositor config.",
- "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:63",
+ "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:68",
"comment": ""
},
{
@@ -2612,43 +2786,43 @@
{
"term": "Click any shortcut to edit. Changes save to %1",
"context": "Click any shortcut to edit. Changes save to %1",
- "reference": "Modules/Settings/KeybindsTab.qml:295",
+ "reference": "Modules/Settings/KeybindsTab.qml:299",
"comment": ""
},
{
"term": "Click to capture",
"context": "Click to capture",
- "reference": "Widgets/KeybindItem.qml:629",
+ "reference": "Widgets/KeybindItem.qml:667",
"comment": ""
},
{
"term": "Click to select a custom theme JSON file",
"context": "Click to select a custom theme JSON file",
- "reference": "Modules/Settings/ThemeColorsTab.qml:593",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:606",
"comment": "custom theme file hint"
},
{
"term": "Clip",
"context": "Clip",
- "reference": "Modules/Settings/WindowRulesTab.qml:556",
+ "reference": "Modules/Settings/WindowRulesTab.qml:99",
"comment": ""
},
{
"term": "Clip to Geometry",
"context": "Clip to Geometry",
- "reference": "Modals/WindowRuleModal.qml:705",
+ "reference": "Modals/WindowRuleModal.qml:1053",
"comment": ""
},
{
"term": "Clipboard",
"context": "Clipboard",
- "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:68, Modals/DankLauncherV2/Controller.qml:221, Modals/DankLauncherV2/Controller.qml:1224, Modals/Settings/SettingsSidebar.qml:271",
+ "reference": "Services/AppSearchService.qml:223, Modals/DankLauncherV2/ResultItem.qml:228, Modals/DankLauncherV2/SpotlightResultRow.qml:68, Modals/DankLauncherV2/Controller.qml:221, Modals/DankLauncherV2/Controller.qml:1224, Modals/Settings/SettingsSidebar.qml:278",
"comment": ""
},
{
"term": "Clipboard History",
"context": "Clipboard History",
- "reference": "Modals/Clipboard/ClipboardHeader.qml:34",
+ "reference": "Modals/Clipboard/ClipboardHeader.qml:35",
"comment": ""
},
{
@@ -2657,6 +2831,12 @@
"reference": "Modules/Settings/WidgetsTab.qml:101",
"comment": ""
},
+ {
+ "term": "Clipboard Saved",
+ "context": "Clipboard Saved",
+ "reference": "Modals/Clipboard/ClipboardHeader.qml:35",
+ "comment": ""
+ },
{
"term": "Clipboard sent",
"context": "Clipboard sent",
@@ -2702,7 +2882,7 @@
{
"term": "Close Window",
"context": "Close Window",
- "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141, Modules/Dock/DockContextMenu.qml:350, Modules/DankBar/Widgets/AppsDockContextMenu.qml:456",
+ "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:169, Modules/Dock/DockContextMenu.qml:350, Modules/DankBar/Widgets/AppsDockContextMenu.qml:456",
"comment": ""
},
{
@@ -2726,13 +2906,13 @@
{
"term": "Color Management",
"context": "Color Management",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1871",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1933",
"comment": ""
},
{
"term": "Color Mode",
"context": "Color Mode",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1487",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1500",
"comment": ""
},
{
@@ -2762,7 +2942,7 @@
{
"term": "Color for primary action buttons",
"context": "Color for primary action buttons",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1599",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1612",
"comment": ""
},
{
@@ -2780,25 +2960,25 @@
{
"term": "Color theme for syntax highlighting.",
"context": "Color theme for syntax highlighting.",
- "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:57",
+ "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:77",
"comment": ""
},
{
"term": "Color theme for syntax highlighting. %1 themes available.",
"context": "Color theme for syntax highlighting. %1 themes available.",
- "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:56",
+ "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:76",
"comment": ""
},
{
"term": "Color theme from DMS registry",
"context": "Color theme from DMS registry",
- "reference": "Modules/Settings/ThemeColorsTab.qml:256",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:269",
"comment": "registry theme description"
},
{
"term": "Colorful",
"context": "Colorful",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1518",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1531",
"comment": "widget style option"
},
{
@@ -2810,7 +2990,7 @@
{
"term": "Colorize Active",
"context": "Colorize Active",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2917",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:3062",
"comment": ""
},
{
@@ -2828,13 +3008,13 @@
{
"term": "Column Display",
"context": "Column Display",
- "reference": "Modals/WindowRuleModal.qml:749",
+ "reference": "Modals/WindowRuleModal.qml:1097",
"comment": ""
},
{
"term": "Column Width",
"context": "Column Width",
- "reference": "Modals/WindowRuleModal.qml:619",
+ "reference": "Modals/WindowRuleModal.qml:966",
"comment": ""
},
{
@@ -2846,7 +3026,13 @@
{
"term": "Command",
"context": "Command",
- "reference": "Widgets/KeybindItem.qml:1439, Modules/Settings/DesktopWidgetInstanceCard.qml:386",
+ "reference": "Widgets/KeybindItem.qml:1495, Modules/Settings/AutoStartTab.qml:470, Modules/Settings/AutoStartTab.qml:538, Modules/Settings/DesktopWidgetInstanceCard.qml:386",
+ "comment": ""
+ },
+ {
+ "term": "Command Line",
+ "context": "Command Line",
+ "reference": "Modules/Settings/AutoStartTab.qml:354, Modules/Settings/AutoStartTab.qml:355",
"comment": ""
},
{
@@ -2870,13 +3056,13 @@
{
"term": "Compact",
"context": "Compact",
- "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:1144, Modules/Settings/NotificationsTab.qml:270",
+ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:1265, Modules/Settings/NotificationsTab.qml:270",
"comment": ""
},
{
"term": "Compact Mode",
"context": "Compact Mode",
- "reference": "Modules/Settings/WidgetsTabSection.qml:643, Modules/Settings/WidgetsTabSection.qml:2418",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:678, Modules/Settings/WidgetsTabSection.qml:2563",
"comment": ""
},
{
@@ -2900,19 +3086,19 @@
{
"term": "Config Format",
"context": "Config Format",
- "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1833",
+ "reference": "Modules/Settings/DisplayConfigTab.qml:508, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1895",
"comment": ""
},
{
"term": "Config action: %1",
"context": "Config action: %1",
- "reference": "Widgets/KeybindItem.qml:478",
+ "reference": "Widgets/KeybindItem.qml:516",
"comment": ""
},
{
"term": "Config validation failed",
"context": "Config validation failed",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1916, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1924",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1978, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1986",
"comment": ""
},
{
@@ -2960,7 +3146,7 @@
{
"term": "Configure match criteria and actions",
"context": "Configure match criteria and actions",
- "reference": "Modals/WindowRuleModal.qml:414",
+ "reference": "Modals/WindowRuleModal.qml:591",
"comment": ""
},
{
@@ -3014,7 +3200,7 @@
{
"term": "Conflicts with: %1",
"context": "Conflicts with: %1",
- "reference": "Widgets/KeybindItem.qml:787",
+ "reference": "Widgets/KeybindItem.qml:826",
"comment": ""
},
{
@@ -3044,13 +3230,13 @@
{
"term": "Connected",
"context": "Connected",
- "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkTab.qml:446, Modules/Settings/NetworkTab.qml:1195, Modules/Settings/NetworkTab.qml:1554, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:56, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:420, Modules/ControlCenter/Components/DragDropGrid.qml:423, Modules/ControlCenter/Components/DragDropGrid.qml:425, Modules/ControlCenter/Components/DragDropGrid.qml:428",
+ "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkTab.qml:446, Modules/Settings/NetworkTab.qml:1195, Modules/Settings/NetworkTab.qml:1554, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:56, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/Components/DragDropGrid.qml:448, Modules/ControlCenter/Components/DragDropGrid.qml:451, Modules/ControlCenter/Components/DragDropGrid.qml:453, Modules/ControlCenter/Components/DragDropGrid.qml:456",
"comment": "network status"
},
{
"term": "Connected Device",
"context": "Connected Device",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:452",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:480",
"comment": "bluetooth status"
},
{
@@ -3086,13 +3272,13 @@
{
"term": "Connecting to clipboard service…",
"context": "Connecting to clipboard service…",
- "reference": "Modals/Clipboard/ClipboardContent.qml:125, Modals/Clipboard/ClipboardContent.qml:185",
+ "reference": "Modals/Clipboard/ClipboardContent.qml:131, Modals/Clipboard/ClipboardContent.qml:205",
"comment": ""
},
{
"term": "Connecting...",
"context": "Connecting...",
- "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:374, Modules/ControlCenter/Components/DragDropGrid.qml:416, Modules/ControlCenter/Components/DragDropGrid.qml:440",
+ "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Components/DragDropGrid.qml:402, Modules/ControlCenter/Components/DragDropGrid.qml:444, Modules/ControlCenter/Components/DragDropGrid.qml:468",
"comment": "bluetooth status | network status"
},
{
@@ -3125,6 +3311,12 @@
"reference": "Modules/Settings/DockTab.qml:510, Modules/Settings/LauncherTab.qml:531",
"comment": ""
},
+ {
+ "term": "Contributor",
+ "context": "Contributor",
+ "reference": "Modules/Settings/PluginBrowser.qml:39",
+ "comment": "plugin browser sort option"
+ },
{
"term": "Control Center",
"context": "Control Center",
@@ -3134,7 +3326,7 @@
{
"term": "Control Center Tile Color",
"context": "Control Center Tile Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1566",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1579",
"comment": ""
},
{
@@ -3182,37 +3374,37 @@
{
"term": "Controls opacity of all popouts, modals, and their content layers",
"context": "Controls opacity of all popouts, modals, and their content layers",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1638",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1651",
"comment": ""
},
{
"term": "Controls outlines around blurred foreground cards, pills, and notification cards",
"context": "Controls outlines around blurred foreground cards, pills, and notification cards",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1881",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1894",
"comment": ""
},
{
"term": "Controls shadow cast direction for elevation layers",
"context": "Controls shadow cast direction for elevation layers",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1745",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1758",
"comment": ""
},
{
"term": "Controls the base blur radius and offset of shadows",
"context": "Controls the base blur radius and offset of shadows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1677",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1690",
"comment": ""
},
{
"term": "Controls the outer edge of protocol-blurred windows",
"context": "Controls the outer edge of protocol-blurred windows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1934",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1947",
"comment": ""
},
{
"term": "Controls the transparency of the shadow",
"context": "Controls the transparency of the shadow",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1692",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1705",
"comment": ""
},
{
@@ -3221,10 +3413,16 @@
"reference": "Modules/Settings/GreeterTab.qml:722",
"comment": ""
},
+ {
+ "term": "Convert to DMS",
+ "context": "Convert to DMS",
+ "reference": "Modules/Settings/WindowRulesTab.qml:1019",
+ "comment": ""
+ },
{
"term": "Cooldown",
"context": "Cooldown",
- "reference": "Widgets/KeybindItem.qml:1632",
+ "reference": "Widgets/KeybindItem.qml:1688",
"comment": ""
},
{
@@ -3248,7 +3446,7 @@
{
"term": "Copied to clipboard",
"context": "Copied to clipboard",
- "reference": "Services/ClipboardService.qml:235, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:321, Modals/Settings/SettingsModal.qml:338, Modules/Notepad/NotepadTextEditor.qml:241, Modules/Settings/DesktopWidgetInstanceCard.qml:426",
+ "reference": "Services/ClipboardService.qml:237, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:321, Modals/Settings/SettingsModal.qml:338, Modules/Notepad/NotepadTextEditor.qml:241, Modules/Settings/DesktopWidgetInstanceCard.qml:426",
"comment": ""
},
{
@@ -3293,12 +3491,6 @@
"reference": "Modules/ProcessList/ProcessContextMenu.qml:21",
"comment": ""
},
- {
- "term": "Copy Path",
- "context": "Copy Path",
- "reference": "Modals/FileBrowser/FileBrowserItemContextMenu.qml:28",
- "comment": ""
- },
{
"term": "Copy Text",
"context": "Copy Text",
@@ -3308,13 +3500,13 @@
{
"term": "Copy path",
"context": "Copy path",
- "reference": "Modals/DankLauncherV2/Controller.qml:1216",
+ "reference": "Modals/DankLauncherV2/Controller.qml:1216, Modals/FileBrowser/FileBrowserItemContextMenu.qml:28",
"comment": ""
},
{
"term": "Corner Radius",
"context": "Corner Radius",
- "reference": "Modals/WindowRuleModal.qml:795, Modules/Settings/ThemeColorsTab.qml:1652",
+ "reference": "Modals/WindowRuleModal.qml:1144, Modules/Settings/ThemeColorsTab.qml:1665",
"comment": ""
},
{
@@ -3329,6 +3521,12 @@
"reference": "Modules/Settings/DankBarTab.qml:1026",
"comment": ""
},
+ {
+ "term": "Couldn't open a terminal for the auto-login update.",
+ "context": "Couldn't open a terminal for the auto-login update.",
+ "reference": "Common/settings/Processes.qml:595",
+ "comment": ""
+ },
{
"term": "Count Only",
"context": "Count Only",
@@ -3344,7 +3542,7 @@
{
"term": "Create",
"context": "Create",
- "reference": "Modals/WindowRuleModal.qml:1154, Modules/Settings/DisplayConfigTab.qml:277",
+ "reference": "Modals/WindowRuleModal.qml:1586, Modules/Settings/DisplayConfigTab.qml:277",
"comment": ""
},
{
@@ -3368,7 +3566,7 @@
{
"term": "Create Window Rule",
"context": "Create Window Rule",
- "reference": "Modals/WindowRuleModal.qml:24",
+ "reference": "Modals/WindowRuleModal.qml:28",
"comment": ""
},
{
@@ -3380,7 +3578,7 @@
{
"term": "Create rule for:",
"context": "Create rule for:",
- "reference": "Modules/Settings/WindowRulesTab.qml:287",
+ "reference": "Modules/Settings/WindowRulesTab.qml:444",
"comment": ""
},
{
@@ -3446,7 +3644,7 @@
{
"term": "Current Monitor",
"context": "Current Monitor",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2574",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2719",
"comment": "Running apps filter: only show apps from the same monitor"
},
{
@@ -3470,7 +3668,7 @@
{
"term": "Current Theme: %1",
"context": "Current Theme: %1",
- "reference": "Modules/Settings/ThemeColorsTab.qml:240, Modules/Settings/ThemeColorsTab.qml:242, Modules/Settings/ThemeColorsTab.qml:243",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:253, Modules/Settings/ThemeColorsTab.qml:255, Modules/Settings/ThemeColorsTab.qml:256",
"comment": "current theme label"
},
{
@@ -3482,7 +3680,7 @@
{
"term": "Current Workspace",
"context": "Current Workspace",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2522",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2667",
"comment": "Running apps filter: only show apps from the active workspace"
},
{
@@ -3506,25 +3704,31 @@
{
"term": "Cursor Config Not Configured",
"context": "Cursor Config Not Configured",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2353",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2366",
"comment": ""
},
{
"term": "Cursor Include Missing",
"context": "Cursor Include Missing",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2353",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2366",
"comment": ""
},
{
"term": "Cursor Size",
"context": "Cursor Size",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2401",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2414",
"comment": ""
},
{
"term": "Cursor Theme",
"context": "Cursor Theme",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2311, Modules/Settings/ThemeColorsTab.qml:2385",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2324, Modules/Settings/ThemeColorsTab.qml:2398",
+ "comment": ""
+ },
+ {
+ "term": "Curve",
+ "context": "Curve",
+ "reference": "Modules/Settings/TypographyMotionTab.qml:350",
"comment": ""
},
{
@@ -3536,7 +3740,7 @@
{
"term": "Custom",
"context": "Custom",
- "reference": "Widgets/KeybindItem.qml:1376, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:299, Modules/Settings/ThemeColorsTab.qml:299, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1718, Modules/Settings/ThemeColorsTab.qml:1729, Modules/Settings/ThemeColorsTab.qml:1898, Modules/Settings/ThemeColorsTab.qml:1908, Modules/Settings/ThemeColorsTab.qml:1920, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92",
+ "reference": "Widgets/KeybindItem.qml:1430, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1731, Modules/Settings/ThemeColorsTab.qml:1742, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1921, Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92",
"comment": "blur border color | shadow color option | theme category option"
},
{
@@ -3602,7 +3806,7 @@
{
"term": "Custom Shadow Color",
"context": "Custom Shadow Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1789",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1802",
"comment": ""
},
{
@@ -3638,13 +3842,13 @@
{
"term": "Custom power profile",
"context": "Custom power profile",
- "reference": "Common/Theme.qml:1568",
+ "reference": "Common/Theme.qml:1569",
"comment": "power profile description"
},
{
"term": "Custom theme loaded from JSON file",
"context": "Custom theme loaded from JSON file",
- "reference": "Modules/Settings/ThemeColorsTab.qml:258",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:271",
"comment": "custom theme description"
},
{
@@ -3656,7 +3860,7 @@
{
"term": "Custom...",
"context": "Custom...",
- "reference": "Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:183, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:270, Modules/Settings/DisplayConfig/OutputCard.qml:221, Modules/Settings/DisplayConfig/OutputCard.qml:227, Modules/Settings/DisplayConfig/OutputCard.qml:229, Modules/Settings/DisplayConfig/OutputCard.qml:235",
+ "reference": "Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:183, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:270, Modules/Settings/DisplayConfig/OutputCard.qml:215, Modules/Settings/DisplayConfig/OutputCard.qml:250",
"comment": "date format option"
},
{
@@ -3708,9 +3912,9 @@
"comment": ""
},
{
- "term": "DMS Settings now writes Lua. Edits won't apply until you migrate.",
- "context": "DMS Settings now writes Lua. Edits won't apply until you migrate.",
- "reference": "Services/KeybindsService.qml:516",
+ "term": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.",
+ "context": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.",
+ "reference": "Services/KeybindsService.qml:535",
"comment": ""
},
{
@@ -3722,7 +3926,13 @@
{
"term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.",
"context": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.",
- "reference": "Modules/Settings/GreeterTab.qml:755",
+ "reference": "Modules/Settings/GreeterTab.qml:765",
+ "comment": ""
+ },
+ {
+ "term": "DMS needs administrator access. The terminal closes automatically when done.",
+ "context": "DMS needs administrator access. The terminal closes automatically when done.",
+ "reference": "Common/settings/Processes.qml:364",
"comment": ""
},
{
@@ -3746,13 +3956,13 @@
{
"term": "DMS shell actions (launcher, clipboard, etc.)",
"context": "DMS shell actions (launcher, clipboard, etc.)",
- "reference": "Widgets/KeybindItem.qml:821",
+ "reference": "Widgets/KeybindItem.qml:860",
"comment": ""
},
{
"term": "DMS_SOCKET not available",
"context": "DMS_SOCKET not available",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:288",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:316",
"comment": ""
},
{
@@ -3800,43 +4010,37 @@
{
"term": "DankShell & System Icons (requires restart)",
"context": "DankShell & System Icons (requires restart)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2509",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2522",
"comment": ""
},
{
"term": "Dark Mode",
"context": "Dark Mode",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1425, Modules/Settings/WallpaperTab.qml:582, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:722",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1438, Modules/Settings/WallpaperTab.qml:582, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:750",
"comment": ""
},
{
"term": "Dark mode base",
"context": "Dark mode base",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2752",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2765",
"comment": ""
},
{
"term": "Dark mode harmony",
"context": "Dark mode harmony",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2786",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2799",
"comment": ""
},
{
"term": "Darken Modal Background",
"context": "Darken Modal Background",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2264, Modules/Settings/ThemeColorsTab.qml:2272",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2277, Modules/Settings/ThemeColorsTab.qml:2285",
"comment": ""
},
{
"term": "Date Format",
"context": "Date Format",
- "reference": "Modules/Settings/TimeWeatherTab.qml:84",
- "comment": ""
- },
- {
- "term": "Date format",
- "context": "Date format",
- "reference": "Modules/Settings/GreeterTab.qml:633",
+ "reference": "Modules/Settings/GreeterTab.qml:633, Modules/Settings/TimeWeatherTab.qml:84",
"comment": ""
},
{
@@ -3896,13 +4100,13 @@
{
"term": "Default",
"context": "Default",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1518, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142",
- "comment": "notification rule action option | notification rule urgency option | widget style option"
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1531, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/PluginBrowser.qml:37, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/FrameTab.qml:207, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142",
+ "comment": "notification rule action option | notification rule urgency option | plugin browser sort option | widget style option"
},
{
"term": "Default (Black)",
"context": "Default (Black)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1720, Modules/Settings/DankBarTab.qml:1610",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1733, Modules/Settings/DankBarTab.qml:1610",
"comment": "shadow color option"
},
{
@@ -3968,7 +4172,7 @@
{
"term": "Define rules for window behavior. Saves to %1",
"context": "Define rules for window behavior. Saves to %1",
- "reference": "Modules/Settings/WindowRulesTab.qml:262",
+ "reference": "Modules/Settings/WindowRulesTab.qml:415",
"comment": ""
},
{
@@ -4007,10 +4211,16 @@
"reference": "Modules/Settings/PrinterTab.qml:1092",
"comment": ""
},
+ {
+ "term": "Delete Rule",
+ "context": "Delete Rule",
+ "reference": "Modules/Settings/WindowRulesTab.qml:753",
+ "comment": ""
+ },
{
"term": "Delete Saved Item?",
"context": "Delete Saved Item?",
- "reference": "Services/ClipboardService.qml:305",
+ "reference": "Services/ClipboardService.qml:307",
"comment": ""
},
{
@@ -4047,12 +4257,12 @@
"term": "Demi Bold",
"context": "Demi Bold",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:268, Modules/Settings/TypographyMotionTab.qml:297",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Dependencies & documentation",
"context": "Dependencies & documentation",
- "reference": "Modules/Settings/GreeterTab.qml:751",
+ "reference": "Modules/Settings/GreeterTab.qml:761",
"comment": ""
},
{
@@ -4085,6 +4295,12 @@
"reference": "Modals/FileBrowser/FileBrowserContent.qml:278",
"comment": ""
},
+ {
+ "term": "Desktop Application",
+ "context": "Desktop Application",
+ "reference": "Modules/Settings/AutoStartTab.qml:354, Modules/Settings/AutoStartTab.qml:355, Modules/Settings/AutoStartTab.qml:357",
+ "comment": ""
+ },
{
"term": "Desktop Clock",
"context": "Desktop Clock",
@@ -4142,7 +4358,7 @@
{
"term": "Device",
"context": "Device",
- "reference": "Widgets/KeybindItem.qml:1005, Modules/Settings/PrinterTab.qml:423",
+ "reference": "Widgets/KeybindItem.qml:1053, Modules/Settings/PrinterTab.qml:423",
"comment": ""
},
{
@@ -4220,21 +4436,27 @@
{
"term": "Disabled",
"context": "Disabled",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1399, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NetworkTab.qml:819, Modules/Settings/DankBarTab.qml:358, Modules/Settings/NotificationsTab.qml:740, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1847, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1855, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1867, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1881, Modules/ControlCenter/Components/DragDropGrid.qml:398",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/AutoStartTab.qml:684, Modules/Settings/LockScreenTab.qml:148, Modules/Settings/NetworkTab.qml:819, Modules/Settings/DankBarTab.qml:358, Modules/Settings/NotificationsTab.qml:740, Modules/Settings/DisplayConfig/OutputCard.qml:128, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1909, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1917, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1929, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1943, Modules/ControlCenter/Components/DragDropGrid.qml:426",
"comment": "bluetooth status | lock screen notification mode option"
},
{
"term": "Disabled by Frame Mode",
"context": "Disabled by Frame Mode",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2265",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2278",
"comment": ""
},
{
"term": "Disabling WiFi...",
"context": "Disabling WiFi...",
- "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:372",
+ "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:400",
"comment": "network status"
},
+ {
+ "term": "Disabling auto-login on startup…",
+ "context": "Disabling auto-login on startup…",
+ "reference": "Common/settings/Processes.qml:573",
+ "comment": ""
+ },
{
"term": "Disc",
"context": "Disc",
@@ -4292,13 +4514,13 @@
{
"term": "Disk Usage",
"context": "Disk Usage",
- "reference": "Modules/Settings/WidgetsTab.qml:124, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:35",
+ "reference": "Modules/Settings/WidgetsTab.qml:124, Modules/ControlCenter/Models/WidgetModel.qml:229, Modules/ControlCenter/Widgets/DiskUsagePill.qml:36, Modules/ControlCenter/Widgets/DiskUsagePill.qml:42",
"comment": ""
},
{
"term": "Disk Usage Display",
"context": "Disk Usage Display",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1303",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1424",
"comment": ""
},
{
@@ -4310,13 +4532,13 @@
{
"term": "Dismiss",
"context": "Dismiss",
- "reference": "Modules/Notifications/Popup/NotificationPopup.qml:95, Modules/Notifications/Popup/NotificationPopup.qml:1429, Modules/Notifications/Center/NotificationCard.qml:831, Modules/Notifications/Center/NotificationCard.qml:971, Modules/Notifications/Center/NotificationCard.qml:1121",
+ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:95, Modules/Notifications/Popup/NotificationPopup.qml:1412, Modules/Notifications/Center/NotificationCard.qml:835, Modules/Notifications/Center/NotificationCard.qml:975, Modules/Notifications/Center/NotificationCard.qml:1125",
"comment": ""
},
{
"term": "Display",
"context": "Display",
- "reference": "Modules/Settings/WindowRulesTab.qml:553, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:38",
+ "reference": "Modules/Settings/WindowRulesTab.qml:96, Modules/ControlCenter/BuiltinPlugins/DisplayProfilesWidget.qml:38",
"comment": ""
},
{
@@ -4403,6 +4625,12 @@
"reference": "Modules/Notepad/NotepadSettings.qml:143",
"comment": ""
},
+ {
+ "term": "Display name for this entry",
+ "context": "Display name for this entry",
+ "reference": "Modules/Settings/AutoStartTab.qml:514",
+ "comment": ""
+ },
{
"term": "Display only workspaces that contain windows",
"context": "Display only workspaces that contain windows",
@@ -4421,6 +4649,12 @@
"reference": "Modules/Settings/TimeWeatherTab.qml:64",
"comment": ""
},
+ {
+ "term": "Display setup failed",
+ "context": "Display setup failed",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1461",
+ "comment": ""
+ },
{
"term": "Display the power system menu",
"context": "Display the power system menu",
@@ -4466,7 +4700,7 @@
{
"term": "Do Not Disturb",
"context": "Do Not Disturb",
- "reference": "Modules/Settings/NotificationsTab.qml:397, Modules/ControlCenter/Models/WidgetModel.qml:145, Modules/ControlCenter/Widgets/DndPill.qml:10, Modules/Notifications/Center/NotificationHeader.qml:77, Modules/Notifications/Center/NotificationSettings.qml:151, Modules/Notifications/Center/DndDurationMenu.qml:140",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1660, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/NotificationsTab.qml:397, Modules/ControlCenter/Models/WidgetModel.qml:145, Modules/ControlCenter/Widgets/DndPill.qml:10, Modules/Notifications/Center/NotificationHeader.qml:77, Modules/Notifications/Center/NotificationSettings.qml:151, Modules/Notifications/Center/DndDurationMenu.qml:140",
"comment": ""
},
{
@@ -4478,7 +4712,7 @@
{
"term": "Dock & Launcher",
"context": "Dock & Launcher",
- "reference": "Modals/Settings/SettingsSidebar.qml:172, Modals/Settings/SettingsSidebar.qml:604",
+ "reference": "Modals/Settings/SettingsSidebar.qml:172, Modals/Settings/SettingsSidebar.qml:613",
"comment": ""
},
{
@@ -4550,7 +4784,7 @@
{
"term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.",
"context": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.",
- "reference": "Modules/Settings/WidgetsTab.qml:966",
+ "reference": "Modules/Settings/WidgetsTab.qml:995",
"comment": ""
},
{
@@ -4580,7 +4814,7 @@
{
"term": "Drop your override for %1 so the DMS default action re-applies?",
"context": "Drop your override for %1 so the DMS default action re-applies?",
- "reference": "Modules/Settings/KeybindsTab.qml:117",
+ "reference": "Modules/Settings/KeybindsTab.qml:121",
"comment": ""
},
{
@@ -4622,13 +4856,13 @@
{
"term": "Dynamic",
"context": "Dynamic",
- "reference": "Modules/Settings/ThemeColorsTab.qml:240, Modules/Settings/TypographyMotionTab.qml:76",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:253, Modules/Settings/TypographyMotionTab.qml:76",
"comment": "dynamic theme name"
},
{
"term": "Dynamic Properties",
"context": "Dynamic Properties",
- "reference": "Modals/WindowRuleModal.qml:670",
+ "reference": "Modals/WindowRuleModal.qml:1017",
"comment": ""
},
{
@@ -4640,13 +4874,13 @@
{
"term": "Dynamic colors from wallpaper",
"context": "Dynamic colors from wallpaper",
- "reference": "Modules/Settings/ThemeColorsTab.qml:498",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:511",
"comment": "dynamic colors description"
},
{
"term": "Dynamic colors parse error: %1",
"context": "Dynamic colors parse error: %1",
- "reference": "Common/Theme.qml:2122",
+ "reference": "Common/Theme.qml:2123",
"comment": ""
},
{
@@ -4682,19 +4916,25 @@
{
"term": "Edit Clipboard",
"context": "Edit Clipboard",
- "reference": "Modals/Clipboard/ClipboardEditor.qml:199",
+ "reference": "Modals/Clipboard/ClipboardEditor.qml:211",
+ "comment": ""
+ },
+ {
+ "term": "Edit Rule",
+ "context": "Edit Rule",
+ "reference": "Modules/Settings/WindowRulesTab.qml:738",
"comment": ""
},
{
"term": "Edit Window Rule",
"context": "Edit Window Rule",
- "reference": "Modals/WindowRuleModal.qml:24, Modals/WindowRuleModal.qml:405",
+ "reference": "Modals/WindowRuleModal.qml:28, Modals/WindowRuleModal.qml:582",
"comment": ""
},
{
"term": "Edit clipboard text",
"context": "Edit clipboard text",
- "reference": "Modals/Clipboard/ClipboardEditor.qml:280",
+ "reference": "Modals/Clipboard/ClipboardEditor.qml:291",
"comment": ""
},
{
@@ -4850,7 +5090,7 @@
{
"term": "Enabled",
"context": "Enabled",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1399, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1847, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1855, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1881, Modules/ControlCenter/Components/DragDropGrid.qml:399",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1909, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1917, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1943, Modules/ControlCenter/Components/DragDropGrid.qml:427",
"comment": "bluetooth status"
},
{
@@ -4916,25 +5156,25 @@
{
"term": "Enabling WiFi...",
"context": "Enabling WiFi...",
- "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:372",
+ "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:193, Modules/ControlCenter/Components/DragDropGrid.qml:400",
"comment": "network status"
},
{
"term": "End",
"context": "End",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1214, Modules/Settings/GammaControlTab.qml:295",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1227, Modules/Settings/GammaControlTab.qml:295",
"comment": ""
},
{
"term": "Enlarge on Hover",
"context": "Enlarge on Hover",
- "reference": "Modules/Settings/WidgetsTabSection.qml:3016",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:3161",
"comment": ""
},
{
"term": "Enlargement %",
"context": "Enlargement %",
- "reference": "Modules/Settings/WidgetsTabSection.qml:3055",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:3200",
"comment": ""
},
{
@@ -5051,16 +5291,22 @@
"reference": "Modules/Settings/NetworkTab.qml:1444",
"comment": ""
},
+ {
+ "term": "Entry Type",
+ "context": "Entry Type",
+ "reference": "Modules/Settings/AutoStartTab.qml:352",
+ "comment": ""
+ },
{
"term": "Entry pinned",
"context": "Entry pinned",
- "reference": "Services/ClipboardService.qml:340",
+ "reference": "Services/ClipboardService.qml:342",
"comment": ""
},
{
"term": "Entry unpinned",
"context": "Entry unpinned",
- "reference": "Services/ClipboardService.qml:354",
+ "reference": "Services/ClipboardService.qml:356",
"comment": ""
},
{
@@ -5084,7 +5330,7 @@
{
"term": "Ethernet",
"context": "Ethernet",
- "reference": "Modules/Settings/NetworkTab.qml:211, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:328, Modules/ControlCenter/Details/NetworkDetail.qml:136, Modules/ControlCenter/Components/DragDropGrid.qml:378, Modules/ControlCenter/Components/DragDropGrid.qml:381",
+ "reference": "Modules/Settings/NetworkTab.qml:211, Modules/Settings/NetworkTab.qml:260, Modules/Settings/NetworkTab.qml:328, Modules/ControlCenter/Details/NetworkDetail.qml:136, Modules/ControlCenter/Components/DragDropGrid.qml:406, Modules/ControlCenter/Components/DragDropGrid.qml:409",
"comment": "network status"
},
{
@@ -5162,7 +5408,7 @@
{
"term": "Extend battery life",
"context": "Extend battery life",
- "reference": "Common/Theme.qml:1562",
+ "reference": "Common/Theme.qml:1563",
"comment": "power profile description"
},
{
@@ -5187,13 +5433,13 @@
"term": "Extra Bold",
"context": "Extra Bold",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:272, Modules/Settings/TypographyMotionTab.qml:303",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Extra Light",
"context": "Extra Light",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:260, Modules/Settings/TypographyMotionTab.qml:285",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "F1/I: Toggle • F10: Help",
@@ -5234,7 +5480,7 @@
{
"term": "Failed to add binds include",
"context": "Failed to add binds include",
- "reference": "Services/KeybindsService.qml:239",
+ "reference": "Services/KeybindsService.qml:242",
"comment": ""
},
{
@@ -5246,19 +5492,19 @@
{
"term": "Failed to apply GTK colors",
"context": "Failed to apply GTK colors",
- "reference": "Common/Theme.qml:1875",
+ "reference": "Common/Theme.qml:1876",
"comment": ""
},
{
"term": "Failed to apply Qt colors",
"context": "Failed to apply Qt colors",
- "reference": "Common/Theme.qml:1896",
+ "reference": "Common/Theme.qml:1897",
"comment": ""
},
{
"term": "Failed to apply profile",
"context": "Failed to apply profile",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:494",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:506",
"comment": ""
},
{
@@ -5282,7 +5528,7 @@
{
"term": "Failed to check pin limit",
"context": "Failed to check pin limit",
- "reference": "Services/ClipboardService.qml:323",
+ "reference": "Services/ClipboardService.qml:325",
"comment": ""
},
{
@@ -5300,7 +5546,7 @@
{
"term": "Failed to copy entry",
"context": "Failed to copy entry",
- "reference": "Services/ClipboardService.qml:232, Services/ClipboardService.qml:263",
+ "reference": "Services/ClipboardService.qml:234, Services/ClipboardService.qml:265",
"comment": ""
},
{
@@ -5405,6 +5651,12 @@
"reference": "Modals/WifiQRCodeModal.qml:55",
"comment": ""
},
+ {
+ "term": "Failed to generate systemd override",
+ "context": "Failed to generate systemd override",
+ "reference": "Modules/Settings/AutoStartTab.qml:281, Modules/Settings/AutoStartTab.qml:295",
+ "comment": ""
+ },
{
"term": "Failed to hold job",
"context": "Failed to hold job",
@@ -5450,19 +5702,19 @@
{
"term": "Failed to parse plugin_settings.json",
"context": "Failed to parse plugin_settings.json",
- "reference": "Common/SettingsData.qml:1493",
+ "reference": "Common/SettingsData.qml:1507",
"comment": ""
},
{
"term": "Failed to parse session.json",
"context": "Failed to parse session.json",
- "reference": "Common/SessionData.qml:263, Common/SessionData.qml:343",
+ "reference": "Common/SessionData.qml:265, Common/SessionData.qml:345",
"comment": ""
},
{
"term": "Failed to parse settings.json",
"context": "Failed to parse settings.json",
- "reference": "Common/SettingsData.qml:1395, Common/SettingsData.qml:3160",
+ "reference": "Common/SettingsData.qml:1409, Common/SettingsData.qml:3174",
"comment": ""
},
{
@@ -5474,7 +5726,7 @@
{
"term": "Failed to pin entry",
"context": "Failed to pin entry",
- "reference": "Services/ClipboardService.qml:337",
+ "reference": "Services/ClipboardService.qml:339",
"comment": ""
},
{
@@ -5486,7 +5738,7 @@
{
"term": "Failed to read theme file: %1",
"context": "Failed to read theme file: %1",
- "reference": "Common/Theme.qml:2077",
+ "reference": "Common/Theme.qml:2078",
"comment": ""
},
{
@@ -5516,7 +5768,7 @@
{
"term": "Failed to remove keybind",
"context": "Failed to remove keybind",
- "reference": "Services/KeybindsService.qml:216",
+ "reference": "Services/KeybindsService.qml:219",
"comment": ""
},
{
@@ -5570,13 +5822,13 @@
{
"term": "Failed to save keybind",
"context": "Failed to save keybind",
- "reference": "Services/KeybindsService.qml:190",
+ "reference": "Services/KeybindsService.qml:193",
"comment": ""
},
{
"term": "Failed to save profile",
"context": "Failed to save profile",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:607",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:619",
"comment": ""
},
{
@@ -5624,7 +5876,7 @@
{
"term": "Failed to set power profile",
"context": "Failed to set power profile",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:33, Modules/DankBar/Popouts/BatteryPopout.qml:30, Modules/DankBar/Widgets/Battery.qml:165",
+ "reference": "Modals/PowerProfileModal.qml:111, Modules/ControlCenter/Details/BatteryDetail.qml:33, Modules/DankBar/Popouts/BatteryPopout.qml:30, Modules/DankBar/Widgets/Battery.qml:160",
"comment": ""
},
{
@@ -5654,7 +5906,7 @@
{
"term": "Failed to unpin entry",
"context": "Failed to unpin entry",
- "reference": "Services/ClipboardService.qml:351",
+ "reference": "Services/ClipboardService.qml:353",
"comment": ""
},
{
@@ -5672,7 +5924,7 @@
{
"term": "Failed to update clipboard",
"context": "Failed to update clipboard",
- "reference": "Modals/Clipboard/ClipboardEditor.qml:118",
+ "reference": "Modals/Clipboard/ClipboardEditor.qml:130",
"comment": ""
},
{
@@ -5693,10 +5945,22 @@
"reference": "Services/CupsService.qml:592",
"comment": ""
},
+ {
+ "term": "Failed to write Hyprland outputs config.",
+ "context": "Failed to write Hyprland outputs config.",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1461",
+ "comment": ""
+ },
+ {
+ "term": "Failed to write autostart entry",
+ "context": "Failed to write autostart entry",
+ "reference": "Modules/Settings/AutoStartTab.qml:165",
+ "comment": ""
+ },
{
"term": "Failed to write temp file for validation",
"context": "Failed to write temp file for validation",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1977",
"comment": ""
},
{
@@ -5807,6 +6071,12 @@
"reference": "Modules/Settings/GreeterTab.qml:696, Modules/Settings/WallpaperTab.qml:312",
"comment": "wallpaper fill mode"
},
+ {
+ "term": "Filter",
+ "context": "Filter",
+ "reference": "Modules/Settings/PluginBrowser.qml:691",
+ "comment": "plugin browser category filter label"
+ },
{
"term": "Find in Text",
"context": "Find in Text",
@@ -5870,7 +6140,7 @@
{
"term": "First Time Setup",
"context": "First Time Setup",
- "reference": "Modules/Settings/KeybindsTab.qml:379, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:48",
+ "reference": "Modules/Settings/KeybindsTab.qml:386, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:51",
"comment": ""
},
{
@@ -5882,49 +6152,55 @@
{
"term": "Fix Now",
"context": "Fix Now",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2371, Modules/Settings/WindowRulesTab.qml:374, Modules/Settings/KeybindsTab.qml:420, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:84",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2384, Modules/Settings/WindowRulesTab.qml:532, Modules/Settings/KeybindsTab.qml:429, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:89",
"comment": ""
},
{
"term": "Fixing...",
"context": "Fixing...",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2371, Modules/Settings/WindowRulesTab.qml:374, Modules/Settings/KeybindsTab.qml:417, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:81",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2384, Modules/Settings/WindowRulesTab.qml:532, Modules/Settings/KeybindsTab.qml:426, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:86",
"comment": ""
},
{
"term": "Flags",
"context": "Flags",
- "reference": "Widgets/KeybindItem.qml:1525",
+ "reference": "Widgets/KeybindItem.qml:1581",
"comment": ""
},
{
"term": "Flipped",
"context": "Flipped",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2479, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2500",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2585, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2606",
"comment": ""
},
{
"term": "Flipped 180°",
"context": "Flipped 180°",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2483, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2504",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2589, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2610",
"comment": ""
},
{
"term": "Flipped 270°",
"context": "Flipped 270°",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2485, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2506",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2591, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2612",
"comment": ""
},
{
"term": "Flipped 90°",
"context": "Flipped 90°",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2481, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2502",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2587, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2608",
"comment": ""
},
{
"term": "Float",
"context": "Float",
- "reference": "Modals/WindowRuleModal.qml:527, Modules/Settings/WindowRulesTab.qml:542",
+ "reference": "Modals/WindowRuleModal.qml:874, Modules/Settings/WindowRulesTab.qml:85",
+ "comment": ""
+ },
+ {
+ "term": "Floating",
+ "context": "Floating",
+ "reference": "Modals/WindowRuleModal.qml:810, Modules/Settings/WindowRulesTab.qml:37",
"comment": ""
},
{
@@ -5942,13 +6218,31 @@
{
"term": "Focus",
"context": "Focus",
- "reference": "Modals/WindowRuleModal.qml:544, Modules/Settings/WindowRulesTab.qml:546",
+ "reference": "Modals/WindowRuleModal.qml:891, Modules/Settings/WindowRulesTab.qml:89",
+ "comment": ""
+ },
+ {
+ "term": "Focus Ring Color",
+ "context": "Focus Ring Color",
+ "reference": "Modules/Settings/WindowRulesTab.qml:125",
+ "comment": ""
+ },
+ {
+ "term": "Focus Ring Off",
+ "context": "Focus Ring Off",
+ "reference": "Modules/Settings/WindowRulesTab.qml:126",
"comment": ""
},
{
"term": "Focus at Startup",
"context": "Focus at Startup",
- "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1857",
+ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:77, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1919",
+ "comment": ""
+ },
+ {
+ "term": "Focused",
+ "context": "Focused",
+ "reference": "Modals/WindowRuleModal.qml:819, Modules/Settings/WindowRulesTab.qml:39",
"comment": ""
},
{
@@ -5966,7 +6260,7 @@
{
"term": "Focused Monitor Only",
"context": "Focused Monitor Only",
- "reference": "Modules/Settings/NotificationsTab.qml:308",
+ "reference": "Modules/Settings/DisplayWidgetsTab.qml:422, Modules/Settings/NotificationsTab.qml:308",
"comment": ""
},
{
@@ -5975,12 +6269,6 @@
"reference": "Modules/Settings/WidgetsTab.qml:59",
"comment": ""
},
- {
- "term": "Focused monitor only",
- "context": "Focused monitor only",
- "reference": "Modules/Settings/DisplayWidgetsTab.qml:422",
- "comment": ""
- },
{
"term": "Fog",
"context": "Fog",
@@ -6002,7 +6290,7 @@
{
"term": "Follow DMS background color",
"context": "Follow DMS background color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2820",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2833",
"comment": ""
},
{
@@ -6014,7 +6302,7 @@
{
"term": "Follow focus",
"context": "Follow focus",
- "reference": "Widgets/KeybindItem.qml:1284",
+ "reference": "Widgets/KeybindItem.qml:1338",
"comment": ""
},
{
@@ -6104,7 +6392,7 @@
{
"term": "Force HDR",
"context": "Force HDR",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1877",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1939",
"comment": ""
},
{
@@ -6113,16 +6401,22 @@
"reference": "Modules/ProcessList/ProcessContextMenu.qml:49",
"comment": ""
},
+ {
+ "term": "Force RGBX",
+ "context": "Force RGBX",
+ "reference": "Modules/Settings/WindowRulesTab.qml:128",
+ "comment": ""
+ },
{
"term": "Force Wide Color",
"context": "Force Wide Color",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1879",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1941",
"comment": ""
},
{
"term": "Force terminal applications to always use dark color schemes",
"context": "Force terminal applications to always use dark color schemes",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2302",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2315",
"comment": ""
},
{
@@ -6146,7 +6440,7 @@
{
"term": "Foreground Layers",
"context": "Foreground Layers",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1868",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1881",
"comment": ""
},
{
@@ -6248,7 +6542,7 @@
{
"term": "Full Command:",
"context": "Full Command:",
- "reference": "Modules/ProcessList/ProcessesView.qml:681",
+ "reference": "Modules/ProcessList/ProcessesView.qml:690",
"comment": "process detail label"
},
{
@@ -6263,6 +6557,12 @@
"reference": "Modules/Settings/GreeterTab.qml:424, Modules/Settings/TimeWeatherTab.qml:131, Modules/Settings/TimeWeatherTab.qml:166, Modules/Settings/TimeWeatherTab.qml:182, Modules/Settings/TimeWeatherTab.qml:218, Modules/Settings/TimeWeatherTab.qml:253, Modules/Settings/TimeWeatherTab.qml:269",
"comment": "date format option"
},
+ {
+ "term": "Full command to execute",
+ "context": "Full command to execute",
+ "reference": "Modules/Settings/AutoStartTab.qml:545",
+ "comment": ""
+ },
{
"term": "Full with Year",
"context": "Full with Year",
@@ -6272,13 +6572,13 @@
{
"term": "Fullscreen",
"context": "Fullscreen",
- "reference": "Modals/WindowRuleModal.qml:535, Modules/Settings/WindowRulesTab.qml:545",
+ "reference": "Modals/WindowRuleModal.qml:849, Modals/WindowRuleModal.qml:882, Modules/Settings/WindowRulesTab.qml:45, Modules/Settings/WindowRulesTab.qml:88",
"comment": ""
},
{
"term": "Fullscreen Only",
"context": "Fullscreen Only",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:318, Modules/Settings/DisplayConfig/OutputCard.qml:322, Modules/Settings/DisplayConfig/OutputCard.qml:331",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:338, Modules/Settings/DisplayConfig/OutputCard.qml:347",
"comment": ""
},
{
@@ -6296,7 +6596,7 @@
{
"term": "G: grid • Z/X: size",
"context": "G: grid • Z/X: size",
- "reference": "Modules/Plugins/DesktopPluginWrapper.qml:752",
+ "reference": "Modules/Plugins/DesktopPluginWrapper.qml:754",
"comment": "Widget grid keyboard hints"
},
{
@@ -6326,7 +6626,7 @@
{
"term": "GTK colors applied successfully",
"context": "GTK colors applied successfully",
- "reference": "Common/Theme.qml:1871",
+ "reference": "Common/Theme.qml:1872",
"comment": ""
},
{
@@ -6353,16 +6653,22 @@
"reference": "Modules/Settings/GammaControlTab.qml:77",
"comment": ""
},
+ {
+ "term": "Generate Override",
+ "context": "Generate Override",
+ "reference": "Modules/Settings/AutoStartTab.qml:743",
+ "comment": ""
+ },
{
"term": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.",
"context": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:3028",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:3041",
"comment": ""
},
{
"term": "Generic",
"context": "Generic",
- "reference": "Modules/Settings/ThemeColorsTab.qml:299, Modules/Settings/ThemeColorsTab.qml:299",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:312, Modules/Settings/ThemeColorsTab.qml:312",
"comment": "theme category option"
},
{
@@ -6470,7 +6776,7 @@
{
"term": "Greeter",
"context": "Greeter",
- "reference": "Modals/Settings/SettingsSidebar.qml:325",
+ "reference": "Modals/Settings/SettingsSidebar.qml:332, Modules/Settings/UsersTab.qml:228",
"comment": ""
},
{
@@ -6542,13 +6848,13 @@
{
"term": "Grid: OFF",
"context": "Grid: OFF",
- "reference": "Modules/Plugins/DesktopPluginWrapper.qml:722",
+ "reference": "Modules/Plugins/DesktopPluginWrapper.qml:724",
"comment": "Widget grid snap status"
},
{
"term": "Grid: ON",
"context": "Grid: ON",
- "reference": "Modules/Plugins/DesktopPluginWrapper.qml:722",
+ "reference": "Modules/Plugins/DesktopPluginWrapper.qml:724",
"comment": "Widget grid snap status"
},
{
@@ -6566,7 +6872,7 @@
{
"term": "Group by App",
"context": "Group by App",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2470, Modules/Settings/DockTab.qml:171",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2615, Modules/Settings/DockTab.qml:171",
"comment": ""
},
{
@@ -6578,7 +6884,7 @@
{
"term": "Group removed",
"context": "Group removed",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:237",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:239",
"comment": ""
},
{
@@ -6644,7 +6950,7 @@
{
"term": "Health",
"context": "Health",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:141, Modules/DankBar/Popouts/BatteryPopout.qml:298, Modules/DankBar/Popouts/BatteryPopout.qml:454",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:140, Modules/DankBar/Popouts/BatteryPopout.qml:297, Modules/DankBar/Popouts/BatteryPopout.qml:453",
"comment": ""
},
{
@@ -6668,7 +6974,7 @@
{
"term": "Height",
"context": "Height",
- "reference": "Modules/Settings/WindowRulesTab.qml:550",
+ "reference": "Modules/Settings/WindowRulesTab.qml:93",
"comment": ""
},
{
@@ -6680,7 +6986,7 @@
{
"term": "Help",
"context": "Help",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:614",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:617",
"comment": ""
},
{
@@ -6740,7 +7046,7 @@
{
"term": "Hide 3rd Party",
"context": "Hide 3rd Party",
- "reference": "Modules/Settings/PluginBrowser.qml:274",
+ "reference": "Modules/Settings/PluginBrowser.qml:483",
"comment": ""
},
{
@@ -6758,13 +7064,13 @@
{
"term": "Hide Indicators",
"context": "Hide Indicators",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2864",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:3009",
"comment": ""
},
{
"term": "Hide When Typing",
"context": "Hide When Typing",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2415",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2428",
"comment": ""
},
{
@@ -6776,19 +7082,19 @@
{
"term": "Hide cursor after inactivity (0 = disabled)",
"context": "Hide cursor after inactivity (0 = disabled)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2462",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2475",
"comment": ""
},
{
"term": "Hide cursor when pressing keyboard keys",
"context": "Hide cursor when pressing keyboard keys",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2416",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2429",
"comment": ""
},
{
"term": "Hide cursor when using touch input",
"context": "Hide cursor when using touch input",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2445",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2458",
"comment": ""
},
{
@@ -6812,7 +7118,7 @@
{
"term": "Hide on Touch",
"context": "Hide on Touch",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2444",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2457",
"comment": ""
},
{
@@ -6821,6 +7127,12 @@
"reference": "Modules/Settings/DankBarTab.qml:650",
"comment": ""
},
+ {
+ "term": "High",
+ "context": "High",
+ "reference": "Modules/Settings/TypographyMotionTab.qml:458",
+ "comment": ""
+ },
{
"term": "High-fidelity palette that preserves source hues.",
"context": "High-fidelity palette that preserves source hues.",
@@ -6860,7 +7172,7 @@
{
"term": "History cleared. %1 pinned entries kept.",
"context": "History cleared. %1 pinned entries kept.",
- "reference": "Services/ClipboardService.qml:370",
+ "reference": "Services/ClipboardService.qml:372",
"comment": ""
},
{
@@ -6920,19 +7232,19 @@
{
"term": "Hot Corners",
"context": "Hot Corners",
- "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1859",
+ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:85, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1921",
"comment": ""
},
{
"term": "Hotkey overlay title (optional)",
"context": "Hotkey overlay title (optional)",
- "reference": "Widgets/KeybindItem.qml:1511",
+ "reference": "Widgets/KeybindItem.qml:1567",
"comment": ""
},
{
"term": "Hour",
"context": "Hour",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1152, Modules/Settings/GammaControlTab.qml:232",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1165, Modules/Settings/GammaControlTab.qml:232",
"comment": ""
},
{
@@ -6980,13 +7292,13 @@
{
"term": "Hyprland Layout Overrides",
"context": "Hyprland Layout Overrides",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2051",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2064",
"comment": ""
},
{
"term": "Hyprland Options",
"context": "Hyprland Options",
- "reference": "Modals/WindowRuleModal.qml:928",
+ "reference": "Modals/WindowRuleModal.qml:1360",
"comment": ""
},
{
@@ -6996,15 +7308,27 @@
"comment": ""
},
{
- "term": "Hyprland config still uses hyprlang",
- "context": "Hyprland config still uses hyprlang",
- "reference": "Services/KeybindsService.qml:516",
+ "term": "Hyprland conf mode",
+ "context": "Hyprland conf mode",
+ "reference": "Services/KeybindsService.qml:539, Modules/Settings/ThemeColorsTab.qml:105, Modules/Settings/WindowRulesTab.qml:354, Modules/Settings/WindowRulesTab.qml:510, Modules/Settings/KeybindsTab.qml:384, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:49, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1475",
+ "comment": ""
+ },
+ {
+ "term": "Hyprland conf mode is read-only in Settings",
+ "context": "Hyprland conf mode is read-only in Settings",
+ "reference": "Modules/Settings/KeybindsTab.qml:299, Modules/Settings/DisplayConfig/DisplayConfigState.qml:491",
+ "comment": ""
+ },
+ {
+ "term": "Hyprland config include missing",
+ "context": "Hyprland config include missing",
+ "reference": "Services/KeybindsService.qml:535",
"comment": ""
},
{
"term": "I Understand",
"context": "I Understand",
- "reference": "Modules/Settings/PluginBrowser.qml:844",
+ "reference": "Modules/Settings/PluginBrowser.qml:1243",
"comment": ""
},
{
@@ -7052,13 +7376,13 @@
{
"term": "Icon Size %",
"context": "Icon Size %",
- "reference": "Modules/Settings/WidgetsTabSection.qml:3106",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:3251",
"comment": ""
},
{
"term": "Icon Theme",
"context": "Icon Theme",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2500, Modules/Settings/ThemeColorsTab.qml:2508",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2513, Modules/Settings/ThemeColorsTab.qml:2521",
"comment": ""
},
{
@@ -7079,10 +7403,16 @@
"reference": "Services/CupsService.qml:780",
"comment": ""
},
+ {
+ "term": "Idle Inhibit",
+ "context": "Idle Inhibit",
+ "reference": "Modules/Settings/WindowRulesTab.qml:129",
+ "comment": ""
+ },
{
"term": "Idle Inhibitor",
"context": "Idle Inhibitor",
- "reference": "Modules/Settings/WidgetsTab.qml:190, Modules/Settings/OSDTab.qml:125",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1650, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTab.qml:190, Modules/Settings/OSDTab.qml:125",
"comment": ""
},
{
@@ -7091,6 +7421,12 @@
"reference": "Modules/Settings/PowerSleepTab.qml:34",
"comment": ""
},
+ {
+ "term": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps",
+ "context": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps",
+ "reference": "Modules/Settings/AutoStartTab.qml:735",
+ "comment": ""
+ },
{
"term": "If the field is hidden, it will appear as soon as a key is pressed.",
"context": "If the field is hidden, it will appear as soon as a key is pressed.",
@@ -7106,7 +7442,7 @@
{
"term": "Image",
"context": "Image",
- "reference": "Modals/DankLauncherV2/Controller.qml:1224, Modals/Clipboard/ClipboardEntry.qml:131",
+ "reference": "Modals/DankLauncherV2/Controller.qml:1224, Modals/Clipboard/ClipboardEntry.qml:130",
"comment": ""
},
{
@@ -7118,7 +7454,7 @@
{
"term": "Image copied to clipboard",
"context": "Image copied to clipboard",
- "reference": "Services/ClipboardService.qml:235",
+ "reference": "Services/ClipboardService.qml:237",
"comment": ""
},
{
@@ -7184,19 +7520,19 @@
{
"term": "Incorrect password",
"context": "Incorrect password",
- "reference": "Modals/WifiPasswordModal.qml:369, Modules/Greetd/GreeterContent.qml:241",
+ "reference": "Modals/WifiPasswordModal.qml:369, Modules/Greetd/GreeterContent.qml:245",
"comment": ""
},
{
"term": "Incorrect password - attempt %1 of %2 (lockout may follow)",
"context": "Incorrect password - attempt %1 of %2 (lockout may follow)",
- "reference": "Modules/Greetd/GreeterContent.qml:237",
+ "reference": "Modules/Greetd/GreeterContent.qml:241",
"comment": ""
},
{
"term": "Incorrect password - next failures may trigger account lockout",
"context": "Incorrect password - next failures may trigger account lockout",
- "reference": "Modules/Greetd/GreeterContent.qml:239",
+ "reference": "Modules/Greetd/GreeterContent.qml:243",
"comment": ""
},
{
@@ -7214,7 +7550,7 @@
{
"term": "Individual Batteries",
"context": "Individual Batteries",
- "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:358",
+ "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:357",
"comment": ""
},
{
@@ -7232,7 +7568,7 @@
{
"term": "Inherit",
"context": "Inherit",
- "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:96, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:101, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:110, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:273, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:324",
+ "reference": "Modals/WindowRuleModal.qml:1182, Modals/WindowRuleModal.qml:1191, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:96, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:101, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:110, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:273, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:324",
"comment": ""
},
{
@@ -7244,7 +7580,13 @@
{
"term": "Inhibitable",
"context": "Inhibitable",
- "reference": "Widgets/KeybindItem.qml:1746",
+ "reference": "Widgets/KeybindItem.qml:1802",
+ "comment": ""
+ },
+ {
+ "term": "Initialised",
+ "context": "Initialised",
+ "reference": "Modals/WindowRuleModal.qml:859, Modules/Settings/WindowRulesTab.qml:47",
"comment": ""
},
{
@@ -7274,7 +7616,7 @@
{
"term": "Install",
"context": "Install",
- "reference": "Modules/Settings/PluginBrowser.qml:122, Modules/Settings/PluginBrowser.qml:637, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:650",
+ "reference": "Modules/Settings/PluginBrowser.qml:331, Modules/Settings/PluginBrowser.qml:999, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:650",
"comment": "install action button"
},
{
@@ -7286,7 +7628,7 @@
{
"term": "Install Plugin",
"context": "Install Plugin",
- "reference": "Modules/Settings/PluginBrowser.qml:120",
+ "reference": "Modules/Settings/PluginBrowser.qml:329",
"comment": "plugin installation dialog title"
},
{
@@ -7316,25 +7658,25 @@
{
"term": "Install failed: %1",
"context": "Install failed: %1",
- "reference": "Modules/Settings/PluginBrowser.qml:86, Modules/Settings/ThemeBrowser.qml:69",
+ "reference": "Modules/Settings/PluginBrowser.qml:295, Modules/Settings/ThemeBrowser.qml:69",
"comment": "installation error"
},
{
"term": "Install matugen package for dynamic theming",
"context": "Install matugen package for dynamic theming",
- "reference": "Modules/Settings/ThemeColorsTab.qml:495",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:508",
"comment": "matugen installation hint"
},
{
"term": "Install plugin '%1' from the DMS registry?",
"context": "Install plugin '%1' from the DMS registry?",
- "reference": "Modules/Settings/PluginBrowser.qml:121",
+ "reference": "Modules/Settings/PluginBrowser.qml:330",
"comment": "plugin installation confirmation"
},
{
"term": "Install plugins from the DMS plugin registry",
"context": "Install plugins from the DMS plugin registry",
- "reference": "Modules/Settings/PluginBrowser.qml:322",
+ "reference": "Modules/Settings/PluginBrowser.qml:531",
"comment": "plugin browser description"
},
{
@@ -7352,25 +7694,25 @@
{
"term": "Installation and PAM setup: see the ",
"context": "Installation and PAM setup: see the ",
- "reference": "Modules/Settings/GreeterTab.qml:763",
+ "reference": "Modules/Settings/GreeterTab.qml:773",
"comment": ""
},
{
"term": "Installed",
"context": "Installed",
- "reference": "Modules/Settings/PluginBrowser.qml:633, Modules/Settings/ThemeBrowser.qml:653",
- "comment": "installed status"
+ "reference": "Modules/Settings/PluginBrowser.qml:36, Modules/Settings/PluginBrowser.qml:995, Modules/Settings/ThemeBrowser.qml:653",
+ "comment": "installed status | plugin browser filter chip"
},
{
"term": "Installed: %1",
"context": "Installed: %1",
- "reference": "Modules/Settings/PluginBrowser.qml:89, Modules/Settings/ThemeBrowser.qml:72",
+ "reference": "Modules/Settings/PluginBrowser.qml:298, Modules/Settings/ThemeBrowser.qml:72",
"comment": "installation success"
},
{
"term": "Installing: %1",
"context": "Installing: %1",
- "reference": "Modules/Settings/PluginBrowser.qml:83, Modules/Settings/ThemeBrowser.qml:66",
+ "reference": "Modules/Settings/PluginBrowser.qml:292, Modules/Settings/ThemeBrowser.qml:66",
"comment": "installation progress"
},
{
@@ -7418,13 +7760,13 @@
{
"term": "Invalid JSON format: %1",
"context": "Invalid JSON format: %1",
- "reference": "Common/Theme.qml:2063",
+ "reference": "Common/Theme.qml:2064",
"comment": ""
},
{
"term": "Invalid configuration",
"context": "Invalid configuration",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1923",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1985",
"comment": ""
},
{
@@ -7472,7 +7814,7 @@
{
"term": "Keep Awake",
"context": "Keep Awake",
- "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:724",
+ "reference": "Modules/ControlCenter/Models/WidgetModel.qml:153, Modules/ControlCenter/Components/DragDropGrid.qml:752",
"comment": ""
},
{
@@ -7490,7 +7832,7 @@
{
"term": "Keeping Awake",
"context": "Keeping Awake",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:724",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:752",
"comment": ""
},
{
@@ -7502,7 +7844,7 @@
{
"term": "Key",
"context": "Key",
- "reference": "Widgets/KeybindItem.qml:588",
+ "reference": "Widgets/KeybindItem.qml:626",
"comment": ""
},
{
@@ -7538,13 +7880,13 @@
{
"term": "Keyboard Shortcuts",
"context": "Keyboard Shortcuts",
- "reference": "Modals/Settings/SettingsSidebar.qml:192, Modals/Settings/SettingsSidebar.qml:592, Modals/Clipboard/ClipboardHeader.qml:60, Modules/Settings/KeybindsTab.qml:285",
+ "reference": "Modals/Settings/SettingsSidebar.qml:192, Modals/Settings/SettingsSidebar.qml:601, Modals/Clipboard/ClipboardHeader.qml:62, Modules/Settings/KeybindsTab.qml:289",
"comment": ""
},
{
"term": "Keys",
"context": "Keys",
- "reference": "Widgets/KeybindItem.qml:501",
+ "reference": "Widgets/KeybindItem.qml:539",
"comment": ""
},
{
@@ -7592,13 +7934,13 @@
{
"term": "Large",
"context": "Large",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1191, Modules/Settings/WidgetsTabSection.qml:2278",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1312, Modules/Settings/WidgetsTabSection.qml:2423",
"comment": ""
},
{
"term": "Largest",
"context": "Largest",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1196, Modules/Settings/WidgetsTabSection.qml:2283",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1317, Modules/Settings/WidgetsTabSection.qml:2428",
"comment": ""
},
{
@@ -7658,7 +8000,7 @@
{
"term": "Latitude",
"context": "Latitude",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1297, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:502",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1310, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:502",
"comment": ""
},
{
@@ -7706,13 +8048,13 @@
{
"term": "Layer Outline Opacity",
"context": "Layer Outline Opacity",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1880",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1893",
"comment": ""
},
{
"term": "Layout",
"context": "Layout",
- "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1861, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167",
+ "reference": "Modules/Settings/WidgetsTab.qml:37, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1923, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:350, Modules/DankBar/Popouts/DWLLayoutPopout.qml:167",
"comment": ""
},
{
@@ -7730,7 +8072,7 @@
{
"term": "Left",
"context": "Left",
- "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:291, Modules/Settings/DankBarTab.qml:438, Modules/DankBar/Popouts/BatteryPopout.qml:520",
+ "reference": "Modules/Settings/DockTab.qml:116, Modules/Settings/DankBarTab.qml:291, Modules/Settings/DankBarTab.qml:438, Modules/DankBar/Popouts/BatteryPopout.qml:519",
"comment": ""
},
{
@@ -7742,25 +8084,25 @@
{
"term": "Left Section",
"context": "Left Section",
- "reference": "Modules/Settings/WidgetsTab.qml:989",
+ "reference": "Modules/Settings/WidgetSelectionPopup.qml:27, Modules/Settings/WidgetsTab.qml:1018",
"comment": ""
},
{
"term": "Light",
"context": "Light",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:262, Modules/Settings/TypographyMotionTab.qml:288",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Light Direction",
"context": "Light Direction",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1744",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1757",
"comment": ""
},
{
"term": "Light Mode",
"context": "Light Mode",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1425, Modules/Settings/ThemeColorsTab.qml:1495, Modules/Settings/WallpaperTab.qml:392",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1438, Modules/Settings/ThemeColorsTab.qml:1508, Modules/Settings/WallpaperTab.qml:392",
"comment": ""
},
{
@@ -7784,13 +8126,13 @@
{
"term": "Light mode base",
"context": "Light mode base",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2769",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2782",
"comment": ""
},
{
"term": "Light mode harmony",
"context": "Light mode harmony",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2803",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2816",
"comment": ""
},
{
@@ -7844,7 +8186,7 @@
{
"term": "Loading keybinds...",
"context": "Loading keybinds...",
- "reference": "Modules/Settings/KeybindsTab.qml:630",
+ "reference": "Modules/Settings/KeybindsTab.qml:640",
"comment": ""
},
{
@@ -7856,7 +8198,7 @@
{
"term": "Loading...",
"context": "Loading...",
- "reference": "Widgets/VpnProfileDelegate.qml:225, Modules/Settings/PluginBrowser.qml:391, Modules/Settings/PrinterTab.qml:707, Modules/Settings/ThemeBrowser.qml:359, Modules/Settings/NetworkTab.qml:677, Modules/Settings/NetworkTab.qml:1394, Modules/Settings/NetworkTab.qml:1883, Modules/DankDash/Overview/WeatherOverviewCard.qml:31",
+ "reference": "Widgets/VpnProfileDelegate.qml:225, Modules/Settings/PluginBrowser.qml:750, Modules/Settings/PrinterTab.qml:707, Modules/Settings/ThemeBrowser.qml:359, Modules/Settings/NetworkTab.qml:677, Modules/Settings/NetworkTab.qml:1394, Modules/Settings/NetworkTab.qml:1883, Modules/DankDash/Overview/WeatherOverviewCard.qml:31",
"comment": "loading indicator"
},
{
@@ -7868,7 +8210,7 @@
{
"term": "Locale",
"context": "Locale",
- "reference": "Modals/Settings/SettingsSidebar.qml:265",
+ "reference": "Modals/Settings/SettingsSidebar.qml:272",
"comment": ""
},
{
@@ -7880,7 +8222,7 @@
{
"term": "Location",
"context": "Location",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1108, Modules/Settings/GammaControlTab.qml:188, Modules/Settings/PrinterTab.qml:775, Modules/Settings/PrinterTab.qml:1164",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1121, Modules/Settings/GammaControlTab.qml:188, Modules/Settings/PrinterTab.qml:775, Modules/Settings/PrinterTab.qml:1164",
"comment": "theme auto mode tab"
},
{
@@ -7898,7 +8240,7 @@
{
"term": "Lock Screen",
"context": "Lock Screen",
- "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:319, Modules/Settings/NotificationsTab.qml:732",
+ "reference": "Modals/Greeter/GreeterWelcomePage.qml:158, Modals/Settings/SettingsSidebar.qml:326, Modules/Settings/NotificationsTab.qml:732",
"comment": "greeter feature card title | lock screen notifications settings card"
},
{
@@ -7952,25 +8294,19 @@
{
"term": "Locked",
"context": "Locked",
- "reference": "Widgets/KeybindItem.qml:1574",
+ "reference": "Widgets/KeybindItem.qml:1630",
"comment": ""
},
{
"term": "Log Out",
"context": "Log Out",
- "reference": "Modals/PowerMenuModal.qml:193, Modules/Lock/LockPowerMenu.qml:112, Modules/Settings/PowerSleepTab.qml:403, Modules/Settings/PowerSleepTab.qml:409",
- "comment": ""
- },
- {
- "term": "Log out",
- "context": "Log out",
- "reference": "Modals/SwitchUserModal.qml:253",
+ "reference": "Modals/PowerMenuModal.qml:193, Modals/SwitchUserModal.qml:253, Modules/Lock/LockPowerMenu.qml:112, Modules/Settings/PowerSleepTab.qml:403, Modules/Settings/PowerSleepTab.qml:409",
"comment": ""
},
{
"term": "Logging in...",
"context": "Logging in...",
- "reference": "Modules/Greetd/GreeterContent.qml:1151",
+ "reference": "Modules/Greetd/GreeterContent.qml:1191",
"comment": ""
},
{
@@ -7994,19 +8330,25 @@
{
"term": "Long Text",
"context": "Long Text",
- "reference": "Modals/Clipboard/ClipboardEntry.qml:133",
+ "reference": "Modals/Clipboard/ClipboardEntry.qml:132",
"comment": ""
},
{
"term": "Long press",
"context": "Long press",
- "reference": "Widgets/KeybindItem.qml:1618",
+ "reference": "Widgets/KeybindItem.qml:1674",
"comment": ""
},
{
"term": "Longitude",
"context": "Longitude",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1320, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:551",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1333, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:551",
+ "comment": ""
+ },
+ {
+ "term": "Low",
+ "context": "Low",
+ "reference": "Modules/Settings/TypographyMotionTab.qml:458",
"comment": ""
},
{
@@ -8072,13 +8414,13 @@
{
"term": "Managed by Frame in Connected Mode",
"context": "Managed by Frame in Connected Mode",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1630, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1443",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1643, Modules/Settings/DockTab.qml:647, Modules/Settings/DankBarTab.qml:1443",
"comment": ""
},
{
"term": "Management",
"context": "Management",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:87",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:86",
"comment": ""
},
{
@@ -8096,7 +8438,7 @@
{
"term": "MangoWC Layout Overrides",
"context": "MangoWC Layout Overrides",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2154",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2167",
"comment": ""
},
{
@@ -8108,7 +8450,7 @@
{
"term": "Manual Coordinates",
"context": "Manual Coordinates",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1282, Modules/Settings/GammaControlTab.qml:367",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1295, Modules/Settings/GammaControlTab.qml:367",
"comment": ""
},
{
@@ -8171,10 +8513,22 @@
"reference": "Services/CupsService.qml:796",
"comment": ""
},
+ {
+ "term": "Match (%1)",
+ "context": "Match (%1)",
+ "reference": "Modules/Settings/WindowRulesTab.qml:1037",
+ "comment": ""
+ },
+ {
+ "term": "Match Conditions",
+ "context": "Match Conditions",
+ "reference": "Modals/WindowRuleModal.qml:793",
+ "comment": ""
+ },
{
"term": "Match Criteria",
"context": "Match Criteria",
- "reference": "Modals/WindowRuleModal.qml:464",
+ "reference": "Modals/WindowRuleModal.qml:641",
"comment": ""
},
{
@@ -8192,19 +8546,19 @@
{
"term": "Material Design inspired color themes",
"context": "Material Design inspired color themes",
- "reference": "Modules/Settings/ThemeColorsTab.qml:259",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:272",
"comment": "generic theme description"
},
{
"term": "Material colors generated from wallpaper",
"context": "Material colors generated from wallpaper",
- "reference": "Modules/Settings/ThemeColorsTab.qml:254",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:267",
"comment": "dynamic theme description"
},
{
"term": "Material inspired shadows and elevation on modals, popouts, and dialogs",
"context": "Material inspired shadows and elevation on modals, popouts, and dialogs",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1667",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1680",
"comment": ""
},
{
@@ -8216,19 +8570,19 @@
{
"term": "Matugen Contrast",
"context": "Matugen Contrast",
- "reference": "Modules/Settings/ThemeColorsTab.qml:547",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:560",
"comment": ""
},
{
"term": "Matugen Missing",
"context": "Matugen Missing",
- "reference": "Modules/Settings/ThemeColorsTab.qml:478",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:491",
"comment": "matugen not found status"
},
{
"term": "Matugen Palette",
"context": "Matugen Palette",
- "reference": "Modules/Settings/ThemeColorsTab.qml:514",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:527",
"comment": ""
},
{
@@ -8240,25 +8594,25 @@
{
"term": "Matugen Templates",
"context": "Matugen Templates",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2527",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2540",
"comment": ""
},
{
"term": "Max Edges",
"context": "Max Edges",
- "reference": "Modules/Settings/WindowRulesTab.qml:544",
+ "reference": "Modules/Settings/WindowRulesTab.qml:87",
"comment": ""
},
{
"term": "Max H",
"context": "Max H",
- "reference": "Modals/WindowRuleModal.qml:904, Modules/Settings/WindowRulesTab.qml:561",
+ "reference": "Modals/WindowRuleModal.qml:1336, Modules/Settings/WindowRulesTab.qml:104",
"comment": ""
},
{
"term": "Max Pinned Apps",
"context": "Max Pinned Apps",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2665",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2810",
"comment": ""
},
{
@@ -8270,7 +8624,7 @@
{
"term": "Max Running Apps",
"context": "Max Running Apps",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2719",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2864",
"comment": ""
},
{
@@ -8288,7 +8642,7 @@
{
"term": "Max W",
"context": "Max W",
- "reference": "Modals/WindowRuleModal.qml:850, Modules/Settings/WindowRulesTab.qml:559",
+ "reference": "Modals/WindowRuleModal.qml:1282, Modules/Settings/WindowRulesTab.qml:102",
"comment": ""
},
{
@@ -8300,13 +8654,13 @@
{
"term": "Max to Edges",
"context": "Max to Edges",
- "reference": "Modals/WindowRuleModal.qml:539",
+ "reference": "Modals/WindowRuleModal.qml:886",
"comment": ""
},
{
"term": "Maximize",
"context": "Maximize",
- "reference": "Modals/WindowRuleModal.qml:531, Modules/Settings/WindowRulesTab.qml:543",
+ "reference": "Modals/WindowRuleModal.qml:878, Modules/Settings/WindowRulesTab.qml:86",
"comment": ""
},
{
@@ -8372,7 +8726,7 @@
{
"term": "Maximum pinned entries reached",
"context": "Maximum pinned entries reached",
- "reference": "Services/ClipboardService.qml:329",
+ "reference": "Services/ClipboardService.qml:331",
"comment": ""
},
{
@@ -8384,7 +8738,7 @@
{
"term": "Media",
"context": "Media",
- "reference": "Services/AppSearchService.qml:662, Services/AppSearchService.qml:663, Services/AppSearchService.qml:664, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1068, Widgets/KeybindItem.qml:1077, Widgets/KeybindItem.qml:1083, Modules/DankDash/DankDashPopout.qml:277",
+ "reference": "Services/AppSearchService.qml:662, Services/AppSearchService.qml:663, Services/AppSearchService.qml:664, Widgets/DankIconPicker.qml:39, Widgets/KeybindItem.qml:1116, Widgets/KeybindItem.qml:1125, Widgets/KeybindItem.qml:1131, Modules/DankDash/DankDashPopout.qml:284",
"comment": ""
},
{
@@ -8435,16 +8789,10 @@
"reference": "Modules/Settings/MediaPlayerTab.qml:25",
"comment": ""
},
- {
- "term": "Media Players",
- "context": "Media Players",
- "reference": "Modules/DankDash/MediaPlayerTab.qml:661",
- "comment": ""
- },
{
"term": "Media Players (",
"context": "Media Players (",
- "reference": "Modules/DankDash/MediaDropdownOverlay.qml:433",
+ "reference": "Modules/DankDash/MediaDropdownOverlay.qml:463",
"comment": ""
},
{
@@ -8456,8 +8804,8 @@
{
"term": "Medium",
"context": "Medium",
- "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:266, Modules/Settings/TypographyMotionTab.qml:294, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WidgetsTabSection.qml:1186, Modules/Settings/WidgetsTabSection.qml:2273, Modules/Settings/NotificationsTab.qml:348",
- "comment": ""
+ "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:266, Modules/Settings/TypographyMotionTab.qml:294, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WidgetsTabSection.qml:1307, Modules/Settings/WidgetsTabSection.qml:2418, Modules/Settings/NotificationsTab.qml:348",
+ "comment": "font weight"
},
{
"term": "Memory",
@@ -8504,13 +8852,13 @@
{
"term": "Message Content",
"context": "Message Content",
- "reference": "Modules/Notifications/Popup/NotificationPopup.qml:949",
+ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:932",
"comment": "notification privacy mode placeholder"
},
{
"term": "Microphone",
"context": "Microphone",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1469, Modules/Settings/WidgetsTabSection.qml:1663, Modules/Settings/WidgetsTabSection.qml:1988",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1590, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTabSection.qml:2133",
"comment": ""
},
{
@@ -8522,7 +8870,7 @@
{
"term": "Microphone Volume",
"context": "Microphone Volume",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1474, Modules/Settings/WidgetsTabSection.qml:1663",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1595, Modules/Settings/WidgetsTabSection.qml:1804",
"comment": ""
},
{
@@ -8540,19 +8888,19 @@
{
"term": "Middle Section",
"context": "Middle Section",
- "reference": "Modules/Settings/WidgetsTab.qml:1062",
+ "reference": "Modules/Settings/WidgetsTab.qml:1094",
"comment": ""
},
{
"term": "Min H",
"context": "Min H",
- "reference": "Modals/WindowRuleModal.qml:877, Modules/Settings/WindowRulesTab.qml:560",
+ "reference": "Modals/WindowRuleModal.qml:1309, Modules/Settings/WindowRulesTab.qml:103",
"comment": ""
},
{
"term": "Min W",
"context": "Min W",
- "reference": "Modals/WindowRuleModal.qml:823, Modules/Settings/WindowRulesTab.qml:558",
+ "reference": "Modals/WindowRuleModal.qml:1255, Modules/Settings/WindowRulesTab.qml:101",
"comment": ""
},
{
@@ -8564,7 +8912,7 @@
{
"term": "Minute",
"context": "Minute",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1160, Modules/Settings/GammaControlTab.qml:240",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1173, Modules/Settings/GammaControlTab.qml:240",
"comment": ""
},
{
@@ -8576,19 +8924,19 @@
{
"term": "Missing Environment Variables",
"context": "Missing Environment Variables",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2518",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2531",
"comment": "qt theme env error title"
},
{
"term": "Modal Background",
"context": "Modal Background",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2257",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2270",
"comment": ""
},
{
"term": "Modal Shadows",
"context": "Modal Shadows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1816",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1829",
"comment": ""
},
{
@@ -8600,7 +8948,7 @@
{
"term": "Mode",
"context": "Mode",
- "reference": "Modules/Settings/NetworkTab.qml:1434, Modules/Settings/DankBarTab.qml:1170, Modules/Settings/FrameTab.qml:47, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1841",
+ "reference": "Modules/Settings/NetworkTab.qml:1434, Modules/Settings/DankBarTab.qml:1170, Modules/Settings/FrameTab.qml:47, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1903",
"comment": ""
},
{
@@ -8612,13 +8960,13 @@
{
"term": "Model",
"context": "Model",
- "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1832",
+ "reference": "Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/PrinterTab.qml:1159, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1894",
"comment": ""
},
{
"term": "Modified",
"context": "Modified",
- "reference": "Modals/DankLauncherV2/LauncherContent.qml:695, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1859, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1861",
+ "reference": "Modals/DankLauncherV2/LauncherContent.qml:695, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:708, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1921, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1923",
"comment": ""
},
{
@@ -8630,7 +8978,7 @@
{
"term": "Monitor",
"context": "Monitor",
- "reference": "Modals/WindowRuleModal.qml:1049, Modules/Settings/WindowRulesTab.qml:574",
+ "reference": "Modals/WindowRuleModal.qml:1481, Modules/Settings/WindowRulesTab.qml:117",
"comment": ""
},
{
@@ -8708,25 +9056,25 @@
{
"term": "Mouse pointer appearance",
"context": "Mouse pointer appearance",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2386",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2399",
"comment": ""
},
{
"term": "Mouse pointer size in pixels",
"context": "Mouse pointer size in pixels",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2402",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2415",
"comment": ""
},
{
"term": "Move",
"context": "Move",
- "reference": "Modals/WindowRuleModal.qml:1016, Modules/Settings/WindowRulesTab.qml:573",
+ "reference": "Modals/WindowRuleModal.qml:1448, Modules/Settings/WindowRulesTab.qml:116",
"comment": ""
},
{
"term": "Move Widget",
"context": "Move Widget",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:645",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:648",
"comment": ""
},
{
@@ -8768,7 +9116,7 @@
{
"term": "Multiplexers",
"context": "Multiplexers",
- "reference": "Modals/Settings/SettingsSidebar.qml:285",
+ "reference": "Modals/Settings/SettingsSidebar.qml:292",
"comment": ""
},
{
@@ -8792,13 +9140,13 @@
{
"term": "Mute popups for %1",
"context": "Mute popups for %1",
- "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1400, Modules/Notifications/Center/NotificationCard.qml:1093",
+ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1383, Modules/Notifications/Center/NotificationCard.qml:1097",
"comment": ""
},
{
"term": "Muted",
"context": "Muted",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:460, Modules/ControlCenter/Components/DragDropGrid.qml:471",
+ "reference": "Modules/DankDash/MediaDropdownOverlay.qml:370, Modules/ControlCenter/Components/DragDropGrid.qml:488, Modules/ControlCenter/Components/DragDropGrid.qml:499",
"comment": "audio status"
},
{
@@ -8822,14 +9170,14 @@
{
"term": "NM not supported",
"context": "NM not supported",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:290",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:318",
"comment": ""
},
{
"term": "Name",
"context": "Name",
- "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1832, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144",
- "comment": ""
+ "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:38, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:507, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1894, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144",
+ "comment": "plugin browser sort option"
},
{
"term": "Named Workspace Icons",
@@ -8837,6 +9185,12 @@
"reference": "Modules/Settings/WorkspacesTab.qml:417",
"comment": ""
},
+ {
+ "term": "Native",
+ "context": "Native",
+ "reference": "Modules/Settings/TypographyMotionTab.qml:350",
+ "comment": ""
+ },
{
"term": "Native: platform renderer (FreeType).",
"context": "Native: platform renderer (FreeType).",
@@ -8858,7 +9212,7 @@
{
"term": "Network",
"context": "Network",
- "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:225, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1424, Modules/Settings/WidgetsTabSection.qml:1663, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:161",
+ "reference": "Services/CupsService.qml:136, Modals/Settings/SettingsSidebar.qml:225, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:1545, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:88, Modules/ControlCenter/Models/WidgetModel.qml:161",
"comment": ""
},
{
@@ -8936,13 +9290,13 @@
{
"term": "New Key",
"context": "New Key",
- "reference": "Widgets/KeybindItem.qml:588",
+ "reference": "Widgets/KeybindItem.qml:626",
"comment": ""
},
{
"term": "New Keybind",
"context": "New Keybind",
- "reference": "Modules/Settings/KeybindsTab.qml:538",
+ "reference": "Modules/Settings/KeybindsTab.qml:547",
"comment": ""
},
{
@@ -8960,7 +9314,7 @@
{
"term": "New Window Rule",
"context": "New Window Rule",
- "reference": "Modals/WindowRuleModal.qml:405",
+ "reference": "Modals/WindowRuleModal.qml:582",
"comment": ""
},
{
@@ -8984,7 +9338,7 @@
{
"term": "Next Transition",
"context": "Next Transition",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1461, Modules/Settings/GammaControlTab.qml:643",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1474, Modules/Settings/GammaControlTab.qml:643",
"comment": ""
},
{
@@ -8996,7 +9350,7 @@
{
"term": "Night Mode",
"context": "Night Mode",
- "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:720",
+ "reference": "Modules/Settings/GammaControlTab.qml:76, Modules/ControlCenter/Models/WidgetModel.qml:128, Modules/ControlCenter/Components/DragDropGrid.qml:748",
"comment": ""
},
{
@@ -9026,31 +9380,31 @@
{
"term": "Niri Layout Overrides",
"context": "Niri Layout Overrides",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1948",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1961",
"comment": ""
},
{
"term": "Niri compositor actions (focus, move, etc.)",
"context": "Niri compositor actions (focus, move, etc.)",
- "reference": "Widgets/KeybindItem.qml:822",
+ "reference": "Widgets/KeybindItem.qml:861",
"comment": ""
},
{
"term": "No",
"context": "No",
- "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1857, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1867, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1877, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1879",
+ "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:67, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1919, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1929, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1939, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1941",
"comment": ""
},
{
"term": "No Active Players",
"context": "No Active Players",
- "reference": "Modules/DankDash/MediaPlayerTab.qml:276",
+ "reference": "Modules/DankDash/MediaPlayerTab.qml:368",
"comment": ""
},
{
"term": "No Anim",
"context": "No Anim",
- "reference": "Modals/WindowRuleModal.qml:963, Modules/Settings/WindowRulesTab.qml:568",
+ "reference": "Modals/WindowRuleModal.qml:1395, Modules/Settings/WindowRulesTab.qml:111",
"comment": ""
},
{
@@ -9059,12 +9413,6 @@
"reference": "Modules/Settings/DankBarTab.qml:1050",
"comment": ""
},
- {
- "term": "No Battery",
- "context": "No Battery",
- "reference": "Services/BatteryService.qml:221",
- "comment": "battery status"
- },
{
"term": "No Bluetooth adapter found",
"context": "No Bluetooth adapter found",
@@ -9074,13 +9422,13 @@
{
"term": "No Blur",
"context": "No Blur",
- "reference": "Modals/WindowRuleModal.qml:959, Modules/Settings/WindowRulesTab.qml:567",
+ "reference": "Modals/WindowRuleModal.qml:1391, Modules/Settings/WindowRulesTab.qml:110",
"comment": ""
},
{
"term": "No Border",
"context": "No Border",
- "reference": "Modals/WindowRuleModal.qml:947, Modules/Settings/WindowRulesTab.qml:564",
+ "reference": "Modals/WindowRuleModal.qml:1379, Modules/Settings/WindowRulesTab.qml:107",
"comment": ""
},
{
@@ -9092,19 +9440,19 @@
{
"term": "No Dim",
"context": "No Dim",
- "reference": "Modals/WindowRuleModal.qml:955, Modules/Settings/WindowRulesTab.qml:566",
+ "reference": "Modals/WindowRuleModal.qml:1387, Modules/Settings/WindowRulesTab.qml:109",
"comment": ""
},
{
"term": "No Focus",
"context": "No Focus",
- "reference": "Modals/WindowRuleModal.qml:943, Modules/Settings/WindowRulesTab.qml:563",
+ "reference": "Modals/WindowRuleModal.qml:1375, Modules/Settings/WindowRulesTab.qml:106",
"comment": ""
},
{
"term": "No GPU detected",
"context": "No GPU detected",
- "reference": "Modules/Settings/WidgetsTabSection.qml:149",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:150",
"comment": ""
},
{
@@ -9122,25 +9470,25 @@
{
"term": "No Media",
"context": "No Media",
- "reference": "Modules/DankDash/Overview/MediaOverviewCard.qml:55",
+ "reference": "Modules/DankDash/Overview/MediaOverviewCard.qml:56",
"comment": ""
},
{
"term": "No Round",
"context": "No Round",
- "reference": "Modules/Settings/WindowRulesTab.qml:569",
+ "reference": "Modules/Settings/WindowRulesTab.qml:112",
"comment": ""
},
{
"term": "No Rounding",
"context": "No Rounding",
- "reference": "Modals/WindowRuleModal.qml:967",
+ "reference": "Modals/WindowRuleModal.qml:1399",
"comment": ""
},
{
"term": "No Shadow",
"context": "No Shadow",
- "reference": "Modals/WindowRuleModal.qml:951, Modules/Settings/WindowRulesTab.qml:565",
+ "reference": "Modals/WindowRuleModal.qml:1383, Modules/Settings/WindowRulesTab.qml:108",
"comment": ""
},
{
@@ -9170,7 +9518,7 @@
{
"term": "No action",
"context": "No action",
- "reference": "Widgets/KeybindItem.qml:339",
+ "reference": "Widgets/KeybindItem.qml:376, Widgets/KeybindItem.qml:376",
"comment": ""
},
{
@@ -9188,13 +9536,13 @@
{
"term": "No adapter",
"context": "No adapter",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:396",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:424",
"comment": "bluetooth status"
},
{
"term": "No adapters",
"context": "No adapters",
- "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:436",
+ "reference": "Modules/Settings/NetworkTab.qml:341, Modules/ControlCenter/Components/DragDropGrid.qml:464",
"comment": "bluetooth status"
},
{
@@ -9203,6 +9551,12 @@
"reference": "Modules/Settings/LauncherTab.qml:1380",
"comment": ""
},
+ {
+ "term": "No application selected",
+ "context": "No application selected",
+ "reference": "Modules/Settings/AutoStartTab.qml:445",
+ "comment": ""
+ },
{
"term": "No apps found",
"context": "No apps found",
@@ -9221,11 +9575,17 @@
"reference": "Modules/Settings/NotificationsTab.qml:652",
"comment": ""
},
+ {
+ "term": "No autostart entries",
+ "context": "No autostart entries",
+ "reference": "Modules/Settings/AutoStartTab.qml:714",
+ "comment": ""
+ },
{
"term": "No battery",
"context": "No battery",
- "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:15",
- "comment": ""
+ "reference": "Services/BatteryService.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:15",
+ "comment": "battery status"
},
{
"term": "No brightness devices available",
@@ -9236,7 +9596,7 @@
{
"term": "No changes",
"context": "No changes",
- "reference": "Widgets/KeybindItem.qml:1789",
+ "reference": "Widgets/KeybindItem.qml:1845",
"comment": ""
},
{
@@ -9248,13 +9608,13 @@
{
"term": "No custom theme file",
"context": "No custom theme file",
- "reference": "Modules/Settings/ThemeColorsTab.qml:584",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:597",
"comment": "no custom theme file status"
},
{
"term": "No devices",
"context": "No devices",
- "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:453",
+ "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:481",
"comment": "Phone Connect no devices status | bluetooth status"
},
{
@@ -9272,13 +9632,13 @@
{
"term": "No disk data",
"context": "No disk data",
- "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:38",
+ "reference": "Modules/ControlCenter/Widgets/DiskUsagePill.qml:39",
"comment": ""
},
{
"term": "No disk data available",
"context": "No disk data available",
- "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:48",
+ "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:52",
"comment": ""
},
{
@@ -9350,7 +9710,7 @@
{
"term": "No input device",
"context": "No input device",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:404",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:432",
"comment": "audio status"
},
{
@@ -9368,7 +9728,7 @@
{
"term": "No keybinds found",
"context": "No keybinds found",
- "reference": "Modules/Settings/KeybindsTab.qml:638",
+ "reference": "Modules/Settings/KeybindsTab.qml:648",
"comment": ""
},
{
@@ -9380,13 +9740,13 @@
{
"term": "No match criteria",
"context": "No match criteria",
- "reference": "Modules/Settings/WindowRulesTab.qml:520",
+ "reference": "Modules/Settings/WindowRulesTab.qml:678, Modules/Settings/WindowRulesTab.qml:953",
"comment": ""
},
{
"term": "No matches",
"context": "No matches",
- "reference": "Modals/Settings/SettingsSidebar.qml:838, Modules/Notepad/NotepadTextEditor.qml:373",
+ "reference": "Modals/Settings/SettingsSidebar.qml:847, Modules/Notepad/NotepadTextEditor.qml:373",
"comment": ""
},
{
@@ -9398,7 +9758,7 @@
{
"term": "No matching processes",
"context": "No matching processes",
- "reference": "Modules/ProcessList/ProcessesView.qml:361",
+ "reference": "Modules/ProcessList/ProcessesView.qml:370",
"comment": "empty state in process list"
},
{
@@ -9422,7 +9782,7 @@
{
"term": "No output device",
"context": "No output device",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:402",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:430",
"comment": "audio status"
},
{
@@ -9446,7 +9806,7 @@
{
"term": "No plugins found",
"context": "No plugins found",
- "reference": "Modules/Settings/PluginBrowser.qml:713",
+ "reference": "Modules/Settings/PluginBrowser.qml:1112",
"comment": "empty plugin list"
},
{
@@ -9482,7 +9842,7 @@
{
"term": "No recent clipboard entries found",
"context": "No recent clipboard entries found",
- "reference": "Modals/Clipboard/ClipboardContent.qml:125",
+ "reference": "Modals/Clipboard/ClipboardContent.qml:131",
"comment": ""
},
{
@@ -9500,7 +9860,7 @@
{
"term": "No saved clipboard entries",
"context": "No saved clipboard entries",
- "reference": "Modals/Clipboard/ClipboardContent.qml:185",
+ "reference": "Modals/Clipboard/ClipboardContent.qml:205",
"comment": ""
},
{
@@ -9542,7 +9902,7 @@
{
"term": "No themes installed. Browse themes to install from the registry.",
"context": "No themes installed. Browse themes to install from the registry.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:790",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:803",
"comment": "no registry themes installed hint"
},
{
@@ -9566,7 +9926,7 @@
{
"term": "No wallpaper selected",
"context": "No wallpaper selected",
- "reference": "Modules/Settings/ThemeColorsTab.qml:481, Modules/Settings/WallpaperTab.qml:240",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:494, Modules/Settings/WallpaperTab.qml:240",
"comment": "no wallpaper status"
},
{
@@ -9590,7 +9950,7 @@
{
"term": "No widgets added. Click \"Add Widget\" to get started.",
"context": "No widgets added. Click \"Add Widget\" to get started.",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:603",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:606",
"comment": ""
},
{
@@ -9608,13 +9968,19 @@
{
"term": "No window rules configured",
"context": "No window rules configured",
- "reference": "Modules/Settings/WindowRulesTab.qml:436",
+ "reference": "Modules/Settings/WindowRulesTab.qml:594",
+ "comment": ""
+ },
+ {
+ "term": "Noise",
+ "context": "Noise",
+ "reference": "Modals/WindowRuleModal.qml:1203, Modules/Settings/WindowRulesTab.qml:122",
"comment": ""
},
{
"term": "None",
"context": "None",
- "reference": "Modals/WindowRuleModal.qml:740, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111",
+ "reference": "Modals/WindowRuleModal.qml:1088, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1161, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/NotificationsTab.qml:348, Modules/Settings/WindowRulesTab.qml:1071, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111",
"comment": "wallpaper transition option"
},
{
@@ -9626,7 +9992,7 @@
{
"term": "Normal",
"context": "Normal",
- "reference": "Modals/WindowRuleModal.qml:762, Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2471, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2487, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2492",
+ "reference": "Modals/WindowRuleModal.qml:1110, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DisplayConfig/OutputCard.qml:311, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2577, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2593, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2598",
"comment": ""
},
{
@@ -9680,15 +10046,21 @@
{
"term": "Not connected",
"context": "Not connected",
- "reference": "Modules/Settings/NetworkTab.qml:822, Modules/ControlCenter/Components/DragDropGrid.qml:388",
+ "reference": "Modules/Settings/NetworkTab.qml:822, Modules/ControlCenter/Components/DragDropGrid.qml:416",
"comment": "network status"
},
{
"term": "Not detected",
"context": "Not detected",
- "reference": "Modules/Settings/ThemeColorsTab.qml:128, Modules/Settings/ThemeColorsTab.qml:129",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:141, Modules/Settings/ThemeColorsTab.qml:142",
"comment": ""
},
+ {
+ "term": "Not listed?",
+ "context": "Not listed?",
+ "reference": "Modules/Greetd/GreeterContent.qml:1343",
+ "comment": "greeter link to switch to manual username entry"
+ },
{
"term": "Not paired",
"context": "Not paired",
@@ -9836,7 +10208,7 @@
{
"term": "Off",
"context": "Off",
- "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/DisplayConfig/OutputCard.qml:318, Modules/Settings/DisplayConfig/OutputCard.qml:327, Modules/Settings/DisplayConfig/OutputCard.qml:330, Modules/Settings/DisplayConfig/OutputCard.qml:341, Modules/Settings/DisplayConfig/OutputCard.qml:349, Modules/Settings/DisplayConfig/OutputCard.qml:353, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:98, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:438, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31",
+ "reference": "Modules/ProcessList/SystemView.qml:274, Modules/Settings/WindowRulesTab.qml:702, Modules/Settings/WindowRulesTab.qml:979, Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:343, Modules/Settings/DisplayConfig/OutputCard.qml:346, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:365, Modules/Settings/DisplayConfig/OutputCard.qml:369, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:98, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:113, Modules/ControlCenter/Components/DragDropGrid.qml:466, Modules/ControlCenter/Widgets/DndPill.qml:15, Modules/Notifications/Center/DndDurationMenu.qml:31",
"comment": "bluetooth status"
},
{
@@ -9866,7 +10238,7 @@
{
"term": "On",
"context": "On",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:318, Modules/Settings/DisplayConfig/OutputCard.qml:326, Modules/Settings/DisplayConfig/OutputCard.qml:341, Modules/Settings/DisplayConfig/OutputCard.qml:350, Modules/ControlCenter/Widgets/DndPill.qml:17",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:334, Modules/Settings/DisplayConfig/OutputCard.qml:342, Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:366, Modules/ControlCenter/Widgets/DndPill.qml:17",
"comment": ""
},
{
@@ -9878,19 +10250,13 @@
{
"term": "On-Demand",
"context": "On-Demand",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:341, Modules/Settings/DisplayConfig/OutputCard.qml:345, Modules/Settings/DisplayConfig/OutputCard.qml:354",
- "comment": ""
- },
- {
- "term": "On-Screen Displays",
- "context": "On-Screen Displays",
- "reference": "Modules/Settings/DisplayWidgetsTab.qml:49",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:357, Modules/Settings/DisplayConfig/OutputCard.qml:361, Modules/Settings/DisplayConfig/OutputCard.qml:370",
"comment": ""
},
{
"term": "On-screen Displays",
"context": "On-screen Displays",
- "reference": "Modals/Settings/SettingsSidebar.qml:158, Modules/Settings/OSDTab.qml:25",
+ "reference": "Modals/Settings/SettingsSidebar.qml:158, Modules/Settings/DisplayWidgetsTab.qml:49, Modules/Settings/OSDTab.qml:25",
"comment": ""
},
{
@@ -9932,7 +10298,7 @@
{
"term": "Opacity",
"context": "Opacity",
- "reference": "Modals/WindowRuleModal.qml:679, Modals/DankColorPickerModal.qml:522, Modules/Settings/DankBarTab.qml:1301, Modules/Settings/DankBarTab.qml:1394, Modules/Settings/DankBarTab.qml:1502, Modules/Settings/WindowRulesTab.qml:541",
+ "reference": "Modals/WindowRuleModal.qml:1026, Modals/DankColorPickerModal.qml:522, Modules/Settings/DankBarTab.qml:1301, Modules/Settings/DankBarTab.qml:1394, Modules/Settings/DankBarTab.qml:1502, Modules/Settings/WindowRulesTab.qml:84",
"comment": ""
},
{
@@ -9950,13 +10316,13 @@
{
"term": "Opaque",
"context": "Opaque",
- "reference": "Modals/WindowRuleModal.qml:975, Modules/Settings/WindowRulesTab.qml:571",
+ "reference": "Modals/WindowRuleModal.qml:1407, Modules/Settings/WindowRulesTab.qml:114",
"comment": ""
},
{
"term": "Open",
"context": "Open",
- "reference": "Modals/DankLauncherV2/Controller.qml:1202, Modals/DankLauncherV2/Controller.qml:1206, Modals/DankLauncherV2/Controller.qml:1216, Modules/Notepad/NotepadTextEditor.qml:782, Modules/Settings/NetworkTab.qml:1195, Modules/Settings/NetworkTab.qml:1444, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/Notifications/Center/NotificationCard.qml:783, Modules/Notifications/Center/NotificationCard.qml:922",
+ "reference": "Modals/DankLauncherV2/Controller.qml:1202, Modals/DankLauncherV2/Controller.qml:1206, Modals/DankLauncherV2/Controller.qml:1216, Modules/Notepad/NotepadTextEditor.qml:782, Modules/Settings/NetworkTab.qml:1195, Modules/Settings/NetworkTab.qml:1444, Modules/ControlCenter/Details/NetworkDetail.qml:615, Modules/Notifications/Center/NotificationCard.qml:787, Modules/Notifications/Center/NotificationCard.qml:926",
"comment": ""
},
{
@@ -10067,6 +10433,12 @@
"reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:328",
"comment": "KDE Connect browse action"
},
+ {
+ "term": "Opening terminal to update greetd",
+ "context": "Opening terminal to update greetd",
+ "reference": "Common/settings/Processes.qml:364",
+ "comment": ""
+ },
{
"term": "Opening terminal: ",
"context": "Opening terminal: ",
@@ -10103,10 +10475,16 @@
"reference": "Modules/Settings/PrinterTab.qml:785",
"comment": ""
},
+ {
+ "term": "Optional state-based conditions applied to the first match.",
+ "context": "Optional state-based conditions applied to the first match.",
+ "reference": "Modals/WindowRuleModal.qml:798",
+ "comment": ""
+ },
{
"term": "Options",
"context": "Options",
- "reference": "Widgets/KeybindItem.qml:1195, Widgets/KeybindItem.qml:1684",
+ "reference": "Widgets/KeybindItem.qml:1247, Widgets/KeybindItem.qml:1740",
"comment": ""
},
{
@@ -10130,13 +10508,13 @@
{
"term": "Outline",
"context": "Outline",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1898, Modules/Settings/ThemeColorsTab.qml:1910, Modules/Settings/LauncherTab.qml:722",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1923, Modules/Settings/LauncherTab.qml:722",
"comment": "blur border color | outline color"
},
{
"term": "Output",
"context": "Output",
- "reference": "Modals/WindowRuleModal.qml:559, Modules/Settings/WindowRulesTab.qml:547",
+ "reference": "Modals/WindowRuleModal.qml:906, Modules/Settings/WindowRulesTab.qml:90",
"comment": ""
},
{
@@ -10151,12 +10529,6 @@
"reference": "Services/CupsService.qml:812",
"comment": ""
},
- {
- "term": "Output Device",
- "context": "Output Device",
- "reference": "Modules/DankDash/MediaPlayerTab.qml:780",
- "comment": ""
- },
{
"term": "Output Devices",
"context": "Output Devices",
@@ -10172,7 +10544,7 @@
{
"term": "Outputs Include Missing",
"context": "Outputs Include Missing",
- "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:50",
+ "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:53",
"comment": ""
},
{
@@ -10184,37 +10556,37 @@
{
"term": "Overflow",
"context": "Overflow",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2649",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2794",
"comment": ""
},
{
"term": "Overridden by config",
"context": "Overridden by config",
- "reference": "Widgets/KeybindItem.qml:381",
+ "reference": "Widgets/KeybindItem.qml:418",
"comment": ""
},
{
"term": "Override",
"context": "Override",
- "reference": "Widgets/KeybindItem.qml:367",
+ "reference": "Widgets/KeybindItem.qml:404",
"comment": ""
},
{
"term": "Override Border Size",
"context": "Override Border Size",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2020, Modules/Settings/ThemeColorsTab.qml:2123, Modules/Settings/ThemeColorsTab.qml:2226",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2033, Modules/Settings/ThemeColorsTab.qml:2136, Modules/Settings/ThemeColorsTab.qml:2239",
"comment": ""
},
{
"term": "Override Corner Radius",
"context": "Override Corner Radius",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1989, Modules/Settings/ThemeColorsTab.qml:2092, Modules/Settings/ThemeColorsTab.qml:2195",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2002, Modules/Settings/ThemeColorsTab.qml:2105, Modules/Settings/ThemeColorsTab.qml:2208",
"comment": ""
},
{
"term": "Override Gaps",
"context": "Override Gaps",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1957, Modules/Settings/ThemeColorsTab.qml:2060, Modules/Settings/ThemeColorsTab.qml:2163",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1970, Modules/Settings/ThemeColorsTab.qml:2073, Modules/Settings/ThemeColorsTab.qml:2176",
"comment": ""
},
{
@@ -10256,7 +10628,7 @@
{
"term": "Overview",
"context": "Overview",
- "reference": "Widgets/KeybindItem.qml:1074, Widgets/KeybindItem.qml:1077, Modules/DankDash/DankDashPopout.qml:273",
+ "reference": "Widgets/KeybindItem.qml:1122, Widgets/KeybindItem.qml:1125, Modules/DankDash/DankDashPopout.qml:280",
"comment": ""
},
{
@@ -10442,7 +10814,7 @@
{
"term": "Password...",
"context": "Password...",
- "reference": "Modules/Greetd/GreeterContent.qml:1157",
+ "reference": "Modules/Greetd/GreeterContent.qml:1197",
"comment": ""
},
{
@@ -10520,13 +10892,13 @@
{
"term": "Percentage",
"context": "Percentage",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1313, Modules/Settings/WidgetsTab.qml:125",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1434, Modules/Settings/WidgetsTab.qml:125",
"comment": ""
},
{
"term": "Performance",
"context": "Performance",
- "reference": "Modals/ProcessListModal.qml:312, Common/Theme.qml:1553",
+ "reference": "Modals/ProcessListModal.qml:312, Common/Theme.qml:1554",
"comment": "power profile option"
},
{
@@ -10544,7 +10916,7 @@
{
"term": "Personalization",
"context": "Personalization",
- "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:610",
+ "reference": "Modals/Settings/SettingsSidebar.qml:71, Modals/Settings/SettingsSidebar.qml:619",
"comment": ""
},
{
@@ -10598,7 +10970,7 @@
{
"term": "Pin",
"context": "Pin",
- "reference": "Modals/WindowRuleModal.qml:971, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/Settings/WindowRulesTab.qml:570, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683",
+ "reference": "Modals/WindowRuleModal.qml:1403, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modules/Settings/WindowRulesTab.qml:113, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683",
"comment": ""
},
{
@@ -10628,7 +11000,7 @@
{
"term": "Pinned",
"context": "Pinned",
- "reference": "Modals/DankLauncherV2/Controller.qml:200, Modals/DankLauncherV2/Controller.qml:1224, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683",
+ "reference": "Modals/WindowRuleModal.qml:854, Modals/DankLauncherV2/Controller.qml:200, Modals/DankLauncherV2/Controller.qml:1224, Modules/Settings/WindowRulesTab.qml:46, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:683",
"comment": ""
},
{
@@ -10736,7 +11108,7 @@
{
"term": "Please wait...",
"context": "Please wait...",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:414",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:442",
"comment": "network status"
},
{
@@ -10748,15 +11120,9 @@
{
"term": "Plugged In",
"context": "Plugged In",
- "reference": "Services/BatteryService.qml:227, Services/BatteryService.qml:233, Modules/Settings/SoundsTab.qml:129",
+ "reference": "Services/BatteryService.qml:227, Services/BatteryService.qml:233, Modules/Settings/SoundsTab.qml:129, Modules/ControlCenter/Widgets/BatteryPill.qml:28",
"comment": "battery status"
},
- {
- "term": "Plugged in",
- "context": "Plugged in",
- "reference": "Modules/ControlCenter/Widgets/BatteryPill.qml:28",
- "comment": ""
- },
{
"term": "Plugin",
"context": "Plugin",
@@ -10820,13 +11186,13 @@
{
"term": "Plugins",
"context": "Plugins",
- "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:451, Modals/DankLauncherV2/LauncherContent.qml:354, Modals/Settings/SettingsSidebar.qml:339, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298",
+ "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/SpotlightLauncherContent.qml:451, Modals/DankLauncherV2/LauncherContent.qml:354, Modals/Settings/SettingsSidebar.qml:346, Modules/Settings/AboutTab.qml:290, Modules/Settings/AboutTab.qml:298",
"comment": "greeter feature card title | greeter plugins link"
},
{
"term": "Pointer",
"context": "Pointer",
- "reference": "Widgets/KeybindItem.qml:1313",
+ "reference": "Widgets/KeybindItem.qml:1367",
"comment": ""
},
{
@@ -10838,7 +11204,7 @@
{
"term": "Popout Shadows",
"context": "Popout Shadows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1827",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1840",
"comment": ""
},
{
@@ -10892,7 +11258,7 @@
{
"term": "Position",
"context": "Position",
- "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:427, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1839",
+ "reference": "Modules/Settings/DockTab.qml:106, Modules/Settings/DankBarTab.qml:427, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1901",
"comment": ""
},
{
@@ -10904,25 +11270,25 @@
{
"term": "Possible Override Conflicts",
"context": "Possible Override Conflicts",
- "reference": "Modules/Settings/KeybindsTab.qml:383",
+ "reference": "Modules/Settings/KeybindsTab.qml:390",
"comment": ""
},
{
"term": "Power",
"context": "Power",
- "reference": "Modules/Settings/WidgetsTab.qml:254, Modules/ControlCenter/Details/BatteryDetail.qml:72, Modules/DankBar/Popouts/BatteryPopout.qml:191",
+ "reference": "Modules/Settings/WidgetsTab.qml:254, Modules/ControlCenter/Details/BatteryDetail.qml:71, Modules/DankBar/Popouts/BatteryPopout.qml:190",
"comment": ""
},
{
"term": "Power & Security",
"context": "Power & Security",
- "reference": "Modals/Settings/SettingsSidebar.qml:313, Modals/Settings/SettingsSidebar.qml:598",
+ "reference": "Modals/Settings/SettingsSidebar.qml:320, Modals/Settings/SettingsSidebar.qml:607",
"comment": ""
},
{
"term": "Power & Sleep",
"context": "Power & Sleep",
- "reference": "Modals/Settings/SettingsSidebar.qml:331",
+ "reference": "Modals/Settings/SettingsSidebar.qml:338",
"comment": ""
},
{
@@ -10937,6 +11303,12 @@
"reference": "Modules/Settings/PowerSleepTab.qml:378",
"comment": ""
},
+ {
+ "term": "Power Mode",
+ "context": "Power Mode",
+ "reference": "Modals/PowerProfileModal.qml:131",
+ "comment": ""
+ },
{
"term": "Power Off",
"context": "Power Off",
@@ -10958,13 +11330,13 @@
{
"term": "Power Profile Degradation",
"context": "Power Profile Degradation",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:248, Modules/DankBar/Popouts/BatteryPopout.qml:613",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:247, Modules/DankBar/Popouts/BatteryPopout.qml:612",
"comment": ""
},
{
"term": "Power Saver",
"context": "Power Saver",
- "reference": "Common/Theme.qml:1549",
+ "reference": "Common/Theme.qml:1550",
"comment": "power profile option"
},
{
@@ -10976,7 +11348,7 @@
{
"term": "Power profile management available",
"context": "Power profile management available",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:106, Modules/DankBar/Popouts/BatteryPopout.qml:176",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:105, Modules/DankBar/Popouts/BatteryPopout.qml:175",
"comment": ""
},
{
@@ -11048,7 +11420,7 @@
{
"term": "Press key...",
"context": "Press key...",
- "reference": "Widgets/KeybindItem.qml:629",
+ "reference": "Widgets/KeybindItem.qml:667",
"comment": ""
},
{
@@ -11072,13 +11444,13 @@
{
"term": "Primary",
"context": "Primary",
- "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1568, Modules/Settings/ThemeColorsTab.qml:1578, Modules/Settings/ThemeColorsTab.qml:1600, Modules/Settings/ThemeColorsTab.qml:1610, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1714, Modules/Settings/ThemeColorsTab.qml:1725, Modules/Settings/ThemeColorsTab.qml:1898, Modules/Settings/ThemeColorsTab.qml:1902, Modules/Settings/ThemeColorsTab.qml:1914, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:722, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/NetworkTab.qml:227, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207, Modules/Settings/Widgets/SettingsColorPicker.qml:42",
+ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1591, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1623, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1727, Modules/Settings/ThemeColorsTab.qml:1738, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1915, Modules/Settings/ThemeColorsTab.qml:1927, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:722, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/NetworkTab.qml:227, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/FrameTab.qml:207, Modules/Settings/Widgets/SettingsColorPicker.qml:42",
"comment": "blur border color | button color option | color option | primary color | shadow color option | tile color option"
},
{
"term": "Primary Container",
"context": "Primary Container",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1568, Modules/Settings/ThemeColorsTab.qml:1572, Modules/Settings/ThemeColorsTab.qml:1582, Modules/Settings/ThemeColorsTab.qml:1600, Modules/Settings/ThemeColorsTab.qml:1604, Modules/Settings/ThemeColorsTab.qml:1614",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1585, Modules/Settings/ThemeColorsTab.qml:1595, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1617, Modules/Settings/ThemeColorsTab.qml:1627",
"comment": "button color option | tile color option"
},
{
@@ -11096,7 +11468,7 @@
{
"term": "Printer",
"context": "Printer",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1509, Modules/Settings/WidgetsTabSection.qml:1663",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1630, Modules/Settings/WidgetsTabSection.qml:1804",
"comment": ""
},
{
@@ -11132,7 +11504,7 @@
{
"term": "Printers",
"context": "Printers",
- "reference": "Modals/Settings/SettingsSidebar.qml:278, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16",
+ "reference": "Modals/Settings/SettingsSidebar.qml:285, Modules/Settings/PrinterTab.qml:210, Modules/Settings/PrinterTab.qml:869, Modules/ControlCenter/Models/WidgetModel.qml:257, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:16",
"comment": ""
},
{
@@ -11144,7 +11516,7 @@
{
"term": "Prioritize performance",
"context": "Prioritize performance",
- "reference": "Common/Theme.qml:1566",
+ "reference": "Common/Theme.qml:1567",
"comment": "power profile description"
},
{
@@ -11234,13 +11606,13 @@
{
"term": "Profile not found",
"context": "Profile not found",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:328, Modules/Settings/DisplayConfig/DisplayConfigState.qml:629",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:331, Modules/Settings/DisplayConfig/DisplayConfigState.qml:641",
"comment": ""
},
{
"term": "Profile not found in monitors.json",
"context": "Profile not found in monitors.json",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:678",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:690",
"comment": ""
},
{
@@ -11255,10 +11627,16 @@
"reference": "Widgets/VpnProfileDelegate.qml:66, Modules/Settings/PrinterTab.qml:549, Modules/Settings/NetworkTab.qml:1924",
"comment": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket"
},
+ {
+ "term": "Qt",
+ "context": "Qt",
+ "reference": "Modules/Settings/TypographyMotionTab.qml:350",
+ "comment": ""
+ },
{
"term": "Qt colors applied successfully",
"context": "Qt colors applied successfully",
- "reference": "Common/Theme.qml:1892",
+ "reference": "Common/Theme.qml:1893",
"comment": ""
},
{
@@ -11330,7 +11708,7 @@
{
"term": "Radius",
"context": "Radius",
- "reference": "Modules/Settings/WindowRulesTab.qml:555",
+ "reference": "Modules/Settings/WindowRulesTab.qml:98",
"comment": ""
},
{
@@ -11369,6 +11747,12 @@
"reference": "Modules/Settings/UsersTab.qml:433",
"comment": ""
},
+ {
+ "term": "Read-only legacy config",
+ "context": "Read-only legacy config",
+ "reference": "Widgets/KeybindItem.qml:1845",
+ "comment": ""
+ },
{
"term": "Read:",
"context": "Read:",
@@ -11390,7 +11774,7 @@
{
"term": "Recent",
"context": "Recent",
- "reference": "Modals/Clipboard/ClipboardHeader.qml:52",
+ "reference": "Modals/Clipboard/ClipboardHeader.qml:54",
"comment": ""
},
{
@@ -11439,7 +11823,7 @@
"term": "Regular",
"context": "Regular",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:264, Modules/Settings/TypographyMotionTab.qml:276, Modules/Settings/TypographyMotionTab.qml:291",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Reject",
@@ -11456,7 +11840,7 @@
{
"term": "Release",
"context": "Release",
- "reference": "Widgets/KeybindItem.qml:1596",
+ "reference": "Widgets/KeybindItem.qml:1652",
"comment": ""
},
{
@@ -11468,13 +11852,13 @@
{
"term": "Remaining",
"context": "Remaining",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1323",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1444",
"comment": ""
},
{
"term": "Remaining / Total",
"context": "Remaining / Total",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1328",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1449",
"comment": ""
},
{
@@ -11504,7 +11888,7 @@
{
"term": "Remove",
"context": "Remove",
- "reference": "Modules/Plugins/ListSetting.qml:114, Modules/Plugins/ListSettingWithInput.qml:230, Modules/Settings/UsersTab.qml:267, Modules/Settings/UsersTab.qml:295, Modules/Settings/KeybindsTab.qml:105",
+ "reference": "Modules/Plugins/ListSetting.qml:114, Modules/Plugins/ListSettingWithInput.qml:230, Modules/Settings/UsersTab.qml:267, Modules/Settings/UsersTab.qml:295, Modules/Settings/KeybindsTab.qml:109",
"comment": ""
},
{
@@ -11516,7 +11900,7 @@
{
"term": "Remove Shortcut?",
"context": "Remove Shortcut?",
- "reference": "Modules/Settings/KeybindsTab.qml:103",
+ "reference": "Modules/Settings/KeybindsTab.qml:107",
"comment": ""
},
{
@@ -11567,16 +11951,22 @@
"reference": "Modules/Settings/DankBarTab.qml:1079",
"comment": ""
},
+ {
+ "term": "Remove match",
+ "context": "Remove match",
+ "reference": "Modals/WindowRuleModal.qml:750",
+ "comment": ""
+ },
{
"term": "Remove the shortcut %1?",
"context": "Remove the shortcut %1?",
- "reference": "Modules/Settings/KeybindsTab.qml:104",
+ "reference": "Modules/Settings/KeybindsTab.qml:108",
"comment": ""
},
{
"term": "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.",
"context": "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.",
- "reference": "Modules/Settings/KeybindsTab.qml:104",
+ "reference": "Modules/Settings/KeybindsTab.qml:108",
"comment": ""
},
{
@@ -11612,7 +12002,7 @@
{
"term": "Repeat",
"context": "Repeat",
- "reference": "Widgets/KeybindItem.qml:1552, Widgets/KeybindItem.qml:1708",
+ "reference": "Widgets/KeybindItem.qml:1608, Widgets/KeybindItem.qml:1764",
"comment": ""
},
{
@@ -11642,13 +12032,13 @@
{
"term": "Required plugin: ",
"context": "Required plugin: ",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2744",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2757",
"comment": ""
},
{
"term": "Requires %1",
"context": "Requires %1",
- "reference": "Modules/Settings/PluginBrowser.qml:635",
+ "reference": "Modules/Settings/PluginBrowser.qml:997",
"comment": "version requirement"
},
{
@@ -11678,7 +12068,7 @@
{
"term": "Requires a newer version of Quickshell",
"context": "Requires a newer version of Quickshell",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1858, Modules/Settings/FrameTab.qml:166",
+ "reference": "Modules/Settings/FrameTab.qml:166",
"comment": ""
},
{
@@ -11687,10 +12077,16 @@
"reference": "Modules/ControlCenter/Models/WidgetModel.qml:133",
"comment": ""
},
+ {
+ "term": "Requires remembering the last user and session. Enable those options first.",
+ "context": "Requires remembering the last user and session. Enable those options first.",
+ "reference": "Modules/Settings/GreeterTab.qml:751",
+ "comment": ""
+ },
{
"term": "Reset",
"context": "Reset",
- "reference": "Modals/DankLauncherV2/LauncherContent.qml:1000, Modules/Settings/WidgetsTab.qml:935, Modules/Settings/KeybindsTab.qml:118, Modules/ControlCenter/Components/EditControls.qml:306",
+ "reference": "Modals/DankLauncherV2/LauncherContent.qml:1000, Modules/Settings/WidgetsTab.qml:964, Modules/Settings/KeybindsTab.qml:122, Modules/ControlCenter/Components/EditControls.qml:306",
"comment": ""
},
{
@@ -11708,13 +12104,13 @@
{
"term": "Reset to Default?",
"context": "Reset to Default?",
- "reference": "Modules/Settings/KeybindsTab.qml:116",
+ "reference": "Modules/Settings/KeybindsTab.qml:120",
"comment": ""
},
{
"term": "Reset to default",
"context": "Reset to default",
- "reference": "Widgets/KeybindItem.qml:1776",
+ "reference": "Widgets/KeybindItem.qml:1832",
"comment": ""
},
{
@@ -11726,7 +12122,7 @@
{
"term": "Resize Widget",
"context": "Resize Widget",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:687",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:690",
"comment": ""
},
{
@@ -11816,7 +12212,7 @@
{
"term": "Right Section",
"context": "Right Section",
- "reference": "Modules/Settings/WidgetsTab.qml:1135",
+ "reference": "Modules/Settings/WidgetSelectionPopup.qml:29, Modules/Settings/WidgetsTab.qml:1170",
"comment": ""
},
{
@@ -11828,13 +12224,13 @@
{
"term": "Right-click and drag anywhere on the widget",
"context": "Right-click and drag anywhere on the widget",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:654",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:657",
"comment": ""
},
{
"term": "Right-click and drag the bottom-right corner",
"context": "Right-click and drag the bottom-right corner",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:696",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:699",
"comment": ""
},
{
@@ -11870,37 +12266,43 @@
{
"term": "Rounded corners for windows",
"context": "Rounded corners for windows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2006",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2019",
"comment": ""
},
{
"term": "Rounded corners for windows (border_radius)",
"context": "Rounded corners for windows (border_radius)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2212",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2225",
"comment": ""
},
{
"term": "Rounded corners for windows (decoration.rounding)",
"context": "Rounded corners for windows (decoration.rounding)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2109",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2122",
"comment": ""
},
{
"term": "Rule",
"context": "Rule",
- "reference": "Modals/WindowRuleModal.qml:254, Modules/Settings/NotificationsTab.qml:479",
+ "reference": "Modals/WindowRuleModal.qml:374, Modules/Settings/NotificationsTab.qml:479",
"comment": ""
},
{
"term": "Rule Name",
"context": "Rule Name",
- "reference": "Modals/WindowRuleModal.qml:457",
+ "reference": "Modals/WindowRuleModal.qml:634",
"comment": ""
},
{
"term": "Rules (%1)",
"context": "Rules (%1)",
- "reference": "Modules/Settings/WindowRulesTab.qml:409",
+ "reference": "Modules/Settings/WindowRulesTab.qml:567",
+ "comment": ""
+ },
+ {
+ "term": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.",
+ "context": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.",
+ "reference": "Modules/Settings/WindowRulesTab.qml:855",
"comment": ""
},
{
@@ -11912,25 +12314,25 @@
{
"term": "Run DMS Templates",
"context": "Run DMS Templates",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2548",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2561",
"comment": ""
},
{
"term": "Run User Templates",
"context": "Run User Templates",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2538",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2551",
"comment": ""
},
{
"term": "Run a program (e.g., firefox, kitty)",
"context": "Run a program (e.g., firefox, kitty)",
- "reference": "Widgets/KeybindItem.qml:823",
+ "reference": "Widgets/KeybindItem.qml:862",
"comment": ""
},
{
"term": "Run a shell command (e.g., notify-send)",
"context": "Run a shell command (e.g., notify-send)",
- "reference": "Widgets/KeybindItem.qml:824",
+ "reference": "Widgets/KeybindItem.qml:863",
"comment": ""
},
{
@@ -11948,7 +12350,7 @@
{
"term": "Running Apps Settings",
"context": "Running Apps Settings",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2391",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2536",
"comment": ""
},
{
@@ -11966,13 +12368,13 @@
{
"term": "SDR Brightness",
"context": "SDR Brightness",
- "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1873",
+ "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:255, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1935",
"comment": ""
},
{
"term": "SDR Saturation",
"context": "SDR Saturation",
- "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1875",
+ "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:289, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1937",
"comment": ""
},
{
@@ -11981,10 +12383,16 @@
"reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:161, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:338",
"comment": "KDE Connect SMS tooltip"
},
+ {
+ "term": "Saturation",
+ "context": "Saturation",
+ "reference": "Modals/WindowRuleModal.qml:1226, Modules/Settings/WindowRulesTab.qml:123",
+ "comment": ""
+ },
{
"term": "Save",
"context": "Save",
- "reference": "Modals/DankColorPickerModal.qml:758, Widgets/KeybindItem.qml:1338, Widgets/KeybindItem.qml:1812, Modals/DankLauncherV2/LauncherContent.qml:1048, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modals/Clipboard/ClipboardEditor.qml:335, Modals/Clipboard/ClipboardEditor.qml:421, Modules/Notepad/NotepadTextEditor.qml:766, Modules/Notepad/Notepad.qml:482, Modules/Settings/DisplayConfigTab.qml:406, Modules/Settings/AudioTab.qml:694",
+ "reference": "Modals/DankColorPickerModal.qml:758, Widgets/KeybindItem.qml:1392, Widgets/KeybindItem.qml:1868, Modals/DankLauncherV2/LauncherContent.qml:1048, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modals/Clipboard/ClipboardEditor.qml:346, Modals/Clipboard/ClipboardEditor.qml:432, Modules/Notepad/NotepadTextEditor.qml:766, Modules/Notepad/Notepad.qml:482, Modules/Settings/DisplayConfigTab.qml:406, Modules/Settings/AudioTab.qml:694",
"comment": ""
},
{
@@ -12002,13 +12410,13 @@
{
"term": "Save and close",
"context": "Save and close",
- "reference": "Modals/Clipboard/ClipboardEditor.qml:459",
+ "reference": "Modals/Clipboard/ClipboardEditor.qml:470",
"comment": ""
},
{
"term": "Save and paste",
"context": "Save and paste",
- "reference": "Modals/Clipboard/ClipboardEditor.qml:498",
+ "reference": "Modals/Clipboard/ClipboardEditor.qml:509",
"comment": ""
},
{
@@ -12050,7 +12458,7 @@
{
"term": "Saved",
"context": "Saved",
- "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Notepad/NotepadTextEditor.qml:869, Modules/Settings/NetworkTab.qml:1208, Modules/ControlCenter/Details/NetworkDetail.qml:621",
+ "reference": "Modals/Clipboard/ClipboardHeader.qml:54, Modules/Notepad/NotepadTextEditor.qml:869, Modules/Settings/NetworkTab.qml:1208, Modules/ControlCenter/Details/NetworkDetail.qml:621",
"comment": ""
},
{
@@ -12068,19 +12476,19 @@
{
"term": "Saved item deleted",
"context": "Saved item deleted",
- "reference": "Services/ClipboardService.qml:315",
+ "reference": "Services/ClipboardService.qml:317",
"comment": ""
},
{
"term": "Saving...",
"context": "Saving...",
- "reference": "Modals/WindowRuleModal.qml:1154",
+ "reference": "Modals/WindowRuleModal.qml:1586",
"comment": ""
},
{
"term": "Scale",
"context": "Scale",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1843",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:193, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1905",
"comment": ""
},
{
@@ -12131,28 +12539,22 @@
"reference": "Modals/DankLauncherV2/LauncherContent.qml:691, Modals/DankLauncherV2/LauncherContent.qml:699, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:706",
"comment": ""
},
- {
- "term": "Screen Sharing",
- "context": "Screen Sharing",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1519, Modules/Settings/WidgetsTabSection.qml:1663",
- "comment": ""
- },
{
"term": "Screen sharing",
"context": "Screen sharing",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2092",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1640, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTabSection.qml:2237",
"comment": ""
},
{
"term": "Scroll",
"context": "Scroll",
- "reference": "Modules/Settings/WindowRulesTab.qml:554",
+ "reference": "Modules/Settings/WindowRulesTab.qml:97",
"comment": ""
},
{
"term": "Scroll Factor",
"context": "Scroll Factor",
- "reference": "Modals/WindowRuleModal.qml:774",
+ "reference": "Modals/WindowRuleModal.qml:1122",
"comment": ""
},
{
@@ -12203,6 +12605,12 @@
"reference": "Modules/Settings/LauncherTab.qml:1112",
"comment": ""
},
+ {
+ "term": "Search applications...",
+ "context": "Search applications...",
+ "reference": "Modules/Settings/Widgets/AppBrowserPopup.qml:155",
+ "comment": ""
+ },
{
"term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.",
"context": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.",
@@ -12230,7 +12638,7 @@
{
"term": "Search keybinds...",
"context": "Search keybinds...",
- "reference": "Modules/Settings/KeybindsTab.qml:312",
+ "reference": "Modules/Settings/KeybindsTab.qml:316",
"comment": ""
},
{
@@ -12242,7 +12650,7 @@
{
"term": "Search plugins...",
"context": "Search plugins...",
- "reference": "Modules/Settings/PluginBrowser.qml:346",
+ "reference": "Modules/Settings/PluginBrowser.qml:555",
"comment": "plugin search placeholder"
},
{
@@ -12266,13 +12674,13 @@
{
"term": "Search widgets...",
"context": "Search widgets...",
- "reference": "Modules/Settings/WidgetSelectionPopup.qml:293, Modules/Settings/DesktopWidgetBrowser.qml:288",
+ "reference": "Modules/Settings/WidgetSelectionPopup.qml:302, Modules/Settings/DesktopWidgetBrowser.qml:288",
"comment": ""
},
{
"term": "Search...",
"context": "Search...",
- "reference": "Widgets/DankDropdown.qml:319, Modals/Settings/SettingsSidebar.qml:670, Modules/ProcessList/ProcessListPopout.qml:185",
+ "reference": "Widgets/DankDropdown.qml:319, Modals/Settings/SettingsSidebar.qml:679, Modules/ProcessList/ProcessListPopout.qml:185",
"comment": ""
},
{
@@ -12296,7 +12704,7 @@
{
"term": "Secondary",
"context": "Secondary",
- "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1568, Modules/Settings/ThemeColorsTab.qml:1574, Modules/Settings/ThemeColorsTab.qml:1584, Modules/Settings/ThemeColorsTab.qml:1600, Modules/Settings/ThemeColorsTab.qml:1606, Modules/Settings/ThemeColorsTab.qml:1616, Modules/Settings/ThemeColorsTab.qml:1898, Modules/Settings/ThemeColorsTab.qml:1904, Modules/Settings/ThemeColorsTab.qml:1916, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:722, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/Widgets/SettingsColorPicker.qml:47",
+ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1587, Modules/Settings/ThemeColorsTab.qml:1597, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1629, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1917, Modules/Settings/ThemeColorsTab.qml:1929, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:722, Modules/Settings/WorkspacesTab.qml:369, Modules/Settings/DankBarTab.qml:1171, Modules/Settings/DankBarTab.qml:1610, Modules/Settings/Widgets/SettingsColorPicker.qml:47",
"comment": "blur border color | button color option | color option | secondary color | tile color option"
},
{
@@ -12344,19 +12752,19 @@
{
"term": "Select Application",
"context": "Select Application",
- "reference": "Modals/AppPickerModal.qml:11",
+ "reference": "Modals/AppPickerModal.qml:11, Modules/Settings/Widgets/AppBrowserPopup.qml:22, Modules/Settings/Widgets/AppBrowserPopup.qml:108",
"comment": ""
},
{
"term": "Select Bar",
"context": "Select Bar",
- "reference": "Modules/Settings/WidgetsTab.qml:850",
+ "reference": "Modules/Settings/WidgetsTab.qml:879",
"comment": ""
},
{
"term": "Select Custom Theme",
"context": "Select Custom Theme",
- "reference": "Modules/Settings/ThemeColorsTab.qml:3051",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:3064",
"comment": "custom theme file browser title"
},
{
@@ -12407,6 +12815,12 @@
"reference": "Modals/DankColorPickerModal.qml:224",
"comment": ""
},
+ {
+ "term": "Select a desktop application",
+ "context": "Select a desktop application",
+ "reference": "Modules/Settings/AutoStartTab.qml:383",
+ "comment": ""
+ },
{
"term": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.",
"context": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.",
@@ -12416,13 +12830,13 @@
{
"term": "Select a widget to add. You can add multiple instances of the same widget if needed.",
"context": "Select a widget to add. You can add multiple instances of the same widget if needed.",
- "reference": "Modules/Settings/WidgetSelectionPopup.qml:271",
+ "reference": "Modules/Settings/WidgetSelectionPopup.qml:280",
"comment": ""
},
{
"term": "Select a window...",
"context": "Select a window...",
- "reference": "Modules/Settings/WindowRulesTab.qml:298",
+ "reference": "Modules/Settings/WindowRulesTab.qml:455",
"comment": ""
},
{
@@ -12446,7 +12860,7 @@
{
"term": "Select device",
"context": "Select device",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:458, Modules/ControlCenter/Components/DragDropGrid.qml:469",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:486, Modules/ControlCenter/Components/DragDropGrid.qml:497",
"comment": "audio status"
},
{
@@ -12488,7 +12902,7 @@
{
"term": "Select network",
"context": "Select network",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:430",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:458",
"comment": "network status"
},
{
@@ -12506,13 +12920,13 @@
{
"term": "Select the palette algorithm used for wallpaper-based colors",
"context": "Select the palette algorithm used for wallpaper-based colors",
- "reference": "Modules/Settings/ThemeColorsTab.qml:515",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:528",
"comment": ""
},
{
"term": "Select user...",
"context": "Select user...",
- "reference": "Modules/Greetd/GreeterContent.qml:964",
+ "reference": "Modules/Greetd/GreeterContent.qml:1001",
"comment": "greeter user picker placeholder"
},
{
@@ -12530,7 +12944,7 @@
{
"term": "Select...",
"context": "Select...",
- "reference": "Widgets/KeybindItem.qml:924, Widgets/KeybindItem.qml:1138, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:123",
+ "reference": "Widgets/KeybindItem.qml:965, Widgets/KeybindItem.qml:1186, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:104, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:123",
"comment": ""
},
{
@@ -12638,13 +13052,13 @@
{
"term": "Set key and action to save",
"context": "Set key and action to save",
- "reference": "Widgets/KeybindItem.qml:1789",
+ "reference": "Widgets/KeybindItem.qml:1845",
"comment": ""
},
{
"term": "Set notification rules",
"context": "Set notification rules",
- "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1374, Modules/Notifications/Center/NotificationCard.qml:1067",
+ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1357, Modules/Notifications/Center/NotificationCard.qml:1071",
"comment": ""
},
{
@@ -12656,7 +13070,7 @@
{
"term": "Settings",
"context": "Settings",
- "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:324, Services/AppSearchService.qml:680, Services/PopoutService.qml:408, Services/PopoutService.qml:425, Modals/DankLauncherV2/Controller.qml:214, Modals/Settings/SettingsSidebar.qml:114, Modals/Settings/SettingsModal.qml:88, Modals/Settings/SettingsModal.qml:228, Modules/DankDash/DankDashPopout.qml:294, Modules/Dock/DockTrashContextMenu.qml:48",
+ "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:324, Services/AppSearchService.qml:680, Services/PopoutService.qml:410, Services/PopoutService.qml:427, Modals/DankLauncherV2/Controller.qml:214, Modals/Settings/SettingsSidebar.qml:114, Modals/Settings/SettingsModal.qml:88, Modals/Settings/SettingsModal.qml:228, Modules/DankDash/DankDashPopout.qml:301, Modules/Dock/DockTrashContextMenu.qml:48",
"comment": "settings window title"
},
{
@@ -12674,25 +13088,25 @@
{
"term": "Setup",
"context": "Setup",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2371, Modules/Settings/WindowRulesTab.qml:374, Modules/Settings/KeybindsTab.qml:419, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:83",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2384, Modules/Settings/WindowRulesTab.qml:532, Modules/Settings/KeybindsTab.qml:428, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:88",
"comment": ""
},
{
"term": "Shadow Color",
"context": "Shadow Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:149, Modules/Settings/ThemeColorsTab.qml:1706",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:162, Modules/Settings/ThemeColorsTab.qml:1719",
"comment": ""
},
{
"term": "Shadow Intensity",
"context": "Shadow Intensity",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1676",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1689",
"comment": ""
},
{
"term": "Shadow Opacity",
"context": "Shadow Opacity",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1691",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1704",
"comment": ""
},
{
@@ -12710,25 +13124,25 @@
{
"term": "Shadow elevation on bars and panels",
"context": "Shadow elevation on bars and panels",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1839",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1852",
"comment": ""
},
{
"term": "Shadow elevation on modals and dialogs",
"context": "Shadow elevation on modals and dialogs",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1817",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1830",
"comment": ""
},
{
"term": "Shadow elevation on popouts, OSDs, and dropdowns",
"context": "Shadow elevation on popouts, OSDs, and dropdowns",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1828",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1841",
"comment": ""
},
{
"term": "Shadows",
"context": "Shadows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1666",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1679",
"comment": ""
},
{
@@ -12740,7 +13154,7 @@
{
"term": "Share Gamma Control Settings",
"context": "Share Gamma Control Settings",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1086",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1099",
"comment": ""
},
{
@@ -12764,7 +13178,7 @@
{
"term": "Shell",
"context": "Shell",
- "reference": "Widgets/KeybindItem.qml:1471",
+ "reference": "Widgets/KeybindItem.qml:1527",
"comment": ""
},
{
@@ -12788,19 +13202,19 @@
{
"term": "Shortcut (%1)",
"context": "Shortcut (%1)",
- "reference": "Modules/Settings/KeybindsTab.qml:598",
+ "reference": "Modules/Settings/KeybindsTab.qml:608",
"comment": ""
},
{
"term": "Shortcuts",
"context": "Shortcuts",
- "reference": "Modules/Settings/KeybindsTab.qml:596",
+ "reference": "Modules/Settings/KeybindsTab.qml:606",
"comment": ""
},
{
"term": "Shortcuts (%1)",
"context": "Shortcuts (%1)",
- "reference": "Modules/Settings/KeybindsTab.qml:598",
+ "reference": "Modules/Settings/KeybindsTab.qml:608",
"comment": ""
},
{
@@ -12812,7 +13226,7 @@
{
"term": "Show 3rd Party",
"context": "Show 3rd Party",
- "reference": "Modules/Settings/PluginBrowser.qml:274",
+ "reference": "Modules/Settings/PluginBrowser.qml:483",
"comment": ""
},
{
@@ -12830,7 +13244,7 @@
{
"term": "Show Badge",
"context": "Show Badge",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2795",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2940",
"comment": ""
},
{
@@ -12923,6 +13337,12 @@
"reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90",
"comment": ""
},
+ {
+ "term": "Show Icon",
+ "context": "Show Icon",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1180",
+ "comment": ""
+ },
{
"term": "Show Launcher Button",
"context": "Show Launcher Button",
@@ -13070,7 +13490,7 @@
{
"term": "Show Seconds",
"context": "Show Seconds",
- "reference": "Modules/Settings/TimeWeatherTab.qml:63, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27",
+ "reference": "Modules/Settings/GreeterTab.qml:608, Modules/Settings/TimeWeatherTab.qml:63, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27",
"comment": ""
},
{
@@ -13088,7 +13508,7 @@
{
"term": "Show Swap",
"context": "Show Swap",
- "reference": "Modules/Settings/WidgetsTabSection.qml:925",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:960",
"comment": ""
},
{
@@ -13178,7 +13598,7 @@
{
"term": "Show darkened overlay behind modal dialogs",
"context": "Show darkened overlay behind modal dialogs",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2273",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2286",
"comment": ""
},
{
@@ -13208,13 +13628,13 @@
{
"term": "Show foreground surfaces on blurred panels for stronger contrast",
"context": "Show foreground surfaces on blurred panels for stronger contrast",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1869",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1882",
"comment": ""
},
{
"term": "Show in GB",
"context": "Show in GB",
- "reference": "Modules/Settings/WidgetsTabSection.qml:978",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1013",
"comment": ""
},
{
@@ -13229,6 +13649,12 @@
"reference": "Modules/Settings/LauncherTab.qml:659",
"comment": "launcher footer description"
},
+ {
+ "term": "Show mount path",
+ "context": "Show mount path",
+ "reference": "Modules/ControlCenter/Components/DiskUsageWidgetConfigMenu.qml:31",
+ "comment": "toggle in control center disk usage widget to turn mount path display on or off"
+ },
{
"term": "Show notification popups only on the currently focused monitor",
"context": "Show notification popups only on the currently focused monitor",
@@ -13331,12 +13757,6 @@
"reference": "Modules/Settings/OSDTab.qml:94",
"comment": ""
},
- {
- "term": "Show seconds",
- "context": "Show seconds",
- "reference": "Modules/Settings/GreeterTab.qml:608",
- "comment": ""
- },
{
"term": "Show the bar only when no windows are open",
"context": "Show the bar only when no windows are open",
@@ -13442,13 +13862,13 @@
{
"term": "Size",
"context": "Size",
- "reference": "Modals/WindowRuleModal.qml:989, Modals/DankLauncherV2/LauncherContent.qml:697, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:709, Modules/Settings/LauncherTab.qml:614, Modules/Settings/DankBarTab.qml:812, Modules/Settings/FrameTab.qml:125, Modules/Settings/WindowRulesTab.qml:572",
+ "reference": "Modals/WindowRuleModal.qml:1421, Modals/DankLauncherV2/LauncherContent.qml:697, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:709, Modules/Settings/LauncherTab.qml:614, Modules/Settings/DankBarTab.qml:812, Modules/Settings/FrameTab.qml:125, Modules/Settings/WindowRulesTab.qml:115",
"comment": "launcher size option"
},
{
"term": "Size Constraints",
"context": "Size Constraints",
- "reference": "Modals/WindowRuleModal.qml:811",
+ "reference": "Modals/WindowRuleModal.qml:1243",
"comment": ""
},
{
@@ -13472,7 +13892,7 @@
{
"term": "Skip confirmation",
"context": "Skip confirmation",
- "reference": "Widgets/KeybindItem.qml:1362",
+ "reference": "Widgets/KeybindItem.qml:1416",
"comment": ""
},
{
@@ -13481,10 +13901,16 @@
"reference": "Modals/Greeter/GreeterModal.qml:232",
"comment": "greeter skip button tooltip"
},
+ {
+ "term": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.",
+ "context": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.",
+ "reference": "Modules/Settings/GreeterTab.qml:751",
+ "comment": ""
+ },
{
"term": "Small",
"context": "Small",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1181, Modules/Settings/WidgetsTabSection.qml:2268",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1302, Modules/Settings/WidgetsTabSection.qml:2413",
"comment": ""
},
{
@@ -13547,6 +13973,12 @@
"reference": "Modals/Settings/SettingsSidebar.qml:100",
"comment": ""
},
+ {
+ "term": "Source: %1",
+ "context": "Source: %1",
+ "reference": "Modules/Settings/WindowRulesTab.qml:1080",
+ "comment": ""
+ },
{
"term": "Space between the bar and screen edges",
"context": "Space between the bar and screen edges",
@@ -13556,19 +13988,19 @@
{
"term": "Space between windows",
"context": "Space between windows",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1975",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1988",
"comment": ""
},
{
"term": "Space between windows (gappih/gappiv/gappoh/gappov)",
"context": "Space between windows (gappih/gappiv/gappoh/gappov)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2181",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2194",
"comment": ""
},
{
"term": "Space between windows (gaps_in and gaps_out)",
"context": "Space between windows (gaps_in and gaps_out)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2078",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2091",
"comment": ""
},
{
@@ -13652,7 +14084,7 @@
{
"term": "Start",
"context": "Start",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1172, Modules/Settings/GammaControlTab.qml:252",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1185, Modules/Settings/GammaControlTab.qml:252",
"comment": ""
},
{
@@ -13778,13 +14210,13 @@
{
"term": "Surface Opacity",
"context": "Surface Opacity",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1629, Modules/Settings/ThemeColorsTab.qml:1637, Modules/Settings/FrameTab.qml:146",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1642, Modules/Settings/ThemeColorsTab.qml:1650, Modules/Settings/FrameTab.qml:146",
"comment": ""
},
{
"term": "Surface Variant",
"context": "Surface Variant",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1568, Modules/Settings/ThemeColorsTab.qml:1576, Modules/Settings/ThemeColorsTab.qml:1586, Modules/Settings/ThemeColorsTab.qml:1600, Modules/Settings/ThemeColorsTab.qml:1608, Modules/Settings/ThemeColorsTab.qml:1618, Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1716, Modules/Settings/ThemeColorsTab.qml:1727",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1581, Modules/Settings/ThemeColorsTab.qml:1589, Modules/Settings/ThemeColorsTab.qml:1599, Modules/Settings/ThemeColorsTab.qml:1613, Modules/Settings/ThemeColorsTab.qml:1621, Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1729, Modules/Settings/ThemeColorsTab.qml:1740",
"comment": "button color option | shadow color option | tile color option"
},
{
@@ -13832,7 +14264,7 @@
{
"term": "Switch User",
"context": "Switch User",
- "reference": "Modals/PowerMenuModal.qml:229, Modals/SwitchUserModal.qml:97, Modules/Lock/LockPowerMenu.qml:136, Modules/Greetd/GreeterContent.qml:1345",
+ "reference": "Modals/PowerMenuModal.qml:229, Modals/SwitchUserModal.qml:97, Modules/Lock/LockPowerMenu.qml:136, Modules/Greetd/GreeterContent.qml:1441",
"comment": ""
},
{
@@ -13856,7 +14288,7 @@
{
"term": "Sync Mode with Portal",
"context": "Sync Mode with Portal",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2291",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2304",
"comment": ""
},
{
@@ -13880,7 +14312,7 @@
{
"term": "Sync dark mode with settings portals for system-wide theme hints",
"context": "Sync dark mode with settings portals for system-wide theme hints",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2292",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2305",
"comment": ""
},
{
@@ -13898,13 +14330,13 @@
{
"term": "System",
"context": "System",
- "reference": "Modals/ProcessListModal.qml:320, Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:681, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:253, Modules/ProcessList/ProcessListPopout.qml:155",
+ "reference": "Modals/ProcessListModal.qml:320, Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:681, Widgets/DankIconPicker.qml:43, Modals/Settings/SettingsSidebar.qml:260, Modules/ProcessList/ProcessListPopout.qml:155",
"comment": ""
},
{
"term": "System App Theming",
"context": "System App Theming",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2949",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2962",
"comment": ""
},
{
@@ -13964,7 +14396,7 @@
{
"term": "System Updater",
"context": "System Updater",
- "reference": "Modals/Settings/SettingsSidebar.qml:291, Modules/Settings/SystemUpdaterTab.qml:67",
+ "reference": "Modals/Settings/SettingsSidebar.qml:298, Modules/Settings/SystemUpdaterTab.qml:67",
"comment": ""
},
{
@@ -13997,10 +14429,16 @@
"reference": "Modules/Settings/DisplayWidgetsTab.qml:56",
"comment": ""
},
+ {
+ "term": "Systemd Override generated",
+ "context": "Systemd Override generated",
+ "reference": "Modules/Settings/AutoStartTab.qml:272, Modules/Settings/AutoStartTab.qml:277",
+ "comment": ""
+ },
{
"term": "Tab",
"context": "Tab",
- "reference": "Widgets/KeybindItem.qml:1051",
+ "reference": "Widgets/KeybindItem.qml:1099",
"comment": ""
},
{
@@ -14048,7 +14486,7 @@
{
"term": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.",
"context": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.",
- "reference": "Common/settings/Processes.qml:506",
+ "reference": "Common/settings/Processes.qml:671",
"comment": ""
},
{
@@ -14060,7 +14498,7 @@
{
"term": "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.",
"context": "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.",
- "reference": "Common/settings/Processes.qml:502",
+ "reference": "Common/settings/Processes.qml:667",
"comment": ""
},
{
@@ -14078,7 +14516,7 @@
{
"term": "Terminal opened. Complete authentication setup there; it will close automatically when done.",
"context": "Terminal opened. Complete authentication setup there; it will close automatically when done.",
- "reference": "Common/settings/Processes.qml:502",
+ "reference": "Common/settings/Processes.qml:667",
"comment": ""
},
{
@@ -14090,7 +14528,7 @@
{
"term": "Terminals - Always use Dark Theme",
"context": "Terminals - Always use Dark Theme",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2301",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2314",
"comment": ""
},
{
@@ -14120,13 +14558,13 @@
{
"term": "Text",
"context": "Text",
- "reference": "Modals/DankLauncherV2/Controller.qml:1224, Modals/Clipboard/ClipboardEntry.qml:135, Modules/Settings/LauncherTab.qml:722",
+ "reference": "Modals/DankLauncherV2/Controller.qml:1224, Modals/Clipboard/ClipboardEntry.qml:134, Modules/Settings/LauncherTab.qml:722",
"comment": "text color"
},
{
"term": "Text Color",
"context": "Text Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1708, Modules/Settings/ThemeColorsTab.qml:1712, Modules/Settings/ThemeColorsTab.qml:1732, Modules/Settings/ThemeColorsTab.qml:1898, Modules/Settings/ThemeColorsTab.qml:1906, Modules/Settings/ThemeColorsTab.qml:1918",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1721, Modules/Settings/ThemeColorsTab.qml:1725, Modules/Settings/ThemeColorsTab.qml:1745, Modules/Settings/ThemeColorsTab.qml:1911, Modules/Settings/ThemeColorsTab.qml:1919, Modules/Settings/ThemeColorsTab.qml:1931",
"comment": "blur border color | shadow color option"
},
{
@@ -14156,7 +14594,7 @@
{
"term": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).",
"context": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2938",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2951",
"comment": ""
},
{
@@ -14171,6 +14609,12 @@
"reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:240",
"comment": ""
},
+ {
+ "term": "The rule applies to any window matching one of these.",
+ "context": "The rule applies to any window matching one of these.",
+ "reference": "Modals/WindowRuleModal.qml:697",
+ "comment": ""
+ },
{
"term": "Theme & Colors",
"context": "Theme & Colors",
@@ -14180,7 +14624,7 @@
{
"term": "Theme Color",
"context": "Theme Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:219",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:232",
"comment": ""
},
{
@@ -14204,7 +14648,7 @@
{
"term": "Theme worker failed (%1)",
"context": "Theme worker failed (%1)",
- "reference": "Common/Theme.qml:2037",
+ "reference": "Common/Theme.qml:2038",
"comment": ""
},
{
@@ -14213,6 +14657,12 @@
"reference": "Modals/Greeter/GreeterCompletePage.qml:484",
"comment": "greeter themes link"
},
+ {
+ "term": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)",
+ "context": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)",
+ "reference": "Modules/Settings/AutoStartTab.qml:562",
+ "comment": ""
+ },
{
"term": "Thickness",
"context": "Thickness",
@@ -14223,24 +14673,24 @@
"term": "Thin",
"context": "Thin",
"reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:258, Modules/Settings/TypographyMotionTab.qml:282",
- "comment": ""
+ "comment": "font weight"
},
{
"term": "Third-Party Plugin Warning",
"context": "Third-Party Plugin Warning",
- "reference": "Modules/Settings/PluginBrowser.qml:741, Modules/Settings/PluginBrowser.qml:775",
+ "reference": "Modules/Settings/PluginBrowser.qml:1140, Modules/Settings/PluginBrowser.qml:1174",
"comment": ""
},
{
"term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.",
"context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.",
- "reference": "Modules/Settings/PluginBrowser.qml:799",
+ "reference": "Modules/Settings/PluginBrowser.qml:1198",
"comment": ""
},
{
"term": "This bind is overridden by config.kdl",
"context": "This bind is overridden by config.kdl",
- "reference": "Widgets/KeybindItem.qml:468",
+ "reference": "Widgets/KeybindItem.qml:506",
"comment": ""
},
{
@@ -14249,6 +14699,30 @@
"reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:249",
"comment": "Label for the user's own device in Tailscale"
},
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.",
+ "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:105",
+ "comment": ""
+ },
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.",
+ "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.",
+ "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:66, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1475",
+ "comment": ""
+ },
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.",
+ "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.",
+ "reference": "Services/KeybindsService.qml:539, Modules/Settings/KeybindsTab.qml:402",
+ "comment": ""
+ },
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.",
+ "context": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.",
+ "reference": "Modules/Settings/WindowRulesTab.qml:354, Modules/Settings/WindowRulesTab.qml:520",
+ "comment": ""
+ },
{
"term": "This may take a few seconds",
"context": "This may take a few seconds",
@@ -14276,19 +14750,19 @@
{
"term": "This will delete all unpinned entries. %1 pinned entries will be kept.",
"context": "This will delete all unpinned entries. %1 pinned entries will be kept.",
- "reference": "Modals/Clipboard/ClipboardContent.qml:37, Modules/DankBar/DankBarContent.qml:733",
+ "reference": "Modals/Clipboard/ClipboardContent.qml:38, Modules/DankBar/DankBarContent.qml:733",
"comment": ""
},
{
"term": "This will permanently delete all clipboard history.",
"context": "This will permanently delete all clipboard history.",
- "reference": "Modals/Clipboard/ClipboardContent.qml:37, Modules/DankBar/DankBarContent.qml:733",
+ "reference": "Modals/Clipboard/ClipboardContent.qml:38, Modules/DankBar/DankBarContent.qml:733",
"comment": ""
},
{
"term": "This will permanently remove this saved clipboard item. This action cannot be undone.",
"context": "This will permanently remove this saved clipboard item. This action cannot be undone.",
- "reference": "Services/ClipboardService.qml:305",
+ "reference": "Services/ClipboardService.qml:307",
"comment": ""
},
{
@@ -14306,7 +14780,7 @@
{
"term": "Tile",
"context": "Tile",
- "reference": "Modals/WindowRuleModal.qml:939, Modules/Settings/WallpaperTab.qml:312, Modules/Settings/WindowRulesTab.qml:562",
+ "reference": "Modals/WindowRuleModal.qml:1371, Modules/Settings/WallpaperTab.qml:312, Modules/Settings/WindowRulesTab.qml:105",
"comment": "wallpaper fill mode"
},
{
@@ -14324,13 +14798,13 @@
{
"term": "Tiled",
"context": "Tiled",
- "reference": "Modules/Settings/WindowRulesTab.qml:557",
+ "reference": "Modules/Settings/WindowRulesTab.qml:100",
"comment": ""
},
{
"term": "Tiled State",
"context": "Tiled State",
- "reference": "Modals/WindowRuleModal.qml:709",
+ "reference": "Modals/WindowRuleModal.qml:1057",
"comment": ""
},
{
@@ -14342,7 +14816,7 @@
{
"term": "Time",
"context": "Time",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1104, Modules/Settings/GammaControlTab.qml:184, Modules/Settings/WallpaperTab.qml:960",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1117, Modules/Settings/GammaControlTab.qml:184, Modules/Settings/WallpaperTab.qml:960",
"comment": "theme auto mode tab | wallpaper cycling mode tab"
},
{
@@ -14360,19 +14834,13 @@
{
"term": "Time Format",
"context": "Time Format",
- "reference": "Modules/Settings/TimeWeatherTab.qml:45",
- "comment": ""
- },
- {
- "term": "Time format",
- "context": "Time format",
- "reference": "Modules/Settings/GreeterTab.qml:589",
+ "reference": "Modules/Settings/GreeterTab.qml:589, Modules/Settings/TimeWeatherTab.qml:45",
"comment": ""
},
{
"term": "Time remaining: %1",
"context": "Time remaining: %1",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:109, Modules/DankBar/Popouts/BatteryPopout.qml:179",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:108, Modules/DankBar/Popouts/BatteryPopout.qml:178",
"comment": ""
},
{
@@ -14384,7 +14852,7 @@
{
"term": "Time until full: %1",
"context": "Time until full: %1",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:109, Modules/DankBar/Popouts/BatteryPopout.qml:179",
+ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:108, Modules/DankBar/Popouts/BatteryPopout.qml:178",
"comment": ""
},
{
@@ -14426,19 +14894,19 @@
{
"term": "Title",
"context": "Title",
- "reference": "Widgets/KeybindItem.qml:1500",
+ "reference": "Widgets/KeybindItem.qml:1556, Modules/Settings/WindowRulesTab.qml:36",
"comment": ""
},
{
"term": "Title regex (optional)",
"context": "Title regex (optional)",
- "reference": "Modals/WindowRuleModal.qml:492",
+ "reference": "Modals/WindowRuleModal.qml:669, Modals/WindowRuleModal.qml:734",
"comment": ""
},
{
"term": "To Full",
"context": "To Full",
- "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:520",
+ "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:519",
"comment": ""
},
{
@@ -14456,7 +14924,7 @@
{
"term": "To use this DMS bind, remove or change the keybind in your config.kdl",
"context": "To use this DMS bind, remove or change the keybind in your config.kdl",
- "reference": "Widgets/KeybindItem.qml:486",
+ "reference": "Widgets/KeybindItem.qml:524",
"comment": ""
},
{
@@ -14528,7 +14996,7 @@
{
"term": "Too many failed attempts - account may be locked",
"context": "Too many failed attempts - account may be locked",
- "reference": "Modules/Greetd/GreeterContent.qml:231",
+ "reference": "Modules/Greetd/GreeterContent.qml:235",
"comment": ""
},
{
@@ -14546,7 +15014,7 @@
{
"term": "Top (Default)",
"context": "Top (Default)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1746, Modules/Settings/ThemeColorsTab.qml:1758",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1771",
"comment": "shadow direction option"
},
{
@@ -14564,7 +15032,7 @@
{
"term": "Top Left",
"context": "Top Left",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1746, Modules/Settings/ThemeColorsTab.qml:1752, Modules/Settings/ThemeColorsTab.qml:1765, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1556, Modules/Settings/DankBarTab.qml:1566, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:223, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:238, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1765, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1556, Modules/Settings/DankBarTab.qml:1566, Modules/Settings/OSDTab.qml:37, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:58, Modules/Settings/NotificationsTab.qml:223, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:238, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154",
"comment": "screen position option | shadow direction option"
},
{
@@ -14576,19 +15044,19 @@
{
"term": "Top Right",
"context": "Top Right",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1746, Modules/Settings/ThemeColorsTab.qml:1754, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1558, Modules/Settings/DankBarTab.qml:1570, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1759, Modules/Settings/ThemeColorsTab.qml:1767, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/DankBarTab.qml:1552, Modules/Settings/DankBarTab.qml:1558, Modules/Settings/DankBarTab.qml:1570, Modules/Settings/OSDTab.qml:35, Modules/Settings/OSDTab.qml:54, Modules/Settings/OSDTab.qml:56, Modules/Settings/NotificationsTab.qml:219, Modules/Settings/NotificationsTab.qml:229, Modules/Settings/NotificationsTab.qml:232, Modules/Settings/NotificationsTab.qml:235, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:154",
"comment": "screen position option | shadow direction option"
},
{
"term": "Top Section",
"context": "Top Section",
- "reference": "Modules/Settings/WidgetsTab.qml:989",
+ "reference": "Modules/Settings/WidgetsTab.qml:1018",
"comment": ""
},
{
"term": "Total",
"context": "Total",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1318",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1439",
"comment": ""
},
{
@@ -14606,7 +15074,7 @@
{
"term": "Transform",
"context": "Transform",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:279, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1845",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:295, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1907",
"comment": ""
},
{
@@ -14651,6 +15119,12 @@
"reference": "Services/TrashService.qml:112",
"comment": ""
},
+ {
+ "term": "Tray Icon Fix",
+ "context": "Tray Icon Fix",
+ "reference": "Modules/Settings/AutoStartTab.qml:726",
+ "comment": ""
+ },
{
"term": "Trending GIFs",
"context": "Trending GIFs",
@@ -14738,7 +15212,7 @@
{
"term": "Type",
"context": "Type",
- "reference": "Widgets/KeybindItem.qml:801, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:577",
+ "reference": "Widgets/KeybindItem.qml:840, Modules/Settings/RunningAppsTab.qml:154, Modules/Settings/NotificationsTab.qml:577",
"comment": ""
},
{
@@ -14774,7 +15248,7 @@
{
"term": "Typography & Motion",
"context": "Typography & Motion",
- "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:586",
+ "reference": "Modals/Settings/SettingsSidebar.qml:88, Modals/Settings/SettingsSidebar.qml:595",
"comment": ""
},
{
@@ -14783,6 +15257,12 @@
"reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:31, Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkTab.qml:450",
"comment": "Phone Connect unavailable status"
},
+ {
+ "term": "Uncategorized",
+ "context": "Uncategorized",
+ "reference": "Modules/Settings/PluginBrowser.qml:89",
+ "comment": "plugin browser category filter"
+ },
{
"term": "Unfocused Color",
"context": "Unfocused Color",
@@ -14792,7 +15272,7 @@
{
"term": "Ungrouped",
"context": "Ungrouped",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:469",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:472",
"comment": ""
},
{
@@ -14822,7 +15302,7 @@
{
"term": "Uninstall failed: %1",
"context": "Uninstall failed: %1",
- "reference": "Modules/Settings/ThemeColorsTab.qml:776, Modules/Settings/ThemeBrowser.qml:98, Modules/Settings/PluginListItem.qml:249",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:789, Modules/Settings/ThemeBrowser.qml:98, Modules/Settings/PluginListItem.qml:249",
"comment": "uninstallation error"
},
{
@@ -14834,19 +15314,19 @@
{
"term": "Uninstalled: %1",
"context": "Uninstalled: %1",
- "reference": "Modules/Settings/ThemeColorsTab.qml:779, Modules/Settings/ThemeBrowser.qml:101",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:792, Modules/Settings/ThemeBrowser.qml:101",
"comment": "uninstallation success"
},
{
"term": "Uninstalling: %1",
"context": "Uninstalling: %1",
- "reference": "Modules/Settings/ThemeColorsTab.qml:773, Modules/Settings/ThemeBrowser.qml:95",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:786, Modules/Settings/ThemeBrowser.qml:95",
"comment": "uninstallation progress"
},
{
"term": "Unknown",
"context": "Unknown",
- "reference": "Common/Theme.qml:1555, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Services/BatteryService.qml:214, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:401, Modules/Lock/LockScreenContent.qml:521, Modules/Lock/LockScreenContent.qml:617, Modules/Settings/PluginBrowser.qml:541, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:529, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:429, Modules/Settings/NetworkTab.qml:452, Modules/Settings/NetworkTab.qml:600, Modules/Settings/NetworkTab.qml:743, Modules/Settings/NetworkTab.qml:1166, Modules/Settings/NotificationsTab.qml:677, Modules/ControlCenter/Details/BatteryDetail.qml:185, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:406, Modules/ControlCenter/Components/DragDropGrid.qml:726, Modules/DankDash/Overview/MediaOverviewCard.qml:90, Modules/DankBar/Popouts/BatteryPopout.qml:341",
+ "reference": "Common/Theme.qml:1556, Services/WeatherService.qml:151, Services/WeatherService.qml:605, Services/WeatherService.qml:606, Services/WeatherService.qml:765, Services/WeatherService.qml:766, Services/BatteryService.qml:214, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:401, Modules/Lock/LockScreenContent.qml:521, Modules/Lock/LockScreenContent.qml:617, Modules/Settings/PluginBrowser.qml:903, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:529, Modules/Settings/NetworkTab.qml:175, Modules/Settings/NetworkTab.qml:217, Modules/Settings/NetworkTab.qml:429, Modules/Settings/NetworkTab.qml:452, Modules/Settings/NetworkTab.qml:600, Modules/Settings/NetworkTab.qml:743, Modules/Settings/NetworkTab.qml:1166, Modules/Settings/NotificationsTab.qml:677, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:434, Modules/ControlCenter/Components/DragDropGrid.qml:754, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340",
"comment": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status"
},
{
@@ -14858,7 +15338,7 @@
{
"term": "Unknown Artist",
"context": "Unknown Artist",
- "reference": "Modules/DankDash/MediaPlayerTab.qml:334, Modules/OSD/MediaPlaybackOSD.qml:277, Modules/DankDash/Overview/MediaOverviewCard.qml:101",
+ "reference": "Modules/DankDash/MediaDropdownOverlay.qml:531, Modules/DankDash/MediaPlayerTab.qml:426, Modules/OSD/MediaPlaybackOSD.qml:280, Modules/DankDash/Overview/MediaOverviewCard.qml:102",
"comment": ""
},
{
@@ -14894,13 +15374,13 @@
{
"term": "Unknown Title",
"context": "Unknown Title",
- "reference": "Modules/OSD/MediaPlaybackOSD.qml:266",
+ "reference": "Modules/OSD/MediaPlaybackOSD.qml:269",
"comment": ""
},
{
"term": "Unknown Track",
"context": "Unknown Track",
- "reference": "Modules/DankDash/MediaPlayerTab.qml:322",
+ "reference": "Modules/DankDash/MediaPlayerTab.qml:414",
"comment": ""
},
{
@@ -14918,13 +15398,13 @@
{
"term": "Unmute popups for %1",
"context": "Unmute popups for %1",
- "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1400, Modules/Notifications/Center/NotificationCard.qml:1093",
+ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1383, Modules/Notifications/Center/NotificationCard.qml:1097",
"comment": ""
},
{
"term": "Unnamed Rule",
"context": "Unnamed Rule",
- "reference": "Modules/Settings/WindowRulesTab.qml:478",
+ "reference": "Modules/Settings/WindowRulesTab.qml:636",
"comment": ""
},
{
@@ -14960,7 +15440,7 @@
{
"term": "Unsaved changes",
"context": "Unsaved changes",
- "reference": "Widgets/KeybindItem.qml:1789, Modules/Notepad/NotepadTextEditor.qml:866",
+ "reference": "Widgets/KeybindItem.qml:1845, Modules/Notepad/NotepadTextEditor.qml:866",
"comment": ""
},
{
@@ -15020,7 +15500,7 @@
{
"term": "Update",
"context": "Update",
- "reference": "Modals/WindowRuleModal.qml:1154",
+ "reference": "Modals/WindowRuleModal.qml:1586",
"comment": ""
},
{
@@ -15059,6 +15539,12 @@
"reference": "Modals/ProcessListModal.qml:509",
"comment": "uptime label in footer"
},
+ {
+ "term": "Urgent",
+ "context": "Urgent",
+ "reference": "Modals/WindowRuleModal.qml:834, Modules/Settings/WindowRulesTab.qml:42",
+ "comment": ""
+ },
{
"term": "Urgent Color",
"context": "Urgent Color",
@@ -15080,7 +15566,7 @@
{
"term": "Use Custom Command",
"context": "Use Custom Command",
- "reference": "Modules/Settings/MuxTab.qml:53",
+ "reference": "Modules/Settings/MuxTab.qml:53, Modules/Settings/SystemUpdaterTab.qml:129",
"comment": ""
},
{
@@ -15092,7 +15578,7 @@
{
"term": "Use IP Location",
"context": "Use IP Location",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1262, Modules/Settings/GammaControlTab.qml:345",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1275, Modules/Settings/GammaControlTab.qml:345",
"comment": ""
},
{
@@ -15110,7 +15596,7 @@
{
"term": "Use Inline Expansion",
"context": "Use Inline Expansion",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1063",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1098",
"comment": ""
},
{
@@ -15170,37 +15656,31 @@
{
"term": "Use custom border size",
"context": "Use custom border size",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2124, Modules/Settings/ThemeColorsTab.qml:2227",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2137, Modules/Settings/ThemeColorsTab.qml:2240",
"comment": ""
},
{
"term": "Use custom border/focus-ring width",
"context": "Use custom border/focus-ring width",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2021",
- "comment": ""
- },
- {
- "term": "Use custom command",
- "context": "Use custom command",
- "reference": "Modules/Settings/SystemUpdaterTab.qml:129",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2034",
"comment": ""
},
{
"term": "Use custom gaps instead of bar spacing",
"context": "Use custom gaps instead of bar spacing",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1958, Modules/Settings/ThemeColorsTab.qml:2061, Modules/Settings/ThemeColorsTab.qml:2164",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1971, Modules/Settings/ThemeColorsTab.qml:2074, Modules/Settings/ThemeColorsTab.qml:2177",
"comment": ""
},
{
"term": "Use custom window radius instead of theme radius",
"context": "Use custom window radius instead of theme radius",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1990, Modules/Settings/ThemeColorsTab.qml:2196",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2003, Modules/Settings/ThemeColorsTab.qml:2209",
"comment": ""
},
{
"term": "Use custom window rounding instead of theme radius",
"context": "Use custom window rounding instead of theme radius",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2093",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2106",
"comment": ""
},
{
@@ -15215,10 +15695,16 @@
"reference": "Modules/Settings/LockScreenTab.qml:18",
"comment": ""
},
+ {
+ "term": "Use keys 1-3 or arrows, Enter/Space to select",
+ "context": "Use keys 1-3 or arrows, Enter/Space to select",
+ "reference": "Modals/PowerProfileModal.qml:269",
+ "comment": ""
+ },
{
"term": "Use light theme instead of dark theme",
"context": "Use light theme instead of dark theme",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1496",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1509",
"comment": ""
},
{
@@ -15281,6 +15767,12 @@
"reference": "Modals/ProcessListModal.qml:378, Modules/ProcessList/ProcessListPopout.qml:155, Modules/ControlCenter/Components/HeaderPane.qml:57",
"comment": ""
},
+ {
+ "term": "User Window Rules (%1)",
+ "context": "User Window Rules (%1)",
+ "reference": "Modules/Settings/WindowRulesTab.qml:847",
+ "comment": ""
+ },
{
"term": "User already exists",
"context": "User already exists",
@@ -15338,19 +15830,19 @@
{
"term": "Username...",
"context": "Username...",
- "reference": "Modules/Greetd/GreeterContent.qml:1162",
+ "reference": "Modules/Greetd/GreeterContent.qml:1202",
"comment": ""
},
{
"term": "Users",
"context": "Users",
- "reference": "Modals/Settings/SettingsSidebar.qml:298",
+ "reference": "Modals/Settings/SettingsSidebar.qml:305",
"comment": ""
},
{
"term": "Uses sunrise/sunset times based on your location.",
"context": "Uses sunrise/sunset times based on your location.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1341",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1354",
"comment": ""
},
{
@@ -15374,7 +15866,7 @@
{
"term": "Using shared settings from Gamma Control",
"context": "Using shared settings from Gamma Control",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1353",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1366",
"comment": ""
},
{
@@ -15386,13 +15878,13 @@
{
"term": "VPN",
"context": "VPN",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1434, Modules/Settings/WidgetsTabSection.qml:1663, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/NetworkTab.qml:1540, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1555, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/NetworkTab.qml:1540, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15",
"comment": ""
},
{
"term": "VPN Connections",
"context": "VPN Connections",
- "reference": "Modules/DankBar/Popouts/VpnPopout.qml:64",
+ "reference": "Modules/ControlCenter/Models/WidgetModel.qml:248, Modules/DankBar/Popouts/VpnPopout.qml:64",
"comment": ""
},
{
@@ -15407,12 +15899,6 @@
"reference": "Services/VPNService.qml:145",
"comment": ""
},
- {
- "term": "VPN connections",
- "context": "VPN connections",
- "reference": "Modules/ControlCenter/Models/WidgetModel.qml:248",
- "comment": ""
- },
{
"term": "VPN deleted",
"context": "VPN deleted",
@@ -15440,25 +15926,25 @@
{
"term": "VRR",
"context": "VRR",
- "reference": "Modules/Settings/WindowRulesTab.qml:551, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1847",
+ "reference": "Modules/Settings/WindowRulesTab.qml:94, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1909",
"comment": ""
},
{
"term": "VRR Fullscreen Only",
"context": "VRR Fullscreen Only",
- "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1881",
+ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:1943",
"comment": ""
},
{
"term": "VRR On-Demand",
"context": "VRR On-Demand",
- "reference": "Modals/WindowRuleModal.qml:701, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1855",
+ "reference": "Modals/WindowRuleModal.qml:1049, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1917",
"comment": ""
},
{
"term": "Variable Refresh Rate",
"context": "Variable Refresh Rate",
- "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:303, Modules/Settings/DisplayConfig/OutputCard.qml:316, Modules/Settings/DisplayConfig/OutputCard.qml:339",
+ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:319, Modules/Settings/DisplayConfig/OutputCard.qml:332, Modules/Settings/DisplayConfig/OutputCard.qml:355",
"comment": ""
},
{
@@ -15497,6 +15983,12 @@
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:57",
"comment": ""
},
+ {
+ "term": "Very High",
+ "context": "Very High",
+ "reference": "Modules/Settings/TypographyMotionTab.qml:458",
+ "comment": ""
+ },
{
"term": "Vibrant",
"context": "Vibrant",
@@ -15548,7 +16040,7 @@
{
"term": "Visual Effects",
"context": "Visual Effects",
- "reference": "Modules/Settings/WidgetsTabSection.qml:2836",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:2981",
"comment": ""
},
{
@@ -15566,7 +16058,7 @@
{
"term": "Volume",
"context": "Volume",
- "reference": "Modules/Settings/WidgetsTabSection.qml:1459, Modules/Settings/WidgetsTabSection.qml:1663, Modules/Settings/OSDTab.qml:93",
+ "reference": "Modules/Settings/WidgetsTabSection.qml:1580, Modules/Settings/WidgetsTabSection.qml:1804, Modules/Settings/OSDTab.qml:93",
"comment": ""
},
{
@@ -15596,13 +16088,13 @@
{
"term": "Wallpaper",
"context": "Wallpaper",
- "reference": "Widgets/KeybindItem.qml:1070, Widgets/KeybindItem.qml:1077, Widgets/KeybindItem.qml:1086, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:76, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63",
+ "reference": "Widgets/KeybindItem.qml:1118, Widgets/KeybindItem.qml:1125, Widgets/KeybindItem.qml:1134, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:76, Modules/Settings/DisplayWidgetsTab.qml:43, Modules/Settings/WallpaperTab.qml:63",
"comment": "greeter settings link"
},
{
"term": "Wallpaper Error",
"context": "Wallpaper Error",
- "reference": "Modules/Settings/ThemeColorsTab.qml:476",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:489",
"comment": "wallpaper error status"
},
{
@@ -15620,19 +16112,19 @@
{
"term": "Wallpaper processing failed",
"context": "Wallpaper processing failed",
- "reference": "Modules/Settings/ThemeColorsTab.qml:493",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:506",
"comment": "wallpaper processing error"
},
{
"term": "Wallpaper processing failed - check wallpaper path",
"context": "Wallpaper processing failed - check wallpaper path",
- "reference": "Modules/Settings/ThemeColorsTab.qml:320",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:333",
"comment": "wallpaper error"
},
{
"term": "Wallpapers",
"context": "Wallpapers",
- "reference": "Modules/DankDash/DankDashPopout.qml:281",
+ "reference": "Modules/DankDash/DankDashPopout.qml:288",
"comment": ""
},
{
@@ -15662,7 +16154,7 @@
{
"term": "Weather",
"context": "Weather",
- "reference": "Widgets/KeybindItem.qml:1072, Widgets/KeybindItem.qml:1077, Widgets/KeybindItem.qml:1089, Modules/DankDash/DankDashPopout.qml:288, Modules/Settings/TimeWeatherTab.qml:392",
+ "reference": "Widgets/KeybindItem.qml:1120, Widgets/KeybindItem.qml:1125, Widgets/KeybindItem.qml:1137, Modules/DankDash/DankDashPopout.qml:295, Modules/Settings/TimeWeatherTab.qml:392",
"comment": ""
},
{
@@ -15710,7 +16202,7 @@
{
"term": "When locked",
"context": "When locked",
- "reference": "Widgets/KeybindItem.qml:1727",
+ "reference": "Widgets/KeybindItem.qml:1783",
"comment": ""
},
{
@@ -15770,7 +16262,7 @@
{
"term": "WiFi off",
"context": "WiFi off",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:389",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:417",
"comment": "network status"
},
{
@@ -15782,13 +16274,13 @@
{
"term": "Widget Background Color",
"context": "Widget Background Color",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1531",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1544",
"comment": ""
},
{
"term": "Widget Management",
"context": "Widget Management",
- "reference": "Modules/Settings/WidgetsTab.qml:902",
+ "reference": "Modules/Settings/WidgetsTab.qml:931",
"comment": ""
},
{
@@ -15800,13 +16292,13 @@
{
"term": "Widget Style",
"context": "Widget Style",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1516",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1529",
"comment": ""
},
{
"term": "Widget Styling",
"context": "Widget Styling",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1508",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1521",
"comment": ""
},
{
@@ -15824,7 +16316,7 @@
{
"term": "Widget removed",
"context": "Widget removed",
- "reference": "Modules/Settings/DesktopWidgetsTab.qml:371, Modules/Settings/DesktopWidgetsTab.qml:544",
+ "reference": "Modules/Settings/DesktopWidgetsTab.qml:374, Modules/Settings/DesktopWidgetsTab.qml:547",
"comment": ""
},
{
@@ -15842,7 +16334,7 @@
{
"term": "Width",
"context": "Width",
- "reference": "Modules/Settings/WindowRulesTab.qml:549",
+ "reference": "Modules/Settings/WindowRulesTab.qml:92",
"comment": ""
},
{
@@ -15860,19 +16352,19 @@
{
"term": "Width of window border (borderpx)",
"context": "Width of window border (borderpx)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2243",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2256",
"comment": ""
},
{
"term": "Width of window border (general.border_size)",
"context": "Width of window border (general.border_size)",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2140",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2153",
"comment": ""
},
{
"term": "Width of window border and focus ring",
"context": "Width of window border and focus ring",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2037",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2050",
"comment": ""
},
{
@@ -15896,13 +16388,13 @@
{
"term": "Window Corner Radius",
"context": "Window Corner Radius",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2005, Modules/Settings/ThemeColorsTab.qml:2211",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2018, Modules/Settings/ThemeColorsTab.qml:2224",
"comment": ""
},
{
"term": "Window Gaps",
"context": "Window Gaps",
- "reference": "Modules/Settings/ThemeColorsTab.qml:1974, Modules/Settings/ThemeColorsTab.qml:2077, Modules/Settings/ThemeColorsTab.qml:2180",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1987, Modules/Settings/ThemeColorsTab.qml:2090, Modules/Settings/ThemeColorsTab.qml:2193",
"comment": ""
},
{
@@ -15914,37 +16406,37 @@
{
"term": "Window Height",
"context": "Window Height",
- "reference": "Modals/WindowRuleModal.qml:646",
+ "reference": "Modals/WindowRuleModal.qml:993",
"comment": ""
},
{
"term": "Window Opening",
"context": "Window Opening",
- "reference": "Modals/WindowRuleModal.qml:518",
+ "reference": "Modals/WindowRuleModal.qml:865",
"comment": ""
},
{
"term": "Window Rounding",
"context": "Window Rounding",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2108",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2121",
"comment": ""
},
{
"term": "Window Rules",
"context": "Window Rules",
- "reference": "Modals/Settings/SettingsSidebar.qml:304, Modules/Settings/WindowRulesTab.qml:254",
+ "reference": "Modals/Settings/SettingsSidebar.qml:311, Modules/Settings/WindowRulesTab.qml:407",
"comment": ""
},
{
"term": "Window Rules Include Missing",
"context": "Window Rules Include Missing",
- "reference": "Modules/Settings/WindowRulesTab.qml:352",
+ "reference": "Modules/Settings/WindowRulesTab.qml:510",
"comment": ""
},
{
"term": "Window Rules Not Configured",
"context": "Window Rules Not Configured",
- "reference": "Modules/Settings/WindowRulesTab.qml:352",
+ "reference": "Modules/Settings/WindowRulesTab.qml:510",
"comment": ""
},
{
@@ -15962,7 +16454,7 @@
{
"term": "Workspace",
"context": "Workspace",
- "reference": "Modals/WindowRuleModal.qml:586, Modals/WindowRuleModal.qml:1076, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/WindowRulesTab.qml:548, Modules/Settings/WindowRulesTab.qml:575",
+ "reference": "Modals/WindowRuleModal.qml:933, Modals/WindowRuleModal.qml:1508, Widgets/DankIconPicker.qml:27, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1692, Modules/Settings/DankBarTab.qml:1730, Modules/Settings/WindowRulesTab.qml:91, Modules/Settings/WindowRulesTab.qml:118",
"comment": ""
},
{
@@ -16016,7 +16508,13 @@
{
"term": "Workspaces & Widgets",
"context": "Workspaces & Widgets",
- "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:580",
+ "reference": "Modals/Settings/SettingsSidebar.qml:134, Modals/Settings/SettingsSidebar.qml:589",
+ "comment": ""
+ },
+ {
+ "term": "Wrap the app command. %command% is replaced with the actual executable",
+ "context": "Wrap the app command. %command% is replaced with the actual executable",
+ "reference": "Modules/Settings/AutoStartTab.qml:477",
"comment": ""
},
{
@@ -16031,6 +16529,24 @@
"reference": "Modules/Settings/DankBarTab.qml:1727",
"comment": ""
},
+ {
+ "term": "X-Ray",
+ "context": "X-Ray",
+ "reference": "Modals/WindowRuleModal.qml:1190, Modules/Settings/WindowRulesTab.qml:121",
+ "comment": ""
+ },
+ {
+ "term": "XWayland",
+ "context": "XWayland",
+ "reference": "Modals/WindowRuleModal.qml:844, Modules/Settings/WindowRulesTab.qml:44",
+ "comment": ""
+ },
+ {
+ "term": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).",
+ "context": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).",
+ "reference": "Modals/WindowRuleModal.qml:1168",
+ "comment": ""
+ },
{
"term": "Y Axis",
"context": "Y Axis",
@@ -16040,7 +16556,7 @@
{
"term": "Yes",
"context": "Yes",
- "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1857, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1867, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1877, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1879",
+ "reference": "Modules/Settings/PrinterTab.qml:1169, Modules/Settings/WindowRulesTab.qml:67, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1915, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1919, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1929, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1939, Modules/Settings/DisplayConfig/DisplayConfigState.qml:1941",
"comment": ""
},
{
@@ -16076,15 +16592,33 @@
{
"term": "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.",
"context": "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2518",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2531",
"comment": "qt theme env error body"
},
+ {
+ "term": "You'll enter your password at the greeter after the next reboot.",
+ "context": "You'll enter your password at the greeter after the next reboot.",
+ "reference": "Common/settings/Processes.qml:376",
+ "comment": ""
+ },
+ {
+ "term": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.",
+ "context": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.",
+ "reference": "Common/settings/Processes.qml:374",
+ "comment": ""
+ },
{
"term": "You're All Set!",
"context": "You're All Set!",
"reference": "Modals/Greeter/GreeterCompletePage.qml:105",
"comment": "greeter completion page title"
},
+ {
+ "term": "Your compositor does not support background blur (ext-background-effect-v1)",
+ "context": "Your compositor does not support background blur (ext-background-effect-v1)",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:1871",
+ "comment": ""
+ },
{
"term": "Your system is up to date!",
"context": "Your system is up to date!",
@@ -16118,7 +16652,7 @@
{
"term": "by %1",
"context": "by %1",
- "reference": "Modules/Settings/PluginBrowser.qml:541, Modules/Settings/ThemeBrowser.qml:529",
+ "reference": "Modules/Settings/PluginBrowser.qml:903, Modules/Settings/ThemeBrowser.qml:529",
"comment": "author attribution"
},
{
@@ -16148,7 +16682,7 @@
{
"term": "dgop not available",
"context": "dgop not available",
- "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:45",
+ "reference": "Modules/ControlCenter/Details/DiskUsageDetail.qml:65, Modules/ControlCenter/Widgets/DiskUsagePill.qml:49",
"comment": ""
},
{
@@ -16166,13 +16700,25 @@
{
"term": "dms/cursor config exists but is not included. Cursor settings won't apply.",
"context": "dms/cursor config exists but is not included. Cursor settings won't apply.",
- "reference": "Modules/Settings/ThemeColorsTab.qml:2360",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:2373",
"comment": ""
},
{
"term": "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.",
"context": "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.",
- "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:65",
+ "reference": "Modules/Settings/DisplayConfig/IncludeWarningBox.qml:70",
+ "comment": ""
+ },
+ {
+ "term": "e.g. /usr/bin/my-script --flag",
+ "context": "e.g. /usr/bin/my-script --flag",
+ "reference": "Modules/Settings/AutoStartTab.qml:554",
+ "comment": ""
+ },
+ {
+ "term": "e.g. My Script",
+ "context": "e.g. My Script",
+ "reference": "Modules/Settings/AutoStartTab.qml:523",
"comment": ""
},
{
@@ -16184,19 +16730,25 @@
{
"term": "e.g., firefox, kitty --title foo",
"context": "e.g., firefox, kitty --title foo",
- "reference": "Widgets/KeybindItem.qml:1450",
+ "reference": "Widgets/KeybindItem.qml:1506",
"comment": ""
},
{
"term": "e.g., focus-workspace 3, resize-column -10",
"context": "e.g., focus-workspace 3, resize-column -10",
- "reference": "Widgets/KeybindItem.qml:1387",
+ "reference": "Widgets/KeybindItem.qml:1441",
+ "comment": ""
+ },
+ {
+ "term": "e.g., hl.dsp.focus({ workspace = \"3\" })",
+ "context": "e.g., hl.dsp.focus({ workspace = \"3\" })",
+ "reference": "Widgets/KeybindItem.qml:1441",
"comment": ""
},
{
"term": "e.g., notify-send 'Hello' && sleep 1",
"context": "e.g., notify-send 'Hello' && sleep 1",
- "reference": "Widgets/KeybindItem.qml:1482",
+ "reference": "Widgets/KeybindItem.qml:1538",
"comment": ""
},
{
@@ -16220,13 +16772,7 @@
{
"term": "featured",
"context": "featured",
- "reference": "Modules/Settings/PluginBrowser.qml:489, Modules/Settings/DesktopWidgetBrowser.qml:390",
- "comment": ""
- },
- {
- "term": "greeter",
- "context": "greeter",
- "reference": "Modules/Settings/UsersTab.qml:228",
+ "reference": "Modules/Settings/PluginBrowser.qml:851, Modules/Settings/DesktopWidgetBrowser.qml:390",
"comment": ""
},
{
@@ -16238,7 +16784,7 @@
{
"term": "leave empty for default",
"context": "leave empty for default",
- "reference": "Widgets/KeybindItem.qml:1018",
+ "reference": "Widgets/KeybindItem.qml:1066",
"comment": ""
},
{
@@ -16268,19 +16814,19 @@
{
"term": "matugen not available or disabled - cannot apply GTK colors",
"context": "matugen not available or disabled - cannot apply GTK colors",
- "reference": "Common/Theme.qml:1862",
+ "reference": "Common/Theme.qml:1863",
"comment": ""
},
{
"term": "matugen not available or disabled - cannot apply Qt colors",
"context": "matugen not available or disabled - cannot apply Qt colors",
- "reference": "Common/Theme.qml:1884",
+ "reference": "Common/Theme.qml:1885",
"comment": ""
},
{
"term": "matugen not found - install matugen package for dynamic theming",
"context": "matugen not found - install matugen package for dynamic theming",
- "reference": "Modules/Settings/ThemeColorsTab.qml:318",
+ "reference": "Modules/Settings/ThemeColorsTab.qml:331",
"comment": "matugen error"
},
{
@@ -16292,7 +16838,7 @@
{
"term": "ms",
"context": "ms",
- "reference": "Widgets/KeybindItem.qml:1668",
+ "reference": "Widgets/KeybindItem.qml:1724",
"comment": ""
},
{
@@ -16346,7 +16892,7 @@
{
"term": "official",
"context": "official",
- "reference": "Modules/Settings/PluginBrowser.qml:511, Modules/Settings/ThemeBrowser.qml:496",
+ "reference": "Modules/Settings/PluginBrowser.qml:873, Modules/Settings/ThemeBrowser.qml:496",
"comment": ""
},
{
@@ -16394,13 +16940,13 @@
{
"term": "or run ",
"context": "or run ",
- "reference": "Modules/Settings/GreeterTab.qml:763",
+ "reference": "Modules/Settings/GreeterTab.qml:773",
"comment": ""
},
{
"term": "power-profiles-daemon not available",
"context": "power-profiles-daemon not available",
- "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:28, Modules/DankBar/Popouts/BatteryPopout.qml:25, Modules/DankBar/Widgets/Battery.qml:144",
+ "reference": "Modals/PowerProfileModal.qml:109, Modules/ControlCenter/Details/BatteryDetail.qml:31, Modules/DankBar/Popouts/BatteryPopout.qml:28, Modules/DankBar/Widgets/Battery.qml:144",
"comment": ""
},
{
@@ -16442,13 +16988,13 @@
{
"term": "source",
"context": "source",
- "reference": "Modules/Settings/PluginBrowser.qml:542",
+ "reference": "Modules/Settings/PluginBrowser.qml:904",
"comment": "source code link"
},
{
"term": "this app",
"context": "this app",
- "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1400, Modules/Notifications/Popup/NotificationPopup.qml:1400, Modules/Notifications/Center/NotificationCard.qml:1093, Modules/Notifications/Center/NotificationCard.qml:1093",
+ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1383, Modules/Notifications/Popup/NotificationPopup.qml:1383, Modules/Notifications/Center/NotificationCard.qml:1097, Modules/Notifications/Center/NotificationCard.qml:1097",
"comment": ""
},
{
@@ -16460,13 +17006,13 @@
{
"term": "up",
"context": "up",
- "reference": "Modules/DankDash/Overview/UserInfoCard.qml:102",
+ "reference": "Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/DankDash/Overview/UserInfoCard.qml:103, Modules/DankDash/Overview/UserInfoCard.qml:104",
"comment": ""
},
{
"term": "update dms for NM integration.",
"context": "update dms for NM integration.",
- "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:292",
+ "reference": "Modules/ControlCenter/Components/DragDropGrid.qml:320",
"comment": ""
},
{
@@ -16496,13 +17042,13 @@
{
"term": "wtype not available - install wtype for paste support",
"context": "wtype not available - install wtype for paste support",
- "reference": "Services/ClipboardService.qml:245, Services/ClipboardService.qml:256, Modals/DankLauncherV2/Controller.qml:182",
+ "reference": "Services/ClipboardService.qml:247, Services/ClipboardService.qml:258, Modals/DankLauncherV2/Controller.qml:182",
"comment": ""
},
{
"term": "• Install only from trusted sources",
"context": "• Install only from trusted sources",
- "reference": "Modules/Settings/PluginBrowser.qml:822",
+ "reference": "Modules/Settings/PluginBrowser.qml:1221",
"comment": ""
},
{
@@ -16532,13 +17078,13 @@
{
"term": "• Plugins may contain bugs or security issues",
"context": "• Plugins may contain bugs or security issues",
- "reference": "Modules/Settings/PluginBrowser.qml:810",
+ "reference": "Modules/Settings/PluginBrowser.qml:1209",
"comment": ""
},
{
"term": "• Review code before installation when possible",
"context": "• Review code before installation when possible",
- "reference": "Modules/Settings/PluginBrowser.qml:816",
+ "reference": "Modules/Settings/PluginBrowser.qml:1215",
"comment": ""
},
{
diff --git a/quickshell/translations/poexports/de.json b/quickshell/translations/poexports/de.json
index de94739a..98403f19 100644
--- a/quickshell/translations/poexports/de.json
+++ b/quickshell/translations/poexports/de.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1 Animationsgeschwindigkeit"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "vor %1 Min."
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'Alternative' ermöglicht das Entsperren nur mit dem Schlüssel. 'Zweiter Faktor' erfordert zuerst ein Passwort oder einen Fingerabdruck, dann den Schlüssel."
},
@@ -294,10 +300,10 @@
"A modern desktop shell for Wayland compositors": "Eine moderne Desktop-Shell für Wayland-Compositor"
},
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": {
- "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
+ "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "Eine separate minimale Launcher-Aktion, die im Standalone-Modus, im Modus mit separatem Frame und im Modus mit verbundenem Frame funktioniert."
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "Ein Benutzer mit diesem Namen existiert bereits."
},
"AC Power": {
"AC Power": "Netzbetrieb"
@@ -342,10 +348,10 @@
"Action failed or terminal was closed.": "Aktion fehlgeschlagen oder Terminal wurde geschlossen."
},
"Action performed when scrolling horizontally on the bar": {
- "Action performed when scrolling horizontally on the bar": ""
+ "Action performed when scrolling horizontally on the bar": "Aktion beim horizontalen Scrollen auf der Leiste"
},
"Action performed when scrolling vertically on the bar": {
- "Action performed when scrolling vertically on the bar": ""
+ "Action performed when scrolling vertically on the bar": "Aktion beim vertikalen Scrollen auf der Leiste"
},
"Actions": {
"Actions": "Aktionen"
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "Aktives VPN"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Hintergrund und Symbolfarbe der aktiven Kachel"
},
@@ -396,10 +405,10 @@
"Add": "Hinzufügen"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "„%1“ zur Gruppe „%2“ hinzufügen?"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "„%1“ zur Gruppe „%2“ hinzufügen? Der Benutzer muss sich aus- und wieder anmelden und dann „dms greeter sync --profile“ ausführen, um sein Design für den Anmeldebildschirm zu veröffentlichen."
},
"Add Bar": {
"Add Bar": "Leiste hinzufügen"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Desktop-Widget hinzufügen"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Drucker hinzufügen"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Widget hinzufügen"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Widget zu %1 Sektion hinzufügen"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Einen Rahmen um das Dock hinzufügen"
@@ -431,14 +446,20 @@
"Add by Address": {
"Add by Address": "Über Adresse hinzufügen"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Den neuen Benutzer zur Gruppe „%1“ hinzufügen, damit er „dms greeter sync --profile“ ausführen kann."
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "Den neuen Benutzer zur Gruppe „%1“ hinzufügen, damit er „sudo“ verwenden kann."
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "Die Höhe der Leiste über den inneren Abstand anpassen"
},
"Adjust the number of columns in grid view mode.": {
"Adjust the number of columns in grid view mode.": "Anzahl der Spalten in der Rasteransicht anpassen."
@@ -450,7 +471,7 @@
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Passt den Kontrast der generierten Farben an (-100 = Minimum, 0 = Standard, 100 = Maximum)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "Administrator-Gruppe:"
},
"Advanced": {
"Advanced": "Fortgeschritten"
@@ -474,19 +495,19 @@
"All displays": "Alle Bildschirme"
},
"Allow": {
- "Allow": ""
+ "Allow": "Zulassen"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "Klicks durch das Widget zulassen"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "Greeter-Zugriff erlauben?"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "Greeter-Login-Zugriff erlauben"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "Bereits in dieser Sitzung"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Zurück: Zurück • F1/I: Datei Info • F10: Hilfe • Esc: Schließen"
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Anonyme Identität (optional)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "App-Anpassungen"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "App-ID-Ersetzungen"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "App-ID-Regex (z. B. ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Erscheinungsbild"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Applikations Dock"
},
"Applications": {
"Applications": "Anwendungen"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Änderungen anwenden"
},
@@ -588,7 +627,7 @@
"Apply compositor blur behind the frame border": "Compositor-Unschärfe hinter dem Rahmenrand anwenden"
},
"Apply inverse concave corner cutouts to the bar": {
- "Apply inverse concave corner cutouts to the bar": ""
+ "Apply inverse concave corner cutouts to the bar": "Inverse konkave Eckenausschnitte auf die Leiste anwenden"
},
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Warmes Farbschema für weniger Augenbelastung. Automatisierungseinstellungen unten zur Aktivierung."
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "Authentifizierungsänderungen werden angewendet…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "Apps"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Anzeigen anordnen und Auflösung, Bildwiederholfrequenz und VRR konfigurieren"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "Mindestens ein Ausgang muss aktiviert bleiben"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Dock automatisch ausblenden"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Auto-Speichern..."
},
@@ -774,7 +831,7 @@
"Automatic Cycling": "Automatischer Wechsel"
},
"Automatically calculate popup gap based on bar spacing": {
- "Automatically calculate popup gap based on bar spacing": ""
+ "Automatically calculate popup gap based on bar spacing": "Popup-Abstand automatisch basierend auf dem Leistenabstand berechnen"
},
"Automatically cycle through wallpapers in the same folder": {
"Automatically cycle through wallpapers in the same folder": "Wechselt automatisch durch die Hintergründe im selben Ordner"
@@ -789,7 +846,7 @@
"Automatically determine your location using your IP address": "Bestimmt automatisch den Standort anhand deiner IP-Adresse"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "Die Leiste automatisch ausblenden, wenn sich der Mauszeiger entfernt"
},
"Automatically lock after": {
"Automatically lock after": "Automatisch sperren nach"
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automatisierung"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Verfügbar"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Zurück"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "Hintergrundunschärfe"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Hintergrunddeckkraft"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "Leistenabstand und -größe"
},
- "Bar transparency": {
- "Bar transparency": "Leistentransparenz"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Basisfarbe für Schatten (Deckkraft wird automatisch angewendet)"
},
@@ -912,10 +978,10 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Bildschirmsperrung durch dbus Signal von loginctl. Deaktiviere bei externer Bildschirmsperre"
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "Binden Sie die Spotlight-IPC-Aktion in Ihrer Compositor-Konfiguration."
},
"Bind the spotlight-bar IPC action in your compositor config.": {
- "Bind the spotlight-bar IPC action in your compositor config.": ""
+ "Bind the spotlight-bar IPC action in your compositor config.": "Binden Sie die spotlight-bar-IPC-Aktion in Ihrer Compositor-Konfiguration."
},
"Binds Include Missing": {
"Binds Include Missing": "Bindings-Include fehlt"
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth nicht verfügbar"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "Rahmenfarbe der Unschärfe"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Rahmenfarbe"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Transparenz des Rahmens"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "Rahmenfarbe um weichgezeichnete Oberflächen"
},
- "Border with BG": {
- "Border with BG": "Rahmen mit Hintergrund"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Unten"
@@ -1101,7 +1176,7 @@
"Canceled": "Abgebrochen"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "Der einzige Administrator kann nicht gelöscht werden"
},
"Cannot disable the only output": {
"Cannot disable the only output": "Der einzige Ausgang kann nicht deaktiviert werden"
@@ -1116,7 +1191,7 @@
"Cannot pair": "Kann nicht koppeln"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "Der einzige Administrator kann nicht entfernt werden"
},
"Capabilities": {
"Capabilities": "Fähigkeiten"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Feststelltaste ist aktiviert"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Mittlerer Abschnitt"
},
@@ -1176,10 +1257,7 @@
"Check on startup": "Beim Start prüfen"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
- },
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "Synchronisierungsstatus bei Bedarf prüfen. Die Synchronisierung kopiert Ihr Design, Ihre Einstellungen und Ihre Hintergrundbildkonfiguration auf den Anmeldebildschirm. Authentifizierungsänderungen werden automatisch angewendet."
+ "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "Synchronisationsstatus bei Bedarf prüfen. Die (vollständige) Synchronisierung ist für den Hauptadministrator gedacht: Sie kopiert Ihr Design auf den Anmeldebildschirm und richtet die System-Greeter-Konfiguration ein. Fügen Sie auf Mehrbenutzersystemen weitere Konten unter Einstellungen → Benutzer hinzu und lassen Sie jeden von ihnen nach dem Ab- und Anmelden „dms greeter sync --profile“ ausführen – keine vollständige Synchronisierung. Änderungen an der Authentifizierung werden automatisch übernommen."
},
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "Überprüfen Sie Ihren benutzerdefinierten Befehl in den Einstellungen → Dock → Papierkorb."
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "eine Farbe"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Farbe von Palette"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Wählen Sie, wo Bildschirmanzeigen auf dem Bildschirm erscheinen"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Wählen Sie aus, welche Anzeigen dieses Widget anzeigen"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Kreis"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Klassen-Regex (z. B. ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Zwischenablage Manager"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Zwischenablage gesendet"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Service für Zwischenablage nicht verfügbar"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Zwischenablage funktioniert, aber nichts auf Festplatte gespeichert"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Befehl"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Befehle"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Compositor-Einstellungen"
},
- "Compositor not supported": {
- "Compositor not supported": "Compositor wird nicht unterstützt"
- },
"Config Format": {
"Config Format": "Konfigurationsformat"
},
@@ -1512,7 +1599,7 @@
"Confirm passkey for ": "Bestätige Passkey für "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "Passwort bestätigen"
},
"Conflicts with: %1": {
"Conflicts with: %1": "In Konflikt mit: %1"
@@ -1539,7 +1626,7 @@
"Connected Displays": "Verbundene Bildschirme"
},
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": {
- "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
+ "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "Der Modus mit verbundenem Frame verwendet den verbundenen Launcher für Standard-Launcher-Kurzbefehle."
},
"Connected Options": {
"Connected Options": "Verbundene Optionen"
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Kontrast"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Kontrollzentrum"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "Komfortoptionen für den Anmeldebildschirm. Synchronisieren zum Anwenden."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Abkühlzeit"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "PID kopieren"
},
- "Copy Path": {
- "Copy Path": "Pfad kopieren"
- },
"Copy Text": {
"Copy Text": "Text kopieren"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Ecken & Hintergrund"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Nur Anzahl"
},
@@ -1689,7 +1782,7 @@
"Create Printer": "Drucker anlegen"
},
"Create User": {
- "Create User": ""
+ "Create User": "Benutzer erstellen"
},
"Create Window Rule": {
"Create Window Rule": "Erzeuge Fensterregel"
@@ -1715,17 +1808,11 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Strg+Tab: Tab wechseln • Strg+S: Anpinnen/Lösen • Umschalt+Entf: Alles löschen • Esc: Schließen"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Strg+Tab: Tab wechseln • Strg+S: Anpinnen/Lösen • Umschalt+Eingabe: Kopieren • Umschalt+Entf: Alles löschen • Esc: Schließen"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Strg+Tab: Tab wechseln • Strg+S: Anpinnen/Lösen • Umschalt+Eingabe: Einfügen • Umschalt+Entf: Alles löschen • Esc: Schließen"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Strg+Tab: Tabs wechseln • Strg+S: Anpinnen/Lösen • Umschalt+Eingabe: Kopieren • Umschalt+Entf: Alle löschen • F10: Hilfe • Esc: Schließen"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Strg+Tab: Tabs wechseln • Strg+S: Anpinnen/Lösen • Umschalt+Eingabe: Einfügen • Umschalt+Entf: Alle löschen • F10: Hilfe • Esc: Schließen"
},
"Current": {
"Current": "Aktuell"
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Cursor-Design"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "Curve: Kurven-Rasterisierer."
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": "DMS-Einstellungen"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "DMS-Kurzbefehle"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS-Greeter benötigt: greetd, dms-greeter. Fingerabdruck: fprintd, pam_fprintd. Sicherheitsschlüssel: pam_u2f. Fügen Sie Ihren Benutzer der Gruppe „greeter“ hinzu. Authentifizierungsänderungen werden automatisch angewendet und können ein Terminal öffnen, wenn eine Sudo-Authentifizierung erforderlich ist."
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS ist veraltet"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Datumsformat"
},
- "Date format": {
- "Date format": "Datumsformat"
- },
"Date format on greeter": {
"Date format on greeter": "Datumsformat im Greeter"
},
@@ -1974,22 +2064,22 @@
"Default Apps": "Standard-Apps"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "Standard-Launcher"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "Standard-Launcher-Kurzbefehl"
},
"Default Opens": {
- "Default Opens": ""
+ "Default Opens": "Standardmäßig wird geöffnet"
},
"Default Width (%)": {
"Default Width (%)": "Standardbreite (%)"
},
"Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": {
- "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": ""
+ "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "Standard-Launcher-Kurzbefehle öffnen den vollständigen Launcher mit Modus-Tabs, Rasteransicht und Aktionsleiste."
},
"Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": {
- "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": ""
+ "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "Standard-Launcher-Kurzbefehle öffnen die minimale Spotlight-Leiste. Der dedizierte Spotlight-Leisten-Kurzbefehl unten bleibt unabhängig."
},
"Default selected action": {
"Default selected action": "Vorausgewählte Energieoption"
@@ -2007,7 +2097,7 @@
"Delete": "Löschen"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "„%1“ löschen und das Home-Verzeichnis entfernen? Dies kann nicht rückgängig gemacht werden."
},
"Delete \"%1\"?": {
"Delete \"%1\"?": "\"%1\" löschen?"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Drucker löschen"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Gespeichertes Element löschen?"
},
@@ -2031,10 +2124,10 @@
"Delete profile \"%1\"?": "Profil \"%1\" löschen?"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "Benutzer löschen"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "Benutzer löschen?"
},
"Demi Bold": {
"Demi Bold": "Halbfett"
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Desktop"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Desktop Uhr"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "deaktiviere WLAN..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Scheibe"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": "Zeilennummern im Editor anzeigen"
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Nur Arbeitsbereiche anzeigen, die Fenster enthalten"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Sekunden in Uhr anzeigen"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "System-Energiemenü anzeigen"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "Dock-Rand, Transparenz und Rahmen"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "Dock-Abstand, Transparenz und Rand"
- },
"Docs": {
"Docs": "Dokumentation"
},
@@ -2307,7 +2409,7 @@
"Drizzle": "Nieselregen"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "Ihre Überschreibung für %1 verwerfen, damit die DMS-Standardaktion wieder angewendet wird?"
},
"Duplicate": {
"Duplicate": "Duplizieren"
@@ -2358,13 +2460,16 @@
"Edit App": "App bearbeiten"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "Zwischenablage bearbeiten"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "Bearbeite Fensterregel"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "Text der Zwischenablage bearbeiten"
},
"Education": {
"Education": "Bildung"
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Enterprise"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Eintrag angeheftet"
},
@@ -2580,7 +2688,7 @@
"Exclusive Zone Offset": "Exklusives Zonenoffset"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "Bestehende Benutzer"
},
"Experimental Feature": {
"Experimental Feature": "Experimentelle Funktion"
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Fehler beim aktivieren der Konfiguration"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Profil konnte nicht aktiviert werden - Datei nicht gefunden"
- },
"Failed to add binds include": {
"Failed to add binds include": "Hinzufügen des Bindings-Includes fehlgeschlagen"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Fehler beim widerrufen des ausgewählten Druckauftrages"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "Fehler beim Suchen nach Updates:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Anheftungsbegrenzung konnte nicht überprüft werden"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Fehler beim anlegen des Druckers"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Profilverzeichnis konnte nicht erstellt werden"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Fehler beim löschen des VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": "Netzwerk-QR-Code konnte nicht abgerufen werden: %1"
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Auftrag konnte nicht angehalten werden"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "Profil konnte nicht gespeichert werden"
},
- "Failed to save profile file": {
- "Failed to save profile file": "Profildatei konnte nicht gespeichert werden"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Zwischenablage konnte nicht gesendet werden"
},
@@ -2865,7 +2964,7 @@
"Failed to update autoconnect": "Aktualisierung der automatischen Verbindung fehlgeschlagen"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "Aktualisierung der Zwischenablage fehlgeschlagen"
},
"Failed to update description": {
"Failed to update description": "Beschreibung konnte nicht aktualisiert werden"
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Freigabe konnte nicht aktualisiert werden"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Temporäre Datei zur Validierung konnte nicht geschrieben werden"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Füllen"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "In Text suchen"
},
@@ -2940,7 +3048,7 @@
"Find in note...": "In Notiz suchen..."
},
"Fine-tune the space reserved for the bar from the screen edge": {
- "Fine-tune the space reserved for the bar from the screen edge": ""
+ "Fine-tune the space reserved for the bar from the screen edge": "Den vom Bildschirmrand für die Leiste reservierten Platz feinjustieren"
},
"Fingerprint availability could not be confirmed.": {
"Fingerprint availability could not be confirmed.": "Verfügbarkeit des Fingerabdrucks konnte nicht bestätigt werden."
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "Fingerabdruckfehler"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "Fingerabdruckfehler: %1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "Fingerabdruck nicht erkannt (%1/%2). Bitte versuchen Sie es erneut oder verwenden Sie das Passwort."
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Schwebend"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "Fließend"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Fokus"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Fokus beim Start"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Fokussierter Rand"
},
@@ -3042,7 +3159,7 @@
"Follow focus": "Fokus folgen"
},
"Follows the default launcher choice selected above.": {
- "Follows the default launcher choice selected above.": ""
+ "Follows the default launcher choice selected above.": "Folgt der oben gewählten Standard-Launcher-Auswahl."
},
"Font": {
"Font": "Schriftart"
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Beenden erzwingen (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Breiten Farbraum erzwingen"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Legende formatieren"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "Ein Paket zum Aktualisieren gefunden:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "%1 Pakete zum Aktualisieren gefunden:"
- },
"Frame": {
"Frame": "Rahmen"
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Ganzer Tag & Monat"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Vollständig mit Jahr"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": "Voll ausgestatteter Launcher mit Modus-Tabs, Gitteransicht und Aktionsleiste."
- },
"Fullscreen": {
"Fullscreen": "Vollbild"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gamma-Steuerung nicht verfügbar. Erfordert DMS API v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Basis-GTK3/4- oder QT5/QT6-Konfigurationen (erfordert qt6ct-kde) erstellen, um DMS-Farben zu folgen. Nur einmal erforderlich.
Es wird empfohlen, adw-gtk3 vor der Anwendung von GTK-Themes zu konfigurieren."
},
@@ -3255,19 +3372,19 @@
"Gradually fade the screen before turning off monitors with a configurable grace period": "Bildschirm schrittweise ausblenden, bevor die Monitore mit einer konfigurierbaren Schonfrist ausgeschaltet werden"
},
"Grant": {
- "Grant": ""
+ "Grant": "Gewähren"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "Administratorrechte gewähren?"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "Administratorrechte gewähren"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "Administratorrechte gewährt"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "Greeter-Login-Zugriff gewährt"
},
"Graph Time Range": {
"Graph Time Range": "Zeitbereich des Diagramms"
@@ -3294,10 +3411,10 @@
"Greeter font": "Greeter-Schriftart"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "Mitglieder der Greeter-Gruppe können ihr Design für den Anmeldebildschirm nach dem Ab- und Anmelden mit „dms greeter sync --profile“ synchronisieren."
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "Greeter-Gruppe:"
},
"Greeter only — does not affect main clock": {
"Greeter only — does not affect main clock": "Nur Greeter — betrifft nicht die Hauptuhr"
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Indikatoren ausblenden"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Updater-Widget ausblenden"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "Bei Vollbild ausblenden"
- },
"Hide When Typing": {
"Hide When Typing": "Beim Tippen ausblenden"
},
@@ -3456,10 +3567,10 @@
"Hide on Touch": "Bei Berührung ausblenden"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "Die Leiste ausblenden, wenn der Mauszeiger sie verlässt, selbst wenn noch ein Popout geöffnet ist"
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "Das Dock ausblenden, wenn ein Fenster im Vollbildmodus ist"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "High-Fidelity-Palette, die Quellfarbtöne bewahrt."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Hyprland Webseite"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Ich verstehe"
@@ -3582,22 +3699,25 @@
"Icon Theme": "Icon Theme"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "Identische Warnungen werden als ein einzelnes Popup angezeigt, anstatt gestapelt zu werden"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "Identische Warnungen werden als separate Benachrichtigungskarten gestapelt"
},
"Idle": {
"Idle": "Leerlauf"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inaktivitätssperre"
},
"Idle Settings": {
"Idle Settings": "Inaktivitätseinstellungen"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Idle-Überwachung nicht unterstützt - erfordert neuere Quickshell Version"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Wenn das Feld ausgeblendet ist, erscheint es, sobald eine Taste gedrückt wird."
@@ -3677,8 +3797,11 @@
"Inhibitable": {
"Inhibitable": "Unterdrückbar"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "Auf jedes Widget angewendeter innerer Abstand"
},
"Input Devices": {
"Input Devices": "Eingabegeräte"
@@ -3771,7 +3894,7 @@
"Invalid password for %1": "Ungültiges Passwort für %1"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "Ungültiger Benutzername"
},
"Invert on mode change": {
"Invert on mode change": "Invertieren bei Moduswechsel"
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Starte auf dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "Standardmäßig mit dGPU starten"
- },
"Launcher": {
"Launcher": "Launcher"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "Launcher-Erscheinungsseite"
},
- "Launcher Style": {
- "Launcher Style": "Launcher-Stil"
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "Deckkraft der Ebenenumrisse"
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Ausloggen"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "Anmeldung..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Längengrad"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Niedrige Priorität"
},
@@ -4077,13 +4194,13 @@
"Mail": "E-Mail"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "Zum Admin machen"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "Stellen Sie sicher, dass KDE Connect oder Valent auf Ihren anderen Geräten läuft"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "Den Hintergrund der Leiste vollständig transparent machen"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Plugins zur Erweiterung der DMS-Funktionalität verwalten und konfigurieren"
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "Vom Rahmen verwaltet"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": "Verwaltet durch Frame-Modus"
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "Vom Rahmen im verbundenen Modus verwaltet"
},
@@ -4128,7 +4242,7 @@
"Manual Show/Hide": "Manuelles Anzeigen/Verstecken"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "Manuelle Konfiguration"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "Fensterklassennamen Symbolnamen zuordnen für korrekte Symbolanzeige"
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Marker-Abfallbehälter voll"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Übereinstimmungskriterien"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Entspricht Profil: %1"
- },
"Material": {
"Material": "Material"
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Einstellungen für Media Player "
},
- "Media Players": {
- "Media Players": "Medienplayer"
- },
"Media Players (": {
"Media Players (": "Media Players ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Min W"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": "Minimale Leiste im Spotlight-Stil: Erscheint sofort oben am Bildschirm und erweitert sich beim Tippen."
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Minimale Palette mit einem Farbton."
},
@@ -4419,7 +4530,7 @@
"Mount Points": "Einhängepunkte"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "Mausklicks gehen durch die Leiste an die dahinter liegenden Fenster durch"
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "Erscheinungsbild des Mauszeigers"
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Benannte Arbeitsfächen-Symbole"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "Nativ: Plattform-Renderer (FreeType)."
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Kein Hintergrund"
},
- "No Battery": {
- "No Battery": "Kein Akku"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Kein Bluetooth-Adapter gefunden"
},
@@ -4659,7 +4770,7 @@
"No active %1 sessions": "Keine aktiven %1-Sitzungen"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "Keine aktive Sitzung für %1 gefunden"
},
"No adapter": {
"No adapter": "Kein Adapter"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Keine App-Anpassungen."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Keine Anwendungs gefunden"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Keine Apps stummgeschaltet. Rechtsklicken Sie auf eine Benachrichtigung und wählen Sie „Popups stummschalten“, um hier eine hinzuzufügen."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Kein Akku"
},
@@ -4734,7 +4851,7 @@
"No hidden apps.": "Keine versteckten Apps."
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "Keine menschlichen Benutzerkonten gefunden."
},
"No info items": {
"No info items": "Keine Info-Elemente"
@@ -4776,7 +4893,7 @@
"No mount points found": "Keine Einhängepunkte gefunden"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "Keine weiteren aktiven Sitzungen auf diesem Seat"
},
"No output device": {
"No output device": "Keine Ausgabegeräte"
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Keine Ausgabegeräte gefunden"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "Kein Paketmanager gefunden. Bitte installieren Sie 'paru' oder 'yay' auf Arch-basierten Systemen, um nach Updates zu suchen."
- },
"No peers found": {
"No peers found": "Keine Peers gefunden"
},
@@ -4824,7 +4938,7 @@
"No saved clipboard entries": "Keine gespeicherten Einträge in der Zwischenablage"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "Keine Sitzung ausgewählt"
},
"No sessions found": {
"No sessions found": "Keine Sitzungen gefunden"
@@ -4848,7 +4962,7 @@
"No trigger": "Kein Trigger"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "Kein Benutzer angegeben"
},
"No video found in folder": {
"No video found in folder": "Kein Video im Ordner gefunden"
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Keine Fensterregeln eingerichtet"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Nichts"
},
@@ -4908,7 +5025,7 @@
"Not available — install or configure pam_u2f.": "Nicht verfügbar — installiere oder konfiguriere pam_u2f."
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "Nicht zugewiesen"
},
"Not connected": {
"Not connected": "Nicht verbunden"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Nicht erkannt"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Nicht gekoppelt"
},
@@ -5040,10 +5160,10 @@
"Opacity": "Deckkraft"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "Deckkraft des Leistenhintergrunds"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "Deckkraft der Widget-Hintergründe"
},
"Opaque": {
"Opaque": "Deckend"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "Dateien werden geöffnet"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "Terminal wird geöffnet: "
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "Öffnet eine Auswahl weiterer aktiver Sitzungen auf diesem Seat"
},
"Opens image files": {
"Opens image files": "Öffnet Bilddateien"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "Öffnet den verbundenen Launcher im Modus mit verbundenem Frame."
},
"Optional description": {
"Optional description": "Optionale Beschreibung"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Optionaler Standort"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Optionen"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Ausgabebereich voll"
},
- "Output Device": {
- "Output Device": "Ausgabegerät"
- },
"Output Devices": {
"Output Devices": "Ausgabegeräte"
},
@@ -5193,7 +5316,7 @@
"Override the global shadow with per-bar settings": "Globalen Schatten durch Einstellungen pro Leiste überschreiben"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "Die Popup-Abstandsgröße überschreiben, wenn „Auto“ deaktiviert ist"
},
"Overrides": {
"Overrides": "überschreibt"
@@ -5280,22 +5403,22 @@
"Password": "Passwort"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "Das Passwort darf nicht leer sein"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "Passwortänderung fehlgeschlagen (Exit-Code %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "Passwort festgelegt"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "Passwort aktualisiert"
},
"Password...": {
"Password...": "Passwort..."
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "Passwörter stimmen nicht überein."
},
"Paste": {
"Paste": "Einfügen"
@@ -5403,10 +5526,10 @@
"Place plugins in %1": "Plugins in %1 platzieren"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "Leiste auf der Wayland-Overlay-Ebene platzieren"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "Dock auf der Wayland-Overlay-Ebene platzieren"
},
"Play a video when the screen locks.": {
"Play a video when the screen locks.": "Ein Video abspielen, wenn der Bildschirm gesperrt wird."
@@ -5487,7 +5610,7 @@
"Pointer": "Zeiger"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "Polkit-Integration ist deaktiviert. Die Benutzerverwaltung erfordert Polkit zur Rechteausweitung."
},
"Popout Shadows": {
"Popout Shadows": "Popout-Schatten"
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Popup-Schatten"
},
- "Popup Transparency": {
- "Popup Transparency": "Popup Transparenz"
- },
"Popup behavior, position": {
"Popup behavior, position": "Popup-Verhalten, Position"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Energieoptionen im Power Menü anpassen"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Ausschalten"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protokoll"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": "Qt-Farben erfolgreich angewendet"
},
@@ -5757,7 +5883,10 @@
"Rate": "Übertragungsrate"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "Passwort erneut eingeben"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "Lesen:"
@@ -5787,7 +5916,7 @@
"Refresh Weather": "Wetter aktualisieren"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "Aktualisierung…"
},
"Regex": {
"Regex": "Regex"
@@ -5814,7 +5943,7 @@
"Remaining / Total": "Verbleibend / Gesamt"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "Letzten Modus merken"
},
"Remember Last Query": {
"Remember Last Query": "Letzte Suchanfrage merken"
@@ -5829,46 +5958,49 @@
"Remove": "Entfernen"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "„%1“ aus der Gruppe „%2“ entfernen?"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "Kurzbefehl entfernen?"
},
"Remove Widget Padding": {
"Remove Widget Padding": "Widget-Abstand entfernen"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "Administratorrechte entfernen"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "Administratorrechte entfernen?"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "Eckenabrundung der Leiste entfernen"
},
"Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Abstände und Rahmen entfernen, wenn Fenster maximiert sind"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "Greeter-Zugriff entfernen?"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "Greeter-Anmeldezugriff entfernen"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "Inneren Abstand von allen Widgets entfernen"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "Den Kurzbefehl %1 entfernen?"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "Den Kurzbefehl %1 entfernen? Ein Unbind-Eintrag wird in dms/binds-user.lua gespeichert, damit er auch nach DMS-Updates entfernt bleibt."
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "Administratorrechte entfernt"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "Greeter-Anmeldezugriff entfernt"
},
"Rename": {
"Rename": "Umbenennen"
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Erfordert Nachtmodus-Unterstützung"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Zurücksetzen"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "Größe zurücksetzen"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "Auf Standard zurücksetzen?"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "Auf Standard zurücksetzen"
},
"Reset to default name": {
"Reset to default name": "Auf Standardnamen zurücksetzen"
@@ -5958,7 +6093,7 @@
"Restore Special Workspace Windows": "Fenster in speziellen Arbeitsbereichen wiederherstellen"
},
"Restore the last selected mode (tab) when the launcher is opened": {
- "Restore the last selected mode (tab) when the launcher is opened": ""
+ "Restore the last selected mode (tab) when the launcher is opened": "Den zuletzt ausgewählten Modus (Tab) beim Öffnen des Launchers wiederherstellen"
},
"Resume": {
"Resume": "Fortsetzen"
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Regeln (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Erneut ausführen"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Speichern"
},
@@ -6075,10 +6216,10 @@
"Save QR Code": "QR Code speichern"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "Speichern und schließen"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "Speichern und einfügen"
},
"Save and switch between display configurations": {
"Save and switch between display configurations": "Anzeige-Konfigurationen speichern und zwischen ihnen wechseln"
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Score"
},
- "Screen Sharing": {
- "Screen Sharing": "Bildschirmfreigabe"
- },
"Screen sharing": {
"Screen sharing": "Bildschirm teilen"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Suchoptionen"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Suchen Sie nach Tastenkombination, Beschreibung oder Aktionsname.\n\nDie Standardaktion kopiert die Tastenkombination in die Zwischenablage.\nRechtsklick oder Rechts-Pfeil drücken, um häufig verwendete Tastenkombinationen anzuheften – diese erscheinen oben, wenn nicht gesucht wird."
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "eine Farbe aus der Farbpalette oder nutze die Schieberegler"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Wählen Sie ein Widget aus, das Sie Ihrem Desktop hinzufügen möchten. Jedes Widget ist eine separate Instanz mit eigenen Einstellungen."
},
@@ -6288,7 +6432,7 @@
"Select a window...": "ein Fenster..."
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "Wählen Sie eine aktive Sitzung zum Wechseln aus. Die aktuelle Sitzung läuft im Hintergrund weiter."
},
"Select an image file...": {
"Select an image file...": "eine Bilddatei..."
@@ -6330,7 +6474,7 @@
"Select the palette algorithm used for wallpaper-based colors": "Algorithmus für Hintergrundbilder zur Bestimmung der Farben"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "Benutzer auswählen..."
},
"Select which keybind providers to include": {
"Select which keybind providers to include": "Wählen Sie aus, welche Tastenkombinationsanbieter einbezogen werden sollen"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "Setze Hintergrundbilder für helle und dunkle Darstellung"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "Initiales Passwort festlegen"
},
"Set key and action to save": {
"Set key and action to save": "Taste und Aktion zum Speichern festlegen"
@@ -6426,7 +6570,7 @@
"Shadow Override": "Schattenüberschreibung"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "Schatten-Unschärferadius in Pixeln"
},
"Shadow elevation on bars and panels": {
"Shadow elevation on bars and panels": "Schatten-Erhöhung auf Leisten und Panels"
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Alle entfernen • Esc: Schließen"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": "Umschalt+Eingabe zum Kopieren"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Umschalt+Eingabe zum Einfügen"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Umschalt+Eingabe: Kopieren • Umschalt+Entf: Alles löschen • Esc: Schließen"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Einfügen • Shift+Entf: Alle entfernen • Esc: Schließen"
- },
"Short": {
"Short": "Kurz"
},
@@ -6495,7 +6630,7 @@
"Show All Tags": "Alle Tags anzeigen"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "Chips für Alles, Apps, Dateien und Plugins neben der Eingabe der Spotlight-Leiste anzeigen."
},
"Show Badge": {
"Show Badge": "Badge anzeigen"
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Luftfeuchtigkeit anzeigen"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Launcher-Schaltfläche anzeigen"
},
@@ -6576,7 +6714,7 @@
"Show Memory in GB": "Arbeitsspeicher in GB anzeigen"
},
"Show Mode Chips": {
- "Show Mode Chips": ""
+ "Show Mode Chips": "Modus-Chips anzeigen"
},
"Show Network": {
"Show Network": "Zeige Netzwerk"
@@ -6630,7 +6768,7 @@
"Show Swap": "Swap anzeigen"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "Benutzerwechsel anzeigen"
},
"Show System Date": {
"Show System Date": "Zeige Systemdatum"
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Modus-Tabs und Tastaturhinweise unten anzeigen."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "Benachrichtigungs-Popups nur auf dem aktuell fokussierten Monitor anzeigen"
},
@@ -6749,14 +6890,11 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Bildschirmanzeige bei Lautstärkeänderung anzeigen"
},
- "Show seconds": {
- "Show seconds": "Sekunden anzeigen"
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "Leiste nur anzeigen, wenn keine Fenster geöffnet sind"
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "Leiste anzeigen, wenn die Niri-Übersicht aktiv ist"
},
"Show weather information in top bar and control center": {
"Show weather information in top bar and control center": "Wetter Informationen in Top-Bar und in Einstellungen anzeigen"
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Einrichtung überspringen"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Klein"
},
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "Töne"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "Abstand zwischen der Leiste und den Bildschirmrändern"
},
"Space between windows": {
"Space between windows": "Abstand zwischen Fenster"
@@ -6888,10 +7032,10 @@
"Spotlight": "Spotlight"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "Spotlight-Leiste"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "Kurzbefehl für Spotlight-Leiste"
},
"Spotlight Search": {
"Spotlight Search": "Spotlight-Suche"
@@ -6939,10 +7083,10 @@
"Stretch": "Strecken"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "Widget-Icons strecken, um die verfügbare Leistenhöhe auszufüllen"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "Widget-Text strecken, um die verfügbare Leistenhöhe auszufüllen"
},
"Strict auto-hide": {
"Strict auto-hide": "Striktes automatisches Ausblenden"
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Streifen"
},
- "Style": {
- "Style": "Stil"
- },
"Summary": {
"Summary": "Zusammenfassung"
},
@@ -6963,7 +7104,7 @@
"Sunset": "Sonnenuntergang"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "Doppelte Benachrichtigungen unterdrücken"
},
"Suppress notification popups while enabled": {
"Suppress notification popups while enabled": "Unterdrückt Benachrichtigungen wenn aktiviert"
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "System-Toast-Benachrichtigungen"
},
- "System update custom command": {
- "System update custom command": "Benutzerdefinierter Befehl für System-Update"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Tab"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "Zusätzliche Terminal-Parameter"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Zusätzliche benutzerdefinierte Terminal-Parameter"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "Terminal-Fallback fehlgeschlagen. Installieren Sie einen unterstützten Terminal-Emulator oder führen Sie „dms auth sync“ manuell aus."
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "Warteschlange der Druckaufträge ist leer"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Theme & Farben"
},
@@ -7188,10 +7329,10 @@
"Theme Registry": "Design-Registrierung"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "Themenfarbe für den Rand"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "Themenfarbe für den Widget-Umriss"
},
"Theme worker failed (%1)": {
"Theme worker failed (%1)": "Theme-Worker fehlgeschlagen (%1)"
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Designs"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Stärke"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "Dieses Gerät"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "Dies kann einige Sekunden dauern"
},
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "Zeitformat"
},
- "Time format": {
- "Time format": "Zeitformat"
- },
"Time remaining: %1": {
"Time remaining: %1": "Verbleibende Zeit: %1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "Wartezeit vor dem Ausblenden, nachdem der Mauszeiger die Leiste verlässt"
},
"Time until full: %1": {
"Time until full: %1": "Zeit bis voll: %1"
@@ -7314,7 +7467,7 @@
"To Full": "Bis voll"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "Um sich als ein anderer Benutzer anzumelden, melden Sie sich ab und wählen Sie das Konto im Greeter aus. Das Erstellen einer neuen parallelen Sitzung erfordert einen Multi-Session-Greeter (greetd-flexiserver / GDM / LightDM)."
},
"To update, run the following command:": {
"To update, run the following command:": "Zum Aktualisieren führen Sie folgenden Befehl aus:"
@@ -7329,7 +7482,7 @@
"Today": "Heute"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "Sichtbarkeit der Leiste manuell über IPC umschalten"
},
"Toggle fonts": {
"Toggle fonts": "Schriftarten umschalten"
@@ -7404,13 +7557,13 @@
"Transparency": "Transparenz"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "Transparenz des Randes"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "Transparenz der Schattenebene"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "Transparenz des Widget-Umrisses"
},
"Trash": {
"Trash": "Papierkorb"
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "Papierkorbbefehl fehlgeschlagen (Exit %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "Beliebte GIF's"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "nicht Verfügbar"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Nicht fokussierte Farbe"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Betriebszeit:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Dringende Farbe"
},
@@ -7653,10 +7815,7 @@
"Use Monospace Font": "Monospace-Schriftart verwenden"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": "Spotlight-Launcher verwenden"
+ "Use Overlay Layer": "Overlay-Ebene verwenden"
},
"Use System Theme": {
"Use System Theme": "Nutze System Darstellung"
@@ -7665,7 +7824,7 @@
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "Ein benutzerdefiniertes Bild für den Anmeldebildschirm verwenden oder leer lassen, um das Desktop-Hintergrundbild zu verwenden."
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "Benutzerdefinierten Radius für Goth-Eckenausschnitte verwenden"
},
"Use a fixed shadow direction for this bar": {
"Use a fixed shadow direction for this bar": "Eine feste Schattenrichtung für diese Leiste verwenden"
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Benutzerdefinierte Rahmen-/Fokusringbreite verwenden"
},
- "Use custom command": {
- "Use custom command": "Benutzerdefinierten Befehl verwenden"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Benutzerdefinierten Befehl zum Aktualisieren Ihres Systems verwenden"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Benutzerdefinierte Abstände anstelle von Leistenabständen verwenden"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "Fingerabdruck-Authentifizierung für den Sperrbildschirm verwenden."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Nutze helle Darstellung anstatt von dunkler"
},
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Nutze Systemklang Thema von den System Einstellungen"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": "Verwenden Sie den zentrierten minimalen Launcher anstelle des verbundenen V2-Launchers"
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "Erweiterte Oberfläche für Launcher-Inhalte verwenden"
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "Die Overlay-Ebene beim Öffnen des Launchers verwenden"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "Dieselbe Position und Größe auf allen Displays verwenden"
@@ -7742,38 +7895,41 @@
"User": {
"User": "Benutzer"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "Benutzer existiert bereits"
},
"User created": {
- "User created": ""
+ "User created": "Benutzer erstellt"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "Benutzer mit Administratorrechten und Greeter-Anmeldezugriff erstellt"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "Benutzer mit Administratorrechten erstellt"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "Benutzer mit Greeter-Anmeldezugriff erstellt"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "Benutzer gelöscht"
},
"User not found": {
- "User not found": ""
+ "User not found": "Benutzer nicht gefunden"
},
"Username": {
"Username": "Benutzername"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "Der Benutzername muss mit einem Kleinbuchstaben oder Unterstrich beginnen und darf nur Kleinbuchstaben, Ziffern, Bindestriche oder Unterstriche enthalten."
},
"Username...": {
"Username...": "Benutzername..."
},
"Users": {
- "Users": ""
+ "Users": "Benutzer"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "Verwendet Sonnenaufgangs-/-untergangszeiten basierend auf Ihrem Standort."
@@ -7782,7 +7938,7 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Verwendet Sonnenaufgang/-untergang, um den Nachtmodus automatisch an Ihren Standort anzupassen."
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "Verwendet die spotlight-bar IPC-Aktion und öffnet immer die minimale Leiste."
},
"Using global monospace font from Settings → Personalization": {
"Using global monospace font from Settings → Personalization": "Verwendet globale Monospace-Schriftart aus Einstellungen → Personalisierung"
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Vertikale Kachelung"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Lebhaft"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "Wenn gesperrt"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Wenn das Updater-Widget verwendet wird, blende es aus, wenn kein Update gefunden wurde"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi Passwort"
},
@@ -8028,10 +8184,10 @@
"Width": "Breite"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "Breite des Randes in Pixeln"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "Breite des Widget-Umrisses in Pixeln"
},
"Width of window border (borderpx)": {
"Width of window border (borderpx)": "Breite des Fensterrahmens (borderpx)"
@@ -8082,7 +8238,7 @@
"Wipe": "Wischen"
},
"Working…": {
- "Working…": ""
+ "Working…": "Wird verarbeitet…"
},
"Workspace": {
"Workspace": "Arbeitsbereich"
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Arbeitsbereiche & Widgets"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Schreiben:"
},
"X Axis": {
"X Axis": "X-Achse"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y-Achse"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Sie müssen entweder:\nQT_QPA_PLATFORMTHEME=gtk3 ODER\nQT_QPA_PLATFORMTHEME=qt6ct\nals Umgebungsvariablen setzen und dann die Shell neu starten.\n\nqt6ct erfordert die Installation von qt6ct-kde."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Alles bereit!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "Dein System ist auf dem neuesten Stand!"
},
@@ -8154,7 +8331,7 @@
"actions": "Aktionen"
},
"admin": {
- "admin": ""
+ "admin": "Admin"
},
"attached": {
"attached": "verbunden"
@@ -8192,8 +8369,14 @@
"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.": "Die Konfiguration 'dms/outputs' existiert, ist aber nicht in Ihrer Compositor-Konfiguration enthalten. Anzeigeänderungen werden nicht dauerhaft gespeichert."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "z. B. alice"
},
"e.g., firefox, kitty --title foo": {
"e.g., firefox, kitty --title foo": "z.B., firefox, kitty --title foo"
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "z.B., focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "e.g., notify-send 'Hallo' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "Hervorgehoben"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "zuletzt gesehen %1"
},
@@ -8226,7 +8409,7 @@
"leave empty for default": "leer lassen für Standardwert"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "loginctl activate fehlgeschlagen (Beendet mit %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl nicht verfügbar – Sperrintegration erfordert DMS-Socket-Verbindung"
@@ -8316,13 +8499,13 @@
"relay: %1": "Relay: %1"
},
"remote": {
- "remote": ""
+ "remote": "entfernt"
},
"seconds": {
"seconds": "sekunden"
},
"session %1": {
- "session %1": ""
+ "session %1": "Sitzung %1"
},
"source": {
"source": "Quelle"
@@ -8340,13 +8523,13 @@
"update dms for NM integration.": "dms für NM-Integration aktualisieren."
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "useradd fehlgeschlagen (Beendet mit %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "userdel fehlgeschlagen (Beendet mit %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "usermod fehlgeschlagen (Beendet mit %1)"
},
"v%1 by %2": {
"v%1 by %2": "v%1 von %2"
@@ -8397,15 +8580,9 @@
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: Nav • Leertaste: Erweitern • Eingabe: Aktion/Erweitern • E: Text"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: Navigieren • Enter/Strg+C: Kopieren • Entf: Löschen • F10: Hilfe"
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: Navigieren • Eingabe/Strg+C: Kopieren • Entf: Löschen • Strg+E: Bearbeiten • Strg+S: Anpinnen/Lösen • F10: Hilfe"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Navigieren • Eingabe: Einfügen • Entf: Löschen • F10: Hilfe"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: Navigieren • Eingabe: Einfügen • Strg+C: Kopieren • Entf: Löschen • Strg+E: Bearbeiten • Strg+S: Anpinnen/Lösen • F10: Hilfe"
}
}
diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json
index 5fe1eca8..504670fa 100644
--- a/quickshell/translations/poexports/es.json
+++ b/quickshell/translations/poexports/es.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": ""
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "hace %1m"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": ""
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": ""
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": ""
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Añadir Widget de Escritorio"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Añadir impresora"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Añadir widget"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Agregar widget a la sección %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Añade un recuadro alrededor del dock"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": ""
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Identidad anónima (opcional)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": ""
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": ""
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": ""
},
@@ -561,17 +594,23 @@
"App Names": "Nombre de la aplicación"
},
"App Theming": {
- "App Theming": ""
+ "App Theming": "Tema de la app"
},
"Appearance": {
"Appearance": "Apariencia"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Dock de aplicaciones"
},
"Applications": {
"Applications": "Aplicaciones"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Aplicar cambios"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": ""
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": ""
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Organice las pantallas y configure la resolución, la frecuencia de actualización y el VRR."
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": ""
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Ocultar dock Automáticamente"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Guardando automáticamente..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": ""
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Disponible"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Atrás"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": ""
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Opacidad del fondo de pantalla"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": ""
},
- "Bar transparency": {
- "Bar transparency": ""
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": ""
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth no disponible"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": ""
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Color de borde"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Opacidad del borde"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": ""
},
- "Border with BG": {
- "Border with BG": ""
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Abajo"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": ""
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Sección central"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": ""
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Escojer un color"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Escoje colores de la paleta"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Elije dónde aparecen los indicadores en pantalla"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Elija qué pantallas muestran este widget"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": ""
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": ""
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Gestor de portapapeles"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": ""
},
- "Clipboard service not available": {
- "Clipboard service not available": "Servicio de portapapeles no disponible"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "El portapapeles funciona pero no se guarda nada en el disco"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Comando"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": ""
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Ajustes del compositor"
},
- "Compositor not supported": {
- "Compositor not supported": ""
- },
"Config Format": {
"Config Format": "Formato de la configuracion"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Contraste"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Centro de control"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": ""
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Enfriamiento"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Copiar ID del Proceso"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": "Copiar texto"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Esquinas y Fondo"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Solo la cantidad"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Tema del cursor"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "Atajos de DMS"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS desactualizado"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Formato de fecha"
},
- "Date format": {
- "Date format": ""
- },
"Date format on greeter": {
"Date format on greeter": ""
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Eliminar impresora"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": ""
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": ""
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Reloj del escritorio"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Desabilitando WiFi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": ""
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Mostrar solo los espacios que contengan ventanas"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Mostrar segundos en el reloj"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Mostrar el menu de apagado de sistema"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": ""
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
- },
"Docs": {
"Docs": "Docs"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": ""
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Empresa"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": ""
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Error al activar la configuración"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": ""
- },
"Failed to add binds include": {
"Failed to add binds include": "Fallo al añadir la inclusion de binds"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Error al cancelar el trabajo seleccionado"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": ""
- },
"Failed to check pin limit": {
"Failed to check pin limit": ""
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Error al crear la impresora"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": ""
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Error al eliminar VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Error al retener el trabajo"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": ""
},
- "Failed to save profile file": {
- "Failed to save profile file": ""
- },
"Failed to send clipboard": {
"Failed to send clipboard": ""
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Error al actualizar la compartición"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Fallo al escribir archivo temporal para la validacion"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": ""
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Encontrar texto"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": ""
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": ""
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": ""
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": ""
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Centrarse en el inicio"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": ""
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": ""
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Force Wide Color"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Guía de formato"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": ""
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": ""
- },
"Frame": {
"Frame": ""
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": ""
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": ""
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": ""
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Control de gamma no disponible. Requiere DMS API v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": ""
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Ocultar widget de actualizacion"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "Ocultar cuando se tipea"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Paleta fiel que conserva los tonos originales."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": ""
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Lo entiendo"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Inactivo"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inhibir inactividad"
},
"Idle Settings": {
"Idle Settings": "Ajustes de inactividad"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Monitoreo de inactividad no soportado - requiere versión reciente de Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Si el campo esta oculto, aparecera tan pronto como la tecla este presionada"
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": ""
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Iniciar con la tarjeta discreta"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "Lanzador"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Cerrar sesión"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": ""
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Longitud"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Prioridad baja"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": ""
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": ""
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Depósito de residuos lleno"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": ""
},
- "Matches profile: %1": {
- "Matches profile: %1": ""
- },
"Material": {
"Material": ""
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Ajustes del reproductor"
},
- "Media Players": {
- "Media Players": ""
- },
"Media Players (": {
"Media Players (": "Reproductores ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": ""
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Paleta simple con un único color base."
},
@@ -4440,7 +4551,7 @@
"Moving to Paused": "Pausando"
},
"Multi-Monitor": {
- "Multi-Monitor": ""
+ "Multi-Monitor": "Multi monitor"
},
"Multimedia": {
"Multimedia": ""
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Iconos de espacios de trabajo numerados"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": ""
},
@@ -4572,7 +4686,7 @@
"Night Temperature": "Temperatura nocturna"
},
"Night mode & gamma": {
- "Night mode & gamma": ""
+ "Night mode & gamma": "Modo nocturno y gamma"
},
"Night mode failed: DMS gamma control not available": {
"Night mode failed: DMS gamma control not available": ""
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Sin fondo"
},
- "No Battery": {
- "No Battery": ""
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "No se encontró un adaptador de Bluetooth"
},
@@ -4611,7 +4722,7 @@
"No Border": ""
},
"No DMS shortcuts configured": {
- "No DMS shortcuts configured": ""
+ "No DMS shortcuts configured": "No hay atajos de DMS configurados"
},
"No Dim": {
"No Dim": ""
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": ""
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": ""
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": ""
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Sin bateria"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": ""
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": ""
- },
"No peers found": {
"No peers found": ""
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": ""
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Ninguna"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "No detectado"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": ""
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": ""
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": ""
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Ubicación opcional"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Opciones"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Área de salida llena"
},
- "Output Device": {
- "Output Device": ""
- },
"Output Devices": {
"Output Devices": ""
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": ""
},
- "Popup Transparency": {
- "Popup Transparency": "Transparencia de popups"
- },
"Popup behavior, position": {
"Popup behavior, position": "Comportamiento y posición de las notificaciones emergentes"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Ajustes del menú de apagado"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Apagar"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protocolo"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": ""
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Requiere compatibilidad con el modo nocturno"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Reiniciar"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": ""
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Ejecutar de nuevo"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": ""
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Guardar"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": ""
},
- "Screen Sharing": {
- "Screen Sharing": ""
- },
"Screen sharing": {
"Screen sharing": "Compartir pantalla"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": ""
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": ""
},
@@ -6278,6 +6419,9 @@
"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 desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Selecciona un widget para añadirlo a tu escritorio. Cada widget es una instancia independiente con su propia configuración."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Borrar todo • Esc: Cerrar "
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": ""
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Mayús+Intro: Pegar - Mayús+Supr: Borrar todo - Esc: Cerrar"
- },
"Short": {
"Short": "Corto"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Mostrar humedad"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": ""
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": ""
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": ""
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Mostrar en pantalla cuando el volumen cambia"
},
- "Show seconds": {
- "Show seconds": ""
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": ""
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": ""
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Sonidos"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": ""
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": ""
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Notificaciones emergentes del sistema"
},
- "System update custom command": {
- "System update custom command": "Comando al actualizar"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Pestaña"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": ""
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Parametros adicionales"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "La cola de impresión está vacía"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Tema y colores"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Temas"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Espesor"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": ""
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": ""
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Formato de tiempo"
},
- "Time format": {
- "Time format": ""
- },
"Time remaining: %1": {
"Time remaining: %1": "Tiempo restante: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": ""
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": ""
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "No disponible"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": ""
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": ""
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Color para urgencia"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "Usar tema del sistema"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": ""
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Utilizar un comando personalizado para actualizar el sistema"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Utilizar espacios personalizados en lugar de espaciado entre barras"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": ""
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Usar tema claro en lugar del tema oscuro"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Usar tema de sonidos del sistema"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Usuario"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Desplazamiento vertical"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": ""
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": ""
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Si se utiliza el widget actualizador, ocultarlo si no se encuentra ninguna actualización"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Contraseña Wi-Fi"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Espacios de trabajo y Widgets"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": ""
},
"X Axis": {
"X Axis": "Eje X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Eje Y"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": ""
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": ""
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": ""
},
@@ -8192,6 +8369,12 @@
"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 configuración dms/outputs existe pero no está incluida en la configuración del compositor. Los cambios de visualización no persistirán."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "por ejemplo, focus-workspace 3, redimensionar-columna -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "e.j., notify-send 'Hola' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": ""
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": ""
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": ""
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": ""
}
}
diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json
index 3f6ac113..4f63b1ca 100644
--- a/quickshell/translations/poexports/fa.json
+++ b/quickshell/translations/poexports/fa.json
@@ -1,15 +1,18 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "سرعت انیمیشن %1"
},
"%1 Sessions": {
- "%1 Sessions": ""
+ "%1 Sessions": "%1 نشست"
},
"%1 active session": {
- "%1 active session": ""
+ "%1 active session": "%1 نشست فعال"
},
"%1 active sessions": {
- "%1 active sessions": ""
+ "%1 active sessions": "%1 نشست فعال"
},
"%1 adapter, none connected": {
"%1 adapter, none connected": "%1 آداپتور، هیچکدام متصل نیستند"
@@ -18,7 +21,7 @@
"%1 adapters, none connected": "%1 آداپتور، هیچکدام متصل نیستند"
},
"%1 character": {
- "%1 character": ""
+ "%1 character": "%1 کاراکتر"
},
"%1 characters": {
"%1 characters": "%1 حرف"
@@ -27,7 +30,7 @@
"%1 connected": "%1 متصل"
},
"%1 copied": {
- "%1 copied": ""
+ "%1 copied": "%1 کپی شد"
},
"%1 custom animation duration": {
"%1 custom animation duration": "مدت زمان سفارشی انیمیشن %1"
@@ -51,10 +54,10 @@
"%1 exists but is not included. Window rules won't apply.": "%1 وجود دارد اما وارد نشده است. قواعد پنجره اعمال نخواهند شد."
},
"%1 filtered": {
- "%1 filtered": ""
+ "%1 filtered": "%1 فیلتر شده"
},
"%1 h %2 m left": {
- "%1 h %2 m left": "%1 ساعت %1 دقیقه مانده"
+ "%1 h %2 m left": "%1 ساعت و %2 دقیقه مانده"
},
"%1 h left": {
"%1 h left": "%1 ساعت مانده"
@@ -78,34 +81,37 @@
"%1 online": "%1 برخط"
},
"%1 update": {
- "%1 update": ""
+ "%1 update": "%1 بروزرسانی"
},
"%1 updates": {
- "%1 updates": ""
+ "%1 updates": "%1 بروزرسانی"
},
"%1 variants": {
"%1 variants": "%1 نوع"
},
"%1 wallpaper • %2 / %3": {
- "%1 wallpaper • %2 / %3": ""
+ "%1 wallpaper • %2 / %3": "%1 تصویر پسزمینه • %2 / %3"
},
"%1 wallpapers • %2 / %3": {
- "%1 wallpapers • %2 / %3": ""
+ "%1 wallpapers • %2 / %3": "%1 تصویر پسزمینه • %2 / %3"
},
"%1 widgets": {
"%1 widgets": "%1 ابزارک"
},
"%1 window": {
- "%1 window": ""
+ "%1 window": "%1 پنجره"
},
"%1 windows": {
- "%1 windows": ""
+ "%1 windows": "%1 پنجره"
},
"%1m ago": {
"%1m ago": "%1 دقیقه پیش"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
- "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": ""
+ "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "«جایگزین» به کلید اجازه میدهد به تنهایی قفل را باز کند. «فاکتور دوم» ابتدا رمز عبور یا اثر انگشت و سپس کلید را نیاز دارد."
},
"(Default)": {
"(Default)": "(پیشفرض)"
@@ -285,7 +291,7 @@
"90°": "۹۰°"
},
"MIT License": {
- "MIT License": ""
+ "MIT License": "لایسنس MIT"
},
"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?": "فایلی با این نام از قبل وجود دارد. آیا میخواهید آن را بازنویسی کنید؟"
@@ -297,7 +303,7 @@
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "کاربر با این نام از قبل وجود دارد."
},
"AC Power": {
"AC Power": "برق AC"
@@ -306,7 +312,7 @@
"API": "API"
},
"AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": {
- "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": ""
+ "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": "کمکیهای AUR تعاملی هستند — برای درخواستها به پنجره ترمینال مراجعه کنید. این پاپآپ هنگامی که ارتقا خارج میشود به حالت بیکار بازمیگردد."
},
"Aborted": {
"Aborted": "لغو شد"
@@ -339,7 +345,7 @@
"Action": "اقدام"
},
"Action failed or terminal was closed.": {
- "Action failed or terminal was closed.": ""
+ "Action failed or terminal was closed.": "اقدام ناموفق بود یا ترمینال بسته شده است."
},
"Action performed when scrolling horizontally on the bar": {
"Action performed when scrolling horizontally on the bar": ""
@@ -357,7 +363,7 @@
"Activate Greeter": "فعالسازی صفحه خوشآمدگویی"
},
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": {
- "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": ""
+ "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "صفحه خوشآمدگویی DMS فعال شود؟ یک ترمینال برای احراز هویت sudo باز خواهد شد. پس از فعالسازی همگامسازی را اجرا کنید تا تنظیمات شما اعمال شود."
},
"Activation": {
"Activation": "فعالسازی"
@@ -372,7 +378,10 @@
"Active Lock Screen Monitor": "مانیتور فعال صفحه قفل"
},
"Active VPN": {
- "Active VPN": ""
+ "Active VPN": "VPN فعال"
+ },
+ "Active in Column": {
+ "Active in Column": ""
},
"Active tile background and icon color": {
"Active tile background and icon color": "رنگ کاشی پسزمینه فعال و آیکون"
@@ -390,16 +399,16 @@
"Adapters": "آداپتورها"
},
"Adaptive Media Width": {
- "Adaptive Media Width": ""
+ "Adaptive Media Width": "پهنای رسانه سازگار"
},
"Add": {
"Add": "افزودن"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "«%1» به گروه %2 افزوده شود؟"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "«%1» به گروه %2 افزوده شود؟ کاربر باید خارج و دوباره وارد شود، سپس دستور dms greeter sync --profile را اجرا کند تا تم صفحهی ورود خود را منتشر کند."
},
"Add Bar": {
"Add Bar": "افزودن نوار"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "افزودن ابزارک دسکتاپ"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "افزودن چاپگر"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "افزودن ابزارک"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "افزودن ابزارک به بخش %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "افزودن یک حاشیه دور داک"
@@ -431,14 +446,20 @@
"Add by Address": {
"Add by Address": "افزودن با آدرس"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "کاربر جدید را به گروه %1 اضافه کنید تا بتواند dms greeter sync --profile را اجرا کند."
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "کاربر جدید را به گروه %1 اضافه کنید تا بتواند از sudo استفاده کند."
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "ارتفاع نوار را از طریق فاصله درونی تنظیم کن"
},
"Adjust the number of columns in grid view mode.": {
"Adjust the number of columns in grid view mode.": "تعداد ستونها در حالت نمای جدولی را تنظیم کنید."
@@ -450,7 +471,7 @@
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "کنتراست رنگهای تولید شده را تنظیم میکند (-۱۰۰ = کمینه، ۰ = استاندارد، ۱۰۰ = بیشینه)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "گروه ادمین:"
},
"Advanced": {
"Advanced": "پیشرفته"
@@ -474,25 +495,25 @@
"All displays": "همه نمایشگرها"
},
"Allow": {
- "Allow": ""
+ "Allow": "مجاز"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "اجازه بده کلیک ها از ابزارک عبور کنند"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "دسترسی به صفحه خوشآمدگویی مجاز باشد؟"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "اجازه دسترسی به صفحه خوشآمدگویی را بده"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "هماکنون در همان نشست هستید"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: بازگشت • F1/I: اطلاعات فایل • F10: راهنما • Esc: بستن"
},
"Alternative (OR)": {
- "Alternative (OR)": ""
+ "Alternative (OR)": "جایگزین (OR)"
},
"Always Active": {
"Always Active": "همیشه فعال"
@@ -516,7 +537,7 @@
"Always show when there's only one connected display": "همیشه وقتی فقط یک نمایشگر متصل وجود دارد، نشان بده"
},
"Always use this app for %1": {
- "Always use this app for %1": ""
+ "Always use this app for %1": "همیشه از این برنامه برای %1 استفاده کن"
},
"Amount": {
"Amount": "مقدار"
@@ -537,7 +558,7 @@
"Animation Speed": "سرعت انیمیشن"
},
"Animation Style": {
- "Animation Style": ""
+ "Animation Style": "استایل انیمیشن"
},
"Anonymous Identity": {
"Anonymous Identity": "هویت ناشناس"
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "هویت ناشناس (اختیاری)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "سفارشیسازی برنامه"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "جایگزینی شناسه برنامهها"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "رجکس شناسه برنامه (مانند ^firefox$)"
},
@@ -566,17 +599,23 @@
"Appearance": {
"Appearance": "نمای ظاهری"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "داک برنامه"
},
"Applications": {
"Applications": "برنامهها"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "اعمال تغییرات"
},
"Apply Flatpak updates alongside system updates when running 'Update All'.": {
- "Apply Flatpak updates alongside system updates when running 'Update All'.": ""
+ "Apply Flatpak updates alongside system updates when running 'Update All'.": "بروزرسانیهای فلتپک را همراه بروزرسانیهای سیستم هنگام اجرای «بروزرسانی همه» اعمال کن."
},
"Apply GTK Colors": {
"Apply GTK Colors": "اعمال رنگهای GTK"
@@ -585,7 +624,7 @@
"Apply Qt Colors": "اعمال رنگهای Qt"
},
"Apply compositor blur behind the frame border": {
- "Apply compositor blur behind the frame border": "تاری کامپازیتور را پشت حاشیه فریم اعمال کن"
+ "Apply compositor blur behind the frame border": "تاری کامپازیتور را پشت حاشیه قاب اعمال کن"
},
"Apply inverse concave corner cutouts to the bar": {
"Apply inverse concave corner cutouts to the bar": ""
@@ -594,7 +633,10 @@
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "برای کاهش خستگی چشم دمای رنگ گرم را اعمال کن. از تنظیمات خودکارسازی پایین برای کنترل زمان فعال شدن آن استفاده کنید."
},
"Applying authentication changes…": {
- "Applying authentication changes…": ""
+ "Applying authentication changes…": "درحال اعمال تغییرات احراز هویت…"
+ },
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
},
"Apps": {
"Apps": "برنامهها"
@@ -618,22 +660,25 @@
"Apps with notification popups muted. Unmute or delete to remove.": "برنامههایی که پاپآپ اعلان آنها بیصدا شده است. برای حذف، بیصدا را بردارید یا برنامه را حذف کنید."
},
"Arc Extender": {
- "Arc Extender": ""
+ "Arc Extender": "افزایندهٔ قوس"
},
"Architecture": {
"Architecture": "معماری"
},
"Are you sure you want to kill session \"%1\"?": {
- "Are you sure you want to kill session \"%1\"?": ""
+ "Are you sure you want to kill session \"%1\"?": "آیا از بستن نشست «%1» مطمئن هستید؟"
},
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "چیدمان نمایشگرها و پیکربندی وضوح، نرخ تازهسازی و VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
- "At least one output must remain enabled": ""
+ "At least one output must remain enabled": "حداقل یک خروجی باید فعال بماند"
},
"Attach": {
- "Attach": ""
+ "Attach": "پیوست"
},
"Audio": {
"Audio": "صدا"
@@ -687,19 +732,19 @@
"Authentication Required": "احراز هویت نیاز است"
},
"Authentication changes applied.": {
- "Authentication changes applied.": ""
+ "Authentication changes applied.": "تغییرات احراز هویت اعمال شد."
},
"Authentication changes apply automatically.": {
- "Authentication changes apply automatically.": ""
+ "Authentication changes apply automatically.": "تغییرات احراز هویت بصورت خودکار اعمال میشود."
},
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
- "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
+ "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "تغییرات احراز هویت بصورت خودکار اعمال میشود. ورود تنها با اثرانگشت شاید keyring را باز نکند."
},
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
- "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
+ "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "تغییرات احراز هویت به sudo نیاز دارد. درحال باز کردن ترمینال تا بتوانید از گذرواژه یا اثرانگشت استفاده کنید."
},
"Authentication error - try again": {
- "Authentication error - try again": ""
+ "Authentication error - try again": "خطای احراز هویت - دوباره تلاش کنید"
},
"Authentication failed, please try again": {
"Authentication failed, please try again": "احراز هویت ناموفق بود، لطفا دوباره تلاش کنید"
@@ -717,7 +762,7 @@
"Auto": "خودکار"
},
"Auto (Bar-aware)": {
- "Auto (Bar-aware)": ""
+ "Auto (Bar-aware)": "خودکار (هماهنگ با نوار)"
},
"Auto (Wide)": {
"Auto (Wide)": "خودکار (عریض)"
@@ -729,7 +774,7 @@
"Auto Popup Gaps": "فاصله پاپآپ خودکار"
},
"Auto mode is on. Manual profile selection is disabled.": {
- "Auto mode is on. Manual profile selection is disabled.": ""
+ "Auto mode is on. Manual profile selection is disabled.": "حالت خودکار فعال است. انتخاب پروفایل دستی غیرفعال میباشد."
},
"Auto-Clear After": {
"Auto-Clear After": "پاککردن خودکار پس از"
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "پنهان خودکار داک"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "درحال ذخیره خودکار..."
},
@@ -762,7 +819,7 @@
"Autoconnect enabled": "اتصال خودکار فعال"
},
"Autofill last remembered query when opened": {
- "Autofill last remembered query when opened": ""
+ "Autofill last remembered query when opened": "هنگام باز شدن آخرین پرسوجو به خاطر سپرده شده را خودکار وارد کن"
},
"Automatic Color Mode": {
"Automatic Color Mode": "حالت رنگ خودکار"
@@ -789,7 +846,7 @@
"Automatically determine your location using your IP address": "تشخیص خودکار موقعیت مکانی بر اساس آدرس IP شما"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "بطور خودکار نوار را زمانی که اشارهگر دور میشود پنهان کن"
},
"Automatically lock after": {
"Automatically lock after": "قفل خودکار پس از"
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "خودکارسازی"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "در دسترس"
},
@@ -830,11 +893,14 @@
"Back": {
"Back": "بازگشت"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "بکاند"
},
"Backends: %1": {
- "Backends: %1": ""
+ "Backends: %1": "بکاندها: %1"
},
"Background": {
"Background": "پسزمینه"
@@ -842,11 +908,14 @@
"Background Blur": {
"Background Blur": "تاری پسزمینه"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "شفافیت پسزمینه"
},
"Background authentication sync failed. Trying terminal mode.": {
- "Background authentication sync failed. Trying terminal mode.": ""
+ "Background authentication sync failed. Trying terminal mode.": "همگامسازی احراز هویت در پسزمینه ناموفق بود. درحال تلاش در حالت ترمینال."
},
"Background image": {
"Background image": "تصویر پسزمینه"
@@ -873,19 +942,16 @@
"Bar Transparency": "شفافیت نوار"
},
"Bar corners and background": {
- "Bar corners and background": ""
+ "Bar corners and background": "گوشهها و پسزمینه نوار"
},
"Bar shadow, border, and corners": {
- "Bar shadow, border, and corners": ""
+ "Bar shadow, border, and corners": "سایه، حاشیه و گوشههای نوار"
},
"Bar spacing and size": {
- "Bar spacing and size": ""
- },
- "Bar transparency": {
- "Bar transparency": ""
+ "Bar spacing and size": "فاصلهگذاری نوار و اندازه"
},
"Base color for shadows (opacity is applied automatically)": {
- "Base color for shadows (opacity is applied automatically)": ""
+ "Base color for shadows (opacity is applied automatically)": "رنگ پایه برای سایهها (شفافیت به صورت خودکار اعمال شده است)"
},
"Base duration for animations (drag to use Custom)": {
"Base duration for animations (drag to use Custom)": "مدت زمان پایه برای انیمیشنها (برای استفاده سفارشی بکشید)"
@@ -894,7 +960,7 @@
"Battery": "باتری"
},
"Battery %1": {
- "Battery %1": ""
+ "Battery %1": "باتری %1"
},
"Battery Charge Limit": {
"Battery Charge Limit": "محدودیت شارژ باتری"
@@ -912,7 +978,7 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "صفحه قفل را از loginctl به سیگنال dbus متصل کن. در صورت استفاده از یک صفحه قفل خارجی غیر فعال کنید"
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "اقدام IPC اسپاتلایت را در تنظیمات کامپوزیتور خود نگاشت کنید."
},
"Bind the spotlight-bar IPC action in your compositor config.": {
"Bind the spotlight-bar IPC action in your compositor config.": ""
@@ -927,7 +993,7 @@
"Bit Depth": "عمق بیت"
},
"Black": {
- "Black": ""
+ "Black": "سیاه"
},
"Block Out": {
"Block Out": "مسدود کردن خروج"
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "بلوتوث در دسترس نیست"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "رنگ حاشیه تار"
},
@@ -975,7 +1044,7 @@
"Body": "بدنه"
},
"Bold": {
- "Bold": ""
+ "Bold": "پررنگ"
},
"Border": {
"Border": "حاشیه"
@@ -983,11 +1052,14 @@
"Border Color": {
"Border Color": "رنگ حاشیه"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "شفافیت حاشیه"
},
"Border Radius": {
- "Border Radius": ""
+ "Border Radius": "شعاع حاشیه"
},
"Border Size": {
"Border Size": "اندازه حاشیه"
@@ -996,13 +1068,16 @@
"Border Thickness": "ضخامت حاشیه"
},
"Border Width": {
- "Border Width": ""
+ "Border Width": "پهنای حاشیه"
},
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "رنگ حاشیه دور سطوح تار"
},
- "Border with BG": {
- "Border with BG": "حاشیه با پسزمینه"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "پایین"
@@ -1086,7 +1161,7 @@
"CUPS not available": "CUPS در دسترس نیست"
},
"Calendar": {
- "Calendar": ""
+ "Calendar": "گاهشمار"
},
"Camera": {
"Camera": "دوربین"
@@ -1101,22 +1176,22 @@
"Canceled": "لغو شد"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "حذف تنها ادمین ممکن نیست"
},
"Cannot disable the only output": {
- "Cannot disable the only output": ""
+ "Cannot disable the only output": "نمیتوان تنها خروجی را غیرفعال کرد"
},
"Cannot open trash: '%1' is not installed": {
- "Cannot open trash: '%1' is not installed": ""
+ "Cannot open trash: '%1' is not installed": "سطل زباله باز نمیشود: '%1' نصب نشده است"
},
"Cannot open trash: no custom command set": {
- "Cannot open trash: no custom command set": ""
+ "Cannot open trash: no custom command set": "زبالهدان باز نمیشود: هیچ دستور سفارشی تنظیم نشده است"
},
"Cannot pair": {
"Cannot pair": "جفتسازی امکانپذیر نیست"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "حذف تنها ادمین ممکن نیست"
},
"Capabilities": {
"Capabilities": "قابلیتها"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "قفل حروف بزرگ روشن است"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "بخش مرکزی"
},
@@ -1155,10 +1236,10 @@
"Change bar appearance": "نمای ظاهری نوار را تغییر بده"
},
"Change the locale used by the DMS interface.": {
- "Change the locale used by the DMS interface.": ""
+ "Change the locale used by the DMS interface.": "زبان استفاده شده توسط رابط DMS را تغییر دهید."
},
"Change the locale used for date and time formatting, independent of the interface language.": {
- "Change the locale used for date and time formatting, independent of the interface language.": ""
+ "Change the locale used for date and time formatting, independent of the interface language.": "منطقه محلی برای قالببندی تاریخ و زمان را مستقل از زبان رابط تغییر دهید."
},
"Channel": {
"Channel": "کانال"
@@ -1170,28 +1251,25 @@
"Check for system updates": "بررسی برای بروزرسانیهای سیستم"
},
"Check interval": {
- "Check interval": ""
+ "Check interval": "بازه زمانی بررسی"
},
"Check on startup": {
- "Check on startup": ""
+ "Check on startup": "بررسی هنگام راهاندازی"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
- "Check your custom command in Settings → Dock → Trash.": ""
+ "Check your custom command in Settings → Dock → Trash.": "دستور سفارشی خود را در تنظیمات ← داک ← زبالهدان، بررسی کنید."
},
"Checking for updates...": {
- "Checking for updates...": ""
+ "Checking for updates...": "بررسی برای بروزرسانیها..."
},
"Checking whether sudo authentication is needed…": {
- "Checking whether sudo authentication is needed…": ""
+ "Checking whether sudo authentication is needed…": "درحال بررسی نیاز به احراز هویت sudo…"
},
"Checking...": {
- "Checking...": ""
+ "Checking...": "درحال بررسی..."
},
"Checking…": {
"Checking…": "درحال بررسی..."
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "یک رنگ انتخاب کنید"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "انتخاب رنگها از پالت رنگی"
},
@@ -1224,13 +1305,13 @@
"Choose how the weather widget is displayed": "انتخاب کنید که ابزارک آب و هوا چگونه نمایش داده شود"
},
"Choose how this bar resolves shadow direction": {
- "Choose how this bar resolves shadow direction": ""
+ "Choose how this bar resolves shadow direction": "انتخاب کنید که این نوار چگونه جهت سایه را مشخص کند"
},
"Choose icon": {
"Choose icon": "انتخاب آیکون"
},
"Choose monochrome or a theme color tint for system tray icons": {
- "Choose monochrome or a theme color tint for system tray icons": ""
+ "Choose monochrome or a theme color tint for system tray icons": "تک رنگ یا رنگ سایه تم را برای آیکونهای سینی سیستم انتخاب کنید"
},
"Choose the background color for widgets": {
"Choose the background color for widgets": "رنگ پسزمینه برای ابزارکها انتخاب کنید"
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "انتخاب کنید که کدام نمایشگرهای بر صفحه نمایان شوند"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "انتخاب کنید که کدام نمایشگرها این ابزارک را نشان دهند"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "دایره"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "رجکس کلاس (مانند ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "مدیریت کلیپبورد"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "کلیپبورد ارسال شد"
},
- "Clipboard service not available": {
- "Clipboard service not available": "سرویس کلیپبورد در دسترس نیست"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "کلیپبورد کار میکند اما چیزی در دیسک ذخیره نمیشود"
},
@@ -1362,7 +1449,7 @@
"Color": "رنگ"
},
"Color %1 copied": {
- "Color %1 copied": ""
+ "Color %1 copied": "رنگ %1 کپی شد"
},
"Color Gamut": {
"Color Gamut": "طیف رنگ"
@@ -1425,11 +1512,14 @@
"Column Width": "طول ستون"
},
"Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": {
- "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": ""
+ "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": "لیست نام نشستها برای پنهانسازی، با کاما از هم جدا شدهاند. برای عبارت باقاعده بین دو اسلش قرار دهید (مانند /^_.*/)."
},
"Command": {
"Command": "دستور"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "دستورات"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "تنظیمات کامپازیتور"
},
- "Compositor not supported": {
- "Compositor not supported": "کامپازیتور پشتیبانی نمیشود"
- },
"Config Format": {
"Config Format": "تنظیم قالب"
},
@@ -1491,7 +1578,7 @@
"Configure match criteria and actions": "پیکربندی انطباق معیار و اقدامات"
},
"Configure one in Settings → Dock → Trash.": {
- "Configure one in Settings → Dock → Trash.": ""
+ "Configure one in Settings → Dock → Trash.": "یکی را در تنظیمات ← داک ← زبالهدان، پیکربندی کنید."
},
"Configure which displays show \"%1": {
"Configure which displays show \"%1\"": "تنظیم کنید که کدام نمایشگرها «%1» را نشان دهند"
@@ -1512,7 +1599,7 @@
"Confirm passkey for ": "تأیید کلید عبور برای "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "تأیید گذرواژه"
},
"Conflicts with: %1": {
"Conflicts with: %1": "تداخل با: %1"
@@ -1542,16 +1629,16 @@
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
},
"Connected Options": {
- "Connected Options": ""
+ "Connected Options": "گزینههای متصل"
},
"Connected to %1": {
- "Connected to %1": ""
+ "Connected to %1": "متصل به %1"
},
"Connecting to Device": {
"Connecting to Device": "درحال اتصال به دستگاه"
},
"Connecting to clipboard service…": {
- "Connecting to clipboard service…": ""
+ "Connecting to clipboard service…": "درحال اتصال به سرویس کلیپبورد…"
},
"Connecting...": {
"Connecting...": "درحال اتصال..."
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "کنتراست"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "مرکز کنترل"
},
@@ -1593,10 +1683,10 @@
"Control workspaces and columns by scrolling on the bar": "کنترل محیطکارها و ستونها با اسکرول روی نوار"
},
"Controls how much original icon color is removed before applying tint": {
- "Controls how much original icon color is removed before applying tint": ""
+ "Controls how much original icon color is removed before applying tint": "کنترل میکند که قبل از اعمال سایهی رنگ، چه مقدار از رنگ اصلی آیکون حذف شود"
},
"Controls how strongly the selected tint color is applied": {
- "Controls how strongly the selected tint color is applied": ""
+ "Controls how strongly the selected tint color is applied": "کنترل میکند که سایهی رنگ انتخابی چقدر قوی اعمال شود"
},
"Controls opacity of all popouts, modals, and their content layers": {
"Controls opacity of all popouts, modals, and their content layers": "میزان شفافیت همه پاپآپها، مودالها و لایههای محتوای آنها را کنترل میکند"
@@ -1617,10 +1707,13 @@
"Controls the transparency of the shadow": "شفافیت سایه را کنترل میکند"
},
"Convenience options for the login screen. Sync to apply.": {
- "Convenience options for the login screen. Sync to apply.": ""
+ "Convenience options for the login screen. Sync to apply.": "گزینههای راحتی برای صفحه قفل. برای اعمال شدن همگامسازی را انجام دهید."
+ },
+ "Convert to DMS": {
+ "Convert to DMS": ""
},
"Cooldown": {
- "Cooldown": "زمان باقی مانده"
+ "Cooldown": "زمان باقیمانده"
},
"Copied GIF": {
"Copied GIF": "گیف کپی شد"
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "کپی PID"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": "کپی متن"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "گوشهها و پسزمینه"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "فقط تعداد"
},
@@ -1689,13 +1782,13 @@
"Create Printer": "ایجاد چاپگر"
},
"Create User": {
- "Create User": ""
+ "Create User": "ساخت کاربر"
},
"Create Window Rule": {
"Create Window Rule": "ایجاد قاعده پنجره"
},
"Create a new %1 session (n)": {
- "Create a new %1 session (n)": ""
+ "Create a new %1 session (n)": "ساخت یک نشست %1 جدید (n)"
},
"Create rule for:": {
"Create rule for:": "ایجاد قاعده برای:"
@@ -1704,7 +1797,7 @@
"Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.": "برای بیصدا کردن، نادیده گرفتن، مخفیسازی از تاریخچه، یا تغییر اولویت اعلانها قواعدی ایجاد کنید. در حالت پیشفرض، تنها اولویت تغییر میکند؛ اعلانها همچنان بهصورت عادی نمایش داده میشوند."
},
"Created plugin directory: %1": {
- "Created plugin directory: %1": ""
+ "Created plugin directory: %1": "دایرکتوری افزونه ساخته شد: %1"
},
"Creating...": {
"Creating...": "درحال ایجاد..."
@@ -1713,19 +1806,13 @@
"Critical Priority": "اولویت حیاتی"
},
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
+ "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: جابجایی بین تبها • Ctrl+S: سنجاق/برداشتن سنجاق • Shift+Del: پاک کردن همه • Esc: بستن"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: جابجایی بین تبها • Ctrl+S: سنجاق/برداشتن سنجاق • Shift+Enter: کپی • Shift+Del: پاک کردن همه • F10: راهنما • Esc: بستن"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: جابجایی بین تبها • Ctrl+S: سنجاق/برداشتن سنجاق • Shift+Enter: الصاق • Shift+Del: پاک کردن همه • F10: راهنما • Esc: بستن"
},
"Current": {
"Current": "کنونی"
@@ -1734,7 +1821,7 @@
"Current Items": "آیتمهای کنونی"
},
"Current Locale": {
- "Current Locale": ""
+ "Current Locale": "زبان فعلی"
},
"Current Monitor": {
"Current Monitor": "مانیتور کنونی"
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "تم اشارهگر موس"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1815,10 +1905,10 @@
"Custom Reboot Command": "دستور راهاندازی مجدد سفارشی"
},
"Custom Shadow Color": {
- "Custom Shadow Color": ""
+ "Custom Shadow Color": "رنگ سایه سفارشی"
},
"Custom Shadow Override": {
- "Custom Shadow Override": ""
+ "Custom Shadow Override": "جایگزینی سایه سفارشی"
},
"Custom Suspend Command": {
"Custom Suspend Command": "دستور تعلیق سفارشی"
@@ -1830,7 +1920,7 @@
"Custom command and terminal params are split on whitespace; paths with spaces will break.": ""
},
"Custom open-trash command": {
- "Custom open-trash command": ""
+ "Custom open-trash command": "دستور سفارشی باز کردن زبالهدان"
},
"Custom power profile": {
"Custom power profile": "پروفایل پاور سفارشی"
@@ -1839,7 +1929,7 @@
"Custom theme loaded from JSON file": "تم سفارشی از فایل JSON بارگذاری شد"
},
"Custom update command": {
- "Custom update command": ""
+ "Custom update command": "دستور بروزرسانی سفارشی"
},
"Custom...": {
"Custom...": "سفارشی..."
@@ -1860,16 +1950,16 @@
"DEMO MODE - Click anywhere to exit": "حالت آزمایشی - برای خروج بر هرجایی کلیک کنید"
},
"DMS Chooser": {
- "DMS Chooser": ""
+ "DMS Chooser": "انتخاب کننده DMS"
},
"DMS Plugin Manager Unavailable": {
"DMS Plugin Manager Unavailable": "مدیریت افزونه DMS در دسترس نیست"
},
"DMS Settings": {
- "DMS Settings": ""
+ "DMS Settings": "تنظیمات DMS"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "میانبرهای DMS"
@@ -1877,11 +1967,14 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS بروز نیست"
},
"DMS server is outdated (API v%1, expected v%2)": {
- "DMS server is outdated (API v%1, expected v%2)": ""
+ "DMS server is outdated (API v%1, expected v%2)": "سرور DMS قدیمی است (API نسخهٔ %1، نسخهٔ مورد انتظار %2)"
},
"DMS service is not connected. Clipboard settings are unavailable.": {
"DMS service is not connected. Clipboard settings are unavailable.": "سرویس DMS قطع میباشد. تنظیمات کلیپبورد در دسترس نیست."
@@ -1920,10 +2013,10 @@
"Dark Mode": "حالت تاریک"
},
"Dark mode base": {
- "Dark mode base": ""
+ "Dark mode base": "پایه حالت تاریک"
},
"Dark mode harmony": {
- "Dark mode harmony": ""
+ "Dark mode harmony": "هارمونی حالت تاریک"
},
"Darken Modal Background": {
"Darken Modal Background": "تیرهکردن پسزمینه مودال"
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "قالب تاریخ"
},
- "Date format": {
- "Date format": "قالب تاریخ"
- },
"Date format on greeter": {
"Date format on greeter": "قالب تاریخ در صفحه خوشآمدگویی"
},
@@ -1968,16 +2058,16 @@
"Default (Black)": "پیشفرض (سیاه)"
},
"Default (Global)": {
- "Default (Global)": ""
+ "Default (Global)": "پیشفرض (سراسری)"
},
"Default Apps": {
- "Default Apps": ""
+ "Default Apps": "برنامههای پیشفرض"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "لانچر پیشفرض"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "میانبر پیشفرض لانچر"
},
"Default Opens": {
"Default Opens": ""
@@ -2007,7 +2097,7 @@
"Delete": "حذف"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "«%1» حذف و دایرکتوری خانه پاک شود؟ این قابل بازگشت نیست."
},
"Delete \"%1\"?": {
"Delete \"%1\"?": "«%1» حذف شود؟"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "حذف چاپگر"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "مورد ذخیرهشده حذف شود؟"
},
@@ -2031,19 +2124,19 @@
"Delete profile \"%1\"?": "پروفایل «%1» حذف شود؟"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "حذف کاربر"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "کاربر حذف شود؟"
},
"Demi Bold": {
- "Demi Bold": ""
+ "Demi Bold": "نیمه پررنگ"
},
"Dependencies & documentation": {
- "Dependencies & documentation": ""
+ "Dependencies & documentation": "وابستگیها و مستندات"
},
"Depth": {
- "Depth": ""
+ "Depth": "عمق"
},
"Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": {
"Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": ""
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "دسکتاپ"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "ساعت دسکتاپ"
},
@@ -2076,10 +2172,10 @@
"Detailed": "با جزئیات"
},
"Details for \"%1": {
- "Details for \"%1\"": ""
+ "Details for \"%1\"": "جزئیات برای «%1»"
},
"Detected backends: %1": {
- "Detected backends: %1": ""
+ "Detected backends: %1": "بکاند های شناسایی شده: %1"
},
"Development": {
"Development": "توسعه"
@@ -2103,13 +2199,13 @@
"Digital": "دیجیتال"
},
"Direction Source": {
- "Direction Source": ""
+ "Direction Source": "منبع جهت"
},
"Directional": {
- "Directional": ""
+ "Directional": "جهتدار"
},
"Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": {
- "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": ""
+ "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": "جهتدار: پنلها از فاصلهای بیشتر و با اندازه کامل وارد میشوند — بدون تغییر مقیاس، حرکتی کاملاً تمیز."
},
"Disable Autoconnect": {
"Disable Autoconnect": "غیرفعال کردن اتصال خودکار"
@@ -2127,11 +2223,14 @@
"Disabled": "غیرفعال"
},
"Disabled by Frame Mode": {
- "Disabled by Frame Mode": ""
+ "Disabled by Frame Mode": "غیرفعال شده توسط حالت قاب"
},
"Disabling WiFi...": {
"Disabling WiFi...": "غیرفعالسازی وایفای..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "دیسک"
},
@@ -2214,7 +2313,10 @@
"Display hourly weather predictions": "نمایش پیشبینیهای ساعتی آب و هوا"
},
"Display line numbers in editor": {
- "Display line numbers in editor": ""
+ "Display line numbers in editor": "نمایش شماره خطوط در ویرایشگر"
+ },
+ "Display name for this entry": {
+ "Display name for this entry": ""
},
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "فقط محیطکارهایی که شامل پنجره هستند را نمایش بده"
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "نمایش ثانیه در ساعت"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "نمایش منوی پاور سیستم"
},
@@ -2262,10 +2367,7 @@
"Dock Visibility": "وضعیت نمایش داک"
},
"Dock margin, transparency, and border": {
- "Dock margin, transparency, and border": ""
- },
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
+ "Dock margin, transparency, and border": "فاصله داخلی، شفافیت و حاشیه داک"
},
"Docs": {
"Docs": "مستندات"
@@ -2307,7 +2409,7 @@
"Drizzle": "بارانریزه"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "جایگزینی شما برای %1 حذف شود تا عملکرد پیشفرض DMS دوباره اعمال گردد؟"
},
"Duplicate": {
"Duplicate": "تکثیر"
@@ -2340,7 +2442,7 @@
"Dynamic colors from wallpaper": "رنگهای پویا از تصویر پسزمینه"
},
"Dynamic colors parse error: %1": {
- "Dynamic colors parse error: %1": ""
+ "Dynamic colors parse error: %1": "خطای تجزیه رنگهای پویا: %1"
},
"Dynamic colors, presets": {
"Dynamic colors, presets": "رنگهای پویا، پیشتنظیمها"
@@ -2352,19 +2454,22 @@
"Edge Spacing": "فاصله لبه"
},
"Edge the launcher slides from": {
- "Edge the launcher slides from": ""
+ "Edge the launcher slides from": "لبهای که لانچر از آن بیرون میلغزد"
},
"Edit App": {
"Edit App": "ویرایش برنامه"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "ویرایش کلیپبورد"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "ویرایش قاعده پنجره"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "ویرایش متن کلیپبورد"
},
"Education": {
"Education": "آموزش"
@@ -2373,13 +2478,13 @@
"Empty": "خالی"
},
"Empty Trash": {
- "Empty Trash": ""
+ "Empty Trash": "خالی کردن زبالهدان"
},
"Empty Trash (%1)": {
- "Empty Trash (%1)": ""
+ "Empty Trash (%1)": "خالی کردن زبالهدان (%1)"
},
"Empty Trash?": {
- "Empty Trash?": ""
+ "Empty Trash?": "آیا زبالهدان خالی شود؟"
},
"Enable 10-bit color depth for wider color gamut and HDR support": {
"Enable 10-bit color depth for wider color gamut and HDR support": "فعالکردن عمق رنگ ۱۰ بیت برای طیف رنگ عریضتر و پشتیبانی HDR"
@@ -2394,7 +2499,7 @@
"Enable Do Not Disturb": "فعالکردن مزاحم نشوید"
},
"Enable Frame": {
- "Enable Frame": ""
+ "Enable Frame": "فعال کردن قاب"
},
"Enable History": {
"Enable History": "فعالکردن تاریخچه"
@@ -2418,7 +2523,7 @@
"Enable WiFi": "فعال کردن وایفای"
},
"Enable a custom override below to set per-bar shadow intensity, opacity, and color.": {
- "Enable a custom override below to set per-bar shadow intensity, opacity, and color.": ""
+ "Enable a custom override below to set per-bar shadow intensity, opacity, and color.": "یک جایگزینی سفارشی در زیر فعال کنید تا شدت سایه، شفافیت و رنگ به ازای هر نوار تنظیم شود."
},
"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 است."
@@ -2430,7 +2535,7 @@
"Enable fingerprint authentication": "فعالکردن احراز هویت با اثرانگشت"
},
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
- "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
+ "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": "اثرانگشت یا کلید امنیتی را برای صفحه خوشآمدگویی DMS فعال کن. تغییرات احراز هویت به طور خودکار اعمال میشوند."
},
"Enable loginctl lock integration": {
"Enable loginctl lock integration": "فعالکردن یکپارچهسازی قفل loginctl"
@@ -2445,34 +2550,34 @@
"Enabled": "فعال"
},
"Enabled, but fingerprint availability could not be confirmed.": {
- "Enabled, but fingerprint availability could not be confirmed.": ""
+ "Enabled, but fingerprint availability could not be confirmed.": "فعال، اما دردسترس بودن اثرانگشت تأیید نشد."
},
"Enabled, but no fingerprint reader was detected.": {
- "Enabled, but no fingerprint reader was detected.": ""
+ "Enabled, but no fingerprint reader was detected.": "فعال، اما هیچ دستگاه اثرانگشتخوانی شناسایی نشد."
},
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
- "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
+ "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "فعال، اما هیچ اثرانگشتی هنوز ثبت نشده است. تغییرات احراز هویت پس از ثبت اثر انگشت به طور خودکار اعمال میشوند."
},
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
- "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
+ "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "فعال، اما هیچ اثرانگشتی هنوز ثبت نشده است. اثرانگشتها را ثبت کرده و همگامسازی را اجرا کنید."
},
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
- "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
+ "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "فعال، اما هنوز هیچ کلید امنیتی یافت نشده است. تغییرات احراز هویت پس از ثبت کلید یا بروزرسانی پیکربندی U2F به طور خودکار اعمال میشوند."
},
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
- "Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
+ "Enabled, but no registered security key was found yet. Register a key and run Sync.": "فعال، اما هنوز هیچ کلید امنیتی یافت نشده است. یک کلید را ثبت کرده و همگامسازی را اجرا کنید."
},
"Enabled, but security-key availability could not be confirmed.": {
- "Enabled, but security-key availability could not be confirmed.": ""
+ "Enabled, but security-key availability could not be confirmed.": "فعال، اما دردسترس بودن کلید امنیتی تأیید نشد."
},
"Enabled. PAM already provides fingerprint auth.": {
- "Enabled. PAM already provides fingerprint auth.": ""
+ "Enabled. PAM already provides fingerprint auth.": "فعال. درحال حاضر PAM احراز هویت اثرانگشت را ارائه میدهد."
},
"Enabled. PAM already provides security-key auth.": {
- "Enabled. PAM already provides security-key auth.": ""
+ "Enabled. PAM already provides security-key auth.": "فعال. درحال حاضر PAM احراز کلید امنیتی را ارائه میدهد."
},
"Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": {
- "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": ""
+ "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "فعال. PAM احراز هویت اثرانگشت را ارائه میدهد، اما هیچ اثرانگشتی هنوز ثبت نشده است."
},
"Enabling WiFi...": {
"Enabling WiFi...": "فعالسازی وایفای..."
@@ -2499,13 +2604,13 @@
"Enter URL or text to share": "متن یا URL برای اشتراکگذاری وارد کنید"
},
"Enter a new name for session \"%1": {
- "Enter a new name for session \"%1\"": ""
+ "Enter a new name for session \"%1\"": "یک نام جدید برای نشست «%1» وارد کنید"
},
"Enter a new name for this workspace": {
"Enter a new name for this workspace": "نام جدید برای این محیطکار وارد کنید"
},
"Enter command or script path": {
- "Enter command or script path": ""
+ "Enter command or script path": "دستور یا مسیر اسکریپت را وارد کنید"
},
"Enter credentials for ": {
"Enter credentials for ": "ورود اعتبارنامهها برای "
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "شرکت"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "مدخل سنجاق شد"
},
@@ -2562,16 +2670,16 @@
"Ethernet": "اترنت"
},
"Every 15 minutes": {
- "Every 15 minutes": ""
+ "Every 15 minutes": "هر ۱۵ دقیقه"
},
"Every 30 minutes": {
- "Every 30 minutes": ""
+ "Every 30 minutes": "هر ۳۰ دقیقه"
},
"Every 4 hours": {
- "Every 4 hours": ""
+ "Every 4 hours": "هر ۴ ساعت"
},
"Every hour": {
- "Every hour": ""
+ "Every hour": "هر ساعت"
},
"Exact": {
"Exact": "دقیق"
@@ -2580,7 +2688,7 @@
"Exclusive Zone Offset": "آفست ناحیه انحصاری"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "کاربران موجود"
},
"Experimental Feature": {
"Experimental Feature": "قابلیت آزمایشی"
@@ -2592,7 +2700,7 @@
"Exponential": "نمایی"
},
"Expose the Arcs": {
- "Expose the Arcs": ""
+ "Expose the Arcs": "نمایش قوسها"
},
"Expressive": {
"Expressive": "پررنگ"
@@ -2610,10 +2718,10 @@
"Extra Arguments": "آرگومانهای اضافی"
},
"Extra Bold": {
- "Extra Bold": ""
+ "Extra Bold": "بسیار پررنگ"
},
"Extra Light": {
- "Extra Light": ""
+ "Extra Light": "بسیار کمرنگ"
},
"F1/I: Toggle • F10: Help": {
"F1/I: Toggle • F10: Help": "F1/I: تغییر حالت • F10: راهنما"
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "فعالسازی پیکربندی ناموفق بود"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "فعالسازی پروفایل ناموفق بود - فایل یافت نشد"
- },
"Failed to add binds include": {
"Failed to add binds include": "افزودن include نگاشتها ناموفق بود"
},
@@ -2643,13 +2748,13 @@
"Failed to add printer to class": "افزودن چاپگر به کلاس ناموفق بود"
},
"Failed to apply GTK colors": {
- "Failed to apply GTK colors": ""
+ "Failed to apply GTK colors": "اعمال رنگهای GTK ناموفق بود"
},
"Failed to apply Qt colors": {
- "Failed to apply Qt colors": ""
+ "Failed to apply Qt colors": "اعمال رنگهای Qt ناموفق بود"
},
"Failed to apply profile": {
- "Failed to apply profile": ""
+ "Failed to apply profile": "اعمال پروفایل ناموفق بود"
},
"Failed to browse device": {
"Failed to browse device": "مرور دستگاه ناموفق بود"
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "لغو کار چاپ انتخاب شده ناموفق بود"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": ""
- },
"Failed to check pin limit": {
"Failed to check pin limit": "بررسی محدودیت سنجاق ناموفق بود"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "ایجاد چاپگر ناموفق بود"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "ساخت دایرکتوری پروفایلها ناموفق بود"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "حذف VPN ناموفق بود"
},
@@ -2697,7 +2796,7 @@
"Failed to disable night mode": "غیرفعالکردن حال شب ناموفق بود"
},
"Failed to disable plugin: %1": {
- "Failed to disable plugin: %1": ""
+ "Failed to disable plugin: %1": "غیرفعال کردن افزونه ناموفق بود: %1"
},
"Failed to disconnect VPN": {
"Failed to disconnect VPN": "قطع اتصال از VPN ناموفق بود"
@@ -2709,7 +2808,7 @@
"Failed to disconnect WiFi": "قطع اتصال وایفای ناموفق بود"
},
"Failed to empty trash": {
- "Failed to empty trash": ""
+ "Failed to empty trash": "خالی کردن زبالهدان ناموفق بود"
},
"Failed to enable IP location": {
"Failed to enable IP location": "فعالکردن موقعیت مکانی IP ناموفق بود"
@@ -2724,10 +2823,13 @@
"Failed to enable night mode": "فعالکردن حالت شب ناموفق بود"
},
"Failed to enable plugin: %1": {
- "Failed to enable plugin: %1": ""
+ "Failed to enable plugin: %1": "فعال کردن افزونه ناموفق بود: %1"
},
"Failed to fetch network QR code: %1": {
- "Failed to fetch network QR code: %1": ""
+ "Failed to fetch network QR code: %1": "دریافت کد QR شبکه ناموفق بود: %1"
+ },
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
},
"Failed to hold job": {
"Failed to hold job": "نگهداشتن کار چاپ ناموفق بود"
@@ -2748,7 +2850,7 @@
"Failed to move job": "انتقال کار چاپ ناموفق بود"
},
"Failed to move to trash": {
- "Failed to move to trash": ""
+ "Failed to move to trash": "انتقال به زبالهدان ناموفق بود"
},
"Failed to parse plugin_settings.json": {
"Failed to parse plugin_settings.json": "تجزیه فایل plugin_settings.json ناموفق بود"
@@ -2769,16 +2871,16 @@
"Failed to print test page": "چاپ صفحه تست ناموفق بود"
},
"Failed to read theme file: %1": {
- "Failed to read theme file: %1": ""
+ "Failed to read theme file: %1": "خواندن فایل تم ناموفق بود: %1"
},
"Failed to reject pairing": {
"Failed to reject pairing": "رد کردن اتصال ناموفق بود"
},
"Failed to reload plugin: %1": {
- "Failed to reload plugin: %1": ""
+ "Failed to reload plugin: %1": "بارگذاری دوباره افزونه ناموفق بود: %1"
},
"Failed to remove QR code at %1: %2": {
- "Failed to remove QR code at %1: %2": ""
+ "Failed to remove QR code at %1: %2": "حذف کد QR در %1 ناموفق بود: %2"
},
"Failed to remove device": {
"Failed to remove device": "حذف دستگاه ناموفق بود"
@@ -2802,7 +2904,7 @@
"Failed to ring device": "زنگ زدن دستگاه ناموفق بود"
},
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": {
- "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": ""
+ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "اجرای 'dms greeter status' ناموفق بود. از نصب DMS و بودن dms در PATH اطمینان حاصل نمایید."
},
"Failed to save audio config": {
"Failed to save audio config": "ذخیره پیکربندی صوتی ناموفق بود"
@@ -2814,10 +2916,7 @@
"Failed to save keybind": "ذخیره نگاشتکلید ناموفق بود"
},
"Failed to save profile": {
- "Failed to save profile": ""
- },
- "Failed to save profile file": {
- "Failed to save profile file": "ذخیره فایل پروفایل ناموفق بود"
+ "Failed to save profile": "ذخیره پروفایل ناموفق بود"
},
"Failed to send clipboard": {
"Failed to send clipboard": "ارسال کلیپبورد ناموفق بود"
@@ -2841,7 +2940,7 @@
"Failed to set night mode temperature": "تنظیم دمای حالت شب ناموفق بود"
},
"Failed to set power profile": {
- "Failed to set power profile": ""
+ "Failed to set power profile": "تنظیم پروفایل پاور ناموفق بود"
},
"Failed to set profile image": {
"Failed to set profile image": "تنظیم تصویر نمایه ناموفق بود"
@@ -2865,7 +2964,7 @@
"Failed to update autoconnect": "بروزرسانی اتصال خودکار ناموفق بود"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "بروزرسانی کلیپبورد ناموفق بود"
},
"Failed to update description": {
"Failed to update description": "بروزرسانی توضیحات ناموفق بود"
@@ -2876,11 +2975,17 @@
"Failed to update sharing": {
"Failed to update sharing": "بروزرسانی اشتراکگذاری ناموفق بود"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "نوشتن فایل موقت برای اعتبارسنجی ناموفق بود"
},
"Failed: %1": {
- "Failed: %1": ""
+ "Failed: %1": "ناموفق: %1"
},
"Features": {
"Features": "ویژگیها"
@@ -2910,10 +3015,10 @@
"File Information": "اطلاعات فایل"
},
"File Manager": {
- "File Manager": ""
+ "File Manager": "برنامه مدیریت فایل"
},
"File manager used to open the trash. Pick \"custom\" to enter your own command.": {
- "File manager used to open the trash. Pick \"custom\" to enter your own command.": ""
+ "File manager used to open the trash. Pick \"custom\" to enter your own command.": "مدیر فایل استفاده شده برای زبالهدان. «سفارشی» را انتخاب کرده تا دستور خود را وارد کنید."
},
"File received from": {
"File received from": "فایل دریافت شده از"
@@ -2922,7 +3027,7 @@
"File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "جستجوی فایل به dsearch نیاز دارد\nاز github.com/morelazers/dsearch نصب کنید"
},
"File search unavailable": {
- "File search unavailable": ""
+ "File search unavailable": "جستجوی فایل دردسترس نیست"
},
"Files": {
"Files": "فایلها"
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "پُر"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "یافتن در متن"
},
@@ -2943,28 +3051,25 @@
"Fine-tune the space reserved for the bar from the screen edge": ""
},
"Fingerprint availability could not be confirmed.": {
- "Fingerprint availability could not be confirmed.": ""
+ "Fingerprint availability could not be confirmed.": "دردسترس بودن اثرانگشت تأیید نشد."
},
"Fingerprint error": {
- "Fingerprint error": ""
- },
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
+ "Fingerprint error": "خطای اثرانگشت"
},
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
- "Fingerprint not recognized (%1/%2). Please try again or use password.": ""
+ "Fingerprint not recognized (%1/%2). Please try again or use password.": "اثرانگشت شناسایی نشد (%1/%2). لطفا دوباره تلاش کرده یا از گذرواژه استفاده کنید."
},
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
- "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
+ "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "دستگاه اثرانگشتخوان شناسایی شد، اما هنوز هیچ اثرانگشتی ثبت نشده است. شما میتوانید این را فعال کرده و بعدا ثبت کنید."
},
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": {
- "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": ""
+ "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": "دستگاه اثرانگشتخوان شناسایی شد، اما هنوز هیچ اثرانگشتی ثبت نشده است. شما میتوانید این را فعال کرده و بعدا همگامسازی را اجرا کنید."
},
"Finish": {
"Finish": "پایان"
},
"First Day of Week": {
- "First Day of Week": ""
+ "First Day of Week": "روز اول هفته"
},
"First Time Setup": {
"First Time Setup": "راهاندازی اولیه"
@@ -2996,18 +3101,30 @@
"Float": {
"Float": "شناور"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
- "Fluent": ""
+ "Fluent": "فلوئنت"
},
"Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.": {
- "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.": ""
+ "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.": "فلوئنت: شتاب مکعبی نرم آهسته در ورود، خروج سریع و ناگهانی — منحنیهای تمیز و زیبا"
},
"Focus": {
"Focus": "فوکوس"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "فوکوس در هنگام راهاندازی"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "حاشیه فوکوس"
},
@@ -3015,13 +3132,13 @@
"Focused Color": "رنگ فوکوس شده"
},
"Focused Monitor Only": {
- "Focused Monitor Only": ""
+ "Focused Monitor Only": "فقط مانیتور فوکوس شده"
},
"Focused Window": {
"Focused Window": "پنجره فوکوسشده"
},
"Focused monitor only": {
- "Focused monitor only": ""
+ "Focused monitor only": "فقط مانیتور فوکوس شده"
},
"Fog": {
"Fog": "مه"
@@ -3033,7 +3150,7 @@
"Folders": "پوشهها"
},
"Follow DMS background color": {
- "Follow DMS background color": ""
+ "Follow DMS background color": "از رنگ پسزمینه DMS پیروی کن"
},
"Follow Monitor Focus": {
"Follow Monitor Focus": "فوکوس مانیتور را دنبال کن"
@@ -3063,25 +3180,25 @@
"Font used on the login screen": "قلم استفاده شده در صفحه ورود"
},
"For 1 hour": {
- "For 1 hour": ""
+ "For 1 hour": "برای ۱ ساعت"
},
"For 15 minutes": {
- "For 15 minutes": ""
+ "For 15 minutes": "برای ۱۵ دقیقه"
},
"For 3 hours": {
- "For 3 hours": ""
+ "For 3 hours": "برای ۳ ساعت"
},
"For 30 minutes": {
- "For 30 minutes": ""
+ "For 30 minutes": "برای ۳۰ دقیقه"
},
"For 8 hours": {
- "For 8 hours": ""
+ "For 8 hours": "برای ۸ ساعت"
},
"For editing plain text files": {
- "For editing plain text files": ""
+ "For editing plain text files": "برای ویرایش کردن فایلهای متنی ساده"
},
"For reading PDF files": {
- "For reading PDF files": ""
+ "For reading PDF files": "برای خواندن فایلهای PDF"
},
"Force HDR": {
"Force HDR": "اجبار HDR"
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "بستن اجباری (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "اجبار رنگ عریض"
},
@@ -3105,7 +3225,7 @@
"Forecast Not Available": "پیشبینی موجود نیست"
},
"Foreground Layers": {
- "Foreground Layers": ""
+ "Foreground Layers": "لایههای پیشزمینه"
},
"Forever": {
"Forever": "برای همیشه"
@@ -3128,23 +3248,17 @@
"Format Legend": {
"Format Legend": "راهنمای قالببندی"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": ""
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": ""
- },
"Frame": {
- "Frame": ""
+ "Frame": "قاب"
},
"Frame Blur": {
- "Frame Blur": "فریم تار"
+ "Frame Blur": "تاری قاب"
},
"Frame Blur follows Background Blur in Theme & Colors": {
- "Frame Blur follows Background Blur in Theme & Colors": "فریم تار از پسزمینه تار در بخش تم و رنگها پیروی میکند"
+ "Frame Blur follows Background Blur in Theme & Colors": "تاری قاب از پسزمینه تار در بخش تم و رنگها پیروی میکند"
},
"Frame Border Color": {
- "Frame Border Color": ""
+ "Frame Border Color": "رنگ حاشیه قاب"
},
"Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": {
"Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": "هنگامی که لانچر بسته شد VRAM/حافظه را آزاد کن. ممکن است باعث اندکی تأخیر هنگام باز کردن مجدد شود."
@@ -3159,7 +3273,7 @@
"Fruit Salad": "رنگارنگ"
},
"Full": {
- "Full": ""
+ "Full": "کامل"
},
"Full Command:": {
"Full Command:": "دستور کامل:"
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "روز کامل و ماه"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "کامل با سال"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": "تمامصفحه"
},
@@ -3201,10 +3315,10 @@
"GPU Temperature": "دمای GPU"
},
"GPU temperature display": {
- "GPU temperature display": ""
+ "GPU temperature display": "نمایش دمای GPU"
},
"GTK colors applied successfully": {
- "GTK colors applied successfully": ""
+ "GTK colors applied successfully": "رنگهای GTK با موفقیت اعمال شدند"
},
"GTK, Qt, IDEs, more": {
"GTK, Qt, IDEs, more": "GTK، Qt، IDEها و بیشتر"
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "کنترل گاما در دسترس نیست. نیاز به DMS API نسخه ۶ به بالا دارد."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
},
@@ -3231,7 +3348,7 @@
"GitHub": "گیتهاب"
},
"Global fonts can be configured in Settings → Personalization": {
- "Global fonts can be configured in Settings → Personalization": ""
+ "Global fonts can be configured in Settings → Personalization": "قلمهای سراسری میتوانند در تنظیمات ← شخصیسازی، پیکربندی شوند"
},
"Globally scale all animation durations": {
"Globally scale all animation durations": "مدت تمام انیمیشنها را سراسری مقیاس کن"
@@ -3255,19 +3372,19 @@
"Gradually fade the screen before turning off monitors with a configurable grace period": "قبل از خاموش شدن مانیتورها، صفحه را با یک دوره زمانی قابل تنظیم به تدریج محو کن"
},
"Grant": {
- "Grant": ""
+ "Grant": "اعطا کن"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "دسترسی ادمین اعطا شود؟"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "اعطای دسترسی ادمین"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "دسترسی ادمین اعطا شد"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "اعطای دسترسی ورود صفحه خوشآمدگویی"
},
"Graph Time Range": {
"Graph Time Range": "بازه زمانی نمودار"
@@ -3294,10 +3411,10 @@
"Greeter font": "قلم صفحه خوشآمدگویی"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "اعضای گروه صفحه خوشآمدگویی میتوانند تم صفحه ورود خود را با dms greeter sync --profile پس از خروج و ورود مجدد همگامسازی کنند."
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "گروه صفحه خوشآمدگویی:"
},
"Greeter only — does not affect main clock": {
"Greeter only — does not affect main clock": "فقط صفحه خوشآمدگویی - بر ساعت اصلی تأثیر ندارد"
@@ -3351,16 +3468,16 @@
"HSV": "HSV"
},
"HSV %1 copied": {
- "HSV %1 copied": ""
+ "HSV %1 copied": "HSV %1 کپی شد"
},
"HTML copied to clipboard": {
"HTML copied to clipboard": "کد HTML در کلیپبورد کپی شد"
},
"Handles links and opens HTML files": {
- "Handles links and opens HTML files": ""
+ "Handles links and opens HTML files": "پیوندها را مدیریت و فایلهای HTML را باز میکند"
},
"Handles mailto links": {
- "Handles mailto links": ""
+ "Handles mailto links": "پیوندهای mailto را مدیریت میکند"
},
"Health": {
"Health": "سلامت"
@@ -3390,7 +3507,7 @@
"Hibernate": "هایبرنیت"
},
"Hibernate failed": {
- "Hibernate failed": ""
+ "Hibernate failed": "هایبرنیت ناموفق بود"
},
"Hidden": {
"Hidden": "پنهان"
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "پنهان کردن نشانگرها"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "پنهانکردن ابزارک بروزرسان"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "هنگام تایپ پنهان کن"
},
@@ -3456,19 +3567,19 @@
"Hide on Touch": "هنگام لمس پنهان کن"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "زمانی که اشارهگر میرود نوار را پنهان کن حتی اگر هنوز یک پاپآپ باز باشد"
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "پالت رنگی با دقت بالا که رنگهای اصلی را حفظ میکند."
},
"Highlight Active Workspace App": {
- "Highlight Active Workspace App": ""
+ "Highlight Active Workspace App": "برجسته کردن برنامه فعال محیطکار"
},
"Highlight the currently focused app inside workspace indicators": {
- "Highlight the currently focused app inside workspace indicators": ""
+ "Highlight the currently focused app inside workspace indicators": "برنامه فوکوس شده فعلی درون نشانگرهای محیطکار را برجسته کن"
},
"History": {
"History": "تاریخچه"
@@ -3501,7 +3612,7 @@
"Home": "خانه"
},
"Horizontal and vertical bar thickness": {
- "Horizontal and vertical bar thickness": ""
+ "Horizontal and vertical bar thickness": "ضخامت نوار افقی و عمودی"
},
"Host": {
"Host": "هاست"
@@ -3525,19 +3636,19 @@
"Hourly Forecast Count": "تعداد پیشبینیهای ساعتی"
},
"How often the server polls for new updates.": {
- "How often the server polls for new updates.": ""
+ "How often the server polls for new updates.": "چند وقت یکبار سرور درخواست بهروزرسانیهای جدید را کند."
},
"How often to change wallpaper": {
"How often to change wallpaper": "چند وقت یکبار تصویر پسزمینه تغییر کند"
},
"How the background image is scaled": {
- "How the background image is scaled": ""
+ "How the background image is scaled": "تصویر پسزمینه چگونه مقیاس شود"
},
"Humidity": {
"Humidity": "رطوبت"
},
"Hyprland Discord Server": {
- "Hyprland Discord Server": ""
+ "Hyprland Discord Server": "سرور دیسکورد هایپرلند"
},
"Hyprland Layout Overrides": {
"Hyprland Layout Overrides": "جایگزینیهای چیدمان هایپرلند"
@@ -3546,10 +3657,16 @@
"Hyprland Options": "گزینههای هایپرلند"
},
"Hyprland Website": {
- "Hyprland Website": ""
+ "Hyprland Website": "وبسایت هایپرلند"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "متوجه شدم"
@@ -3561,7 +3678,7 @@
"IP Address:": "آدرس IP:"
},
"IP address or hostname": {
- "IP address or hostname": ""
+ "IP address or hostname": "آدرس IP یا نام میزبان"
},
"ISO Date": {
"ISO Date": "تاریخ ISO"
@@ -3582,22 +3699,25 @@
"Icon Theme": "تم آیکون"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "هشدارهای یکسان بهجای روی هم قرار گرفتن به صورت یک پاپآپ نمایش داده میشوند"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "هشدارهای یکسان به صورت کارتهای اعلان جداگانه روی هم قرار میگیرند"
},
"Idle": {
"Idle": "بیکار"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "مهارگر بیکاری"
},
"Idle Settings": {
"Idle Settings": "تنظیمات بیکاری سیستم"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "نظارت بر بیکاری سیستم پشتیبانی نمیشود - به نسخه بروزتر Quickshell نیاز است"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "اگر فیلد پنهان باشد، به محض فشردن کلید پدیدار میشود."
@@ -3609,7 +3729,7 @@
"Image": "تصویر"
},
"Image Viewer": {
- "Image Viewer": ""
+ "Image Viewer": "نمایشگر تصویر"
},
"Image copied to clipboard": {
"Image copied to clipboard": "تصویر در کلیپبورد کپی شد"
@@ -3624,16 +3744,16 @@
"Inactive Monitor Color": "رنگ مانیتور غیرفعال"
},
"Include AUR updates": {
- "Include AUR updates": ""
+ "Include AUR updates": "بروزرسانیهای AUR شامل شود"
},
"Include Files in All Tab": {
- "Include Files in All Tab": ""
+ "Include Files in All Tab": "فایلها را در تب همه شامل کن"
},
"Include Flatpak updates": {
- "Include Flatpak updates": ""
+ "Include Flatpak updates": "بروزرسانیهای فلتپک شامل شود"
},
"Include Folders in All Tab": {
- "Include Folders in All Tab": ""
+ "Include Folders in All Tab": "پوشهها را در تب همه شامل کن"
},
"Include Transitions": {
"Include Transitions": "اضافهکردن گذارها"
@@ -3648,13 +3768,13 @@
"Incorrect password": "گذرواژه نادرست"
},
"Incorrect password - attempt %1 of %2 (lockout may follow)": {
- "Incorrect password - attempt %1 of %2 (lockout may follow)": ""
+ "Incorrect password - attempt %1 of %2 (lockout may follow)": "گذرواژه نادرست - تلاش %1 از %2 (ممکن است قفل شدن حساب را به دنبال داشته باشد)"
},
"Incorrect password - next failures may trigger account lockout": {
- "Incorrect password - next failures may trigger account lockout": ""
+ "Incorrect password - next failures may trigger account lockout": "گذرواژه نادرست - شکستهای بعدی میتوانند باعث قفل شدن حساب شوند"
},
"Incorrect password - try again": {
- "Incorrect password - try again": ""
+ "Incorrect password - try again": "گذرواژه نادرست - دوباره تلاش کنید"
},
"Indicator Style": {
"Indicator Style": "استایل نشانگر"
@@ -3672,13 +3792,16 @@
"Inherit": "ارثبردن"
},
"Inherit Global (Default)": {
- "Inherit Global (Default)": ""
+ "Inherit Global (Default)": "ارثبری از حالت سراسری (پیشفرض)"
},
"Inhibitable": {
"Inhibitable": "قابل جلوگیری"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "فاصله درونی اعمال شده به هر ابزارک"
},
"Input Devices": {
"Input Devices": "دستگاههای ورودی"
@@ -3687,7 +3810,7 @@
"Input Volume Slider": "اسلایدر حجم صدای ورودی"
},
"Insert your security key...": {
- "Insert your security key...": ""
+ "Insert your security key...": "کلید امنیتی خود را وارد کنید..."
},
"Install": {
"Install": "نصب"
@@ -3708,7 +3831,7 @@
"Install complete. Greeter has been installed.": "نصب به اتمام رسید. صفحه خوشآمدگویی نصب شد."
},
"Install dsearch to search files.": {
- "Install dsearch to search files.": ""
+ "Install dsearch to search files.": "برای جستجوی فایلها dsearch را نصب کنید."
},
"Install failed: %1": {
"Install failed: %1": "نصب ناموفق بود: %1"
@@ -3723,7 +3846,7 @@
"Install plugins from the DMS plugin registry": "نصب افزونهها از مخزن افزونه DMS"
},
"Install the DMS greeter? A terminal will open for sudo authentication.": {
- "Install the DMS greeter? A terminal will open for sudo authentication.": ""
+ "Install the DMS greeter? A terminal will open for sudo authentication.": "صفحه خوشآمدگویی DMS نصب شود؟ یک ترمینال برای احراز هویت sudo باز خواهد شد."
},
"Install theme '%1' from the DMS registry?": {
"Install theme '%1' from the DMS registry?": "آیا میخواهید تم '%1' را از مخزن DMS نصب کنید؟"
@@ -3741,7 +3864,7 @@
"Installing: %1": "درحال نصب: %1"
},
"Integrations": {
- "Integrations": ""
+ "Integrations": "یکپارچهسازیها"
},
"Intelligent Auto-hide": {
"Intelligent Auto-hide": "پنهان خودکار هوشمند"
@@ -3762,16 +3885,16 @@
"Interval": "وقفه"
},
"Invalid JSON format: %1": {
- "Invalid JSON format: %1": ""
+ "Invalid JSON format: %1": "قالب JSON نامعتبر: %1"
},
"Invalid configuration": {
"Invalid configuration": "پیکربندی نامعتبر"
},
"Invalid password for %1": {
- "Invalid password for %1": ""
+ "Invalid password for %1": "گذرواژه نامعتبر برای %1"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "نامکاربری نامعتبر"
},
"Invert on mode change": {
"Invert on mode change": "معکوس هنگام تغییر حالت"
@@ -3795,7 +3918,7 @@
"Keep Changes": "حفظ تغییرات"
},
"Keep typing": {
- "Keep typing": ""
+ "Keep typing": "به تایپ کردن ادامه دهید"
},
"Keeping Awake": {
"Keeping Awake": "بیدار نگه داشتن"
@@ -3828,13 +3951,13 @@
"Keys": "کلیدها"
},
"Kill": {
- "Kill": ""
+ "Kill": "بستن"
},
"Kill Process": {
"Kill Process": "بستن فرایند"
},
"Kill Session": {
- "Kill Session": ""
+ "Kill Session": "بستن نشست"
},
"Ko-fi": {
"Ko-fi": "Ko-fi"
@@ -3843,10 +3966,10 @@
"LED device": "دستگاه LED"
},
"LabWC IRC Channel": {
- "LabWC IRC Channel": ""
+ "LabWC IRC Channel": "کانال IRC برای LabWC"
},
"LabWC Website": {
- "LabWC Website": ""
+ "LabWC Website": "وبسایت LabWC"
},
"Large": {
"Large": "بزرگ"
@@ -3861,22 +3984,22 @@
"Last launched %1": "آخرین اجرا %1"
},
"Last launched %1 day ago": {
- "Last launched %1 day ago": ""
+ "Last launched %1 day ago": "آخرین اجرا در %1 روز پیش"
},
"Last launched %1 days ago": {
- "Last launched %1 days ago": ""
+ "Last launched %1 days ago": "آخرین اجرا در %1 روز پیش"
},
"Last launched %1 hour ago": {
- "Last launched %1 hour ago": ""
+ "Last launched %1 hour ago": "آخرین اجرا در %1 ساعت پیش"
},
"Last launched %1 hours ago": {
- "Last launched %1 hours ago": ""
+ "Last launched %1 hours ago": "آخرین اجرا در %1 ساعت پیش"
},
"Last launched %1 minute ago": {
- "Last launched %1 minute ago": ""
+ "Last launched %1 minute ago": "آخرین اجرا در %1 دقیقه پیش"
},
"Last launched %1 minutes ago": {
- "Last launched %1 minutes ago": ""
+ "Last launched %1 minutes ago": "آخرین اجرا در %1 دقیقه پیش"
},
"Last launched just now": {
"Last launched just now": "آخرین اجرا به تازگی"
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "اجرا با dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "لانچر"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -3921,7 +4038,7 @@
"Layout Overrides": "جایگزینیهای چیدمان"
},
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": {
- "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": ""
+ "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "چیدمان و موقعیت ماژولها در صفحه خوشآمدگویی از شل شما همگامسازی میشود (مانند تنظیمات نوار وضعیت). برای اعمال همگامسازی را اجرا کنید."
},
"Left": {
"Left": "چپ"
@@ -3933,10 +4050,10 @@
"Left Section": "بخش چپ"
},
"Light": {
- "Light": ""
+ "Light": "کمرنگ"
},
"Light Direction": {
- "Light Direction": ""
+ "Light Direction": "جهت نور"
},
"Light Mode": {
"Light Mode": "حالت روشن"
@@ -3951,16 +4068,16 @@
"Light Snow Showers": "برف پراکنده"
},
"Light mode base": {
- "Light mode base": ""
+ "Light mode base": "پایه حالت روشن"
},
"Light mode harmony": {
- "Light mode harmony": ""
+ "Light mode harmony": "هارمونی حالت روشن"
},
"Line": {
"Line": "خط"
},
"Line: %1": {
- "Line: %1": ""
+ "Line: %1": "خط: %1"
},
"Linear": {
"Linear": "خطی"
@@ -3993,10 +4110,10 @@
"Local": "محلی"
},
"Locale": {
- "Locale": ""
+ "Locale": "زبان"
},
"Locale Settings": {
- "Locale Settings": ""
+ "Locale Settings": "تنظیمات زبان"
},
"Location": {
"Location": "مکان"
@@ -4032,7 +4149,7 @@
"Lock fade grace period": "بازه زمانی محو شدن تدریجی قفل"
},
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
- "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
+ "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "تغییرات احراز هویت صفحه قفل بصورت خودکار اعمال میشوند و شاید ترمینالی هنگامی که احراز هویت sudo نیاز باشد، باز شود."
},
"Locked": {
"Locked": "قفل شده"
@@ -4040,17 +4157,14 @@
"Log Out": {
"Log Out": "خروج"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "درحال ورود..."
},
"Login": {
- "Login": ""
+ "Login": "ورود"
},
"Login Authentication": {
- "Login Authentication": ""
+ "Login Authentication": "احراز هویت ورود"
},
"Long": {
"Long": "طولانی"
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "طول جغرافیایی"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "اولویت پایین"
},
@@ -4074,16 +4191,16 @@
"MTU": "MTU"
},
"Mail": {
- "Mail": ""
+ "Mail": "نامه"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "تبدیل به ادمین"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "از اجرای KDE Connect یا Valent در دستگاههای دیگر خود اطمینان حاصل کنید"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "پسزمینه نوار را کاملا شفاف کن"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "مدیریت و پیکربندی افزونهها برای گسترش کارایی DMS"
@@ -4092,22 +4209,19 @@
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "مدیریت حداکثر ۴ پیکربندی مستقل برای نوارها. هر نوار موقعیت، ابزارکها، استایل و نحوه نمایش خاص خود را دارد."
},
"Managed by Frame": {
- "Managed by Frame": ""
- },
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
+ "Managed by Frame": "توسط قاب مدیریت شده است"
},
"Managed by Frame in Connected Mode": {
- "Managed by Frame in Connected Mode": ""
+ "Managed by Frame in Connected Mode": "توسط قاب در حالت متصل مدیریت شده است"
},
"Management": {
"Management": "مدیریت"
},
"Manages calendar events": {
- "Manages calendar events": ""
+ "Manages calendar events": "رویدادهای گاهشمار را مدیریت میکند"
},
"Manages files and directories": {
- "Manages files and directories": ""
+ "Manages files and directories": "فایلها و دایرکتوریها را مدیریت میکند"
},
"MangoWC Layout Overrides": {
"MangoWC Layout Overrides": "جایگزینیهای چیدمان MangoWC"
@@ -4119,7 +4233,7 @@
"Manual Coordinates": "مختصات دستی"
},
"Manual Direction": {
- "Manual Direction": ""
+ "Manual Direction": "جهت دستی"
},
"Manual Gap Size": {
"Manual Gap Size": "اندازه فاصله دستی"
@@ -4128,7 +4242,7 @@
"Manual Show/Hide": "نمایش/پنهان دستی"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "پیکربندی دستی"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "نام کلاس پنجرهها را برای نمایش مناسب آیکون به نام آیکونها نگاشت کنید"
@@ -4148,14 +4262,17 @@
"Marker Waste Full": {
"Marker Waste Full": "ضایعات مارکر پر است"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "انطباق معیار"
},
- "Matches profile: %1": {
- "Matches profile: %1": "منطبق با پروفایل: %1"
- },
"Material": {
- "Material": ""
+ "Material": "متریال"
},
"Material Colors": {
"Material Colors": "رنگهای Material"
@@ -4167,10 +4284,10 @@
"Material colors generated from wallpaper": "رنگهای متریال گرفته شده از تصویر پسزمینه"
},
"Material inspired shadows and elevation on modals, popouts, and dialogs": {
- "Material inspired shadows and elevation on modals, popouts, and dialogs": ""
+ "Material inspired shadows and elevation on modals, popouts, and dialogs": "سایهها و ارتفاع الهامگرفته از متریال در مودالها، پنجرههای بازشو و دیالوگها"
},
"Material: Material Design 3 Expressive bezier curves. The DMS default feel.": {
- "Material: Material Design 3 Expressive bezier curves. The DMS default feel.": ""
+ "Material: Material Design 3 Expressive bezier curves. The DMS default feel.": "متریال: منحنیهای بزیه بیانی Material Design 3. حس پیشفرض DMS."
},
"Matugen Contrast": {
"Matugen Contrast": "کنتراست Matugen"
@@ -4239,7 +4356,7 @@
"Maximum Pinned Entries": "بیشینه مدخلهای سنجاق شده"
},
"Maximum fingerprint attempts reached. Please use password.": {
- "Maximum fingerprint attempts reached. Please use password.": ""
+ "Maximum fingerprint attempts reached. Please use password.": "بیشینه تلاش برای اثرانگشت تکمیل شده است. لطفا از گذرواژه استفاده کنید."
},
"Maximum number of clipboard entries to keep": {
"Maximum number of clipboard entries to keep": "بیشینه تعداد مدخلهای کلیپبورد برای نگهداری"
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "تنظیمات پخشکننده رسانه"
},
- "Media Players": {
- "Media Players": ""
- },
"Media Players (": {
"Media Players (": "پخشکنندههای رسانه ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "کمینه W"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "پالت رنگی مینیمال ساختهشده حول یک رنگ."
},
@@ -4362,7 +4473,7 @@
"Modal Background": "پسزمینه مودال"
},
"Modal Shadows": {
- "Modal Shadows": ""
+ "Modal Shadows": "سایه مودالها"
},
"Modals": {
"Modals": "مودالها"
@@ -4395,7 +4506,7 @@
"Monitor whose wallpaper drives dynamic theming colors": "مانیتوری که تصویر پسزمینه آن رنگهای تم پویا را تعیین میکند"
},
"Monitors in \"%1\":": {
- "Monitors in \"%1\":": ""
+ "Monitors in \"%1\":": "مانیتورها در «%1»:"
},
"Monochrome": {
"Monochrome": "تکرنگ"
@@ -4413,13 +4524,13 @@
"Morning": "صبح"
},
"Motion Effects": {
- "Motion Effects": ""
+ "Motion Effects": "جلوههای حرکتی"
},
"Mount Points": {
"Mount Points": "نقاط اتصال"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "کلیک موس از نوار عبور کند تا به پنجره پشت آن برسد"
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "نمای ظاهری اشارهگر موس"
@@ -4434,7 +4545,7 @@
"Move Widget": "انتقال ابزارک"
},
"Move to Trash": {
- "Move to Trash": ""
+ "Move to Trash": "انتقال به زبالهدان"
},
"Moving to Paused": {
"Moving to Paused": "انتقال به حالت متوقف شده"
@@ -4443,22 +4554,22 @@
"Multi-Monitor": "چند مانیتوره"
},
"Multimedia": {
- "Multimedia": ""
+ "Multimedia": "چندرسانهای"
},
"Multiplexer": {
- "Multiplexer": ""
+ "Multiplexer": "مالتیپلکسر"
},
"Multiplexer Type": {
- "Multiplexer Type": ""
+ "Multiplexer Type": "نوع مالتیپلکسر"
},
"Multiplexers": {
- "Multiplexers": ""
+ "Multiplexers": "مالتیپلکسرها"
},
"Music": {
"Music": "موسیقی"
},
"Music Player": {
- "Music Player": ""
+ "Music Player": "پخشکننده موسیقی"
},
"Mute Popups": {
"Mute Popups": "پاپآپها بیصدا شوند"
@@ -4476,7 +4587,7 @@
"Muted palette with subdued, calming tones.": "پالت رنگی ساکت با تنهای ملایم و آرامشبخش."
},
"My Online": {
- "My Online": ""
+ "My Online": "برخط من"
},
"NM not supported": {
"NM not supported": "NM پشتیبانی نمیشود"
@@ -4487,11 +4598,14 @@
"Named Workspace Icons": {
"Named Workspace Icons": "آیکون محیطکارهای نامدار"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
- "Native: platform renderer (FreeType).": ""
+ "Native: platform renderer (FreeType).": "محلی: نماپرداز سکو (FreeType)."
},
"Navigate": {
- "Navigate": ""
+ "Navigate": "پیمایش"
},
"Navigation": {
"Navigation": "پیمایش"
@@ -4521,7 +4635,7 @@
"Network download and upload speed display": "نمایش سرعت بارگیری و بارگذاری شبکه"
},
"Network not found": {
- "Network not found": ""
+ "Network not found": "شبکه یافت نشد"
},
"Neutral": {
"Neutral": "خنثی"
@@ -4530,7 +4644,7 @@
"Never": "هرگز"
},
"Never used": {
- "Never used": ""
+ "Never used": "هرگز استفاده نشده"
},
"New": {
"New": "جدید"
@@ -4545,7 +4659,7 @@
"New Notification": "اعلان جدید"
},
"New Session": {
- "New Session": ""
+ "New Session": "نشست جدید"
},
"New Window Rule": {
"New Window Rule": "قاعده پنجره جدید"
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "بدون پسزمینه"
},
- "No Battery": {
- "No Battery": "بدون باتری"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "آداپتور بلوتوثی یافت نشد"
},
@@ -4644,7 +4755,7 @@
"No VPN profiles": "هیچ پروفایل VPNای یافت نشد"
},
"No Weather": {
- "No Weather": ""
+ "No Weather": "هیچ آب و هوایی یافت نشد"
},
"No Weather Data": {
"No Weather Data": "بدون داده آب و هوا"
@@ -4656,10 +4767,10 @@
"No action": "بدون اقدام"
},
"No active %1 sessions": {
- "No active %1 sessions": ""
+ "No active %1 sessions": "هیچ نشست فعال %1 وجود ندارد"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "هیچ نشست فعالی برای %1 یافت نشد"
},
"No adapter": {
"No adapter": "بدون آداپتور"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "هیچ سفارشیسازی برنامهای موجود نیست."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "هیچ برنامهای یافت نشد"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "هیچ برنامهای بیصدا نشده است. برای افزودن یکی به اینجا روی اعلان راستکلیک کرده و «بیصدا کردن پاپآپها» را انتخاب کنید."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "بدون باتری"
},
@@ -4710,7 +4827,7 @@
"No disk data available": "داده دیسک در دسترس نیست"
},
"No display profiles found. Create them in Settings > Displays.": {
- "No display profiles found. Create them in Settings > Displays.": ""
+ "No display profiles found. Create them in Settings > Displays.": "هیچ نمایشگری یافت نشد. آنها را در تنظیمات > نمایشگرها ایجاد کنید."
},
"No drivers found": {
"No drivers found": "درایوری یافت نشد"
@@ -4734,13 +4851,13 @@
"No hidden apps.": "هیچ برنامه پنهانی موجود نیست."
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "هیچ حساب کاربری انسانی یافت نشد."
},
"No info items": {
"No info items": "مورد اطلاعاتی وجود ندارد"
},
"No information available": {
- "No information available": ""
+ "No information available": "هیچ اطلاعاتی دردسترس نیست"
},
"No input device": {
"No input device": "بدون دستگاه ورودی"
@@ -4764,7 +4881,7 @@
"No matches": "موردی پیدا نشد"
},
"No matching devices": {
- "No matching devices": ""
+ "No matching devices": "دستگاه منطبقی یافت نشد"
},
"No matching processes": {
"No matching processes": "فرآیند موردنظر یافت نشد"
@@ -4776,7 +4893,7 @@
"No mount points found": "هیچ نقاط اتصالی یافت نشد"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "هیچ نشست فعال دیگری در این ورودی وجود ندارد"
},
"No output device": {
"No output device": "بدون دستگاه خروجی"
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "هیچ دستگاه خروجیای یافت نشد"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": ""
- },
"No peers found": {
"No peers found": "هیچ گرهای یافت نشد"
},
@@ -4815,7 +4929,7 @@
"No recent clipboard entries found": "هیچ مدخل کلیپبورد اخیری یافت نشد"
},
"No results": {
- "No results": ""
+ "No results": "بدون نتیجه"
},
"No results found": {
"No results found": "هیچ نتیجهای یافت نشد"
@@ -4824,19 +4938,19 @@
"No saved clipboard entries": "هیچ مدخل کلیپبوردی ذخیره نشده است"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "هیچ نشستی انتخاب نشده است"
},
"No sessions found": {
- "No sessions found": ""
+ "No sessions found": "هیچ نشستی یافت نشد"
},
"No status output.": {
- "No status output.": ""
+ "No status output.": "وضعیتی برای نمایش نیست."
},
"No supported package manager found.": {
- "No supported package manager found.": ""
+ "No supported package manager found.": "هیچ مدیر بسته پشتیبانیشدهای یافت نشد."
},
"No terminal configured": {
- "No terminal configured": ""
+ "No terminal configured": "هیچ ترمینالی پیکربندی نشده است"
},
"No themes found": {
"No themes found": "هیچ تمی یافت نشد"
@@ -4848,16 +4962,16 @@
"No trigger": "بدون راهانداز"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "هیچ کاربری مشخص نشده است"
},
"No video found in folder": {
- "No video found in folder": ""
+ "No video found in folder": "هیچ ویدئویی در پوشه یافت نشد"
},
"No wallpaper selected": {
"No wallpaper selected": "تصویر پسزمینهای انتخاب نشده"
},
"No wallpapers": {
- "No wallpapers": ""
+ "No wallpapers": "هیچ تصویر پسزمینهای یافت نشد"
},
"No wallpapers found\n\nClick the folder icon below to browse": {
"No wallpapers found\n\nClick the folder icon below to browse": "هیچ تصویر پسزمینهای یافت نشد\n\nروی آیکون پوشه زیر برای مرور کلیک کنید"
@@ -4877,11 +4991,14 @@
"No window rules configured": {
"No window rules configured": "هیچ قاعده پنجرهای پیکربندی نشده"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "هیچکدام"
},
"None active": {
- "None active": ""
+ "None active": "هیچکدام فعال نیستند"
},
"Normal": {
"Normal": "عادی"
@@ -4896,19 +5013,19 @@
"Not available": "در دسترس نیست"
},
"Not available — install fprintd and pam_fprintd, or configure greetd PAM.": {
- "Not available — install fprintd and pam_fprintd, or configure greetd PAM.": ""
+ "Not available — install fprintd and pam_fprintd, or configure greetd PAM.": "دردسترس نیست — fprintd و pam_fprintd را نصب کنید، یا greetd PAM را پیکربندی کنید."
},
"Not available — install fprintd and pam_fprintd.": {
- "Not available — install fprintd and pam_fprintd.": ""
+ "Not available — install fprintd and pam_fprintd.": "دردسترس نیست — fprintd و pam_fprintd را نصب کنید."
},
"Not available — install or configure pam_u2f, or configure greetd PAM.": {
- "Not available — install or configure pam_u2f, or configure greetd PAM.": ""
+ "Not available — install or configure pam_u2f, or configure greetd PAM.": "دردسترس نیست — pam_u2f را نصب یا پیکربندی کنید، یا greetd PAM را پیکربندی کنید."
},
"Not available — install or configure pam_u2f.": {
- "Not available — install or configure pam_u2f.": ""
+ "Not available — install or configure pam_u2f.": "دردسترس نیست — pam_u2f را نصب یا پیکربندی کنید."
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "نگاشت نشده"
},
"Not connected": {
"Not connected": "متصل نیست"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "تشخیص داده نشد"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "جفت نشده"
},
@@ -5007,7 +5127,7 @@
"On": "روشن"
},
"On indefinitely": {
- "On indefinitely": ""
+ "On indefinitely": "روشن بصورت نامحدود"
},
"On-Demand": {
"On-Demand": "هنگام درخواست"
@@ -5019,7 +5139,7 @@
"On-screen Displays": "نمایشگرهای بر صفحه (OSD)"
},
"Once a day": {
- "Once a day": ""
+ "Once a day": "روزی یکبار"
},
"Online": {
"Online": "برخط"
@@ -5028,7 +5148,7 @@
"Only adjust gamma based on time or location rules.": "گاما را فقط بر اساس قواعد زمانی یا مکانی تنظیم کن."
},
"Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": {
- "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": ""
+ "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "فقط روی PAM مدیریت شده توسط DMS تأثیر میگذارد. اگر greetd از قبل شامل pam_fprintd باشد، اثر انگشت فعال میماند."
},
"Only show windows from the current monitor on each dock": {
"Only show windows from the current monitor on each dock": "تنها پنجرهها در مانیتور کنونی را در هر داک نمایش بده"
@@ -5040,10 +5160,10 @@
"Opacity": "شفافیت"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "شفافیت پسزمینه نوار"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "شفافیت پسزمینه ابزارکها"
},
"Opaque": {
"Opaque": "کدر"
@@ -5055,10 +5175,10 @@
"Open App": "باز کردن برنامه"
},
"Open Dir": {
- "Open Dir": ""
+ "Open Dir": "باز کردن مسیر"
},
"Open Frame": {
- "Open Frame": ""
+ "Open Frame": "باز کردن قاب"
},
"Open KDE Connect on your phone": {
"Open KDE Connect on your phone": "برنامه KDE Connect را در گوشی خود باز کنید"
@@ -5067,10 +5187,10 @@
"Open Notepad File": "باز کردن فایل دفترچه یادداشت"
},
"Open Trash": {
- "Open Trash": ""
+ "Open Trash": "باز کردن زبالهدان"
},
"Open Trash With": {
- "Open Trash With": ""
+ "Open Trash With": "باز کردن زبالهدان با"
},
"Open a new note": {
"Open a new note": "باز کردن یادداشت جدید"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "باز کردن فایلها"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
- "Opening terminal: ": ""
+ "Opening terminal: ": "باز کردن ترمینال: "
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "انتخابگر دیگر نشستهای فعال در این ورودی را باز میکند"
},
"Opens image files": {
- "Opens image files": ""
+ "Opens image files": "فایلهای تصویر را باز میکند"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "لانچر متصل را در حالت قاب متصل باز میکند."
},
"Optional description": {
"Optional description": "توضیحات اختیاری"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "مکان اختیاری"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "گزینهها"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "محل خروج پر است"
},
- "Output Device": {
- "Output Device": "دستگاه خروجی"
- },
"Output Devices": {
"Output Devices": "دستگاههای خروجی"
},
@@ -5181,19 +5304,19 @@
"Override Gaps": "جایگزینی فاصلهها"
},
"Override global layout settings for this output": {
- "Override global layout settings for this output": "تنظیمات چیدمان عمومی را برای این خروجی جایگزین کن"
+ "Override global layout settings for this output": "تنظیمات چیدمان سراسری را برای این خروجی جایگزین کن"
},
"Override global transparency for Notepad": {
- "Override global transparency for Notepad": ""
+ "Override global transparency for Notepad": "شفافیت سراسری را برای دفترچه یادداشت جایگزین کن"
},
"Override terminal with a custom command or script": {
- "Override terminal with a custom command or script": ""
+ "Override terminal with a custom command or script": "ترمینال را با دستور سفارشی یا اسکریپت جایگزین کن"
},
"Override the global shadow with per-bar settings": {
- "Override the global shadow with per-bar settings": ""
+ "Override the global shadow with per-bar settings": "سایه سراسری را با تنظیمات هر نوار جایگزین کن"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "اندازه فاصله پاپآپرا وقتی حالت خودکار غیرفعال است جایگزین کن"
},
"Overrides": {
"Overrides": "جایگزینیها"
@@ -5211,22 +5334,22 @@
"Owner: %1": "مالک: %1"
},
"PAM already provides fingerprint auth. Enable this to show it at login.": {
- "PAM already provides fingerprint auth. Enable this to show it at login.": ""
+ "PAM already provides fingerprint auth. Enable this to show it at login.": "درحال حاضر PAM احراز هویت اثرانگشت را ارائه میدهد. این را برای نمایش در ورود فعال کنید."
},
"PAM already provides security-key auth. Enable this to show it at login.": {
- "PAM already provides security-key auth. Enable this to show it at login.": ""
+ "PAM already provides security-key auth. Enable this to show it at login.": "درحال حاضر PAM احراز هویت کلید امنیتی را ارائه میدهد. این را برای نمایش در ورود فعال کنید."
},
"PAM provides fingerprint auth, but availability could not be confirmed.": {
- "PAM provides fingerprint auth, but availability could not be confirmed.": ""
+ "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM احراز هویت اثرانگشت را ارائه میدهد، اما دردسترس آن بودن تأیید نشد."
},
"PAM provides fingerprint auth, but no prints are enrolled yet.": {
- "PAM provides fingerprint auth, but no prints are enrolled yet.": ""
+ "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM احراز هویت اثرانگشت را ارائه میدهد، اما هیچ اثرانگشتی هنوز ثبت نشده است."
},
"PAM provides fingerprint auth, but no reader was detected.": {
- "PAM provides fingerprint auth, but no reader was detected.": ""
+ "PAM provides fingerprint auth, but no reader was detected.": "PAM احراز هویت اثرانگشت را ارائه میدهد، اما هیچ اثرانگشتخوانی تشخیص داده نشده است."
},
"PDF Reader": {
- "PDF Reader": ""
+ "PDF Reader": "PDF خوان"
},
"PIN": {
"PIN": "PIN"
@@ -5238,7 +5361,7 @@
"Pad Hours": "حاشیهگذاری ساعات"
},
"Pad hours (02:00 vs 2:00)": {
- "Pad hours (02:00 vs 2:00)": ""
+ "Pad hours (02:00 vs 2:00)": "ساعت با صفر ابتدا (02:00 یا 2:00)"
},
"Padding": {
"Padding": "فاصله درونی"
@@ -5280,28 +5403,28 @@
"Password": "گذرواژه"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "گذرواژه نمیتواند خالی باشد"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "تغییر گذرواژه ناموفق بود (خروجی %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "گذرواژه تنظیم شد"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "گذرواژه بروز شد"
},
"Password...": {
"Password...": "گذرواژه..."
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "گذرواژهها مطابقت ندارند."
},
"Paste": {
"Paste": "الصاق"
},
"Path to a video file or folder containing videos": {
- "Path to a video file or folder containing videos": ""
+ "Path to a video file or folder containing videos": "مسیر به فایل ویدئو یا پوشهای که دارای ویدئوها است"
},
"Pattern": {
"Pattern": "الگو"
@@ -5337,7 +5460,7 @@
"Performance": "کارایی"
},
"Permanently delete %1 item(s)? This cannot be undone.": {
- "Permanently delete %1 item(s)? This cannot be undone.": ""
+ "Permanently delete %1 item(s)? This cannot be undone.": "%1 آیتم برای همیشه حذف شود؟ این عمل قابل بازگشت نیست."
},
"Permission denied to set profile image.": {
"Permission denied to set profile image.": "اجازه تنظیم تصویر نمایه داده نشد."
@@ -5355,13 +5478,13 @@
"Phone number": "شماره تلفن"
},
"Pick a different file manager in Settings → Dock → Trash.": {
- "Pick a different file manager in Settings → Dock → Trash.": ""
+ "Pick a different file manager in Settings → Dock → Trash.": "یک برنامه مدیریت فایل متفاوت در تنظیمات ← داک ← زبالهدان، انتخاب کنید."
},
"Pick a different random video each time from the same folder": {
- "Pick a different random video each time from the same folder": ""
+ "Pick a different random video each time from the same folder": "هر بار یک ویدئوی تصادفی از همان پوشه انتخاب کن"
},
"Pick a terminal in Settings → Launcher (or set $TERMINAL).": {
- "Pick a terminal in Settings → Launcher (or set $TERMINAL).": ""
+ "Pick a terminal in Settings → Launcher (or set $TERMINAL).": "یک ترمینال در تنظیمات ← لانچر، انتخاب کنید (یا $TERMINAL را تنظیم کنید)."
},
"Pick how long to pause notifications": {
"Pick how long to pause notifications": "انتخاب کنید که اعلانها چه مدت متوقف شوند"
@@ -5394,7 +5517,7 @@
"Pixelate": "پیکسلی کردن"
},
"Place a trash bin at the end of the dock": {
- "Place a trash bin at the end of the dock": ""
+ "Place a trash bin at the end of the dock": "یک زبالهدان در آخر داک قرار بده"
},
"Place plugin directories here. Each plugin should have a plugin.json manifest file.": {
"Place plugin directories here. Each plugin should have a plugin.json manifest file.": "دایرکتوری افزونهها را اینجا قرار دهید. هر افزونه باید فایل مشخصات plugins.json داشته باشد."
@@ -5403,16 +5526,16 @@
"Place plugins in %1": "افزونهها را در %1 قرار بده"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "نوار را روی لایه overlay ویلند قرار بده"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "داک را روی لایه overlay ویلند قرار بده"
},
"Play a video when the screen locks.": {
- "Play a video when the screen locks.": ""
+ "Play a video when the screen locks.": "یک ویدئو هنگامی که صفحه قفل شده پخش شود."
},
"Play sound after logging in": {
- "Play sound after logging in": ""
+ "Play sound after logging in": "پس از ورود صدا پخش کن"
},
"Play sound when new notification arrives": {
"Play sound when new notification arrives": "وقتی اعلان جدید وارد شد صدا را پخش کن"
@@ -5430,19 +5553,19 @@
"Playback": "پخش"
},
"Playback error: ": {
- "Playback error: ": ""
+ "Playback error: ": "خطای پخش: "
},
"Plays audio files": {
- "Plays audio files": ""
+ "Plays audio files": "فایلهای صوتی را باز میکند"
},
"Plays video files": {
- "Plays video files": ""
+ "Plays video files": "فایلهای ویدئو را پخش میکند"
},
"Please wait...": {
"Please wait...": "لطفا صبر کنید..."
},
"Please write a name for your new %1 session": {
- "Please write a name for your new %1 session": ""
+ "Please write a name for your new %1 session": "لطفا یک نام برای نشست جدید %1 خود بنویسید"
},
"Plugged In": {
"Plugged In": "اتصال به برق"
@@ -5463,22 +5586,22 @@
"Plugin Visibility": "نمایانی افزونهها"
},
"Plugin disabled: %1": {
- "Plugin disabled: %1": ""
+ "Plugin disabled: %1": "افزونه غیرفعال شد: %1"
},
"Plugin enabled: %1": {
- "Plugin enabled: %1": ""
+ "Plugin enabled: %1": "افزونه فعال شد: %1"
},
"Plugin is disabled - enable in Plugins settings to use": {
"Plugin is disabled - enable in Plugins settings to use": "افزونه غیرفعال است - برای استفاده آن را در تنظیمات افزونهها فعال کنید"
},
"Plugin reloaded: %1": {
- "Plugin reloaded: %1": ""
+ "Plugin reloaded: %1": "افزونه دوباره بارگذاری شد: %1"
},
"Plugin uninstalled: %1": {
- "Plugin uninstalled: %1": ""
+ "Plugin uninstalled: %1": "افزونه حذف شد: %1"
},
"Plugin updated: %1": {
- "Plugin updated: %1": ""
+ "Plugin updated: %1": "افزونه بروز شد: %1"
},
"Plugins": {
"Plugins": "افزونهها"
@@ -5487,10 +5610,10 @@
"Pointer": "اشارهگر"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "یکپارچهسازی polkit غیرفعال است. مدیریت کاربر برای بالابردن دسترسیها نیاز به polkit دارد."
},
"Popout Shadows": {
- "Popout Shadows": ""
+ "Popout Shadows": "سایه پاپآپها"
},
"Popouts": {
"Popouts": "پاپآپها"
@@ -5507,14 +5630,11 @@
"Popup Shadow": {
"Popup Shadow": "سایه پاپآپ"
},
- "Popup Transparency": {
- "Popup Transparency": "شفافیت پاپآپ"
- },
"Popup behavior, position": {
"Popup behavior, position": "رفتار پاپآپ، مکان"
},
"Port": {
- "Port": ""
+ "Port": "پورت"
},
"Portal": {
"Portal": "پورتال"
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "سفارشیسازی منوی پاور"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "خاموش"
},
@@ -5568,10 +5691,10 @@
"Power source": "منبع پاور"
},
"Pre-fill the last successful username on the greeter": {
- "Pre-fill the last successful username on the greeter": ""
+ "Pre-fill the last successful username on the greeter": "آخرین نام کاربری موفق را در صفحه خودآمدگویی از قبل وارد کن"
},
"Pre-select the last used session on the greeter": {
- "Pre-select the last used session on the greeter": ""
+ "Pre-select the last used session on the greeter": "آخرین نشست استفاده شده را در صفحه خوشآمدگویی از قبل انتخاب کن"
},
"Precip": {
"Precip": "بارش"
@@ -5589,7 +5712,7 @@
"Preset Widths (%)": "عرضهای از پیش تعیین شده (%)"
},
"Press 'n' or click 'New Session' to create one": {
- "Press 'n' or click 'New Session' to create one": ""
+ "Press 'n' or click 'New Session' to create one": "برای ساخت یکی دکمه 'n' را فشار دهید یا بر «نشست جدید» کلیک کنید"
},
"Press Enter and the audio system will restart to apply the change": {
"Press Enter and the audio system will restart to apply the change": "دکمه Enter را فشار دهید و سیستم صوتی برای اعمال تغییرات راهاندازی مجدد خواهد شد"
@@ -5637,7 +5760,7 @@
"Printer name (no spaces)": "نام چاپگر (بدون فاصله)"
},
"Printer reachable": {
- "Printer reachable": ""
+ "Printer reachable": "چاپگر دردسترس است"
},
"Printers": {
"Printers": "چاپگرها"
@@ -5694,7 +5817,7 @@
"Profile not found": "پروفایل یافت نشد"
},
"Profile not found in monitors.json": {
- "Profile not found in monitors.json": ""
+ "Profile not found in monitors.json": "پروفایل در monitors.json یافت نشد"
},
"Profile saved: %1": {
"Profile saved: %1": "پروفایل ذخیره شد: %1"
@@ -5702,20 +5825,23 @@
"Protocol": {
"Protocol": "پروتکل"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
- "Qt colors applied successfully": ""
+ "Qt colors applied successfully": "رنگهای Qt با موفقیت اعمال شدند"
},
"Qt: distance-field renderer.": {
- "Qt: distance-field renderer.": ""
+ "Qt: distance-field renderer.": "Qt: نماپرداز میدان فاصله."
},
"QtMultimedia is not available": {
- "QtMultimedia is not available": ""
+ "QtMultimedia is not available": "QtMultimedia در دسترس نیست"
},
"QtMultimedia is not available - video screensaver requires qt multimedia services": {
- "QtMultimedia is not available - video screensaver requires qt multimedia services": ""
+ "QtMultimedia is not available - video screensaver requires qt multimedia services": "QtMultimedia دردسترس نیست - صفحه محافظ ویدئویی به سرویسهای qt multimedia نیاز دارد"
},
"Quality": {
- "Quality": ""
+ "Quality": "کمیت"
},
"Quick Access": {
"Quick Access": "دسترسی سریع"
@@ -5757,7 +5883,10 @@
"Rate": "نرخ انتقال"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "گذرواژه را دوباره وارد کنید"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "خواندن:"
@@ -5769,7 +5898,7 @@
"Reboot": "راهاندازی مجدد"
},
"Recent": {
- "Recent": ""
+ "Recent": "اخیر"
},
"Recent Colors": {
"Recent Colors": "رنگهای اخیر"
@@ -5787,13 +5916,13 @@
"Refresh Weather": "تازهسازی آب و هوا"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "درحال تازهسازی…"
},
"Regex": {
"Regex": "رجکس"
},
"Regular": {
- "Regular": ""
+ "Regular": "عادی"
},
"Reject": {
"Reject": "رد کردن"
@@ -5808,73 +5937,76 @@
"Reload Plugin": "بارگذاری مجدد افزونه"
},
"Remaining": {
- "Remaining": ""
+ "Remaining": "باقیمانده"
},
"Remaining / Total": {
- "Remaining / Total": ""
+ "Remaining / Total": "باقیمانده / کل"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "آخرین حالت"
},
"Remember Last Query": {
- "Remember Last Query": ""
+ "Remember Last Query": "آخرین پرسوجو را به خاطر بسپار"
},
"Remember last session": {
- "Remember last session": ""
+ "Remember last session": "آخرین نشست را به خاطر بسپار"
},
"Remember last user": {
- "Remember last user": ""
+ "Remember last user": "آخرین کاربر را به خاطر بسپار"
},
"Remove": {
"Remove": "حذف"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "«%1» از گروه %2 حذف شود؟"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "میانبر حذف شود؟"
},
"Remove Widget Padding": {
"Remove Widget Padding": "حذف فاصله درونی ابزارک"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "حذف ادمین"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "ادمین حذف شود؟"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "گردی گوشه را از نوار حذف کن"
},
"Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "حذف فاصلهها و حاشیه هنگام بزرگکردن پنجرهها"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "دسترسی صفحه خوشآمدگویی حذف شود؟"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "حذف دسترسی ورود صفحه خوشآمدگویی"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "حذف فاصلههای درونی از تمام ابزارکها"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "میانبر %1 حذف شود؟"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "میانبر %1 حذف شود؟ یک مدخل نگاشت نشده در dms/binds-user.lua ذخیره میشود تا در بروزرسانیهای DMS حذف شده باقی بماند."
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "حذف دسترسیهای ادمین"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "دسترسی ورود صفحه خوشآمدگویی حذف شده"
},
"Rename": {
"Rename": "تغییر نام"
},
"Rename Session": {
- "Rename Session": ""
+ "Rename Session": "تغییر نام نشست"
},
"Rename Workspace": {
"Rename Workspace": "تغییر نام محیطکار"
@@ -5895,7 +6027,7 @@
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "برای تأیید خاموش، راهاندازی مجدد، تعلیق، هایبرنیت و خروج، نگه داشتن دکمه/کلید را الزام کن"
},
"Required plugin: ": {
- "Required plugin: ": ""
+ "Required plugin: ": "افزونه مورد نیاز: "
},
"Requires %1": {
"Requires %1": "به %1 نیاز دارد"
@@ -5913,11 +6045,14 @@
"Requires DWL compositor": "به کامپازیتور DWL نیاز دارد"
},
"Requires a newer version of Quickshell": {
- "Requires a newer version of Quickshell": ""
+ "Requires a newer version of Quickshell": "به نسخه جدیدتر Quickshell نیاز دارد"
},
"Requires night mode support": {
"Requires night mode support": "به پشتیبانی حالت شب نیاز دارد"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "تنظیم مجدد"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "تنظیم مجدد اندازه"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "به پیشفرض بازنشانده شود؟"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "بازنشاندن به پیشفرض"
},
"Reset to default name": {
"Reset to default name": "تنظیم مجدد به نام پیشفرض"
@@ -5955,7 +6090,7 @@
"Restarting audio system...": "راهاندازی مجدد سیستم صوتی..."
},
"Restore Special Workspace Windows": {
- "Restore Special Workspace Windows": ""
+ "Restore Special Workspace Windows": "بازیابی پنجرههای محیطکار ویژه"
},
"Restore the last selected mode (tab) when the launcher is opened": {
"Restore the last selected mode (tab) when the launcher is opened": ""
@@ -5964,7 +6099,7 @@
"Resume": "ازسرگیری"
},
"Reveal the arcs where surfaces meet the frame": {
- "Reveal the arcs where surfaces meet the frame": ""
+ "Reveal the arcs where surfaces meet the frame": "قوسها در محل برخورد سطوح با قاب آشکار کن"
},
"Reverse Scrolling Direction": {
"Reverse Scrolling Direction": "جهت اسکرول معکوس"
@@ -6006,7 +6141,7 @@
"Ripple Effects": "افکت موجی"
},
"Root Filesystem": {
- "Root Filesystem": "سیستمفایل ریشه"
+ "Root Filesystem": "سیستم فایل ریشه"
},
"Rounded corners for windows": {
"Rounded corners for windows": "گوشههای گرد برای پنجرهها"
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "قواعد (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "اجرای دوباره"
},
@@ -6042,7 +6180,7 @@
"Run a shell command (e.g., notify-send)": "اجرای یک دستور شِل (مانند notify-send)"
},
"Run paru/yay with AUR enabled when 'Update All' is clicked.": {
- "Run paru/yay with AUR enabled when 'Update All' is clicked.": ""
+ "Run paru/yay with AUR enabled when 'Update All' is clicked.": "وقتی روی «بروزرسانی همه» کلیک شد، paru/yay را با گزینه فعال AUR اجرا کن."
},
"Running Apps": {
"Running Apps": "برنامههای درحال اجرا"
@@ -6051,10 +6189,10 @@
"Running Apps Settings": "تنظیمات برنامههای درحال اجرا"
},
"Running greeter sync…": {
- "Running greeter sync…": ""
+ "Running greeter sync…": "درحال اجرای همگامسازی صفحه خوشآمدگویی…"
},
"Running in terminal": {
- "Running in terminal": ""
+ "Running in terminal": "اجرا کردن در ترمینال"
},
"SDR Brightness": {
"SDR Brightness": "روشنایی SDR"
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "ذخیره"
},
@@ -6075,10 +6216,10 @@
"Save QR Code": "ذخیره کد QR"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "ذخیره و بستن"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "ذخیره و بستن"
},
"Save and switch between display configurations": {
"Save and switch between display configurations": "ذخیره و جابهجایی بین پیکربندیهای نمایشگر"
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "امتیاز"
},
- "Screen Sharing": {
- "Screen Sharing": "اشتراکگذاری صفحه"
- },
"Screen sharing": {
"Screen sharing": "اشتراکگذاری صفحه"
},
@@ -6153,7 +6291,7 @@
"Scroll Factor": "ضریب اسکرول"
},
"Scroll GitHub": {
- "Scroll GitHub": ""
+ "Scroll GitHub": "گیتهاب اسکرول"
},
"Scroll Wheel": {
"Scroll Wheel": "چرخ اسکرول"
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "گزینههای جستجو"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "با ترکیب کلیدها، توضیحات یا نام اقدام جستجو کنید.\n\nاقدام پیشفرض نگاشتکلید را در کلیپبورد کپی میکند.\nبرای سنجاق کردن نگاشتکلیدهای پر استفاده راستکلیک کنید یا پیکان راست را فشار دهید - آنها هنگام جستجو نکردن در بالای لیست ظاهر خواهند شد."
},
@@ -6186,7 +6327,7 @@
"Search for a location...": "جستجو برای موقعیت مکانی..."
},
"Search installed plugins...": {
- "Search installed plugins...": ""
+ "Search installed plugins...": "جستجوی افزونههای نصب شده..."
},
"Search keybinds...": {
"Search keybinds...": "جستجو در نگاشتکلیدها..."
@@ -6201,7 +6342,7 @@
"Search processes...": "جستجوی فرایندها..."
},
"Search sessions...": {
- "Search sessions...": ""
+ "Search sessions...": "جستجوی نشستها..."
},
"Search themes...": {
"Search themes...": "جستجوی تمها..."
@@ -6219,7 +6360,7 @@
"Searching...": "درحال جستجو..."
},
"Second Factor (AND)": {
- "Second Factor (AND)": ""
+ "Second Factor (AND)": "فاکتور دوم (AND)"
},
"Secondary": {
"Secondary": "ثانویه"
@@ -6234,13 +6375,13 @@
"Security & privacy": "امنیت و حریم خصوصی"
},
"Security key mode": {
- "Security key mode": ""
+ "Security key mode": "حالت کلید امنیتی"
},
"Security-key availability could not be confirmed.": {
- "Security-key availability could not be confirmed.": ""
+ "Security-key availability could not be confirmed.": "دردسترس بودن کلید امنیتی تأیید نشد."
},
"Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.": {
- "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.": ""
+ "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.": "پشتیبانی کلید امنیتی شناسایی شد، اما هنوز هیچ کلید ثبتشدهای یافت نشد. شما میتوانید این گزینه را فعال و بعدا کلید را ثبت کنید."
},
"Select": {
"Select": "انتخاب"
@@ -6258,7 +6399,7 @@
"Select Dock Launcher Logo": "لوگوی لانچر داک را انتخاب کنید"
},
"Select File to Send": {
- "Select File to Send": "فایل برای ارسال انتخاب کنید"
+ "Select File to Send": "فایل را برای ارسال انتخاب کنید"
},
"Select Launcher Logo": {
"Select Launcher Logo": "انتخاب لوگوی لانچر"
@@ -6267,7 +6408,7 @@
"Select Profile Image": "انتخاب تصویر نمایه"
},
"Select Video or Folder": {
- "Select Video or Folder": ""
+ "Select Video or Folder": "انتخاب ویدئو یا پوشه"
},
"Select Wallpaper": {
"Select Wallpaper": "انتخاب تصویر پسزمینه"
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "انتخاب رنگ از پالت رنگی یا اسلایدرهای سفارشی"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "یک ابزارک برای افزودن به دسکتاپ خود انتخاب کنید. هر ابزارک یک نمونه جداگانه با تنظیمات خاص خود است."
},
@@ -6288,7 +6432,7 @@
"Select a window...": "یک پنجره انتخاب کنید..."
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "یک نشست فعال برای تعویض انتخاب کنید. نشست فعالی در پسزمینه به کار خود ادامه میدهد."
},
"Select an image file...": {
"Select an image file...": "انتخاب فایل تصویر..."
@@ -6309,7 +6453,7 @@
"Select font weight for UI text": "وزن قلم برای متن UI انتخاب کنید"
},
"Select greeter background image": {
- "Select greeter background image": ""
+ "Select greeter background image": "انتخاب تصویر پسزمینه برای صفحه خوشآمدگویی"
},
"Select monitor to configure wallpaper": {
"Select monitor to configure wallpaper": "مانیتور را برای پیکربندی تصویر پسزمینه انتخاب کنید"
@@ -6330,7 +6474,7 @@
"Select the palette algorithm used for wallpaper-based colors": "انتخاب الگوریتم پالت رنگی استفاده شده برای رنگهای بر اساس تصویر پسزمینه"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "انتخاب کاربر..."
},
"Select which keybind providers to include": {
"Select which keybind providers to include": "انتخاب کنید که کدام ارائه دهنده نگاشتکلیدها include شود"
@@ -6360,7 +6504,7 @@
"Sending": "درحال ارسال"
},
"Separate": {
- "Separate": ""
+ "Separate": "جدا"
},
"Separator": {
"Separator": "جداکننده"
@@ -6369,7 +6513,7 @@
"Server": "سرور"
},
"Session Filter": {
- "Session Filter": ""
+ "Session Filter": "فیلتر نشست"
},
"Set Custom Device Name": {
"Set Custom Device Name": "تنظیم نام سفارشی دستگاه"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "تصاویر پسزمینه مختلف برای حالت روشن و تاریک تنظیم کن"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "تنظیم گذرواژه اولیه"
},
"Set key and action to save": {
"Set key and action to save": "کلید و اقدام را برای ذخیره تنظیم کنید"
@@ -6405,7 +6549,7 @@
"Settings": "تنظیمات"
},
"Settings Search": {
- "Settings Search": ""
+ "Settings Search": "جستجوی تنظیمات"
},
"Settings are read-only. Changes will not persist.": {
"Settings are read-only. Changes will not persist.": "تنظیمات فقط قابل خواندن هستند. تغییرات حفظ نخواهند شد."
@@ -6414,28 +6558,28 @@
"Setup": "راهاندازی"
},
"Shadow Color": {
- "Shadow Color": ""
+ "Shadow Color": "رنگ سایه"
},
"Shadow Intensity": {
- "Shadow Intensity": ""
+ "Shadow Intensity": "شدت سایه"
},
"Shadow Opacity": {
- "Shadow Opacity": ""
+ "Shadow Opacity": "شفافیت سایه"
},
"Shadow Override": {
- "Shadow Override": ""
+ "Shadow Override": "جایگزینی سایه"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "شعاع سایه تاری به پیکسل"
},
"Shadow elevation on bars and panels": {
- "Shadow elevation on bars and panels": ""
+ "Shadow elevation on bars and panels": "بلندی سایه بر نوارها و پنلها"
},
"Shadow elevation on modals and dialogs": {
- "Shadow elevation on modals and dialogs": ""
+ "Shadow elevation on modals and dialogs": "بلندی سایه بر مودالها و دیالوگها"
},
"Shadow elevation on popouts, OSDs, and dropdowns": {
- "Shadow elevation on popouts, OSDs, and dropdowns": ""
+ "Shadow elevation on popouts, OSDs, and dropdowns": "بلندی سایه بر پاپآپها، نمایشگرهای برصفحه و منوهای کشویی"
},
"Shadows": {
"Shadows": "سایهها"
@@ -6458,26 +6602,17 @@
"Shell": {
"Shell": "شِل"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: پاککردن همه • Esc: بستن"
- },
"Shift+Enter to copy": {
- "Shift+Enter to copy": ""
+ "Shift+Enter to copy": "Shift+Enter برای کپی"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "برای الصاق Shift+Enter"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: کپی • Shift+Del: پاککردن همه • Esc: بستن"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: الصاق • Shift+Del: پاککردن همه • Esc: بستن"
- },
"Short": {
"Short": "کوتاه"
},
"Shortcut (%1)": {
- "Shortcut (%1)": ""
+ "Shortcut (%1)": "میانبر (%1)"
},
"Shortcuts": {
"Shortcuts": "میانبرها"
@@ -6495,7 +6630,7 @@
"Show All Tags": "نمایش همه برچسبها"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "همه، برنامهها، فایلها و چیپ افزونهها را کنار نوار ورودی اسپاتلایت نمایش بده."
},
"Show Badge": {
"Show Badge": "نمایش نشان"
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "نمایش رطوبت"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "دکمه لانچر را نمایش بده"
},
@@ -6627,10 +6765,10 @@
"Show Suspend": "نمایش تعلیق"
},
"Show Swap": {
- "Show Swap": ""
+ "Show Swap": "نمایش Swap"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "نمایش تعویض کاربر"
},
"Show System Date": {
"Show System Date": "نمایش تاریخ سیستم"
@@ -6645,13 +6783,13 @@
"Show Top Processes": "نمایش فرایندهای مهم"
},
"Show Trash in Dock": {
- "Show Trash in Dock": ""
+ "Show Trash in Dock": "نمایش زبالهدان در داک"
},
"Show Weather Condition": {
"Show Weather Condition": "نمایش شرایط آب و هوا"
},
"Show Week Number": {
- "Show Week Number": ""
+ "Show Week Number": "نمایش شماره هفته"
},
"Show Welcome": {
"Show Welcome": "نمایش خوش آمدید"
@@ -6681,16 +6819,16 @@
"Show dock when floating windows don't overlap its area": "داک را هنگامی که پنجرههای شناور با محیط آن همپوشانی ندارند نمایش بده"
},
"Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": {
- "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": ""
+ "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": "سایه افتاده در پاپآپ اعلان نمایش بده. نیازمند فعال بودن ارتفاع M3 در بخش تم و رنگها است."
},
"Show during Niri overview": {
- "Show during Niri overview": ""
+ "Show during Niri overview": "هنگام نمای کلی نیری نمایش بده"
},
"Show foreground surfaces on blurred panels for stronger contrast": {
"Show foreground surfaces on blurred panels for stronger contrast": "سطوح پیشزمینه را بر پنلهای تار برای کنتراست قویتر نمایش بده"
},
"Show in GB": {
- "Show in GB": ""
+ "Show in GB": "نمایش به صورت گیگابایت"
},
"Show launcher overlay when typing in Niri overview. Disable to use another launcher.": {
"Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "لایه overlay لانچر را هنگام تایپ در نمای کلی نیری نمایش بده. برای استفاده از لانچر دیگری غیرفعال کنید."
@@ -6698,11 +6836,14 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "حالت تبها و راهنماییهای صفحهکلید را در پایین نمایش بده."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
- "Show notification popups only on the currently focused monitor": ""
+ "Show notification popups only on the currently focused monitor": "پاپآپ اعلانها را فقط روی مانیتور فوکوس شده نمایش بده"
},
"Show notifications only on the currently focused monitor": {
- "Show notifications only on the currently focused monitor": ""
+ "Show notifications only on the currently focused monitor": "اعلانها را فقط روی مانیتور فعلی فوکوسشده نمایش بده"
},
"Show on Last Display": {
"Show on Last Display": "نمایش در آخرین نمایشگر"
@@ -6749,20 +6890,17 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "نمایشگر بر صفحه را هنگام تغییر حجم صدا نمایش بده"
},
- "Show seconds": {
- "Show seconds": ""
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "نوار را هنگامی که هیچ پنجرهای باز نیست نمایش بده"
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "نوار را هنگامی که نمای کلی نیری فعال است نمایش بده"
},
"Show weather information in top bar and control center": {
"Show weather information in top bar and control center": "اطلاعات آب و هوا را در نوار بالا و مرکز کنترل نمایش بده"
},
"Show week number in the calendar": {
- "Show week number in the calendar": ""
+ "Show week number in the calendar": "شماره هفته را در گاهشمار نمایش بده"
},
"Show workspace index numbers in the top bar workspace switcher": {
"Show workspace index numbers in the top bar workspace switcher": "شماره شاخص محیطکار را در تغییردهنده محیطکار نوار بالا نمایش بده"
@@ -6798,7 +6936,7 @@
"Signal:": "سیگنال:"
},
"Silence for a while": {
- "Silence for a while": ""
+ "Silence for a while": "ساکت کردن برای مدتی"
},
"Silence notifications": {
"Silence notifications": "بیصدا کردن اعلانها"
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "رد کردن راهاندازی"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "کوچک"
},
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "صداها"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "فاصله بین نوار و لبههای صفحه"
},
"Space between windows": {
"Space between windows": "فاصله بین پنجرهها"
@@ -6885,16 +7029,16 @@
"Spool Area Full": "فضای صف چاپ پر است"
},
"Spotlight": {
- "Spotlight": ""
+ "Spotlight": "اسپاتلایت"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "نوار اسپاتلایت"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "میانبر نوار اسپاتلایت"
},
"Spotlight Search": {
- "Spotlight Search": ""
+ "Spotlight Search": "جستجوی اسپاتلایت"
},
"Square Corners": {
"Square Corners": "گوشههای مربعی"
@@ -6906,7 +7050,7 @@
"Standard": "استاندارد"
},
"Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": {
- "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": ""
+ "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": "استاندارد: "
},
"Start": {
"Start": "شروع"
@@ -6939,20 +7083,17 @@
"Stretch": "کشیده"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "آیکونهای ابزارک را برای پر کردن ارتفاع موجود نوار کش بیاور"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "متن ابزارک را برای پر کردن ارتفاع موجود نوار کش بیاور"
},
"Strict auto-hide": {
- "Strict auto-hide": ""
+ "Strict auto-hide": "پنهان خودکار اکید"
},
"Stripes": {
"Stripes": "راه راه"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "خلاصه"
},
@@ -6963,7 +7104,7 @@
"Sunset": "غروب"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "سرکوب اعلانهای تکراری"
},
"Suppress notification popups while enabled": {
"Suppress notification popups while enabled": "هنگام فعال بودن پاپآپهای اعلان را مسدود میکند"
@@ -6972,19 +7113,19 @@
"Surface": "زمینه"
},
"Surface Behavior": {
- "Surface Behavior": ""
+ "Surface Behavior": "رفتار سطح"
},
"Surface Opacity": {
- "Surface Opacity": ""
+ "Surface Opacity": "شفافیت سطح"
},
"Surface Variant": {
"Surface Variant": "سطح متغیر"
},
"Surfaces emerge flush from the bar": {
- "Surfaces emerge flush from the bar": ""
+ "Surfaces emerge flush from the bar": "سطوح به صورت همسطح از نوار بیرون میآیند"
},
"Surfaces float independently of the frame": {
- "Surfaces float independently of the frame": ""
+ "Surfaces float independently of the frame": "سطوح به طور مستقل از قاب شناور باشند"
},
"Suspend": {
"Suspend": "تعلیق"
@@ -6999,19 +7140,19 @@
"Suspend then Hibernate": "تعلیق سپس هایبرنیت"
},
"Sway Website": {
- "Sway Website": ""
+ "Sway Website": "وبسایت Sway"
},
"Switch User": {
"Switch User": "تغییر کاربر"
},
"Switch between display configurations": {
- "Switch between display configurations": ""
+ "Switch between display configurations": "تعویض بین پیکربندی نمایشگرها"
},
"Switch to power profile": {
"Switch to power profile": "تغییر به پروفایل پاور"
},
"Sync": {
- "Sync": ""
+ "Sync": "همگامسازی"
},
"Sync Mode with Portal": {
"Sync Mode with Portal": "همگامسازی حالت با پورتال"
@@ -7029,10 +7170,10 @@
"Sync dark mode with settings portals for system-wide theme hints": "همگامسازی حالت تاریک با پورتال سیستم برای هماهنگی تم در سطح سیستم"
},
"Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": {
- "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": ""
+ "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": "همگامسازی در پسزمینه ناموفق بود. درحال تلاش در حالت ترمینال تا بتوانید بصورت تعاملی احراز هویت را انجام دهید."
},
"Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": {
- "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": ""
+ "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": "همگامسازی به احراز هویت sudo نیاز دارد. درحال باز کردن ترمینال تا بتوانید از گذرواژه یا اثرانگشت استفاده کنید."
},
"System": {
"System": "سیستم"
@@ -7062,7 +7203,7 @@
"System Tray": "سینی سیستم"
},
"System Tray Icon Tint": {
- "System Tray Icon Tint": ""
+ "System Tray Icon Tint": "سایه رنگ آیکون سینی سیستم"
},
"System Update": {
"System Update": "بروزرسانی سیستم"
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "اعلانهای سیستم به صورت تُست"
},
- "System update custom command": {
- "System update custom command": "دستور سفارشی بروزرسانی سیستم"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "تب"
@@ -7107,40 +7248,37 @@
"Tailscale not available": "Tailcale در دسترس نیست"
},
"Terminal": {
- "Terminal": ""
+ "Terminal": "ترمینال"
},
"Terminal additional parameters": {
- "Terminal additional parameters": ""
- },
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "پارامترهای اضافی سفارشی ترمینال"
+ "Terminal additional parameters": "پارامترهای اضافی ترمینال"
},
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
- "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
+ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "ترمینال پشتیبان ناموفق بود. یکی از شبیهسازی ترمینالهای پشتیبانی شده را نصب یا به صورت دستی 'dms greeter sync' را اجرا کنید."
},
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
- "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
+ "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "ترمینال پشتیبان باز شد. احراز هویت را آنجا کامل کنید؛ وقتی انجام شد بصورت خودکار بسته میشود."
},
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
- "Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
+ "Terminal fallback opened. Complete sync there; it will close automatically when done.": "ترمینال پشتیبان باز شد. همگامسازی را آنجا کامل کنید؛ وقتی انجام شد بصورت خودکار بسته میشود."
},
"Terminal multiplexer backend to use": {
- "Terminal multiplexer backend to use": ""
+ "Terminal multiplexer backend to use": "بکاند مالتیپلکسر ترمینال برای استفاده"
},
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
- "Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
+ "Terminal opened. Complete authentication setup there; it will close automatically when done.": "ترمینال باز شد. راهاندازی احراز هویت را آنجا کامل کنید؛ بعد از انجام بصورت خودکار بسته خواهد شد."
},
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
- "Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
+ "Terminal opened. Complete sync authentication there; it will close automatically when done.": "ترمینال باز شد. احراز هویت را آنجا کامل کنید؛ وقتی انجام شد به طور خودکار بسته میشود."
},
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": "ترمینالها - همیشه از تم تاریک استفاده کن"
},
"Test Connection": {
- "Test Connection": ""
+ "Test Connection": "آزمایش اتصال"
},
"Test Page": {
"Test Page": "صفحه تست"
@@ -7149,7 +7287,7 @@
"Test page sent to printer": "صفحه تست به چاپگر ارسال شد"
},
"Testing...": {
- "Testing...": ""
+ "Testing...": "درحال آزمایش..."
},
"Text": {
"Text": "متن"
@@ -7158,10 +7296,10 @@
"Text Color": "رنگ متن"
},
"Text Editor": {
- "Text Editor": ""
+ "Text Editor": "ویرایشگر متن"
},
"Text Rendering": {
- "Text Rendering": ""
+ "Text Rendering": "نماپردازی متن"
},
"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 را نصب کنید."
@@ -7173,11 +7311,14 @@
"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).": "تنظیمات پایین، تنظیمات Qt و GTK شما را تغییر میدهند. اگر میخواهید تنظیمات کنونی خود را نگه دارید، لطفا از آنها نسخه پشتیبان تهیه کنید (qt5ctl.conf |qt6ctl.conf و ~/.config/gtk-3.0|gtk-4.0)"
},
"The custom command used when attaching to sessions (receives the session name as the first argument)": {
- "The custom command used when attaching to sessions (receives the session name as the first argument)": ""
+ "The custom command used when attaching to sessions (receives the session name as the first argument)": "دستور سفارشی که هنگام اتصال به نشستها استفاده میشود (نام نشست را به عنوان اولین آرگومان دریافت میکند)"
},
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "صف کار چاپگر خالی است"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "تم و رنگها"
},
@@ -7188,10 +7329,10 @@
"Theme Registry": "مخزن تمها"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "رنگ تم استفاده شده برای حاشیه"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "رنگ تم استفاده شده برای خط دور ابزارک"
},
"Theme worker failed (%1)": {
"Theme worker failed (%1)": ""
@@ -7199,11 +7340,14 @@
"Themes": {
"Themes": "تمها"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "ضخامت"
},
"Thin": {
- "Thin": ""
+ "Thin": "باریک"
},
"Third-Party Plugin Warning": {
"Third-Party Plugin Warning": "اخطار افزونه شخص ثالث"
@@ -7217,11 +7361,23 @@
"This device": {
"This device": "این دستگاه"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "این ممکن است چند ثانیه طول بکشد"
},
"This output is disabled in the current profile": {
- "This output is disabled in the current profile": ""
+ "This output is disabled in the current profile": "این خروجی در پروفایل کنونی غیرفعال است"
},
"This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": {
"This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": "این افزونه اجازه «settings_write» را ندارد.\n\nبه plugins.json خط \"permissions\": [\"settings_read\", \"settings_write\"] را اضافه کنید"
@@ -7266,7 +7422,7 @@
"Time": "زمان"
},
"Time & Date Locale": {
- "Time & Date Locale": ""
+ "Time & Date Locale": "زمان و تاریخ محلی"
},
"Time & Weather": {
"Time & Weather": "زمان و آب و هوا"
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "قالب زمان"
},
- "Time format": {
- "Time format": "قالب زمان"
- },
"Time remaining: %1": {
"Time remaining: %1": "زمان باقیمانده: %1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "مدت زمان انتظار قبل از پنهانسازی پس از خروج اشارهگر"
},
"Time until full: %1": {
"Time until full: %1": "زمان تا پر شدن: %1"
@@ -7299,10 +7452,10 @@
"Timeout for normal priority notifications": "وقفه اعلانها با اولویت عادی"
},
"Tint Saturation": {
- "Tint Saturation": ""
+ "Tint Saturation": "اشباع سایه رنگ"
},
"Tint Strength": {
- "Tint Strength": ""
+ "Tint Strength": "شدت سایه رنگ"
},
"Title": {
"Title": "عنوان"
@@ -7314,7 +7467,7 @@
"To Full": "تا پر شدن"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "برای ورود به عنوان کاربر دیگر، خارج شوید و حساب کاربری را از صفحه خوشآمدگویی انتخاب کنید. ایجاد یک نشست جدید به صورت موازی به یک صفحه خوشآمدگویی چند نشسته (greetd-flexiserver / GDM / LightDM) نیاز دارد."
},
"To update, run the following command:": {
"To update, run the following command:": "برای بروزرسانی، دستور زیر را اجرا کن:"
@@ -7329,10 +7482,10 @@
"Today": "امروز"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "وضعیت دید نوار به صورت دستی از طریق IPC تغییر دهید"
},
"Toggle fonts": {
- "Toggle fonts": ""
+ "Toggle fonts": "تغییر وضعیت قلمها"
},
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": "پیکربندی تغییر نمایش این نوار"
@@ -7353,10 +7506,10 @@
"Toner Low": "تونر کم است"
},
"Too many attempts - locked out": {
- "Too many attempts - locked out": ""
+ "Too many attempts - locked out": "تلاشهای بیش از حد - حساب بسته شد"
},
"Too many failed attempts - account may be locked": {
- "Too many failed attempts - account may be locked": ""
+ "Too many failed attempts - account may be locked": "تعداد تلاشهای ناموفق زیاد است - حساب ممکن است قفل شده باشد"
},
"Tools": {
"Tools": "ابزارها"
@@ -7365,7 +7518,7 @@
"Top": "بالا"
},
"Top (Default)": {
- "Top (Default)": ""
+ "Top (Default)": "بالا (پیشفرض)"
},
"Top Bar Format": {
"Top Bar Format": "قالب نوار بالا"
@@ -7386,13 +7539,13 @@
"Top Section": "بخش بالا"
},
"Total": {
- "Total": ""
+ "Total": "کل"
},
"Total Jobs": {
"Total Jobs": "تمام کارهای چاپ"
},
"Touch your security key...": {
- "Touch your security key...": ""
+ "Touch your security key...": "کلید امنیتی خود را لمس کنید..."
},
"Transform": {
"Transform": "تبدیل"
@@ -7404,19 +7557,22 @@
"Transparency": "شفافیت"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "شفافیت حاشیه"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "شفافیت لایه سایه"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "شفافیت خط دور ابزارک"
},
"Trash": {
- "Trash": ""
+ "Trash": "زبالهدان"
},
"Trash command failed (exit %1)": {
- "Trash command failed (exit %1)": ""
+ "Trash command failed (exit %1)": "دستور زبالهدان ناموفق بود (خروجی %1)"
+ },
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
},
"Trending GIFs": {
"Trending GIFs": "گیفهای پرطرفدار"
@@ -7440,13 +7596,13 @@
"Try a different search": "یک جستجوی دیگر را امتحان کنید"
},
"Try a different search or switch filters.": {
- "Try a different search or switch filters.": ""
+ "Try a different search or switch filters.": "یک جستجوی دیگر را امتحان کرده یا فیلترها را عوض کنید."
},
"Turn off": {
"Turn off": "خاموش"
},
"Turn off Do Not Disturb": {
- "Turn off Do Not Disturb": ""
+ "Turn off Do Not Disturb": "مزاحم نشوید را خاموش کن"
},
"Turn off all displays immediately when the lock screen activates": {
"Turn off all displays immediately when the lock screen activates": "همه نمایشگرها را هنگامی که صفحه قفل فعال میشود بلادرنگ خاموش کن"
@@ -7455,10 +7611,10 @@
"Turn off monitors after": "خاموشکردن مانیتور پس از"
},
"Turn off monitors after lock": {
- "Turn off monitors after lock": ""
+ "Turn off monitors after lock": "بعد قفل مانیتورها را خاموش کن"
},
"Turn off now": {
- "Turn off now": ""
+ "Turn off now": "الان خاموش کن"
},
"Type": {
"Type": "نوع"
@@ -7467,7 +7623,7 @@
"Type at least 2 characters": "حداقل ۲ کاراکتر تایپ کنید"
},
"Type at least 2 characters to search files.": {
- "Type at least 2 characters to search files.": ""
+ "Type at least 2 characters to search files.": "حداقل ۲ کاراکتر برای جستجوی فایلها تایپ کنید."
},
"Type this prefix to search keybinds": {
"Type this prefix to search keybinds": "این پیشوند را برای جستجوی نگاشتکلیدها تایپ کنید"
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "ناموجود"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "رنگ فوکوس نشده"
},
@@ -7506,7 +7665,7 @@
"Uninstall failed: %1": "حذف ناموفق بود: %1"
},
"Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": {
- "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": ""
+ "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "صفحه خوشآمدگویی DMS حذف شود؟ این پیکربندی را حذف و مدیریت نمایشگر قبلی را بازیابی خواهد کرد. یک ترمینال برای احراز هویت sudo باز خواهد شد."
},
"Uninstalled: %1": {
"Uninstalled: %1": "حذف شده: %1"
@@ -7518,7 +7677,7 @@
"Unknown": "ناشناخته"
},
"Unknown App": {
- "Unknown App": ""
+ "Unknown App": "برنامه ناشناخته"
},
"Unknown Artist": {
"Unknown Artist": "هنرمند ناشناس"
@@ -7542,7 +7701,7 @@
"Unknown Title": "عنوان ناشناس"
},
"Unknown Track": {
- "Unknown Track": ""
+ "Unknown Track": "آهنگ ناشناس"
},
"Unload on Close": {
"Unload on Close": "خالیکردن هنگام بستن"
@@ -7590,7 +7749,7 @@
"Until I turn it off": "تا زمانی که خودم خاموشش کنم"
},
"Until tomorrow, 8:00 AM": {
- "Until tomorrow, 8:00 AM": ""
+ "Until tomorrow, 8:00 AM": "تا فردا، ۸:۰۰ صبح"
},
"Untitled": {
"Untitled": "بدون عنوان"
@@ -7599,7 +7758,7 @@
"Untrust": "لغو اعتماد"
},
"Up to date": {
- "Up to date": ""
+ "Up to date": "بروز"
},
"Update": {
"Update": "بروزرسانی"
@@ -7611,10 +7770,10 @@
"Update Plugin": "بروزرسانی افزونه"
},
"Update failed: %1": {
- "Update failed: %1": ""
+ "Update failed: %1": "بروزرسانی ناموفق: %1"
},
"Upgrading...": {
- "Upgrading...": ""
+ "Upgrading...": "درحال بروزرسانی..."
},
"Uptime": {
"Uptime": "زمان اجرا"
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "زمان اجرا:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "رنگ ضروری"
},
@@ -7647,31 +7809,28 @@
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "استفاده از واحدهای بریتانیایی (°F, mph, inHg) به جای واحدهای متریک (°C, km/h, hPa)"
},
"Use Inline Expansion": {
- "Use Inline Expansion": ""
+ "Use Inline Expansion": "از گسترش درونخطی استفاده کن"
},
"Use Monospace Font": {
"Use Monospace Font": "استفاده از قلم monospace"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
+ "Use Overlay Layer": "استفاده از لایه Overlay"
},
"Use System Theme": {
"Use System Theme": "استفاده از تم سیستم"
},
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": {
- "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": ""
+ "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "از یک تصویر سفارشی برای صفحه ورود استفاده کنید یا برای استفاده از تصویر پسزمینه دسکتاپ خالی نگه دارید."
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "از شعاع سفارشی برای برشهای گوشه گوتیک استفاده کن"
},
"Use a fixed shadow direction for this bar": {
- "Use a fixed shadow direction for this bar": ""
+ "Use a fixed shadow direction for this bar": "از یک جهت سایه ثابت برای این نوار استفاده کن"
},
"Use a security key for lock screen authentication.": {
- "Use a security key for lock screen authentication.": ""
+ "Use a security key for lock screen authentication.": "از یک کلید امنیتی برای صفحه قفل استفاده کن."
},
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": {
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "از مدیریت تصویر پسزمینه خارجی مانند swww، hyprpaper یا swaybg استفاده کن."
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "از طول حاشیه/focus-ring سفارشی استفاده کن"
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "استفاده از دستور سفارشی برای بروزرسانی سیستم شما"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "از فاصله سفارشی به جای فاصله نوار استفاده کن"
},
@@ -7701,10 +7854,13 @@
"Use custom window rounding instead of theme radius": "استفاده از گردی پنجره سفارشی به جای شعاع تم"
},
"Use desktop wallpaper": {
- "Use desktop wallpaper": ""
+ "Use desktop wallpaper": "از تصویر پسزمینه دسکتاپ استفاده کن"
},
"Use fingerprint authentication for the lock screen.": {
- "Use fingerprint authentication for the lock screen.": ""
+ "Use fingerprint authentication for the lock screen.": "از احراز هویت اثرانگشت برای صفحه قفل استفاده کن."
+ },
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
},
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "از تم روشن به جای تم تاریک استفاده کن"
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "استفاده از تم صدا در تنظیمات سیستم"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "از لایه overlay هنگام باز کردن لانچر استفاده کن"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "از مکان و اندازه یکسان بین تمامی نمایشگرها استفاده کن"
@@ -7734,7 +7887,7 @@
"Use trigger prefix to activate": "از پیشوند راهانداز برای فعالکردن استفاده کن"
},
"Used for xdg-terminal-exec": {
- "Used for xdg-terminal-exec": ""
+ "Used for xdg-terminal-exec": "استفاده شده برای xdg-terminal-exec"
},
"Used when accent color is set to Custom": {
"Used when accent color is set to Custom": "وقتی رنگ تأکیدی سفارشی تنظیم شده استفاده میشود"
@@ -7742,38 +7895,41 @@
"User": {
"User": "کاربر"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "کاربر از قبل وجود دارد"
},
"User created": {
- "User created": ""
+ "User created": "کاربر ساخته شد"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "کاربر با دسترسی ادمین و ورود صفحه خوشآمدگویی ساخته شد"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "کاربر با دسترسی ادمین ساخته شد"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "کاربر با دسترسی ورود صفحه خوشآمدگویی ساخته شد"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "کاربر حذف شد"
},
"User not found": {
- "User not found": ""
+ "User not found": "کاربر یافت نشد"
},
"Username": {
"Username": "نام کاربری"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "نام کاربری باید با حرف کوچک یا زیرخط شروع شود و تنها شامل حروف کوچک، اعداد، خط تیره یا زیرخط باشد."
},
"Username...": {
"Username...": "نام کاربری..."
},
"Users": {
- "Users": ""
+ "Users": "کاربران"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "از زمانهای طلوع/غروب بر اساس موقعیت مکانی شما استفاده میکند."
@@ -7782,10 +7938,10 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "از زمان طلوع/غروب خورشید برای تنظیم خودکار حالت شب بر اساس موقعیت مکانی شما استفاده میکند."
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "از IPC اقدام نوار اسپاتلایت استفاده میکند و همیشه نوار کمینه را باز میکند."
},
"Using global monospace font from Settings → Personalization": {
- "Using global monospace font from Settings → Personalization": ""
+ "Using global monospace font from Settings → Personalization": "استفاده از قلم monospace سراسری از تنظیمات ← شخصیسازی"
},
"Using shared settings from Gamma Control": {
"Using shared settings from Gamma Control": "با استفاده از تنظیمات مشترک کنترل گاما"
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "تایلینگ عمودی"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "زنده"
},
@@ -7857,13 +8016,13 @@
"Vibrant palette with playful saturation.": "پالتر رنگی پر جنب و جوش با اشباع رنگی سرزنده."
},
"Video Path": {
- "Video Path": ""
+ "Video Path": "مسیر ویدئو"
},
"Video Player": {
- "Video Player": ""
+ "Video Player": "پخشکننده ویدئو"
},
"Video Screensaver": {
- "Video Screensaver": ""
+ "Video Screensaver": "محافظ صفحه ویدئویی"
},
"Videos": {
"Videos": "ویدئوها"
@@ -7908,7 +8067,7 @@
"Wallpaper Monitor": "مانیتور تصویر پسزمینه"
},
"Wallpaper fill mode": {
- "Wallpaper fill mode": ""
+ "Wallpaper fill mode": "حالت پر کردن تصویر پسزمینه"
},
"Wallpaper processing failed": {
"Wallpaper processing failed": "پردازش تصویر پسزمینه ناموفق بود"
@@ -7938,7 +8097,7 @@
"Weather Widget": "ابزارک آب و هوا"
},
"Web Browser": {
- "Web Browser": ""
+ "Web Browser": "مرورگر وب"
},
"Welcome": {
"Welcome": "خوش آمدید"
@@ -7947,7 +8106,7 @@
"Welcome to DankMaterialShell": "به دَنک متریال شل خوش آمدید"
},
"When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": {
- "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": ""
+ "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": "هنگام کلیک روی پنجره داک در محیطکار ویژه هایپرلند، پیش از فوکوس روی پنجره آن محیطکار ویژه را برگردان"
},
"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.": "هنگام فعال بودن، برنامهها بر اساس حروف الفبا مرتب میشوند. هنگام غیرفعال بودن، برنامه ها بر اساس دفعات استفاده مرتب میشوند."
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "هنگام قفل شدن"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "وقتی از ابزارک بروزرسان استفاده میشود، اگر بروزرسانی یافت نشد، آن را پنهان کن"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "گذرواژه وایفای"
},
@@ -8028,19 +8184,19 @@
"Width": "طول"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "پهنای حاشیه به پیکسل"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "پهنای خط دور ابزارک به پیکسل"
},
"Width of window border (borderpx)": {
- "Width of window border (borderpx)": "ضخامت حاشیه پنجره (borderpx)"
+ "Width of window border (borderpx)": "پهنای حاشیه پنجره (borderpx)"
},
"Width of window border (general.border_size)": {
- "Width of window border (general.border_size)": "ضخامت حاشیه پنجره (general.border_size)"
+ "Width of window border (general.border_size)": "پهنای حاشیه پنجره (general.border_size)"
},
"Width of window border and focus ring": {
- "Width of window border and focus ring": "ضخامت حاشیه پنجره و حلقه فوکوس"
+ "Width of window border and focus ring": "پهنای حاشیه پنجره و حلقه فوکوس"
},
"Wind": {
"Wind": "باد"
@@ -8082,7 +8238,7 @@
"Wipe": "پاک کردن"
},
"Working…": {
- "Working…": ""
+ "Working…": "درحال کار…"
},
"Workspace": {
"Workspace": "محیطکار"
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "محیطکارها و ابزارکها"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "نوشتن:"
},
"X Axis": {
"X Axis": "محور X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "محور Y"
},
@@ -8144,20 +8312,29 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "لازم است یکی از مقادیر زیر را به عنوان متغیر محیطی تنظیم نمایید:\nQT_QPA_PLATFORMTHEME=gtk3 یا\nQT_QPA_PLATFORMTHEME=qt6ct\nو پس از آن، شل را مجدداً راهاندازی کنید.\n\nبسته qt6ct نیازمند نصب qt6ct-kde است."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "همه چیز آماده است!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
- "Your system is up to date!": ""
+ "Your system is up to date!": "سیستم شما بروز است!"
},
"actions": {
"actions": "اقدامها"
},
"admin": {
- "admin": ""
+ "admin": "ادمین"
},
"attached": {
- "attached": ""
+ "attached": "پیوست شد"
},
"brandon": {
"brandon": "براندون"
@@ -8169,7 +8346,7 @@
"days": "روز"
},
"detached": {
- "detached": ""
+ "detached": "جدا شد"
},
"device": {
"device": "دستگاه"
@@ -8192,8 +8369,14 @@
"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 وجود دارد اما در پیکربندی کامپوزیتور شما گنجانده نشده است. تغییرات نمایشگر پایدار نخواهند بود."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "مانند alice"
},
"e.g., firefox, kitty --title foo": {
"e.g., firefox, kitty --title foo": "مانند firefox، kitty --title foo"
@@ -8201,11 +8384,14 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "مانند focus-workspace 3، resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "مانند notify-send 'Hello' && sleep 1"
},
"e.g., scratch, /^tmp_.*/, build": {
- "e.g., scratch, /^tmp_.*/, build": ""
+ "e.g., scratch, /^tmp_.*/, build": "مانند، scratch، /^tmp_.*/، build"
},
"events": {
"events": "رویدادها"
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "پیشنهادی"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "آخرین بازدید: %1"
},
@@ -8226,7 +8409,7 @@
"leave empty for default": "برای پیشفرض خالی رها کنید"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "فعالسازی loginctl ناموفق بود (خروجی %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl در دسترس نیست - یکپارچهسازی قفل به اتصال سوکت DMS نیاز دارد"
@@ -8238,10 +8421,10 @@
"mangowc GitHub": "گیتهاب mangowc"
},
"matugen not available or disabled - cannot apply GTK colors": {
- "matugen not available or disabled - cannot apply GTK colors": ""
+ "matugen not available or disabled - cannot apply GTK colors": "Matugen دردسترس نیست یا غیرفعال است - اعمال رنگهای GTK ممکن نیست"
},
"matugen not available or disabled - cannot apply Qt colors": {
- "matugen not available or disabled - cannot apply Qt colors": ""
+ "matugen not available or disabled - cannot apply Qt colors": "Matugen دردسترس نیست یا غیرفعال است - اعمال رنگهای Qt ممکن نیست"
},
"matugen not found - install matugen package for dynamic theming": {
"matugen not found - install matugen package for dynamic theming": "matugen یافت نشد - بسته matugen را برای تم پویا نصب کنید"
@@ -8259,19 +8442,19 @@
"niri GitHub": "گیتهاب نیری"
},
"niri Matrix Chat": {
- "niri Matrix Chat": ""
+ "niri Matrix Chat": "گفتگوی ماتریکس نیری"
},
"niri shortcuts config": {
"niri shortcuts config": "پیکربندی میانبرهای نیری"
},
"niri/dms Discord": {
- "niri/dms Discord": ""
+ "niri/dms Discord": "دیسکورد نیری/dms"
},
"niri: config reloaded": {
- "niri: config reloaded": ""
+ "niri: config reloaded": "نیری: پیکربندی دوباره بارگذاری شد"
},
"niri: failed to load config": {
- "niri: failed to load config": ""
+ "niri: failed to load config": "نیری: بارگذاری پیکربندی ناموفق بود"
},
"now": {
"now": "اکنون"
@@ -8304,25 +8487,25 @@
"or run ": "یا اجرای "
},
"power-profiles-daemon not available": {
- "power-profiles-daemon not available": ""
+ "power-profiles-daemon not available": "power-profile-daemon دردسترس نیست"
},
"procs": {
"procs": "فرایند"
},
"r/niri Subreddit": {
- "r/niri Subreddit": ""
+ "r/niri Subreddit": "سابردیت r/niri"
},
"relay: %1": {
"relay: %1": "رله: %1"
},
"remote": {
- "remote": ""
+ "remote": "از راه دور"
},
"seconds": {
"seconds": "ثانیه"
},
"session %1": {
- "session %1": ""
+ "session %1": "نشست %1"
},
"source": {
"source": "منبع"
@@ -8340,13 +8523,13 @@
"update dms for NM integration.": "DMS را برای یکپارچهسازی NM بروز کنید."
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "useradd ناموفق بود (خروجی %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "userdel ناموفق بود (خروجی %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "usermod ناموفق بود (خروجی %1)"
},
"v%1 by %2": {
"v%1 by %2": "نسخه %1 توسط %2"
@@ -8397,15 +8580,9 @@
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: پیمایش • Space: گسترش • Enter: اقدام/گسترش • E: متن"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": ""
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: پیمایش • Enter/Ctrl+C: کپی • Del: حذف • Ctrl+E: ویرایش • Ctrl+S: سنجاق/برداشتن سنجاق • F10: راهنما"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: پیمایش • Enter: الصاق • Del: حذف • F10: راهنما"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: پیمایش • Enter: الصاق • Ctrl+C: کپی • Del: حذف • Ctrl+E: ویرایش • Ctrl+S: سنجاق/برداشتن سنجاق • F10: راهنما"
}
}
diff --git a/quickshell/translations/poexports/fr.json b/quickshell/translations/poexports/fr.json
index 7922eb8b..d584b78c 100644
--- a/quickshell/translations/poexports/fr.json
+++ b/quickshell/translations/poexports/fr.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "Vitesse d'animation %1"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "il y a %1 min"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'Alternatif' laisse la clé se déverrouiller d'elle-même. 'Deux facteurs' nécessite un mot de passe ou une empreinte d'abord, puis la clé."
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": ""
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Activer l’arrière-plan de la tuile et la couleur de l’icône"
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Ajouter un widget de bureau"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Ajouter une imprimante"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Ajouter un widget"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Ajouter un widget à la section %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Ajouter une bordure autour du dock"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": "Ajouter par adresse"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Identité anonyme (facultatif)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "Personnalisation d'appli"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "Substitutions d’identifiant d’application"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "Regex de l'ID d'appli (e.g. ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Apparence"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Dock d’applications"
},
"Applications": {
"Applications": "Applications"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Appliquer les modifications"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": ""
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "Applis"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Organiser les écrans et configurer la résolution, la fréquence de rafraîchissement et le VRR."
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": ""
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Masquer automatiquement le dock"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Sauvegarde automatique..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automatisation"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Disponible"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Retour"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": ""
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Opacité de l’arrière-plan"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": ""
},
- "Bar transparency": {
- "Bar transparency": ""
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Couleur de base pour les ombres (l'opacité est appliquée automatiquement)"
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth non disponible"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": ""
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Couleur de la bordure"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Opacité de la bordure"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": ""
},
- "Border with BG": {
- "Border with BG": "Bordures avec fond"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Bas"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Verr Maj est activé"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Partie centrale"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": ""
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Choisir une couleur"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Choisir des couleurs depuis la palette"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Choisir l’emplacement des affichages à l’écran"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Choisir les écrans sur lesquels afficher ce widget"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Cercle"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Classe regex (e.g. firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Gestionnaire de presse-papiers"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Presse-papier envoyé"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Service de presse-papiers non disponible"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Le presse-papiers fonctionne mais rien n’est enregistré sur le disque"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Commande"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Commandes"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Paramètres du compositeur"
},
- "Compositor not supported": {
- "Compositor not supported": "Compositeur non supporté"
- },
"Config Format": {
"Config Format": "Format de configuration"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Contraste"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Centre de contrôle"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": ""
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Délai"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Copier le PID"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": "Copier texte"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Coins et arrière-plan"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Nombre uniquement"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Thème du curseur"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "Raccourcis DMS"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS obsolète"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Format de date"
},
- "Date format": {
- "Date format": "Format de date"
- },
"Date format on greeter": {
"Date format on greeter": "Format de date sur le greeter"
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Supprimer l’imprimante"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Supprimer l'élément sauvegardé ?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Bureau"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Horloge du bureau"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Désactivation du Wi-Fi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Disc"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Afficher uniquement les espaces de travail contenant des fenêtres"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Afficher les secondes sur l’horloge"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Afficher le menu d’alimentation du système"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": ""
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
- },
"Docs": {
"Docs": "Documentation"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": "Editer règle de fenêtre"
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Entreprise"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Entrée épinglée"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Échec de l’activation de la configuration"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Échec d'activation du profil - fichier non trouvé"
- },
"Failed to add binds include": {
"Failed to add binds include": "Échec de l’ajout de l’inclusion des raccourcis"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Échec de l’annulation de la tâche sélectionnée"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "Échec de la vérification des mises à jour : %1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Échec de la vérification de la limite d'épinglage"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Échec de la création de l’imprimante"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Échec de la création des répertoires de profils"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Échec de la suppression du VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Échec de la mise en attente de la tâche"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": ""
},
- "Failed to save profile file": {
- "Failed to save profile file": "Échec de la sauvegarde du fichier de profil"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Échec de l'envoi du presse-papier"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Échec de la mise à jour du partage"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Échec de l’écriture du fichier temporaire pour la validation"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Remplir"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Rechercher dans le texte"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": ""
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Flottant"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": ""
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Focus"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Focus au démarrage"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Bordure active"
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Forcer l'arrêt (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Forcer les couleurs étendues"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Légende du format"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "%1 paquet trouvé à mettre à jour :"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "%1 paquets trouvés à mettre à jour :"
- },
"Frame": {
"Frame": ""
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Jour et mois complets"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Complet avec l'année"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": "Plein écran"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Le contrôle du gamma n’est pas disponible. Nécessite l’API DMS v6 ou supérieure."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Cacher les indicateurs"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Masquer le widget de mise à jour"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "Masquer lors de la saisie"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Palette fidèle qui préserve les teintes d'origine."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Site Hyprland"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Je comprends"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Au repos"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inhibiteur d'inactivité"
},
"Idle Settings": {
"Idle Settings": "Paramètres d'inactivité"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Surveillance de l'inactivité non prise en charge - nécessite une version plus récente de Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Si le champ est masqué, il apparaîtra dès qu'une touche est pressée."
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": "Inhibable"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Lancer sur le GPU intégrée"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "Lancer sur dGPU par défaut"
- },
"Launcher": {
"Launcher": "Lanceur"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Déconnexion"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "Connexion..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Longitude"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Faible priorité"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": ""
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": ""
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Bac de récupération plein"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Critères de correspondance"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Correspond au profil : %1"
- },
"Material": {
"Material": ""
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Paramètres du lecteur multimédia"
},
- "Media Players": {
- "Media Players": "Lecteurs multimédia"
- },
"Media Players (": {
"Media Players (": "Lecteurs multimédias ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "L min"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Palette minimaliste basée sur une seule teinte."
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Icônes d’espaces de travail nommés"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": ""
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Aucun arrière-plan"
},
- "No Battery": {
- "No Battery": "Aucune batterie"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Aucun adaptateur Bluetooth détecté"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Aucune personnalisation des applis."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Aucune appli trouvée"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Aucune appli en sourdine. Faites un clic droit sur une notification et choisir \"Mettre en sourdine\" pour l'ajouter."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Aucune batterie"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Aucun périphérique de sortie trouvé"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "Aucun gestionnaire de paquets trouvé. Installer 'paru' ou 'yay' sur les systèmes basés sur Arch pour vérifier les mises à jour."
- },
"No peers found": {
"No peers found": ""
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Aucune règle de fenêtre configurée"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Aucun"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Non détecté"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Non appairé"
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": "Ouvrir les fichiers"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "Ouverture du terminal : "
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Emplacement facultatif"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Options"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Zone de sortie pleine"
},
- "Output Device": {
- "Output Device": "Appareil de sortie"
- },
"Output Devices": {
"Output Devices": "Périphériques de sortie"
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Ombre de la popup"
},
- "Popup Transparency": {
- "Popup Transparency": "Transparence du popup"
- },
"Popup behavior, position": {
"Popup behavior, position": "Comportement et position des notifications"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Personnalisation du menu d’alimentation"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Arrêter"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protocole"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "Lire :"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Nécessite le support du mode nuit"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Réinitialiser"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Règles (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Relancer"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Enregistrer"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Score"
},
- "Screen Sharing": {
- "Screen Sharing": "Partage d'écran"
- },
"Screen sharing": {
"Screen sharing": "Partage d’écran"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Chercher des options"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Recherchez par combinaison de touches, description ou nom de l’action.\n\nL’action par défaut copie le raccourci dans le presse-papiers.\nCliquez droit ou appuyez sur la flèche droite pour épingler les raccourcis fréquents – ils apparaîtront en haut lorsqu’aucune recherche n’est effectuée."
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "Sélectionner une couleur dans la palette ou utiliser les curseurs personnalisés"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Sélectionner un widget à ajouter au bureau. Chaque widget est une instance indépendante avec ses propres paramètres."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Maj+Suppr : Tout effacer • Échap : Fermer"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Entrer pour coller"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Entrée: Copier • Shift+Suppr: Tout effacer • Echap: Fermer"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Entrée : Coller • Shift+Suppr : Tout effacer • Échap : Fermer"
- },
"Short": {
"Short": "Court"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Afficher l’humidité"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Montrer le bouton du Lanceur"
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Afficher les onglets de mode et les raccourcis clavier en bas."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": ""
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Afficher à l’écran lors du changement du volume"
},
- "Show seconds": {
- "Show seconds": "Afficher les secondes"
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Ignorer la configuration"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Petit"
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Sons"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Rayures"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "Résumé"
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Notifications toast système"
},
- "System update custom command": {
- "System update custom command": "Commande personnalisée de mise à jour"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Onglet"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": ""
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Paramètres supplémentaires pour le terminal"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "La file d’attente d’impression est vide"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Thème et couleurs"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Thèmes"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Épaisseur"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": ""
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "Cela peut prendre quelques secondes"
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Format de l’heure"
},
- "Time format": {
- "Time format": "Format de l'heure"
- },
"Time remaining: %1": {
"Time remaining: %1": "Temps restant : %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": ""
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "GIFs populaires"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Indisponible"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Couleur non focalisée"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Durée d'activité :"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Couleur urgente"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "Utiliser le thème système"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Utiliser une largeur de bordure/anneau de focus personnalisée"
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Utiliser une commande personnalisée pour mettre à jour le système"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Utiliser des espaces personnalisés au lieu de l’espacement de la barre"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "Utilisez l'authentification par empreinte pour l'écran de verrouillage."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Utiliser le thème clair au lieu du thème sombre"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Utiliser le thème sonore des paramètres système"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Utilisateur"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Tuilage vertical"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Vif"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "Une fois verrouillé"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Lorsque ce widget est utilisé, le masquer s'il n'y a aucune mise à jour"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Mot de passe Wi-Fi"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Espaces de travail et widgets"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Écrire :"
},
"X Axis": {
"X Axis": "Axe X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Axe Y"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Vous devez définir soit :\nQT_QPA_PLATFORMTHEME=gtk3 OU\nQT_QPA_PLATFORMTHEME=qt6ct\ncomme variables d'environnement, puis redémarrer le shell.\n\nqt6ct nécessite que qt6ct-kde soit installé."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Tout est prêt !"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "Votre système est à jour !"
},
@@ -8192,6 +8369,12 @@
"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 configuration dms/outputs existe mais n’est pas incluse dans votre configuration du compositeur. Les changements d’affichage ne persisteront pas."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "i.e., focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "ex. notify-send 'Bonjour' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "À la une"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": ""
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓ : Naviguer • Entrée/Ctrl+C : Copier • Suppr : Supprimer • F10 : Aide"
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Naviguer • Entrée: Coller • Suppr: Supprimer • F10: Aide"
}
}
diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json
index ea152523..4d859beb 100644
--- a/quickshell/translations/poexports/he.json
+++ b/quickshell/translations/poexports/he.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "מהירות האנימציה ב%1"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "לפני %1 דקות"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'חלופי' מאפשר למפתח לפתוח את הנעילה בעצמו. 'גורם שני' דורש קודם סיסמה או טביעת אצבע, ואז את המפתח."
},
@@ -294,10 +300,10 @@
"A modern desktop shell for Wayland compositors": "מעטפת שולחן עבודה מודרנית לקומפוזיטורים של Wayland"
},
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": {
- "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
+ "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "פעולת משגר מינימלית ונפרדת שעובדת במצב עצמאי, במצב מסגרת נפרדת ובמצב מסגרת מחוברת."
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "כבר קיים משתמש/ת עם השם זה."
},
"AC Power": {
"AC Power": "חשמל AC"
@@ -342,10 +348,10 @@
"Action failed or terminal was closed.": "הפעולה נכשלה או שהמסוף נסגר."
},
"Action performed when scrolling horizontally on the bar": {
- "Action performed when scrolling horizontally on the bar": ""
+ "Action performed when scrolling horizontally on the bar": "פעולה שתבוצע בעת גלילה אופקית על הסרגל"
},
"Action performed when scrolling vertically on the bar": {
- "Action performed when scrolling vertically on the bar": ""
+ "Action performed when scrolling vertically on the bar": "פעולה שתבוצע בעת גלילה אנכית על הסרגל"
},
"Actions": {
"Actions": "פעולות"
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "VPN פעיל"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "צבע רקע וסמל של האריח הפעיל"
},
@@ -396,10 +405,10 @@
"Add": "הוספה"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "להוסיף את \"%1\" לקבוצה %2?"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "להוסיף את \"%1\" לקבוצה %2? עליהם להתנתק ולהתחבר מחדש, ולאחר מכן להריץ את הפקודה dms greeter sync --profile כדי לפרסם את ערכת הנושא שלהם למסך ההתחברות."
},
"Add Bar": {
"Add Bar": "הוסף/י סרגל"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "הוספת ווידג׳ט לשולחן העבודה"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "הוספת מדפסת"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "הוספת ווידג׳ט"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "הוספת ווידג׳ט למקטע %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "הוסף/י מסגרת מסביב לDock"
@@ -431,14 +446,20 @@
"Add by Address": {
"Add by Address": "הוספה לפי כתובת"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "הוסף/י את המשתמש/ת החדש/ה לקבוצה %1 כדי שיוכלו להריץ את הפקודה dms greeter sync --profile."
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "הוסף/י את המשתמש/ת החדש/ה לקבוצה %1 כדי שיוכלו להשתמש בsudo."
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "כוונן/י את גובה הסרגל באמצעות ריווח פנימי"
},
"Adjust the number of columns in grid view mode.": {
"Adjust the number of columns in grid view mode.": "התאם/י את מספר העמודות במצב תצוגת רשת."
@@ -450,7 +471,7 @@
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "כוונן/י את הניגודיות של הצבעים שנוצרו (100- = מינימום, 0 = סטנדרטי, 100 = מקסימום)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "קבוצת מנהלים:"
},
"Advanced": {
"Advanced": "מתקדם"
@@ -474,19 +495,19 @@
"All displays": "כל המסכים"
},
"Allow": {
- "Allow": ""
+ "Allow": "אפשר/י"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "אפשר/י ללחיצות לעבור מבעד לווידג׳ט"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "לאפשר גישה לgreeter?"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "אפשר/י גישת התחברות לgreeter"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "כבר בהפעלה זו"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: חזרה • F1/I: מידע על הקובץ • F10: עזרה • Esc: סגירה"
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "זהות אנונימית (אופציונלי)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "התאמות אישיות לאפליקציות"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "החלפת ID לאפליקציות"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "App ID regex (לדוגמה ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "מראה"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Dock אפליקציות"
},
"Applications": {
"Applications": "אפליקציות"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "החל/י שינויים"
},
@@ -588,7 +627,7 @@
"Apply compositor blur behind the frame border": "החל/י טשטוש של הקומפוזיטור מאחורי גבול המסגרת"
},
"Apply inverse concave corner cutouts to the bar": {
- "Apply inverse concave corner cutouts to the bar": ""
+ "Apply inverse concave corner cutouts to the bar": "החל/י חיתוכי פינות קעורים הפוכים על הסרגל"
},
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "הגדרת טמפרטורת צבע חמה כדי להפחית מאמץ בעיניים. השתמש/י בהגדרות האוטומציה למטה כדי לשלוט מתי ההגדרה מופעלת."
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "מחיל שינויי אימות…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "אפליקציות"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "סדר/י מסכים והגדר/י רזולוציה, קצב רענון וVRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "לפחות פלט אחד חייב להישאר מופעל"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "הסתרה אוטומטית של הDock"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "שומר אוטומטית..."
},
@@ -774,7 +831,7 @@
"Automatic Cycling": "מעבר מחזורי אוטומטי"
},
"Automatically calculate popup gap based on bar spacing": {
- "Automatically calculate popup gap based on bar spacing": ""
+ "Automatically calculate popup gap based on bar spacing": "חשב/י אוטומטית את מרווח החלונית הקופצת בהתבסס על ריווח הסרגל"
},
"Automatically cycle through wallpapers in the same folder": {
"Automatically cycle through wallpapers in the same folder": "עבור/עברי באופן אוטומטי ומחזורי בין רקעים שנמצאים באותה תיקייה"
@@ -789,7 +846,7 @@
"Automatically determine your location using your IP address": "קבע/י את מיקומך אוטומטית באמצעות כתובת הIP שלך"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "הסתר/י אוטומטית את הסרגל כאשר מצביע העכבר מתרחק"
},
"Automatically lock after": {
"Automatically lock after": "נעילה אוטומטית לאחר"
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "אוטומציה"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "זמין"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "חזרה"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "טשטוש רקע"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "שקיפות רקע"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "ריווח וגודל הסרגל"
},
- "Bar transparency": {
- "Bar transparency": "שקיפות הסרגל"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "צבע בסיס לצללים (שקיפות מוחלת אוטומטית)"
},
@@ -912,10 +978,10 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "מקשר את מסך הנעילה לאותות D-Bus מloginctl. יש להשבית אם משתמשים במסך נעילה חיצוני."
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "קשר/י את פעולת הIPC של spotlight בהגדרות הקומפוזיטור שלך."
},
"Bind the spotlight-bar IPC action in your compositor config.": {
- "Bind the spotlight-bar IPC action in your compositor config.": ""
+ "Bind the spotlight-bar IPC action in your compositor config.": "קשר/י את פעולת הIPC של spotlight-bar בהגדרות הקומפוזיטור שלך."
},
"Binds Include Missing": {
"Binds Include Missing": "קובץ includes של קיצורי מקלדת חסר"
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth אינו זמין"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "צבע מסגרת הטשטוש"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "צבע מסגרת"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "שקיפות המסגרת"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "צבע המסגרת סביב משטחים מטושטשים"
},
- "Border with BG": {
- "Border with BG": "מסגרת עם רקע"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "למטה"
@@ -1101,7 +1176,7 @@
"Canceled": "בוטל"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "לא ניתן למחוק את מנהל/ת המערכת היחיד/ה"
},
"Cannot disable the only output": {
"Cannot disable the only output": "לא ניתן להשבית את הפלט היחיד"
@@ -1116,7 +1191,7 @@
"Cannot pair": "לא ניתן לצמד"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "לא ניתן להסיר את מנהל/ת המערכת היחיד/ה"
},
"Capabilities": {
"Capabilities": "יכולות"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Caps Lock פעיל"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "קטע אמצעי"
},
@@ -1176,10 +1257,7 @@
"Check on startup": "בדוק/בדקי בהפעלה"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
- },
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "בדוק/בדקי את מצב הסנכרון לפי דרישה. הסנכרון מעתיק את תצורת ערכת הנושא, ההגדרות ותמונת הרקע שלך למסך ההתחברות. שינויי אימות מוחלים באופן אוטומטי."
+ "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "בדוק/בדקי את מצב הסנכרון לפי דרישה. סנכרון (מלא) מיועד למנהל/ת הראשי/ת: הסנכרון מעתיק את ערכת הנושא שלך למסך ההתחברות ומגדיר את תצורת הgreeter של המערכת. במערכות מרובות משתמשים, הוסף/י חשבונות אחרים תחת הגדרות → משתמשים, ולאחר מכן בקש/י מכל אחד מהם להריץ dms greeter sync --profile לאחר התנתקות והתחברות מחדש - לא סנכרון מלא. שינויי אימות מוחלים באופן אוטומטי."
},
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "בדוק/בדקי את הפקודה המותאמת אישית שלך בהגדרות → Dock → אשפה."
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "בחר/י צבע"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "בחר/י צבעים מפלטה"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "בחר/י היכן יופיעו תצוגות הOSD על המסך"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "בחר/י באילו מסכים יוצג ווידג׳ט זה"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "עיגול"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Class regex (לדוגמה ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "מנהל לוח ההעתקה"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "לוח ההעתקה נשלח"
},
- "Clipboard service not available": {
- "Clipboard service not available": "שירות לוח ההעתקה אינו זמין"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "לוח ההעתקה יעבוד אך שום דבר לא יישמר לדיסק"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "פקודה"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "פקודות"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "הגדרות לקומפוזיטור"
},
- "Compositor not supported": {
- "Compositor not supported": "קומפוזיטור לא נתמך"
- },
"Config Format": {
"Config Format": "פורמט ההגדרות"
},
@@ -1512,7 +1599,7 @@
"Confirm passkey for ": "אשר/י מפתח גישה עבור "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "אימות סיסמה"
},
"Conflicts with: %1": {
"Conflicts with: %1": "מתנגש עם: %1"
@@ -1539,7 +1626,7 @@
"Connected Displays": "מסכים מחוברים"
},
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": {
- "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
+ "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "מצב מסגרת מחוברת משתמש במשגר המחובר עבור קיצורי הדרך של משגר ברירת המחדל."
},
"Connected Options": {
"Connected Options": "אפשרויות מצב מחובר"
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "ניגודיות"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "מרכז הבקרה"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "אפשרויות נוחות למסך ההתחברות. הרץ/י סנכרון כדי להחיל."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "זמן המתנה"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "העתק/י PID"
},
- "Copy Path": {
- "Copy Path": "העתק/י נתיב"
- },
"Copy Text": {
"Copy Text": "העתק/י טקסט"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "פינות ורקע"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "ספירה בלבד"
},
@@ -1689,7 +1782,7 @@
"Create Printer": "צור/צרי מדפסת"
},
"Create User": {
- "Create User": ""
+ "Create User": "צור/צרי משתמש"
},
"Create Window Rule": {
"Create Window Rule": "צור/צרי חוק לחלון"
@@ -1715,17 +1808,11 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: החלפת כרטיסיה • Ctrl+S: הצמדה/ביטול הצמדה • Shift+Del: ניקוי הכל • Esc: סגירה"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: החלפת כרטיסיה • Ctrl+S: הצמדה/ביטול הצמדה • Shift+Enter: העתקה • Shift+Del: ניקוי הכל • Esc: סגירה"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: החלפת כרטיסיה • Ctrl+S: הצמדה/ביטול הצמדה • Shift+Enter: הדבקה • Shift+Del: ניקוי הכל • Esc: סגירה"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: החלפת כרטיסיות • Ctrl+S: הצמדה/ביטול הצמדה • Shift+Enter: העתקה • Shift+Del: ניקוי הכל • F10: עזרה • Esc: סגירה"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: החלפת כרטיסיות • Ctrl+S: הצמדה/ביטול הצמדה • Shift+Enter: הדבקה • Shift+Del: ניקוי הכל • F10: עזרה • Esc: סגירה"
},
"Current": {
"Current": "עכשיו"
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "ערכת נושא לסמן העכבר"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "מעוקם: המרה לפי עקומות."
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": "הגדרות DMS"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "קיצורי DMS"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "מסך ההתחברות של DMS דורש את החבילות הבאות: greetd ו-dms-greeter (חובה), fprintd ו-pam_fprintd (להזדהות עם טביעת אצבע) ו-pam_u2f (להזדהות עם מפתחות אבטחה). הוסף/הוסיפי את המשתמש שלך לקבוצת greeter. שינויי אימות מוחלים באופן אוטומטי ועשויים לפתוח מסוף כאשר נדרש אימות עם sudo."
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "הDMS לא מעודכן"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "תבנית תאריך"
},
- "Date format": {
- "Date format": "תבנית תאריך"
- },
"Date format on greeter": {
"Date format on greeter": "תבנית תאריך בGreeter"
},
@@ -1974,22 +2064,22 @@
"Default Apps": "אפליקציות ברירת מחדל"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "משגר ברירת מחדל"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "קיצור מקלדת למשגר ברירת המחדל"
},
"Default Opens": {
- "Default Opens": ""
+ "Default Opens": "פתיחה כברירת מחדל"
},
"Default Width (%)": {
"Default Width (%)": "רוחב ברירת מחדל (%)"
},
"Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": {
- "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": ""
+ "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "קיצורי משגר ברירת המחדל פותחים את המשגר המלא עם כרטיסיות מצבים, תצוגת רשת ופאנל פעולות."
},
"Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": {
- "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": ""
+ "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "קיצורי משגר ברירת המחדל פותחים את סרגל הSpotlight המינימלי. הקיצור הייעודי לסרגל הSpotlight להלן נשאר עצמאי."
},
"Default selected action": {
"Default selected action": "פעולת ברירת המחדל הרצויה"
@@ -2007,7 +2097,7 @@
"Delete": "מחק/י"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "למחוק את \"%1\" ולהסיר את תיקיית הבית? לא ניתן לבטל פעולה זו."
},
"Delete \"%1\"?": {
"Delete \"%1\"?": "למחוק את \"%1\"?"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "מחק/י מדפסת"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "למחוק את הפריט השמור?"
},
@@ -2031,10 +2124,10 @@
"Delete profile \"%1\"?": "למחוק את הפרופיל \"%1\"?"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "מחק/י משתמש/ת"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "למחוק את המשתמש/ת?"
},
"Demi Bold": {
"Demi Bold": "חצי מודגש"
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "שולחן העבודה"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "שעון לשולחן העבודה"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "משבית WiFi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "דיסק"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": "הצג/י מספרי שורות בעורך"
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "הצג/י רק סביבות עבודה שמכילות חלונות"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "הצג/י שניות בשעון"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "הצג/י את תפריט המערכת לניהול החשמל"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "שוליים, שקיפות ומסגרת הDock"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "ריווח, שקיפות ומסגרת הDock"
- },
"Docs": {
"Docs": "דוקיומנטציה"
},
@@ -2307,7 +2409,7 @@
"Drizzle": "טפטוף"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "לבטל את הדריסה שלך עבור %1 כך שפעולת ברירת המחדל של DMS תחול מחדש?"
},
"Duplicate": {
"Duplicate": "שכפל/י"
@@ -2358,13 +2460,16 @@
"Edit App": "ערוך/ערכי אפליקציה"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "ערוך/ערכי לוח העתקה"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "ערוך/ערכי את חוק החלון"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "ערוך/ערכי טקסט מלוח ההעתקה"
},
"Education": {
"Education": "חינוך"
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "ארגוני"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "הרשומה הוצמדה"
},
@@ -2580,7 +2688,7 @@
"Exclusive Zone Offset": "היסט האזור הבלעדי"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "משתמשים קיימים"
},
"Experimental Feature": {
"Experimental Feature": "תכונה ניסיונית"
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "הפעלת התצורה נכשלה"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "הפעלת הפרופיל נכשלה - הקובץ לא נמצא"
- },
"Failed to add binds include": {
"Failed to add binds include": "הוספת קובץ includes של קיצורי מקלדת נכשלה"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "ביטול העבודה שנבחרה נכשל"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "בדיקת העדכונים נכשלה:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "בדיקת מגבלת ההצמדה נכשלה"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "יצירת המדפסת נכשלה"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "יצירת תיקיית הפרופילים נכשלה"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "מחיקת הVPN נכשלה"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": "קבלת קוד QR של הרשת נכשלה: %1"
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "השהיית העבודה נכשלה"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "שמירת הפרופיל נכשלה"
},
- "Failed to save profile file": {
- "Failed to save profile file": "שמירת קובץ פרופיל נכשלה"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "שליחת לוח ההעתקה נכשלה"
},
@@ -2865,7 +2964,7 @@
"Failed to update autoconnect": "עדכון הגדרת התחברות אוטומטית נכשל"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "עדכון לוח ההעתקה נכשל"
},
"Failed to update description": {
"Failed to update description": "עדכון התיאור נכשל"
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "עדכון השיתוף נכשל"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "כתיבת קובץ זמני לאימות נכשלה"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "מילוי"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "חפש/י בטקסט"
},
@@ -2940,7 +3048,7 @@
"Find in note...": "חפש/י בפתק..."
},
"Fine-tune the space reserved for the bar from the screen edge": {
- "Fine-tune the space reserved for the bar from the screen edge": ""
+ "Fine-tune the space reserved for the bar from the screen edge": "כוונון עדין של המרווח השמור לסרגל מקצה המסך"
},
"Fingerprint availability could not be confirmed.": {
"Fingerprint availability could not be confirmed.": "לא ניתן היה לאשר את זמינות טביעת האצבע."
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "שגיאת טביעת אצבע"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "שגיאת טביעת אצבע: %1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "טביעת האצבע לא זוהתה (%1/%2). נא לנסות שוב או להשתמש בסיסמה."
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "צף"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "Fluent"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "מיקוד"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "מיקוד בהפעלה"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "מסגרת ממוקדת"
},
@@ -3042,7 +3159,7 @@
"Follow focus": "עקוב/י אחר מיקוד"
},
"Follows the default launcher choice selected above.": {
- "Follows the default launcher choice selected above.": ""
+ "Follows the default launcher choice selected above.": "עוקב אחר בחירת משגר ברירת המחדל שנבחרה לעיל."
},
"Font": {
"Font": "גופן"
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "כפה/י סגירה (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "אלץ/י צבע רחב"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "מקרא תבניות"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "נמצאה %1 חבילה לעדכון:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "נמצאו %1 חבילות לעדכון:"
- },
"Frame": {
"Frame": "מסגרת"
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "יום וחודש מלאים"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "מלא עם שנה"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": "משגר בעל תכונות מלאות עם כרטיסיות מצב, תצוגת רשת ופאנל פעולות."
- },
"Fullscreen": {
"Fullscreen": "מסך מלא"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "בקרת גאמה אינה זמינה. נדרש API של DMS גרסה 6 ומעלה."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "צור/צרי תצורות בסיס עבור GTK3/4 או QT5/QT6 (החבילה qt6ct-kde נדרשת) כדי לעקוב אחר הצבעים של DMS. צריך ליצור את התבנית רק פעם אחת.
מומלץ להגדיר את adw-gtk3 לפני החלת ערכות נושא על GTK."
},
@@ -3255,19 +3372,19 @@
"Gradually fade the screen before turning off monitors with a configurable grace period": "הפעל/י דהייה הדרגתית של התצוגה לפני כיבוי המסכים עם תקופת חסד הניתנת להגדרה"
},
"Grant": {
- "Grant": ""
+ "Grant": "הענק/י"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "להעניק הרשאת ניהול?"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "הענק/י הרשאות לניהול המערכת"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "הוענקו הרשאות לניהול המערכת"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "הוענקה גישת התחברות לgreeter"
},
"Graph Time Range": {
"Graph Time Range": "טווח זמן לגרף"
@@ -3294,10 +3411,10 @@
"Greeter font": "גופן מסך ההתחברות"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "חברי קבוצת greeter יכולים לסנכרן את ערכת הנושא שלהם למסך ההתחברות באמצעות dms greeter sync --profile לאחר התנתקות והתחברות מחדש."
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "קבוצת greeter:"
},
"Greeter only — does not affect main clock": {
"Greeter only — does not affect main clock": "במסך ההתחברות בלבד - ללא השפעה על השעון הראשי"
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "הסתר/י מחוונים"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "הסתרת הווידג׳ט של מעדכן המערכת"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "הסתרה במצב מסך מלא"
- },
"Hide When Typing": {
"Hide When Typing": "הסתרה בעת ההקלדה"
},
@@ -3456,10 +3567,10 @@
"Hide on Touch": "הסתר/י במגע"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "הסתר/י את הסרגל כשמצביע העכבר עוזב גם אם חלון קופץ עדיין פתוח"
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "הסתר/י את הDock כאשר חלון נמצא במצב מסך מלא"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "פלטת צבעים בנאמנות גבוהה המשמרת את גווני המקור."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "האתר של Hyprland"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "הבנתי"
@@ -3582,22 +3699,25 @@
"Icon Theme": "ערכת נושא של סמלים"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "התראות זהות מוצגות כחלון קופץ אחד במקום להיערם"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "התראות זהות נערמות ככרטיסי התראה נפרדים"
},
"Idle": {
"Idle": "בהמתנה"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "מונע ההמתנה"
},
"Idle Settings": {
"Idle Settings": "הגדרות המתנה"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "ניטור המתנה אינו נתמך – נדרשת גרסת Quickshell חדשה יותר"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "אם השדה מוסתר, הוא יופיע ברגע שלוחצים על מקש."
@@ -3677,8 +3797,11 @@
"Inhibitable": {
"Inhibitable": "ניתן לעיכוב"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "ריווח פנימי שמוחל על כל ווידג׳ט"
},
"Input Devices": {
"Input Devices": "התקני קלט"
@@ -3771,7 +3894,7 @@
"Invalid password for %1": "סיסמה שגויה עבור %1"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "שם משתמש לא חוקי"
},
"Invert on mode change": {
"Invert on mode change": "היפוך בעת שינוי מצב"
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "הפעל/י על dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "הפעל/י על הdGPU כברירת מחדל"
- },
"Launcher": {
"Launcher": "משגר"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "צד הופעת המשגר"
},
- "Launcher Style": {
- "Launcher Style": "סגנון המשגר"
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "שקיפות קווי המתאר של השכבה"
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "התנתקות"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "מתחבר..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "קו אורך"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "עדיפות נמוכה"
},
@@ -4077,13 +4194,13 @@
"Mail": "דואר"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "הפוך/הפכי למנהל/ת"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "ודא/י ש-KDE Connect או Valent פועל על ההתקנים האחרים שלך"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "הפוך/הפכי את רקע הסרגל לשקוף לחלוטין"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "נהל/י והגדר/י תוספים להרחבת היכולות של DMS"
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "מנוהל על ידי המסגרת"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": "מנוהל על ידי מצב מסגרת"
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "מנוהל על ידי המסגרת במצב ״מחובר״"
},
@@ -4128,7 +4242,7 @@
"Manual Show/Hide": "הצגה/הסתרה ידנית"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "הגדרה ידנית"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "מפה/י שמות של סוגי חלונות לשמות של סמלים כדי לוודא שהסמלים מוצגים כראוי"
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "מיכל העודפים מלא"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "קריטריוני התאמה"
},
- "Matches profile: %1": {
- "Matches profile: %1": "תואם לפרופיל: %1"
- },
"Material": {
"Material": "Material"
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "הגדרות נגן המדיה"
},
- "Media Players": {
- "Media Players": "נגני מדיה"
- },
"Media Players (": {
"Media Players (": "נגני מדיה ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "רוחב מינימלי"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": "סרגל מינימלי בסגנון Spotlight: מופיע באופן מיידי בראש המסך ומתרחב בעת ההקלדה."
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "פלטת צבעים מינימלית הבנויה סביב גוון יחיד."
},
@@ -4419,7 +4530,7 @@
"Mount Points": "נקודות עגינה"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "לחיצות עכבר עוברות מבעד לסרגל לחלונות שמאחוריו"
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "מראה של סמן העכבר"
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "סמלים לסביבות עבודה בעלות שם"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "מובנה: מעבד הפלטפורמה המובנה (FreeType)."
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "ללא רקע"
},
- "No Battery": {
- "No Battery": "אין סוללה"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "לא נמצא מתאם Bluetooth"
},
@@ -4659,7 +4770,7 @@
"No active %1 sessions": "אין הפעלות פעילות של %1"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "לא נמצאה הפעלה פעילה עבור %1"
},
"No adapter": {
"No adapter": "אין מתאם"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "אין התאמות אישיות לאפליקציות."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "לא נמצאו אפליקציות"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "אין אפליקציות מושתקות. לחץ/י לחיצה ימנית על התראה ובחר/י ב\"השתק/י חלונות קופצים\" להוספה לכאן."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "אין סוללה"
},
@@ -4734,7 +4851,7 @@
"No hidden apps.": "אין אפליקציות מוסתרות."
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "לא נמצאו חשבונות משתמש אנושיים."
},
"No info items": {
"No info items": "אין פריטי מידע"
@@ -4776,7 +4893,7 @@
"No mount points found": "לא נמצאו נקודות עגינה"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "אין הפעלות פעילות נוספות במושב זה"
},
"No output device": {
"No output device": "אין התקן פלט"
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "לא נמצאו התקני פלט"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "לא נמצא מנהל חבילות. אנא התקן/י את 'paru' או 'yay' כדי לבדוק עדכונים במערכות מבוססות Arch."
- },
"No peers found": {
"No peers found": "לא נמצאו עמיתים"
},
@@ -4824,7 +4938,7 @@
"No saved clipboard entries": "אין רשומות לוח ההעתקה שמורות"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "לא נבחרה הפעלה"
},
"No sessions found": {
"No sessions found": "לא נמצאו הפעלות"
@@ -4848,7 +4962,7 @@
"No trigger": "אין מפעיל"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "לא צוין משתמש"
},
"No video found in folder": {
"No video found in folder": "לא נמצא וידאו בתיקייה"
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "לא הוגדרו חוקי חלון"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "ללא"
},
@@ -4908,7 +5025,7 @@
"Not available — install or configure pam_u2f.": "לא זמין — התקן/י או הגדר/י את pam_u2f."
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "לא מקושר"
},
"Not connected": {
"Not connected": "לא מחובר"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "לא זוהה"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "לא מוצמד"
},
@@ -5040,10 +5160,10 @@
"Opacity": "שקיפות"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "שקיפות של רקע הסרגל"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "שקיפות של רקעי הווידג׳טים"
},
"Opaque": {
"Opaque": "אטום"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "פותח קבצים"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "פותח מסוף: "
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "פותח בורר של הפעלות פעילות נוספות במושב זה"
},
"Opens image files": {
"Opens image files": "לפתיחת קבצי תמונות"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "פותח את המשגר המחובר במצב מסגרת מחוברת."
},
"Optional description": {
"Optional description": "תיאור אופציונלי"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "מיקום אופציונלי"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "אפשרויות"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "אזור הפלט מלא"
},
- "Output Device": {
- "Output Device": "התקן פלט"
- },
"Output Devices": {
"Output Devices": "התקני פלט"
},
@@ -5181,7 +5304,7 @@
"Override Gaps": "דריסת רווחים"
},
"Override global layout settings for this output": {
- "Override global layout settings for this output": "דרוס/י הגדרות פריסה גלובליות לפלט זה"
+ "Override global layout settings for this output": "דרוס/דרסי הגדרות פריסה גלובליות לפלט זה"
},
"Override global transparency for Notepad": {
"Override global transparency for Notepad": "דריסת שקיפות גלובלית עבור פנקס"
@@ -5190,10 +5313,10 @@
"Override terminal with a custom command or script": "דרוס/דרסי את המסוף עם פקודה או תסריט מותאמים אישית"
},
"Override the global shadow with per-bar settings": {
- "Override the global shadow with per-bar settings": "דרוס/י את הצל הגלובלי עם הגדרות לכל סרגל בנפרד"
+ "Override the global shadow with per-bar settings": "דרוס/דרסי את הצל הגלובלי עם הגדרות לכל סרגל בנפרד"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "דרוס/דרסי את גודל מרווח החלונית הקופצת כאשר מצב אוטומטי מושבת"
},
"Overrides": {
"Overrides": "דריסות"
@@ -5280,22 +5403,22 @@
"Password": "סיסמה"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "הסיסמה לא יכולה להיות ריקה"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "שינוי הסיסמה נכשל (יציאה %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "הסיסמה הוגדרה"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "הסיסמה עודכנה"
},
"Password...": {
"Password...": "סיסמה..."
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "הסיסמאות אינן תואמות."
},
"Paste": {
"Paste": "הדבק/י"
@@ -5403,10 +5526,10 @@
"Place plugins in %1": "מקם/י תוספים ב-%1"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "הצב/י את הסרגל בשכבת הכיסוי העליונה (overlay layer) של Wayland"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "הצב/י את הDock בשכבת הכיסוי העליונה (overlay layer) של Wayland"
},
"Play a video when the screen locks.": {
"Play a video when the screen locks.": "נגן/י וידאו כאשר המסך ננעל."
@@ -5487,7 +5610,7 @@
"Pointer": "מצביע"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "האינטגרציה עם Polkit מושבתת. ניהול משתמשים דורש את Polkit לצורך עדכון ההרשאות."
},
"Popout Shadows": {
"Popout Shadows": "הצללות של חלונות קופצים"
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "צל לחלון קופץ"
},
- "Popup Transparency": {
- "Popup Transparency": "שקיפות חלונית קופצת"
- },
"Popup behavior, position": {
"Popup behavior, position": "התנהגות ומיקום חלונות קופצים"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "התאמה אישית של תפריט הכיבוי"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "כיבוי"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "פרוטוקול"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": "צבעי Qt הוחלו בהצלחה"
},
@@ -5757,7 +5883,10 @@
"Rate": "קצב"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "הזן/י סיסמה מחדש"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "קריאה:"
@@ -5787,7 +5916,7 @@
"Refresh Weather": "רענן/י מזג אוויר"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "מרענן…"
},
"Regex": {
"Regex": "Regex"
@@ -5814,7 +5943,7 @@
"Remaining / Total": "נותר / סה״כ"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "זכור/זכרי מצב אחרון"
},
"Remember Last Query": {
"Remember Last Query": "זכירת הבקשה האחרונה"
@@ -5829,46 +5958,49 @@
"Remove": "הסרה"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "להסיר את \"%1\" מהקבוצה %2?"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "להסיר קיצור דרך?"
},
"Remove Widget Padding": {
"Remove Widget Padding": "הסרת הריווח של הווידג׳טים"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "הסר/י מנהל/ת"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "להסיר מנהל/ת?"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "הסר/י עיגול פינות מהסרגל"
},
"Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "הסר/י רווחים ומסגרת כאשר חלונות ממוקסמים"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "להסיר גישת greeter?"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "הסר/י גישת התחברות לgreeter"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "הסר/י ריווח פנימי מכל הווידג׳טים"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "להסיר את קיצור הדרך %1?"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "להסיר את קיצור הדרך %1? רשומת ביטולקישור תישמר בdms/binds-user.lua כדי שהוא יישאר מוסר גם לאחר עדכוני DMS."
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "הוסרו הרשאות מנהל מערכת"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "הוסרה גישת התחברות לgreeter"
},
"Rename": {
"Rename": "שנה/י שם"
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "תמיכה במצב לילה נדרשת"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "איפוס"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "אפס/י גודל"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "לאפס לברירת מחדל?"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "איפוס לברירת מחדל"
},
"Reset to default name": {
"Reset to default name": "אפס/י לשם ברירת מחדל"
@@ -5958,7 +6093,7 @@
"Restore Special Workspace Windows": "שחזר/י חלונות מסביבת עבודה מיוחדת"
},
"Restore the last selected mode (tab) when the launcher is opened": {
- "Restore the last selected mode (tab) when the launcher is opened": ""
+ "Restore the last selected mode (tab) when the launcher is opened": "שחזר/י את המצב (כרטיסייה) האחרון שנבחר בעת פתיחת המשגר"
},
"Resume": {
"Resume": "המשך"
@@ -5970,7 +6105,7 @@
"Reverse Scrolling Direction": "היפוך של כיוון הגלילה"
},
"Reverse workspace switch direction when scrolling over the bar": {
- "Reverse workspace switch direction when scrolling over the bar": "הפוך/י את כיוון החלפת סביבות העבודה בעת גלילה על הסרגל"
+ "Reverse workspace switch direction when scrolling over the bar": "הפוך/הפכי את כיוון החלפת סביבות העבודה בעת גלילה על הסרגל"
},
"Revert": {
"Revert": "חזור/חזרי"
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "חוקים (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "הרץ/י שוב"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "שמירה"
},
@@ -6075,10 +6216,10 @@
"Save QR Code": "שמור/י קוד QR"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "שמור/י וסגור/סגרי"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "שמור/י והדבק/י"
},
"Save and switch between display configurations": {
"Save and switch between display configurations": "שמור/שמרי והחלף/החליפי את הגדרות התצוגה"
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Score"
},
- "Screen Sharing": {
- "Screen Sharing": "שיתוף מסך"
- },
"Screen sharing": {
"Screen sharing": "שיתוף מסך"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "אפשרויות חיפוש"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "חפש/י לפי צירוף מקשים, תיאור או שם פעולה.\n\nפעולת ברירת מחדל מעתיקה את קיצור המקלדת ללוח ההעתקה.\nלחץ/י לחיצה ימנית או לחץ/י על חץ ימינה כדי להצמיד קיצורי מקלדת בשימוש תכוף - הם יופיעו בראש כשלא מחפשים."
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "בחר/י צבע מהפלטה או השתמש/י במחוונים מותאמים אישית"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "בחר/י ווידג׳ט להוספה לשולחן העבודה שלך. כל ווידג׳ט הוא מופע נפרד עם הגדרות משלו."
},
@@ -6288,7 +6432,7 @@
"Select a window...": "בחר/י חלון..."
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "בחר/י הפעלה פעילה לעבור אליה. ההפעלה הנוכחית תישאר פועלת ברקע."
},
"Select an image file...": {
"Select an image file...": "בחר/י קובץ תמונה..."
@@ -6330,7 +6474,7 @@
"Select the palette algorithm used for wallpaper-based colors": "בחר/י את האלגוריתם שייקבע את פלטת הצבעים עבור צבעים מבוססי תמונת רקע"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "בחר/י משתמש..."
},
"Select which keybind providers to include": {
"Select which keybind providers to include": "בחר/י אילו ספקי קיצורי מקלדת לכלול"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "הגדר/י רקעים שונים למצב בהיר ולמצב כהה"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "הגדר/י סיסמה ראשונית"
},
"Set key and action to save": {
"Set key and action to save": "הגדר/י מקש ופעולה לשמירה"
@@ -6426,7 +6570,7 @@
"Shadow Override": "דריסת צל"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "רדיוס טשטוש של הצל בפיקסלים"
},
"Shadow elevation on bars and panels": {
"Shadow elevation on bars and panels": "הגבהה של הצללה בסרגלים ופאנלים"
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "מעטפת"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: ניקוי הכל • Esc: סגירה"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": "Shift+Enter להעתקה"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter להדבקה"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: העתקה • Shift+Del: ניקוי הכל • Esc: סגירה"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: הדבקה • Shift+Del: ניקוי הכל • Esc: סגירה"
- },
"Short": {
"Short": "קצר"
},
@@ -6495,7 +6630,7 @@
"Show All Tags": "הצג/י את כל התגים"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "הצג/י לחצנים של הכל, אפליקציות, קבצים ותוספים לצד שורת הקלט בסרגל הSpotlight."
},
"Show Badge": {
"Show Badge": "הצג/י תג"
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "הצג/י לחות"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "הצג/י את כפתור המשגר"
},
@@ -6576,7 +6714,7 @@
"Show Memory in GB": "הצג/י זיכרון בGB"
},
"Show Mode Chips": {
- "Show Mode Chips": ""
+ "Show Mode Chips": "הצג/י לחצני מצבים"
},
"Show Network": {
"Show Network": "הצג/י רשת"
@@ -6630,7 +6768,7 @@
"Show Swap": "הצג/י Swap"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "הצג/י החלפת משתמש"
},
"Show System Date": {
"Show System Date": "הצגת תאריך המערכת"
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "הצג/י לשוניות מצב ורמזי מקלדת בתחתית."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "הצג/י חלונות קופצים של התראות רק במסך הממוקד כעת"
},
@@ -6749,14 +6890,11 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "הצג/י תצוגה על המסך (OSD) כאשר עוצמת השמע משתנה"
},
- "Show seconds": {
- "Show seconds": "הצג/י שניות"
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "הצג/י את הסרגל רק כאשר אין חלונות פתוחים"
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "הצג/י את הסרגל כאשר הסקירה של Niri פעילה"
},
"Show weather information in top bar and control center": {
"Show weather information in top bar and control center": "הצג/י מידע על מזג האוויר בסרגל העליון ובמרכז הבקרה"
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "דלג/י על ההתקנה"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "קטן"
},
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "צלילים"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "מרווח בין הסרגל לקצוות המסך"
},
"Space between windows": {
"Space between windows": "רווח בין חלונות"
@@ -6888,10 +7032,10 @@
"Spotlight": "Spotlight"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "סרגל Spotlight"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "קיצור מקלדת לסרגל Spotlight"
},
"Spotlight Search": {
"Spotlight Search": "חיפוש Spotlight"
@@ -6939,10 +7083,10 @@
"Stretch": "מתיחה"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "מתח/י את סמלי הווידג׳טים כדי שימלאו את גובה הסרגל הזמין"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "מתח/י את טקסט הווידג׳טים כדי שימלא את גובה הסרגל הזמין"
},
"Strict auto-hide": {
"Strict auto-hide": "הסתרה אוטומטית קפדנית"
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "פסים"
},
- "Style": {
- "Style": "סגנון"
- },
"Summary": {
"Summary": "סיכום"
},
@@ -6963,7 +7104,7 @@
"Sunset": "שקיעה"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "הדחק/י התראות כפולות"
},
"Suppress notification popups while enabled": {
"Suppress notification popups while enabled": "דכא/י הצגה של התראות בחלונות קופצים בזמן שהמצב מופעל"
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "התראות מערכת קופצות"
},
- "System update custom command": {
- "System update custom command": "פקודה מותאמת אישית לעדכון המערכת"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "טאב"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "פרמטרים נוספים למסוף"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "פרמטרים נוספים מותאמים אישית למסוף"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "המעבר למסוף כגיבוי נכשל. התקן/י יישום מסוף נתמך או הרץ/י את הפקודה 'dms auth sync' באופן ידני."
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "תור ההדפסה של מדפסת זו ריק"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "ערכת נושא וצבעים"
},
@@ -7188,10 +7329,10 @@
"Theme Registry": "מאגר ערכות הנושא"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "צבע ערכת הנושא שמשמש למסגרת"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "צבע ערכת הנושא שמשמש לקו המתאר של הווידג׳ט"
},
"Theme worker failed (%1)": {
"Theme worker failed (%1)": "עובד ערכת הנושא נכשל (%1)"
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "ערכות נושא"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "עובי"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "התקן זה"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "זה עשוי לקחת מספר שניות"
},
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "פורמט שעה"
},
- "Time format": {
- "Time format": "תבנית זמן"
- },
"Time remaining: %1": {
"Time remaining: %1": "זמן שנותר: %1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "זמן המתנה לפני ההסתרה לאחר שמצביע העכבר עוזב"
},
"Time until full: %1": {
"Time until full: %1": "זמן עד טעינה מלאה: %1"
@@ -7314,7 +7467,7 @@
"To Full": "לטעינה מלאה"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "כדי להתחבר כמשתמש אחר, התנתק/י ובחר/י את החשבון ממסך ההתחברות (greeter). יצירת הפעלה חדשה במקביל דורשת מסך התחברות התומך בהפעלות מרובות (greetd-flexiserver / GDM / LightDM)."
},
"To update, run the following command:": {
"To update, run the following command:": "כדי לעדכן, הרץ/י את הפקודה הבאה:"
@@ -7329,7 +7482,7 @@
"Today": "היום"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "החלף/י נראות של הסרגל באופן ידני דרך IPC"
},
"Toggle fonts": {
"Toggle fonts": "החלף/י גופנים"
@@ -7404,13 +7557,13 @@
"Transparency": "שקיפות"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "שקיפות של המסגרת"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "שקיפות של שכבת הצל"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "שקיפות של קו המתאר של הווידג׳ט"
},
"Trash": {
"Trash": "אשפה"
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "פקודת האשפה נכשלה (יציאה %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "GIFים טרנדיים"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "לא זמין"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "צבע לא ממוקד"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "זמן פעילות:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "צבע דחוף"
},
@@ -7653,10 +7815,7 @@
"Use Monospace Font": "השתמש/י בגופן ברוחב קבוע"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": "השתמש/י במשגר Spotlight"
+ "Use Overlay Layer": "שימוש בשכבת כיסוי עליונה (Overlay Layer)"
},
"Use System Theme": {
"Use System Theme": "שימוש בערכת הנושא של המערכת"
@@ -7665,7 +7824,7 @@
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "השתמש/י בתמונה מותאמת אישית למסך ההתחברות, או השאר/י ריק כדי להשתמש בתמונת הרקע של שולחן העבודה שלך."
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "השתמש/י ברדיוס מותאם אישית לחיתוכי פינות גותיים"
},
"Use a fixed shadow direction for this bar": {
"Use a fixed shadow direction for this bar": "השתמש/י בכיוון צל קבוע עבור סרגל זה"
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "השתמש/י ברוחב מסגרת/טבעת מיקוד מותאם אישית"
},
- "Use custom command": {
- "Use custom command": "השתמש/י בפקודה מותאמת אישית"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "השתמש/י בפקודה מותאמת אישית לעדכון המערכת"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "השתמש/י במרווחים מותאמים אישית במקום בריווח של הסרגל"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "השתמש/י באימות טביעת אצבע עבור מסך הנעילה."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "השתמש/י בערכת נושא בהירה במקום כהה"
},
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "השתמש/י בערכת הצלילים מהגדרות המערכת"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": "השתמש/י במשגר מינימלי ממורכז במקום במשגר V2 המחובר"
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "השתמש/י במשטח המורחב עבור תוכן המשגר"
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "השתמש/י בשכבת הכיסוי העליונה (overlay layer) בעת פתיחת המשגר"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "השתמש/י באותו מיקום וגודל בכל המסכים"
@@ -7742,38 +7895,41 @@
"User": {
"User": "משתמש"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "המשתמש כבר קיים"
},
"User created": {
- "User created": ""
+ "User created": "המשתמש נוצר"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "המשתמש נוצר עם הרשאות מנהל מערכת וגישת התחברות לgreeter"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "המשתמש נוצר עם הרשאות מנהל מערכת"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "המשתמש נוצר עם גישת התחברות לgreeter"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "המשתמש נמחק"
},
"User not found": {
- "User not found": ""
+ "User not found": "המשתמש לא נמצא"
},
"Username": {
"Username": "שם משתמש"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "שם משתמש חייב להתחיל באות קטנה או קו תחתון ולהכיל רק אותיות קטנות, ספרות, מקפים או קווים תחתונים."
},
"Username...": {
"Username...": "שם משתמש..."
},
"Users": {
- "Users": ""
+ "Users": "משתמשים"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "משתמש/ת בזמני זריחה/שקיעה על פי המיקום שלך."
@@ -7782,13 +7938,13 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "משתמש בזמני זריחה/שקיעה כדי לכוונן אוטומטית את מצב הלילה (גאמה) לפי המיקום שלך."
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "משתמש בפעולת הIPC של spotlight-bar ותמיד פותח את הסרגל המינימלי."
},
"Using global monospace font from Settings → Personalization": {
"Using global monospace font from Settings → Personalization": "משתמש בגופן ברוחב קבוע גלובלי מהגדרות ← התאמה אישית"
},
"Using shared settings from Gamma Control": {
- "Using shared settings from Gamma Control": "משתמש/ת בהגדרות משותפות מבקרת גאמה"
+ "Using shared settings from Gamma Control": "ההגדרות משותפות עם בקרת גאמה"
},
"Utilities": {
"Utilities": "כלי עזר"
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "ריצוף אנכי"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "תוסס"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "כאשר נעול"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "כאשר הווידג׳ט ״מעדכן המערכת״ נמצא בשימוש, הסתר/י אותו אם לא נמצאו עדכונים"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "סיסמת Wi-Fi"
},
@@ -8028,10 +8184,10 @@
"Width": "רוחב"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "רוחב של המסגרת בפיקסלים"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "רוחב של קו המתאר של הווידג׳ט בפיקסלים"
},
"Width of window border (borderpx)": {
"Width of window border (borderpx)": "רוחב מסגרת חלון (borderpx)"
@@ -8082,7 +8238,7 @@
"Wipe": "ניגוב"
},
"Working…": {
- "Working…": ""
+ "Working…": "עובד…"
},
"Workspace": {
"Workspace": "סביבת עבודה"
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "סביבות עבודה וווידג׳טים"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "כתיבה:"
},
"X Axis": {
"X Axis": "ציר X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "ציר Y"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "עליך להגדיר את אחד מהמשתנים הבאים:\nQT_QPA_PLATFORMTHEME=gtk3 או\nQT_QPA_PLATFORMTHEME=qt6ct\nכמשתני סביבה ולאחר מכן להפעיל מחדש את DMS.\n\n* qt6ct דורש התקנה של qt6ct-kde."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "הכל מוכן!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "המערכת שלך מעודכנת!"
},
@@ -8154,7 +8331,7 @@
"actions": "פעולות"
},
"admin": {
- "admin": ""
+ "admin": "admin"
},
"attached": {
"attached": "מחובר"
@@ -8192,8 +8369,14 @@
"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 קיים אך אינו כלול בהגדרות הקומפוזיטור שלך. שינויי תצוגה לא יישמרו."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "לדוגמה alice"
},
"e.g., firefox, kitty --title foo": {
"e.g., firefox, kitty --title foo": "לדוגמא: firefox, kitty --title foo"
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "לדוגמא: focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "לדוגמה: notify-send 'Hello' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "מומלץ"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "נראה/תה לאחרונה %1"
},
@@ -8226,7 +8409,7 @@
"leave empty for default": "השאר/י ריק לברירת מחדל"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "הפעלת loginctl נכשלה (יציאה %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl אינו זמין, אינטגרציה של הנעילה דורשת חיבור socket לDMS"
@@ -8316,13 +8499,13 @@
"relay: %1": "ממסר: %1"
},
"remote": {
- "remote": ""
+ "remote": "מרוחק"
},
"seconds": {
"seconds": "שניות"
},
"session %1": {
- "session %1": ""
+ "session %1": "הפעלה %1"
},
"source": {
"source": "קוד מקור"
@@ -8340,13 +8523,13 @@
"update dms for NM integration.": "עדכן/י את DMS כדי לאפשר אינטגרציה עם NM."
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "useradd נכשל (יציאה %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "userdel נכשל (יציאה %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "usermod נכשל (יציאה %1)"
},
"v%1 by %2": {
"v%1 by %2": "v%1 מאת %2"
@@ -8397,15 +8580,9 @@
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: ניווט • Space: הרחב • Enter: פעולה/הרחבה • E: טקסט"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: ניווט • Enter/Ctrl+C: העתקה • Del: מחיקה • F10: עזרה"
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: ניווט • Enter/Ctrl+C: העתקה • Del: מחיקה • Ctrl+E: עריכה • Ctrl+S: הצמדה/ביטול הצמדה • F10: עזרה"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: ניווט • Enter: הדבקה • Del: מחיקה • F10: עזרה"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: ניווט • Enter: הדבקה • Ctrl+C: העתקה • Del: מחיקה • Ctrl+E: עריכה • Ctrl+S: הצמדה/ביטול הצמדה • F10: עזרה"
}
}
diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json
index f4d1f334..e718c63e 100644
--- a/quickshell/translations/poexports/hu.json
+++ b/quickshell/translations/poexports/hu.json
@@ -1,6 +1,9 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
- "%1 Animation Speed": "%1 Animáció sebessége"
+ "%1 Animation Speed": "%1 animációsebesség"
},
"%1 Sessions": {
"%1 Sessions": "%1 munkamenet"
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1 perccel ezelőtt"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "Az 'Alternatív' lehetővé teszi a kulccsal történő önálló feloldást. A 'Második faktor' először jelszót vagy ujjlenyomatot igényel, majd a kulcsot."
},
@@ -294,10 +300,10 @@
"A modern desktop shell for Wayland compositors": "Egy modern asztali héj Wayland kompozitorokhoz"
},
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": {
- "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
+ "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "Egy különálló minimális indítási művelet, amely Önálló, Különálló keret és Csatlakoztatott keret módban is működik."
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "Már létezik ilyen nevű felhasználó."
},
"AC Power": {
"AC Power": "Hálózati tápellátás"
@@ -342,10 +348,10 @@
"Action failed or terminal was closed.": "A művelet sikertelen, vagy a terminál bezárult."
},
"Action performed when scrolling horizontally on the bar": {
- "Action performed when scrolling horizontally on the bar": ""
+ "Action performed when scrolling horizontally on the bar": "A sávon történő vízszintes görgetéskor végrehajtandó művelet"
},
"Action performed when scrolling vertically on the bar": {
- "Action performed when scrolling vertically on the bar": ""
+ "Action performed when scrolling vertically on the bar": "A sávon történő függőleges görgetéskor végrehajtandó művelet"
},
"Actions": {
"Actions": "Műveletek"
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "Aktív VPN"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Aktív csempe háttér- és ikonszíne"
},
@@ -396,10 +405,10 @@
"Add": "Hozzáadás"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "Hozzáadod a(z) „%1” felhasználót a(z) %2 csoporthoz?"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "Hozzáadod a(z) „%1” felhasználót a(z) %2 csoporthoz? Ki és be kell jelentkezniük, majd futtatniuk kell a dms greeter sync --profile parancsot a bejelentkezési képernyő témájának közzétételéhez."
},
"Add Bar": {
"Add Bar": "Sáv hozzáadása"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Asztali widget hozzáadása"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Nyomtató hozzáadása"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Widget hozzáadása"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Widget hozzáadása a(z) %1. szekcióhoz"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Szegély hozzáadása a dokk körül"
@@ -431,14 +446,20 @@
"Add by Address": {
"Add by Address": "Hozzáadás cím alapján"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Az új felhasználó hozzáadása a(z) %1 csoporthoz, hogy futtathassa a dms greeter sync --profile parancsot."
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "Az új felhasználó hozzáadása a(z) %1 csoporthoz, hogy használhassa a sudot."
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "A sáv magasságának beállítása belső térközzel"
},
"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."
@@ -447,10 +468,10 @@
"Adjust volume per scroll indent": "Hangerőállítás görgetési lépésenként"
},
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
- "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Beállítja a generált színek kontrasztját (-100 = minimum, 0 = normál, 100 = maximum)"
+ "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Beállítja az előállított színek kontrasztját (-100 = minimum, 0 = normál, 100 = maximum)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "Rendszergazda csoport:"
},
"Advanced": {
"Advanced": "Speciális"
@@ -474,19 +495,19 @@
"All displays": "Összes kijelző"
},
"Allow": {
- "Allow": ""
+ "Allow": "Engedélyezés"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "Kattintások átengedése a widgeten"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "Engedélyezed a üdvözlőképernyő hozzáférését?"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "Bejelentkezés engedélyezése az üdvözlőképernyőn"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "Már ebben a munkamenetben vagy"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Vissza • F1/I: Fájlinformáció • F10: Súgó • Esc: Bezárás"
@@ -545,14 +566,26 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Névtelen azonosító (opcionális)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "Alkalmazás-testreszabások"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "Alkalmazásazonosító-helyettesítések"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
- "App ID regex (e.g. ^firefox$)": "App ID regex (pl. ^firefox$)"
+ "App ID regex (e.g. ^firefox$)": "App ID regex (például ^firefox$)"
},
"App Launcher": {
"App Launcher": "Alkalmazásindító"
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Megjelenés"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Alkalmazásdokk"
},
"Applications": {
"Applications": "Alkalmazások"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Változtatások alkalmazása"
},
@@ -588,7 +627,7 @@
"Apply compositor blur behind the frame border": "Kompozitor elmosás alkalmazása a keret szegélye mögött"
},
"Apply inverse concave corner cutouts to the bar": {
- "Apply inverse concave corner cutouts to the bar": ""
+ "Apply inverse concave corner cutouts to the bar": "Inverz konkáv sarokkivágások alkalmazása a sávra"
},
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Meleg színhőmérséklet alkalmazása a szem megerőltetésének csökkentése érdekében. Az alábbi automatizálási beállítások segítségével szabályozhatod, hogy mikor aktiválódjon."
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "A hitelesítési módosítások alkalmazása…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "Alkalmazások"
},
@@ -624,11 +666,14 @@
"Architecture": "Architektúra"
},
"Are you sure you want to kill session \"%1\"?": {
- "Are you sure you want to kill session \"%1\"?": "Biztosan le meg akarod szakítani a(z) „%1\" munkamenetet?"
+ "Are you sure you want to kill session \"%1\"?": "Biztosan meg szeretnéd szakítani a(z) „%1” munkamenetet?"
},
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Képernyő-elrendezés és a felbontás, frissítési frekvencia, valamint VRR beállítása"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "Legalább egy kimenetnek engedélyezve kell maradnia"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Dokk automatikus elrejtése"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Automatikus mentés…"
},
@@ -774,7 +831,7 @@
"Automatic Cycling": "Automatikus váltás"
},
"Automatically calculate popup gap based on bar spacing": {
- "Automatically calculate popup gap based on bar spacing": ""
+ "Automatically calculate popup gap based on bar spacing": "A felugró ablak résméretének automatikus kiszámítása a sávtávolság alapján"
},
"Automatically cycle through wallpapers in the same folder": {
"Automatically cycle through wallpapers in the same folder": "Automatikus váltás az azonos mappában lévő háttérképek között"
@@ -789,7 +846,7 @@
"Automatically determine your location using your IP address": "Tartózkodási hely meghatározása IP-cím segítségével"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "A sáv automatikus elrejtése, ha a mutató elmozdul"
},
"Automatically lock after": {
"Automatically lock after": "Automatikus zárolás"
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automatizálás"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Elérhető"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Vissza"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Háttérrendszer"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "Háttér elmosása"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Háttér átlátszósága"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "Sáv térköz és méret"
},
- "Bar transparency": {
- "Bar transparency": "Sáv átlátszósága"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Az árnyékok alapszíne (az áttetszőség automatikusan alkalmazva)"
},
@@ -912,10 +978,10 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "A zárolási képernyő kötése a loginctl dbus jeleihez. Tiltsd le, ha külső zárolási képernyőt használsz"
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "Társítsd a „spotlight” IPC-műveletet a kompozitor konfigurációjában."
},
"Bind the spotlight-bar IPC action in your compositor config.": {
- "Bind the spotlight-bar IPC action in your compositor config.": ""
+ "Bind the spotlight-bar IPC action in your compositor config.": "Társítsd a „spotlight-bar” IPC-műveletet a kompozitor konfigurációjában."
},
"Binds Include Missing": {
"Binds Include Missing": "A gyorsbillentyűk include bejegyzés hiányzik"
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "A Bluetooth nem érhető el"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "Elmosás szegélyszíne"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Szegély színe"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Szegély átlátszósága"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "Szegélyszín az elmosott felületek körül"
},
- "Border with BG": {
- "Border with BG": "Szegély háttérrel"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Alul"
@@ -1101,7 +1176,7 @@
"Canceled": "Törölve"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "Az egyetlen rendszergazda nem törölhető"
},
"Cannot disable the only output": {
"Cannot disable the only output": "Nem tiltható le az egyetlen kimenet"
@@ -1116,7 +1191,7 @@
"Cannot pair": "Nem lehet párosítani"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "Az egyetlen rendszergazda nem távolítható el"
},
"Capabilities": {
"Capabilities": "Képességek"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "A Caps Lock be van kapcsolva"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Középső rész"
},
@@ -1176,10 +1257,7 @@
"Check on startup": "Ellenőrzés indításkor"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
- },
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "Szinkronizálási állapot ellenőrzése igény szerint. A szinkronizálás átmásolja a témát, a beállításokat és a háttérkép konfigurációját a bejelentkezési képernyőre. A hitelesítési módosítások automatikusan alkalmazásra kerülnek."
+ "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "Szinkronizálási állapot ellenőrzése igény szerint. A szinkronizálás (teljes) a fő adminisztrátornak szól: átmásolja a témát a bejelentkezési képernyőre, és beállítja a rendszer üdvözlőképernyő-konfigurációját. Többfelhasználós rendszereken adj hozzá más fiókokat a Beállítások → Felhasználók menüpontban, majd kérd meg mindegyiküket, hogy a ki- és bejelentkezés után futtassák a dms greeter sync --profile parancsot – ne a teljes szinkronizálást. A hitelesítési változtatások automatikusan érvényesülnek."
},
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "Ellenőrizd az egyéni parancsodat a Beállítások → Dokk → Kuka útvonalon."
@@ -1217,14 +1295,17 @@
"Choose a color": {
"Choose a color": "Válassz színt"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Színek választása a palettáról"
},
"Choose how the weather widget is displayed": {
- "Choose how the weather widget is displayed": "Válaszd ki az időjárás widget megjelenítési módját"
+ "Choose how the weather widget is displayed": "Az időjárási widget megjelenítési módjának kiválasztása"
},
"Choose how this bar resolves shadow direction": {
- "Choose how this bar resolves shadow direction": "Válaszd ki, hogyan határozza meg ez a sáv az árnyék irányát"
+ "Choose how this bar resolves shadow direction": "Árnyék irányának meghatározása ezen a sávon"
},
"Choose icon": {
"Choose icon": "Ikon kiválasztása"
@@ -1233,13 +1314,13 @@
"Choose monochrome or a theme color tint for system tray icons": "Monokróm vagy a téma színével megegyező árnyalat a rendszertálca ikonjaihoz"
},
"Choose the background color for widgets": {
- "Choose the background color for widgets": "Válaszd ki a widgetek háttérszínét"
+ "Choose the background color for widgets": "A widgetek háttérszínének kiválasztása"
},
"Choose the border accent color": {
- "Choose the border accent color": "Válaszd ki a szegély kiemelőszínét"
+ "Choose the border accent color": "A szegély kiemelőszínének kiválasztása"
},
"Choose the logo displayed on the launcher button in DankBar": {
- "Choose the logo displayed on the launcher button in DankBar": "Válaszd ki a DankBar indítógombján megjelenő logót"
+ "Choose the logo displayed on the launcher button in DankBar": "A DankBar indítógombján megjelenő logó kiválasztása"
},
"Choose where notification popups appear on screen": {
"Choose where notification popups appear on screen": "A felugró értesítések megjelenési helye"
@@ -1247,8 +1328,11 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "A képernyőkijelzők megjelenítési helye"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
- "Choose which displays show this widget": "Válaszd ki, mely kijelzők mutassák ezt a widgetet"
+ "Choose which displays show this widget": "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."
@@ -1262,8 +1346,11 @@
"Circle": {
"Circle": "Kör"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
- "Class regex (e.g. ^firefox$)": "Osztály (Class) regex (pl. ^firefox$)"
+ "Class regex (e.g. ^firefox$)": "Osztály (Class) regex (például ^firefox$)"
},
"Clear": {
"Clear": "Törlés"
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Vágólapkezelő"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Vágólap elküldve"
},
- "Clipboard service not available": {
- "Clipboard service not available": "A vágólapszolgáltatás nem érhető el"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "A vágólap működni fog, de nem lesz a lemezre mentve semmi"
},
@@ -1425,11 +1512,14 @@
"Column Width": "Oszlopszélesség"
},
"Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": {
- "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": "Vesszővel elválasztott lista az elrejtendő munkamenet-nevekről. Reguláris kifejezésekhez (regex) tedd perjelek közé (pl. /^_.*/)."
+ "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": "Vesszővel elválasztott lista az elrejtendő munkamenet-nevekről. Reguláris kifejezésekhez (regex) tedd perjelek közé (például /^_.*/)."
},
"Command": {
"Command": "Parancs"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Parancsok"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Kompozitorbeállítások"
},
- "Compositor not supported": {
- "Compositor not supported": "A kompozitor nem támogatott"
- },
"Config Format": {
"Config Format": "Konfigurációformátum"
},
@@ -1512,7 +1599,7 @@
"Confirm passkey for ": "Párosítási kód megerősítése ehhez: "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "Jelszó megerősítése"
},
"Conflicts with: %1": {
"Conflicts with: %1": "Ütközik ezzel: %1"
@@ -1539,7 +1626,7 @@
"Connected Displays": "Csatlakoztatott kijelzők"
},
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": {
- "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
+ "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "A Csatlakoztatott keretmód a csatlakoztatott indítót használja az alapértelmezett indítási gyorsbillentyűkhöz."
},
"Connected Options": {
"Connected Options": "Csatlakoztatott opciók"
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Kontraszt"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Vezérlőközpont"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "Kényelmi beállítások a bejelentkezési képernyőhöz. Szinkronizálj az alkalmazáshoz."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Várakozási idő"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "PID másolása"
},
- "Copy Path": {
- "Copy Path": "Útvonal másolása"
- },
"Copy Text": {
"Copy Text": "Szöveg másolása"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Sarkok és háttér"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Csak darabszám"
},
@@ -1689,7 +1782,7 @@
"Create Printer": "Nyomtató létrehozása"
},
"Create User": {
- "Create User": ""
+ "Create User": "Felhasználó létrehozása"
},
"Create Window Rule": {
"Create Window Rule": "Ablakszabály létrehozása"
@@ -1715,17 +1808,11 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Lapváltás • Ctrl+S: Rögzítés/Feloldás • Shift+Del: Összes törlése • Esc: Bezárás"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Lapváltás • Ctrl+S: Rögzítés/Feloldás • Shift+Enter: Másolás • Shift+Del: Összes törlése • Esc: Bezárás"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Lapváltás • Ctrl+S: Rögzítés/Feloldás • Shift+Enter: Beillesztés • Shift+Del: Összes törlése • Esc: Bezárás"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: Lapváltás • Ctrl+S: Rögzítés/Feloldás • Shift+Enter: Másolás • Shift+Del: Összes törlése • F10: Súgó • Esc: Bezárás"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: Lapváltás • Ctrl+S: Rögzítés/Feloldás • Shift+Enter: Beillesztés • Shift+Del: Összes törlése • F10: Súgó • Esc: Bezárás"
},
"Current": {
"Current": "Jelenlegi"
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Mutatótéma"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "Görbe: görberaszterező."
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": "DMS-beállítások"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "DMS-gyorsbillentyűk"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "A DMS-üdvözlőképernyőnek (greeter) szüksége van a következőkre: greetd, dms-greeter. Ujjlenyomat: fprintd, pam_fprintd. Biztonsági kulcsok: pam_u2f. Add hozzá a felhasználódat a greeter csoporthoz. A hitelesítési módosítások automatikusan alkalmazásra kerülnek, és terminált nyithatnak meg, ha sudo hitelesítés szükséges."
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "A DMS elavult"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Dátumformátum"
},
- "Date format": {
- "Date format": "Dátumformátum"
- },
"Date format on greeter": {
"Date format on greeter": "Dátumformátum az üdvözlőképernyőn"
},
@@ -1974,22 +2064,22 @@
"Default Apps": "Alapértelmezett alkalmazások"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "Alapértelmezett indító"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "Alapértelmezett indító gyorsbillentyű"
},
"Default Opens": {
- "Default Opens": ""
+ "Default Opens": "Alapértelmezetten megnyitja"
},
"Default Width (%)": {
"Default Width (%)": "Alapértelmezett szélesség (%)"
},
"Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": {
- "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": ""
+ "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "Az alapértelmezett indító gyorsbillentyűk megnyitják a teljes indítót módfülekkel, rácsnézettel és műveleti panellel."
},
"Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": {
- "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": ""
+ "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "Az alapértelmezett indító gyorsbillentyűk a minimális Spotlight-sávot nyitják meg. Az alábbi dedikált Spotlight-sáv-parancs független marad."
},
"Default selected action": {
"Default selected action": "Alapértelmezett kiválasztott művelet"
@@ -2007,7 +2097,7 @@
"Delete": "Törlés"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "Törlöd a(z) „%1” felhasználót és eltávolítod a saját könyvtárodat? Ez a művelet nem vonható vissza."
},
"Delete \"%1\"?": {
"Delete \"%1\"?": "Törlöd ezt: „%1”?"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Nyomtató törlése"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Mentett elem törlése?"
},
@@ -2031,10 +2124,10 @@
"Delete profile \"%1\"?": "Törlöd a(z) „%1” profilt?"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "Felhasználó törlése"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "Törlöd a felhasználót?"
},
"Demi Bold": {
"Demi Bold": "Közepesen félkövér"
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Asztal"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Asztali óra"
},
@@ -2076,7 +2172,7 @@
"Detailed": "Részletes"
},
"Details for \"%1": {
- "Details for \"%1\"": "„%1\" részletei"
+ "Details for \"%1\"": "„%1” részletei"
},
"Detected backends: %1": {
"Detected backends: %1": "Észlelt háttérprogramok: %1"
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Wi-Fi kikapcsolása…"
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Lemez"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": "Sorszámok megjelenítése a szerkesztőben"
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Csak azokat a munkaterületeket jelenítse meg, amelyek ablakokat tartalmaznak"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Másodpercek megjelenítése az órán"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "A főkapcsoló rendszermenüjének megjelenítése"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "Dokk margója, átlátszósága és szegélye"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "Dokk térköz, átlátszóság és szegély"
- },
"Docs": {
"Docs": "Dokumentumok"
},
@@ -2307,7 +2409,7 @@
"Drizzle": "Szitálás"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "Elveted a(z) %1 felülbírálását, hogy a DMS alapértelmezett művelete újra érvénybe lépjen?"
},
"Duplicate": {
"Duplicate": "Kettőzés"
@@ -2358,13 +2460,16 @@
"Edit App": "Alkalmazás szerkesztése"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "Vágólap szerkesztése"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "Ablakszabály szerkesztése"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "Vágólap szövegének szerkesztése"
},
"Education": {
"Education": "Oktatás"
@@ -2499,7 +2604,7 @@
"Enter URL or text to share": "Adj meg egy URL-t vagy szöveget a megosztáshoz"
},
"Enter a new name for session \"%1": {
- "Enter a new name for session \"%1\"": "Add meg a(z) „%1\" munkamenet új nevét"
+ "Enter a new name for session \"%1\"": "Add meg a(z) „%1” munkamenet új nevét"
},
"Enter a new name for this workspace": {
"Enter a new name for this workspace": "Add meg a munkaterület új nevét"
@@ -2511,10 +2616,10 @@
"Enter credentials for ": "Add meg a hitelesítő adatokat ehhez: "
},
"Enter custom lock screen format (e.g., dddd, MMMM d)": {
- "Enter custom lock screen format (e.g., dddd, MMMM d)": "Zárolási képernyő egyéni formátumának megadása (pl., dddd, MMMM d)"
+ "Enter custom lock screen format (e.g., dddd, MMMM d)": "Zárolási képernyő egyéni formátumának megadása (például dddd, MMMM d)"
},
"Enter custom top bar format (e.g., ddd MMM d)": {
- "Enter custom top bar format (e.g., ddd MMM d)": "Egyéni felső sáv formátum megadása (pl. ddd MMM d)"
+ "Enter custom top bar format (e.g., ddd MMM d)": "Egyéni felső sáv formátum megadása (például ddd MMM d)"
},
"Enter device name...": {
"Enter device name...": "Add meg az eszköz nevét…"
@@ -2523,7 +2628,7 @@
"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 launch prefix (e.g., 'uwsm-app')": "Írd be az indítási előtagot (például „uwsm-app”)"
},
"Enter network name and password": {
"Enter network name and password": "Add meg a hálózat nevét és jelszavát"
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Vállalati"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Bejegyzés rögzítve"
},
@@ -2580,7 +2688,7 @@
"Exclusive Zone Offset": "Exkluzív zóna eltolása"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "Létező felhasználók"
},
"Experimental Feature": {
"Experimental Feature": "Kísérleti funkció"
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Nem sikerült aktiválni a konfigurációt"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Nem sikerült a profil aktiválása - a fájl nem található"
- },
"Failed to add binds include": {
"Failed to add binds include": "Nem sikerült hozzáadni a gyorsbillentyűk include bejegyzést"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Nem sikerült a kiválasztott feladatot törölni"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "Nem sikerült a frissítések keresése:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Nem sikerült a rögzítési korlát ellenőrzése"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Nem sikerült létrehozni a nyomtatót"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Nem sikerült a profilkönyvtár létrehozása"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Nem sikerült törölni a VPN-kapcsolatot"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": "Nem sikerült lekérni a hálózati QR-kódot: %1"
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Nem sikerült a feladat várakoztatása"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "A profil mentése sikertelen"
},
- "Failed to save profile file": {
- "Failed to save profile file": "Nem sikerült a profilfájl mentése"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Nem sikerült a vágólap elküldése"
},
@@ -2865,7 +2964,7 @@
"Failed to update autoconnect": "Nem sikerült frissíteni az automatikus csatlakozást"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "Nem sikerült frissíteni a vágólapot"
},
"Failed to update description": {
"Failed to update description": "Nem sikerült frissíteni a leírást"
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Nem sikerült frissíteni a megosztás állapotát"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Nem sikerült írni az ideiglenes fájlt az ellenőrzéshez"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Kitöltés"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Keresés szövegben…"
},
@@ -2940,7 +3048,7 @@
"Find in note...": "Keresés jegyzetben…"
},
"Fine-tune the space reserved for the bar from the screen edge": {
- "Fine-tune the space reserved for the bar from the screen edge": ""
+ "Fine-tune the space reserved for the bar from the screen edge": "A sáv számára fenntartott hely finomhangolása a képernyő szélétől"
},
"Fingerprint availability could not be confirmed.": {
"Fingerprint availability could not be confirmed.": "Az ujjlenyomat-olvasó elérhetősége nem erősíthető meg."
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "Ujjlenyomathiba"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "Ujjlenyomathiba: %1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "Az ujjlenyomat nem felismerhető (%1/%2). Próbáld újra, vagy használj jelszót."
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Lebegő"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "Fluent"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Fókusz"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Fókusz indításkor"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Fókuszált szegély"
},
@@ -3042,7 +3159,7 @@
"Follow focus": "Fókusz követése"
},
"Follows the default launcher choice selected above.": {
- "Follows the default launcher choice selected above.": ""
+ "Follows the default launcher choice selected above.": "A fent kiválasztott alapértelmezett indítóbeállítást követi."
},
"Font": {
"Font": "Betűtípus"
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Kényszerített megszakítás (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Széles színskála kényszerítése"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Formátum-magyarázat"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "%1 frissíthető csomag található:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "%1 frissíthető csomag található:"
- },
"Frame": {
"Frame": "Keret"
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Teljes nap és hónap"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Teljes évvel"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": "Teljes felszereltségű indító mód-fülekkel, rácsnézettel és műveleti panellel."
- },
"Fullscreen": {
"Fullscreen": "Teljes képernyő"
},
@@ -3218,8 +3332,11 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "A gammavezérlés nem érhető el. DMS API v6+ szükséges."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
- "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Alapszintű GTK3/4 vagy Qt5/Qt6 (qt6ct-kde szükséges) konfigurációk generálása a DMS-színek követéséhez. Csak egyszer szükséges.
Javasolt az adw-gtk3 beállítása a GTK-témák alkalmazása előtt."
+ "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Alapszintű GTK3/4 vagy Qt5/Qt6 (qt6ct-kde szükséges) konfigurációk előállíta a DMS-színek követéséhez. Csak egyszer szükséges.
Javasolt az adw-gtk3 beállítása a GTK-témák alkalmazása előtt."
},
"Generic": {
"Generic": "Általános"
@@ -3255,19 +3372,19 @@
"Gradually fade the screen before turning off monitors with a configurable grace period": "A képernyő fokozatos elhalványítása a monitorok kikapcsolása előtt egy beállítható türelmi idővel"
},
"Grant": {
- "Grant": ""
+ "Grant": "Megadás"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "Megadod a rendszergazdai jogot?"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "Rendszergazdai jogosultságok megadása"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "Rendszergazdai jogosultságok megadva"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "Üdvözlőképernyő bejelentkezési hozzáférés megadva"
},
"Graph Time Range": {
"Graph Time Range": "Grafikon időtartománya"
@@ -3294,10 +3411,10 @@
"Greeter font": "Üdvözlőképernyő betűtípusa"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "Az üdvözlőképernyő-csoport tagjai a ki- és bejelentkezés után a dms greeter sync --profile paranccsal szinkronizálhatják a bejelentkezési képernyő témáját."
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "Üdvözlőképernyő-csoport:"
},
"Greeter only — does not affect main clock": {
"Greeter only — does not affect main clock": "Csak az üdvözlőképernyőre – nincs hatással a fő órára"
@@ -3345,7 +3462,7 @@
"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.": "A HDR mód kísérleti jellegű. Engedélyezés előtt ellenőrizd, hogy a monitor támogatja-e a HDR-t."
+ "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 funkciót."
},
"HSV": {
"HSV": "HSV"
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Jelzők elrejtése"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Frissítő widget elrejtése"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "Elrejtés teljes képernyőnél"
- },
"Hide When Typing": {
"Hide When Typing": "Elrejtés gépeléskor"
},
@@ -3456,10 +3567,10 @@
"Hide on Touch": "Elrejtés érintéskor"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "A sáv elrejtése, ha a mutató elhagyja azt, még akkor is, ha egy felugró ablak nyitva van"
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "Dokk elrejtése teljes képernyős ablaknál"
+ "High": {
+ "High": ""
},
"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."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Hyprland weboldal"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Megértettem"
@@ -3582,22 +3699,25 @@
"Icon Theme": "Ikontéma"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "Az azonos riasztások egyetlen felugró ablakként jelennek meg egymásra halmozás helyett"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "Az azonos riasztások különálló értesítési kártyákként halmozódnak"
},
"Idle": {
"Idle": "Tétlen"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inaktivitás megakadályozása"
},
"Idle Settings": {
"Idle Settings": "Inaktivitási beállítások"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Az inaktivitás figyelése nem támogatott – újabb Quickshell verzió szükséges"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Ha a mező rejtett, megjelenik, amint lenyomsz egy billentyűt."
@@ -3677,8 +3797,11 @@
"Inhibitable": {
"Inhibitable": "Gátolható"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "Az egyes widgetekre alkalmazott belső térköz"
},
"Input Devices": {
"Input Devices": "Bemeneti eszközök"
@@ -3771,7 +3894,7 @@
"Invalid password for %1": "Érvénytelen jelszó ehhez: %1"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "Érvénytelen felhasználónév"
},
"Invert on mode change": {
"Invert on mode change": "Invertálás módváltáskor"
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Indítás dGPU-n"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "Indítás alapértelmezés szerint a dGPU-n"
- },
"Launcher": {
"Launcher": "Indító"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "Indító megjelenési oldala"
},
- "Launcher Style": {
- "Launcher Style": "Indító stílusa"
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "Réteg körvonalának átlátszatlansága"
},
@@ -3921,7 +4038,7 @@
"Layout Overrides": "Elrendezés felülbírálása"
},
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": {
- "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Az üdvözlőképernyő elrendezése és a modulok pozíciói a héjból (pl. sávkonfiguráció) vannak szinkronizálva. Futtasd a szinkronizálást az alkalmazáshoz."
+ "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Az üdvözlőképernyő elrendezése és a modulok pozíciói a héjból (például sávkonfiguráció) vannak szinkronizálva. Futtasd a szinkronizálást az alkalmazáshoz."
},
"Left": {
"Left": "Bal"
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Kijelentkezés"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "Bejelentkezés…"
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Hosszúság"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Alacsony prioritás"
},
@@ -4077,13 +4194,13 @@
"Mail": "Levelezés"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "Legyen rendszergazda"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "Győződj meg róla, hogy a KDE Connect vagy a Valent fut a többi eszközön"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "A sáv hátterének teljesen átlátszóvá tétele"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Bővítmények kezelése és beállítása a DMS funkcionalitásának kiterjesztésére"
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "Keret által kezelve"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": "A Keret mód kezeli"
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "Keret által kezelve Csatlakoztatott módban"
},
@@ -4128,7 +4242,7 @@
"Manual Show/Hide": "Manuális megjelenítés/elrejtés"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "Kézi konfiguráció"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "Rendelj hozzá ablakosztályneveket ikonnevekhez a megfelelő megjelenítés érdekében"
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "A hulladéktartály megtelt"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Egyezési feltételek"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Illeszkedik a profilra: %1"
- },
"Material": {
"Material": "Material"
},
@@ -4164,7 +4281,7 @@
"Material Design inspired color themes": "Material Design ihlette színtémák"
},
"Material colors generated from wallpaper": {
- "Material colors generated from wallpaper": "Háttérképből generált Material színek"
+ "Material colors generated from wallpaper": "Háttérképből előállított Material színek"
},
"Material inspired shadows and elevation on modals, popouts, and dialogs": {
"Material inspired shadows and elevation on modals, popouts, and dialogs": "Material stílusú árnyékok és emelések a modális ablakokon, felugrókon és párbeszédpaneleken"
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Médialejátszó-beállítások"
},
- "Media Players": {
- "Media Players": "Zenelejátszók"
- },
"Media Players (": {
"Media Players (": "Médialejátszók ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Min. szél."
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": "Minimális Spotlight-stílusú sáv: azonnal megjelenik a képernyő tetején, és gépelés közben kibővül."
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Minimális paletta, amely egyetlen árnyalat köré épül."
},
@@ -4395,7 +4506,7 @@
"Monitor whose wallpaper drives dynamic theming colors": "Az a monitor, amelynek háttérképe meghatározza a dinamikus témaszíneket"
},
"Monitors in \"%1\":": {
- "Monitors in \"%1\":": "Monitorok itt: \"%1\":"
+ "Monitors in \"%1\":": "Monitorok itt: „%1”:"
},
"Monochrome": {
"Monochrome": "Monokróm"
@@ -4419,7 +4530,7 @@
"Mount Points": "Csatolási pontok"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "Az egérkattintások áthaladnak a sávon a mögötte lévő ablakokhoz"
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "Egérmutató megjelenése"
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Nevesített munkaterület ikonok"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "Natív: platformmegjelenítő (FreeType)."
},
@@ -4598,11 +4712,8 @@
"No Background": {
"No Background": "Nincs háttérkép"
},
- "No Battery": {
- "No Battery": "Nincs akkumulátor"
- },
"No Bluetooth adapter found": {
- "No Bluetooth adapter found": "Nem található Bluetooth adapter"
+ "No Bluetooth adapter found": "Nem található Bluetooth-adapter"
},
"No Blur": {
"No Blur": "Nincs elmosódás"
@@ -4659,7 +4770,7 @@
"No active %1 sessions": "Nincs aktív %1 munkamenet"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "Nem található aktív munkamenet a következőhöz: %1"
},
"No adapter": {
"No adapter": "Nincs adapter"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Nincsenek alkalmazás testreszabások."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Nem találhatók alkalmazások"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Nincsenek némított alkalmazások. Kattints jobb gombbal egy értesítésre, és válaszd a „Felugró ablakok némítása” lehetőséget a hozzáadáshoz."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Nincs akkumulátor"
},
@@ -4734,7 +4851,7 @@
"No hidden apps.": "Nincsenek rejtett alkalmazások."
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "Nem találhatók emberi felhasználói fiókok."
},
"No info items": {
"No info items": "Nincsenek információs elemek"
@@ -4776,7 +4893,7 @@
"No mount points found": "Nem találhatók csatolási pontok"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "Nincs más aktív munkamenet ezen az állomáson"
},
"No output device": {
"No output device": "Nincs kimeneti eszköz"
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Nem található kimeneti eszköz"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "Nem található csomagkezelő. Arch-alapú rendszereken telepítsd a 'paru' vagy 'yay' csomagot a frissítések ellenőrzéséhez."
- },
"No peers found": {
"No peers found": "Nem találhatóak társak"
},
@@ -4824,7 +4938,7 @@
"No saved clipboard entries": "Nincsenek mentett vágólapbejegyzések"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "Nincs munkamenet kiválasztva"
},
"No sessions found": {
"No sessions found": "Nem található munkamenet"
@@ -4848,7 +4962,7 @@
"No trigger": "Nincs indító"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "Nincs felhasználó megadva"
},
"No video found in folder": {
"No video found in folder": "Nem található videó a mappában"
@@ -4866,7 +4980,7 @@
"No warnings": "Nincsenek figyelmeztetések"
},
"No widgets added. Click \"Add Widget\" to get started.": {
- "No widgets added. Click \"Add Widget\" to get started.": "Nincsenek hozzáadva widgetek. Kattints a „Widget hozzáadása\" gombra a kezdéshez."
+ "No widgets added. Click \"Add Widget\" to get started.": "Nincsenek hozzáadva widgetek. Kattints a „Widget hozzáadása” gombra a kezdéshez."
},
"No widgets available": {
"No widgets available": "Nincsenek elérhető widgetek"
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Nincsenek ablakszabályok beállítva"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Nincs"
},
@@ -4908,7 +5025,7 @@
"Not available — install or configure pam_u2f.": "Nem érhető el — telepítsd vagy konfiguráld a pam_u2f-et."
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "Nincs társítva"
},
"Not connected": {
"Not connected": "Nincs csatlakozva"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Nem észlelhető"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Nincs párosítva"
},
@@ -5040,10 +5160,10 @@
"Opacity": "Átlátszóság"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "A sáv hátterének átlátszatlansága"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "A widget hátterek átlátszatlansága"
},
"Opaque": {
"Opaque": "Átlátszatlan"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "Fájlok megnyitása"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "Terminál megnyitása: "
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "Megnyit egy választót az ezen az állomáson lévő többi aktív munkamenet közül"
},
"Opens image files": {
"Opens image files": "Megnyitja a képfájlokat"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "Megnyitja a csatlakoztatott indítót Csatlakoztatott keretmódban."
},
"Optional description": {
"Optional description": "Opcionális leírás"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Opcionális hely"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Opciók"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Kimeneti terület tele"
},
- "Output Device": {
- "Output Device": "Kimeneti eszköz"
- },
"Output Devices": {
"Output Devices": "Kimeneti eszközök"
},
@@ -5193,7 +5316,7 @@
"Override the global shadow with per-bar settings": "A globális árnyék felülbírálása sávonkénti beállításokkal"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "A felugró ablak résméretének felülbírálása, ha az automatikus beállítás ki van kapcsolva"
},
"Overrides": {
"Overrides": "Felülírások"
@@ -5202,7 +5325,7 @@
"Overview": "Áttekintés"
},
"Overview of your network connections": {
- "Overview of your network connections": "Hálózati kapcsolatok áttekintése"
+ "Overview of your network connections": "Hálózati kapcsolatok – áttekintés"
},
"Overwrite": {
"Overwrite": "Felülírás"
@@ -5280,22 +5403,22 @@
"Password": "Jelszó"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "A jelszó nem lehet üres"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "A jelszó módosítása sikertelen (kilépési kód: %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "Jelszó beállítva"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "Jelszó frissítve"
},
"Password...": {
"Password...": "Jelszó…"
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "A jelszavak nem egyeznek."
},
"Paste": {
"Paste": "Beillesztés"
@@ -5403,10 +5526,10 @@
"Place plugins in %1": "Bővítmények helye: %1"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "A sáv elhelyezése a Wayland-átfedési rétegen"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "A dokk elhelyezése a Wayland-átfedési rétegen"
},
"Play a video when the screen locks.": {
"Play a video when the screen locks.": "Videó lejátszása a képernyő zárolásakor."
@@ -5487,7 +5610,7 @@
"Pointer": "Mutató"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "A Polkit-integráció ki van kapcsolva. A felhasználókezeléshez a Polkit szükséges a jogosultságok emeléséhez."
},
"Popout Shadows": {
"Popout Shadows": "Felugró ablak árnyékok"
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Felugró ablak árnyéka"
},
- "Popup Transparency": {
- "Popup Transparency": "Felugró ablak átlátszósága"
- },
"Popup behavior, position": {
"Popup behavior, position": "Felugró ablak viselkedése, pozíciója"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Főkapcsoló menü testreszabása"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Leállítás"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protokoll"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": "A Qt-színek alkalmazása sikeres"
},
@@ -5757,7 +5883,10 @@
"Rate": "Sebesség"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "Jelszó újbóli megadása"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "Olvasás:"
@@ -5787,7 +5916,7 @@
"Refresh Weather": "Időjárás frissítése"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "Frissítés…"
},
"Regex": {
"Regex": "Regex"
@@ -5814,7 +5943,7 @@
"Remaining / Total": "Hátralévő / Összesen"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "Utolsó mód megjegyzése"
},
"Remember Last Query": {
"Remember Last Query": "Utolsó lekérdezés megjegyzése"
@@ -5829,46 +5958,49 @@
"Remove": "Eltávolítás"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "Eltávolítod a(z) „%1” elemet a(z) %2 csoportból?"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "Eltávolítod a gyorsbillentyűt?"
},
"Remove Widget Padding": {
"Remove Widget Padding": "Widget térköz eltávolítása"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "Rendszergazda eltávolítása"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "Eltávolítod a rendszergazdai jogosultságot?"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "Sarokkerekítés eltávolítása a sávról"
},
"Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Rések és szegély eltávolítása az ablakok maximalizálásakor"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "Eltávolítod a üdvözlőképernyő-hozzáférést?"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "Üdvözlőképernyő-hozzáférés eltávolítása"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "Belső térköz eltávolítása minden widgetből"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "Eltávolítod a(z) %1 gyorsbillentyűt?"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "Eltávolítod a(z) %1 gyorsbillentyűt? Egy feloldási bejegyzés mentésre kerül a dms/binds-user.lua fájlba, így a DMS frissítései után is törölve marad."
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "Rendszergazdai jogosultságok eltávolítva"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "Üdvözlőképernyő-hozzáférés eltávolítva"
},
"Rename": {
"Rename": "Átnevezés"
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Éjszakai mód támogatás szükséges"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Visszaállítás"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "Méret visszaállítása"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "Visszaállítás az alapértelmezettre?"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "Alapértelmezés visszaállítása"
},
"Reset to default name": {
"Reset to default name": "Visszaállítás az alapértelmezett névre"
@@ -5958,7 +6093,7 @@
"Restore Special Workspace Windows": "Speciális munkaterület ablakainak visszaállítása"
},
"Restore the last selected mode (tab) when the launcher is opened": {
- "Restore the last selected mode (tab) when the launcher is opened": ""
+ "Restore the last selected mode (tab) when the launcher is opened": "Az utoljára kiválasztott mód (fül) visszaállítása az indító megnyitásakor"
},
"Resume": {
"Resume": "Folytatás"
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Szabályok (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Futtatás újra"
},
@@ -6036,10 +6174,10 @@
"Run User Templates": "Felhasználói sablonok futtatása"
},
"Run a program (e.g., firefox, kitty)": {
- "Run a program (e.g., firefox, kitty)": "Program futtatása (pl. firefox, kitty)"
+ "Run a program (e.g., firefox, kitty)": "Program futtatása (például firefox, kitty)"
},
"Run a shell command (e.g., notify-send)": {
- "Run a shell command (e.g., notify-send)": "Héjparancs futtatása (pl. notify-send)"
+ "Run a shell command (e.g., notify-send)": "Héjparancs futtatása (például notify-send)"
},
"Run paru/yay with AUR enabled when 'Update All' is clicked.": {
"Run paru/yay with AUR enabled when 'Update All' is clicked.": "A paru/yay futtatása AUR-ral az „Összes frissítése” gombra kattintáskor."
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Mentés"
},
@@ -6075,10 +6216,10 @@
"Save QR Code": "QR-kód mentése"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "Mentés és bezárás"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "Mentés és beillesztés"
},
"Save and switch between display configurations": {
"Save and switch between display configurations": "Kijelző-konfigurációk mentése és váltása"
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Pontszám"
},
- "Screen Sharing": {
- "Screen Sharing": "Képernyőmegosztás"
- },
"Screen sharing": {
"Screen sharing": "Képernyőmegosztás"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Keresési beállítások"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Keresés billentyűkombináció, leírás vagy műveletnév alapján.\n\nAz alapértelmezett művelet a vágólapra másolja a gyorsbillentyűt.\nKattints jobb gombbal vagy nyomd meg a jobb nyilat a gyakran használt gyorsbillentyűk rögzítéséhez – ezek a keresésen kívül felül jelennek meg."
},
@@ -6278,6 +6419,9 @@
"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 desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Válassz ki egy widgetet az asztalhoz való hozzáadáshoz. Minden widget egy külön példány, saját beállításokkal."
},
@@ -6288,7 +6432,7 @@
"Select a window...": "Válassz egy ablakot…"
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "Válassz egy aktív munkamenetet a váltáshoz. A jelenlegi munkamenet futni fog a háttérben."
},
"Select an image file...": {
"Select an image file...": "Képfájl kiválasztása…"
@@ -6330,7 +6474,7 @@
"Select the palette algorithm used for wallpaper-based colors": "Válaszd ki a háttérkép alapú színekhez használt paletta algoritmust"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "Felhasználó kiválasztása…"
},
"Select which keybind providers to include": {
"Select which keybind providers to include": "Válaszd ki a befoglalni kívánt gyorsbillentyű-szolgáltatókat"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "Különböző háttérképek beállítása világos és sötét módhoz"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "Kezdeti jelszó beállítása"
},
"Set key and action to save": {
"Set key and action to save": "Állítsd be a billentyűt és a műveletet a mentéshez"
@@ -6426,7 +6570,7 @@
"Shadow Override": "Árnyék felülbírálása"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "Árnyék elmosásának sugara képpontban"
},
"Shadow elevation on bars and panels": {
"Shadow elevation on bars and panels": "Árnyék emelése a sávokon és paneleken"
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Héj"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Összes törlése • Esc: Bezárás"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": "Shift+Enter a másoláshoz"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter a beillesztéshez"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Másolás • Shift+Del: Összes törlése • Esc: Bezárás"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Beillesztés • Shift+Del: Összes törlése • Esc: Bezárás"
- },
"Short": {
"Short": "Rövid"
},
@@ -6495,7 +6630,7 @@
"Show All Tags": "Összes címke megjelenítése"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "Az Összes, Alkalmazások, Fájlok és Bővítmények címkék megjelenítése a Spotlight-sáv bemenete mellett."
},
"Show Badge": {
"Show Badge": "Jelvény megjelenítése"
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Páratartalom megjelenítése"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Indítógomb megjelenítése"
},
@@ -6576,7 +6714,7 @@
"Show Memory in GB": "Memória megjelenítése GB-ban"
},
"Show Mode Chips": {
- "Show Mode Chips": ""
+ "Show Mode Chips": "Módcímkék megjelenítése"
},
"Show Network": {
"Show Network": "Hálózat megjelenítése"
@@ -6630,7 +6768,7 @@
"Show Swap": "Cserehely megjelenítése"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "Felhasználóváltás megjelenítése"
},
"Show System Date": {
"Show System Date": "Dátum megjelenítése"
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Módlapok és billentyűzettippek megjelenítése alul."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "Értesítési felugró ablakok megjelenítése csak az éppen fókuszált monitoron"
},
@@ -6749,14 +6890,11 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Képernyőkijelző megjelenítése a hangerő változásakor"
},
- "Show seconds": {
- "Show seconds": "Másodpercek megjelenítése"
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "A sáv megjelenítése csak akkor, ha nincs nyitva ablak"
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "A sáv megjelenítése, ha a niri-áttekintés aktív"
},
"Show weather information in top bar and control center": {
"Show weather information in top bar and control center": "Időjárási információk megjelenítése a felső sávon és a vezérlőközponton"
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Beállítás kihagyása"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Kicsi"
},
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "Hangok"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "A sáv és a képernyő szélei közötti távolság"
},
"Space between windows": {
"Space between windows": "Ablakok közötti hely"
@@ -6888,10 +7032,10 @@
"Spotlight": "Spotlight"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "Spotlight-sáv"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "Spotlight-sáv gyorsbillentyűje"
},
"Spotlight Search": {
"Spotlight Search": "Spotlight-keresés"
@@ -6939,10 +7083,10 @@
"Stretch": "Nyújtás"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "Widget-ikonok nyújtása a sáv rendelkezésre álló magasságának kitöltéséhez"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "Widget-szöveg nyújtása a sáv rendelkezésre álló magasságának kitöltéséhez"
},
"Strict auto-hide": {
"Strict auto-hide": "Szigorú automatikus elrejtés"
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Csíkok"
},
- "Style": {
- "Style": "Stílus"
- },
"Summary": {
"Summary": "Összegzés"
},
@@ -6963,7 +7104,7 @@
"Sunset": "Napnyugta"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "Duplikált értesítések elnyomása"
},
"Suppress notification popups while enabled": {
"Suppress notification popups while enabled": "Ha engedélyezve van, elnyomja az értesítési felugrókat"
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Rendszer értesítési felugró üzenetek"
},
- "System update custom command": {
- "System update custom command": "Rendszerfrissítési egyéni parancs"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Lap"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "Terminál további paraméterei"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Terminál egyéni további paraméterei"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "A tartalék terminál megnyitása sikertelen. Telepíts egy támogatott terminálemulátort, vagy futtasd a 'dms auth sync' parancsot."
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "A nyomtató feladatlistája üres"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Téma és színek"
},
@@ -7188,10 +7329,10 @@
"Theme Registry": "Témanyilvántartás"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "A kerethez használt témaszín"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "A widget körvonalához használt témaszín"
},
"Theme worker failed (%1)": {
"Theme worker failed (%1)": "A témafolyamat sikertelen (%1)"
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Témák"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Vastagság"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "Ez az eszköz"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "Ez eltarthat néhány másodpercig"
},
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "Időformátum"
},
- "Time format": {
- "Time format": "Időformátum"
- },
"Time remaining: %1": {
"Time remaining: %1": "Hátralévő idő: %1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "Várakozási idő az elrejtésig, miután a mutató elhagyja a területet"
},
"Time until full: %1": {
"Time until full: %1": "Teljes töltésig hátralévő idő: %1"
@@ -7314,7 +7467,7 @@
"To Full": "A teljes töltöttségig"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "Másik felhasználóként való bejelentkezéshez jelentkezz ki, és válaszd ki a fiókot az üdvözlőképernyőről. Párhuzamos, új munkamenet létrehozásához több-munkamenetes üdvözlőképernyő szükséges (greetd-flexiserver/GDM/LightDM)."
},
"To update, run the following command:": {
"To update, run the following command:": "A frissítéshez futtasd a következő parancsot:"
@@ -7329,7 +7482,7 @@
"Today": "Ma"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "A sáv láthatóságának kézi váltása IPC-n keresztül"
},
"Toggle fonts": {
"Toggle fonts": "Betűtípusok átváltása"
@@ -7404,13 +7557,13 @@
"Transparency": "Átlátszóság"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "A szegély átlátszósága"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "Az árnyékréteg átlátszósága"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "A widget körvonalának átlátszósága"
},
"Trash": {
"Trash": "Kuka"
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "A kuka parancs sikertelen (kilépési kód: %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "Népszerű GIF-ek"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Nem érhető el"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Nem fókuszált szín"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Működési idő:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Sürgős szín"
},
@@ -7653,10 +7815,7 @@
"Use Monospace Font": "Rögzített szélességű betűtípus használata"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": "Spotlight indító használata"
+ "Use Overlay Layer": "Átfedési réteg használata"
},
"Use System Theme": {
"Use System Theme": "Rendszertéma használata"
@@ -7665,7 +7824,7 @@
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "Egyéni kép használata a bejelentkezési képernyőhöz, hagyd üresen az asztali háttérkép használatához."
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "Egyéni sugár használata a gótikus sarokkivágásokhoz"
},
"Use a fixed shadow direction for this bar": {
"Use a fixed shadow direction for this bar": "Rögzített árnyékirány használata ehhez a sávhoz"
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Egyéni szegély/fókuszgyűrű szélesség használata"
},
- "Use custom command": {
- "Use custom command": "Egyéni parancs használata"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Egyéni parancs használata a rendszer frissítésére"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Egyéni térközök használata a sáv térközei helyett"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "Ujjlenyomatos hitelesítés használata a képernyőzárhoz."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Világos téma használata a sötét helyett"
},
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Hangtéma használata a rendszerbeállításokból"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": "A középre igazított minimális indító használata a csatlakoztatott V2 indító helyett"
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "Kiterjesztett felület használata az indító tartalmához"
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "Az átfedési réteg használata az indító megnyitásakor"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "Azonos pozíció és méret használata minden kijelzőn"
@@ -7742,38 +7895,41 @@
"User": {
"User": "Felhasználó"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "A felhasználó már létezik"
},
"User created": {
- "User created": ""
+ "User created": "Felhasználó létrehozva"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "Felhasználó létrehozva rendszergazdai és üdvözlőképernyős belépési hozzáféréssel"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "Felhasználó létrehozva rendszergazdai jogosultságokkal"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "Felhasználó létrehozva üdvözlőképernyős belépési hozzáféréssel"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "Felhasználó törölve"
},
"User not found": {
- "User not found": ""
+ "User not found": "A felhasználó nem található"
},
"Username": {
"Username": "Felhasználónév"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "A felhasználónévnek kisbetűvel vagy aláhúzásjellel kell kezdődnie, és csak kisbetűket, számjegyeket, kötőjeleket vagy aláhúzásjeleket tartalmazhat."
},
"Username...": {
"Username...": "Felhasználónév…"
},
"Users": {
- "Users": ""
+ "Users": "Felhasználók"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "A tartózkodási hely szerinti napkelte és napnyugta időpontokat használata."
@@ -7782,7 +7938,7 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Napkelte/napnyugta időpontok használata az éjszakai mód automatikus beállításához a tartózkodási helyed alapján."
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "A „spotlight-bar” IPC-műveletet használja, és mindig a minimális sávot nyitja meg."
},
"Using global monospace font from Settings → Personalization": {
"Using global monospace font from Settings → Personalization": "A Beállítások → Személyre szabás menüpontban megadott globális rögzített szélességű betűtípus használata"
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Függőleges csempézés"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Élénk"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "Zároláskor"
},
- "When updater widget is used, then hide it if no update found": {
- "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ó"
},
@@ -8028,10 +8184,10 @@
"Width": "Szélesség"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "A szegély szélessége képpontban"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "A widget körvonalának szélessége képpontban"
},
"Width of window border (borderpx)": {
"Width of window border (borderpx)": "Ablakszegély szélessége (borderpx)"
@@ -8082,7 +8238,7 @@
"Wipe": "Törlés"
},
"Working…": {
- "Working…": ""
+ "Working…": "Folyamatban…"
},
"Workspace": {
"Workspace": "Munkaterület"
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Munkaterületek és widgetek"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Írás:"
},
"X Axis": {
"X Axis": "X tengely"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y tengely"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Be kell állítanod a\nQT_QPA_PLATFORMTHEME=gtk3\nvagy a\nQT_QPA_PLATFORMTHEME=qt6ct\nkörnyezeti változót, majd indítsd újra a héjat.\n\nA qt6ct-hez telepíteni kell a qt6ct-kde csomagot."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Minden kész!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "A rendszer naprakész!"
},
@@ -8154,7 +8331,7 @@
"actions": "műveletek"
},
"admin": {
- "admin": ""
+ "admin": "rendszergazda"
},
"attached": {
"attached": "csatolva"
@@ -8192,20 +8369,29 @@
"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 kompozitor konfigurációjában. A kijelző változások nem maradnak meg."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "Például alice"
},
"e.g., firefox, kitty --title foo": {
- "e.g., firefox, kitty --title foo": "pl.: firefox, kitty --title foo"
+ "e.g., firefox, kitty --title foo": "Például 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., focus-workspace 3, resize-column -10": "Például focus-workspace 3, resize-column -10"
+ },
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
},
"e.g., notify-send 'Hello' && sleep 1": {
- "e.g., notify-send 'Hello' && sleep 1": "pl. notify-send „Hello” && sleep 1"
+ "e.g., notify-send 'Hello' && sleep 1": "például notify-send „Hello” && sleep 1"
},
"e.g., scratch, /^tmp_.*/, build": {
- "e.g., scratch, /^tmp_.*/, build": "pl. scratch, /^tmp_.*/, build"
+ "e.g., scratch, /^tmp_.*/, build": "Például. scratch, /^tmp_.*/, build"
},
"events": {
"events": "események"
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "kiemelt"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "utoljára látva: %1"
},
@@ -8226,7 +8409,7 @@
"leave empty for default": "hagyd üresen az alapértelmezéshez"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "„loginctl activate” sikertelen (kilépési kód: %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "A loginctl nem érhető el – a zárolás integrációhoz DMS-socketkapcsolat szükséges"
@@ -8316,13 +8499,13 @@
"relay: %1": "átjátszó: %1"
},
"remote": {
- "remote": ""
+ "remote": "távoli"
},
"seconds": {
"seconds": "másodperc"
},
"session %1": {
- "session %1": ""
+ "session %1": "%1. munkamenet"
},
"source": {
"source": "forrás"
@@ -8340,13 +8523,13 @@
"update dms for NM integration.": "frissítsd a dms-t az NM integrációhoz."
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "„useradd” sikertelen (kilépési kód: %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "„userdel” sikertelen (kilépési kód: %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "„usermod” sikertelen (kilépési kód: %1)"
},
"v%1 by %2": {
"v%1 by %2": "v%1 ettől: %2"
@@ -8397,15 +8580,9 @@
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: Nav • Szóköz: Kibontás • Enter: Művelet/Kibontás • E: Szöveg"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: Navigáció • Enter/Ctrl+C: Másolás • Del: Törlés • F10: Súgó"
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: Navigáció • Enter/Ctrl+C: Másolás • Del: Törlés • Ctrl+E: Szerkesztés • Ctrl+S: Rögzítés/Feloldás • F10: Súgó"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Navigálás • Enter: Beillesztés • Del: Törlés • F10: Súgó"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: Navigáció • Enter: Beillesztés • Ctrl+C: Másolás • Del: Törlés • Ctrl+E: Szerkesztés • Ctrl+S: Rögzítés/Feloldás • F10: Súgó"
}
}
diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json
index e7515a52..e722d897 100644
--- a/quickshell/translations/poexports/it.json
+++ b/quickshell/translations/poexports/it.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "Velocità Animazione %1"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1 min fa"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "\"Alternativa\" permette alla chiave di sbloccare da sola. \"Secondo fattore\" richiede prima la password o l'impronta digitale, poi la chiave."
},
@@ -294,10 +300,10 @@
"A modern desktop shell for Wayland compositors": "Una moderna shell desktop per compositor Wayland"
},
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": {
- "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
+ "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "Un'azione di avvio minimale separata che funziona in modalità Standalone, in modalità Separate Frame e in modalità Connected Frame."
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "Esiste già un utente con quel nome."
},
"AC Power": {
"AC Power": "Alimentazione CA"
@@ -342,10 +348,10 @@
"Action failed or terminal was closed.": "Azione non riuscita o il terminale è stato chiuso."
},
"Action performed when scrolling horizontally on the bar": {
- "Action performed when scrolling horizontally on the bar": ""
+ "Action performed when scrolling horizontally on the bar": "Azione eseguita durante lo scorrimento orizzontale della barra"
},
"Action performed when scrolling vertically on the bar": {
- "Action performed when scrolling vertically on the bar": ""
+ "Action performed when scrolling vertically on the bar": "Azione eseguita durante lo scorrimento verticale della barra"
},
"Actions": {
"Actions": "Azioni"
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "VPN Attiva"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Colore sfondo e icona dei riquadri attivi"
},
@@ -396,10 +405,10 @@
"Add": "Aggiungi"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "Aggiungere \"%1\" al gruppo %2?"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "Aggiungere \"%1\" al gruppo %2? Devono disconnettersi e accedere di nuovo, quindi eseguire dms greeter sync --profile per pubblicare il tema della schermata di accesso."
},
"Add Bar": {
"Add Bar": "Aggiungi Barra"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Aggiungi Widget Desktop"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Aggiungi Stampante"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Aggiungi Widget"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Aggiungi Widget alla Sezione %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Aggiungi un bordo al dock"
@@ -431,14 +446,20 @@
"Add by Address": {
"Add by Address": "Aggiungi tramite Indirizzo"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Aggiungi il nuovo utente al gruppo %1 in modo che possa eseguire il comando dms greeter sync --profile."
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "Aggiungi il nuovo utente al gruppo %1 in modo che possa utilizzare sudo."
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "Regola l'altezza della barra tramite spaziatura interna"
},
"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."
@@ -450,7 +471,7 @@
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Regola il contrasto dei colori generati (-100 = minimo, 0 = standard, 100 = massimo)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "Gruppo amministratori:"
},
"Advanced": {
"Advanced": "Avanzate"
@@ -474,19 +495,19 @@
"All displays": "Tutti gli schermi"
},
"Allow": {
- "Allow": ""
+ "Allow": "Consenti"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "Consenti clic attraverso il widget"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "Consentire l'accesso al greeter?"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "Consenti l'accesso al login del greeter"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "Già in quella sessione"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Indietro • F1/I: Info File • F10: Aiuto • Esc: Chiudi"
@@ -510,7 +531,7 @@
"Always show a minimum of 3 workspaces, even if fewer are available": "Mostra sempre almeno 3 spazi di lavoro, anche se ne sono disponibili meno"
},
"Always show the dock when niri's overview is open": {
- "Always show the dock when niri's overview is open": "Mostra sempre il dock quando la vista panoramica di niri è aperta"
+ "Always show the dock when niri's overview is open": "Mostra sempre il dock quando la 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 schermo connesso"
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Identità Anonima (facoltativa)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "Personalizzazioni App"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "Sostituzioni App ID"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "Regex ID applicazione (es. ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Aspetto"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Dock delle Applicazioni"
},
"Applications": {
"Applications": "Applicazioni"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Applica Modifiche"
},
@@ -588,7 +627,7 @@
"Apply compositor blur behind the frame border": "Applica sfocatura del compositore dietro il bordo della cornice"
},
"Apply inverse concave corner cutouts to the bar": {
- "Apply inverse concave corner cutouts to the bar": ""
+ "Apply inverse concave corner cutouts to the bar": "Applicare delle scanalature angolari concave inverse alla barra"
},
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Applica una temperatura colore più calda per ridurre l'affaticamento visivo. Usa le impostazioni di automazione qui sotto per controllare quando attivarla."
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "Applicazione delle modifiche di autenticazione in corso…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "App"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Disponi gli schermi e configura risoluzione, frequenza di aggiornamento e VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "Almeno un output deve rimanere abilitato"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Nascondi Automaticamente il Dock"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Salvataggio in corso..."
},
@@ -774,7 +831,7 @@
"Automatic Cycling": "Rotazione Automatica"
},
"Automatically calculate popup gap based on bar spacing": {
- "Automatically calculate popup gap based on bar spacing": ""
+ "Automatically calculate popup gap based on bar spacing": "Calcola automaticamente lo spazio del popup in base alla spaziatura delle barre"
},
"Automatically cycle through wallpapers in the same folder": {
"Automatically cycle through wallpapers in the same folder": "Alterna automaticamente gli sfondi nella stessa cartella"
@@ -789,7 +846,7 @@
"Automatically determine your location using your IP address": "Determina automaticamente la tua posizione usando l'indirizzo IP"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "Nascondi automaticamente la barra quando il puntatore si sposta"
},
"Automatically lock after": {
"Automatically lock after": "Blocca automaticamente dopo"
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automazione"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Disponibile"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Indietro"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "Sfocatura Sfondo"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Opacità dello Sfondo"
},
@@ -873,7 +942,7 @@
"Bar Transparency": "Trasparenza Barra"
},
"Bar corners and background": {
- "Bar corners and background": "Angoli e Sfondo della Barra"
+ "Bar corners and background": "Angoli e sfondo della barra"
},
"Bar shadow, border, and corners": {
"Bar shadow, border, and corners": "Ombra, bordo e angoli della barra"
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "Spaziatura e dimensioni della barra"
},
- "Bar transparency": {
- "Bar transparency": "Trasparenza della barra"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Colore base per le ombre (l'opacità è applicata automaticamente)"
},
@@ -912,10 +978,10 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Associa la schermata di blocco ai segnali dbus di loginctl. Disabilita se utilizzi una schermata di blocco esterna"
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "Associa l'azione IPC di Spotlight alla configurazione del tuo compositore."
},
"Bind the spotlight-bar IPC action in your compositor config.": {
- "Bind the spotlight-bar IPC action in your compositor config.": ""
+ "Bind the spotlight-bar IPC action in your compositor config.": "Associa l'azione IPC spotlight-bar nella configurazione del tuo compositore."
},
"Binds Include Missing": {
"Binds Include Missing": "Inclusione Scorciatoie Mancante"
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth non disponibile"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "Colore Bordo Sfocato"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Colore Bordo"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Opacità Bordo"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "Colore del bordo attorno alle superfici sfocate"
},
- "Border with BG": {
- "Border with BG": "Bordo con Sfondo"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "In Basso"
@@ -1101,7 +1176,7 @@
"Canceled": "Annullato"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "Impossibile eliminare l'unico amministratore"
},
"Cannot disable the only output": {
"Cannot disable the only output": "Impossibile disabilitare l'unico output"
@@ -1116,7 +1191,7 @@
"Cannot pair": "Impossibile associare"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "Impossibile rimuovere l'unico amministratore"
},
"Capabilities": {
"Capabilities": "Capacità"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Blocco Maiuscole è attivo"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Sezione Centrale"
},
@@ -1176,10 +1257,7 @@
"Check on startup": "Controllo all'avvio"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
- },
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "Controlla lo stato della sincronizzazione su richiesta. Sincronizza copia il tema, le impostazioni e la configurazione dello sfondo nella schermata di accesso. Le modifiche di autenticazione vengono applicate automaticamente."
+ "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "Verifica lo stato della sincronizzazione su richiesta. La sincronizzazione (completa) è per l'amministratore principale: copia il tema nella schermata di accesso e configura il sistema di benvenuto. Nei sistemi multiutente, aggiungi altri account in Impostazioni → Utenti, quindi fai in modo che ognuno di essi esegua il comando dms greeter sync --profile dopo aver effettuato il logout e il login (non una sincronizzazione completa). Le modifiche all'autenticazione vengono applicate automaticamente."
},
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "Controlla il tuo comando personalizzato in Impostazioni → Dock → Cestino."
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Scegli un colore"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Scegli i colori dalla tavolozza"
},
@@ -1230,7 +1311,7 @@
"Choose icon": "Scegli icona"
},
"Choose monochrome or a theme color tint for system tray icons": {
- "Choose monochrome or a theme color tint for system tray icons": "Scegli una tonalità monocromatica o un colore a tema per le icone della barra applicazioni"
+ "Choose monochrome or a theme color tint for system tray icons": "Scegli una tonalità monocromatica o un colore a tema per le icone dell'area di notifica"
},
"Choose the background color for widgets": {
"Choose the background color for widgets": "Scegli il colore di sfondo per i widget"
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Scegli dove i messaggi appaiono sullo schermo"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Scegli su quali schermi mostrare questo widget"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Cerchio"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Regex classe (es. ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Gestore Appunti"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Appunti inviati"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Servizio degli appunti non disponibile"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Gli appunti funzionano ma nulla viene salvato su disco"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Comando"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Comandi"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Impostazioni del Compositor"
},
- "Compositor not supported": {
- "Compositor not supported": "Compositor non supportato"
- },
"Config Format": {
"Config Format": "Formato di Configurazione"
},
@@ -1512,7 +1599,7 @@
"Confirm passkey for ": "Conferma passkey per "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "Conferma password"
},
"Conflicts with: %1": {
"Conflicts with: %1": "In conflitto con: %1"
@@ -1539,7 +1626,7 @@
"Connected Displays": "Schermi Connessi"
},
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": {
- "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
+ "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "La modalità Connected Frame utilizza il launcher connesso per le scorciatoie predefinite del launcher."
},
"Connected Options": {
"Connected Options": "Opzioni di Connessione"
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Contrasto"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Centro di Controllo"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "Opzioni di comodità per la schermata di accesso. Sincronizza per applicare."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Tempo di Attesa"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Copia PID"
},
- "Copy Path": {
- "Copy Path": "Copia Percorso"
- },
"Copy Text": {
"Copy Text": "Copia Testo"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Angoli e Sfondo"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Solo Conteggio"
},
@@ -1689,7 +1782,7 @@
"Create Printer": "Crea Stampante"
},
"Create User": {
- "Create User": ""
+ "Create User": "Crea Utente"
},
"Create Window Rule": {
"Create Window Rule": "Crea Regola Finestra"
@@ -1715,17 +1808,11 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Cambia Tab • Ctrl+S: Aggiungi/Rimuovi • Shift+Del: Cancella Tutto • Esc: Chiudi"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Cambia Tab • Ctrl+S: Aggiungi/Rimuovi • Shift+Enter: Copia • Shift+Del: Cancella Tutto • Esc: Chiudi"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Cambia Tab • Ctrl+S: Aggiungi/Rimuovi • Shift+Enter: Incolla • Shift+Del: Cancella Tutto • Esc: Chiudi"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: Cambia scheda • Ctrl+S: Blocca/Sblocca • Shift+Invio: Copia • Shift+Canc: Cancella tutto • F10: Aiuto • Esc: Chiudi"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: Cambia scheda • Ctrl+S: Blocca/Sblocca • Shift+Invio: Incolla • Shift+Canc: Cancella tutto • F10: Aiuto • Esc: Chiudi"
},
"Current": {
"Current": "Attuali"
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Tema Cursore"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "Curve: rasterizzatore a curve."
},
@@ -1800,7 +1890,7 @@
"Custom Lock Command": "Comando Personalizzato per il Blocco"
},
"Custom Logout Command": {
- "Custom Logout Command": "Comando Personalizzato per il Termina Sessione"
+ "Custom Logout Command": "Comando Personalizzato Terminare la Sessione"
},
"Custom Name": {
"Custom Name": "Nome Personalizzato"
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": "Impostazioni DMS"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "Scorciatoie DMS"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Il greeter DMS richiede: greetd, dms-greeter. Impronte digitali: fprintd, pam_fprintd. Chiavi di sicurezza: pam_u2f. Aggiungi il tuo utente al gruppo greeter. Le modifiche di autenticazione vengono applicate automaticamente e potrebbero aprire un terminale quando è richiesta l'autenticazione sudo."
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS obsoleta"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Formato Data"
},
- "Date format": {
- "Date format": "Formato data"
- },
"Date format on greeter": {
"Date format on greeter": "Formato data nel greeter"
},
@@ -1974,22 +2064,22 @@
"Default Apps": "App Predefinite"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "Launcher Predefinito"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "Collegamento Predefinito del Launcher"
},
"Default Opens": {
- "Default Opens": ""
+ "Default Opens": "Aperture Predefinite"
},
"Default Width (%)": {
"Default Width (%)": "Larghezza Predefinita (%)"
},
"Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": {
- "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": ""
+ "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "Le scorciatoie predefinite del launcher aprono il launcher completo con schede delle modalità, visualizzazione a griglia e pannello delle azioni."
},
"Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": {
- "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": ""
+ "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "Le scorciatoie predefinite del launcher aprono la versione minimale di Spotlight Bar. La scorciatoia dedicata a Spotlight Bar, mostrata di seguito, rimane indipendente."
},
"Default selected action": {
"Default selected action": "Azione selezionata predefinita"
@@ -2007,7 +2097,7 @@
"Delete": "Elimina"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "Eliminare \"%1\" e rimuovere la directory home? Questa operazione non può essere annullata."
},
"Delete \"%1\"?": {
"Delete \"%1\"?": "Eliminare \"%1\"?"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Elimina Stampante"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Eliminare l'Elemento Salvato?"
},
@@ -2031,10 +2124,10 @@
"Delete profile \"%1\"?": "Eliminare il profilo \"%1\"?"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "Elimina utente"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "Eliminare l'utente?"
},
"Demi Bold": {
"Demi Bold": "Semi-Grassetto"
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Scrivania"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Orologio Desktop"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Disattivazione Wi-Fi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Disco"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": "Mostra numero di riga nell'editor"
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Mostra solo gli spazi di lavoro con finestre"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Mostra i secondi nell'orologio"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Mostra il menu di alimentazione del sistema"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "Margine, trasparenza e bordo del dock"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "Spaziatura, trasparenza e bordo del dock"
- },
"Docs": {
"Docs": "Documentazione"
},
@@ -2307,7 +2409,7 @@
"Drizzle": "Pioviggine"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "Elimina la tua modifica per %1 in modo che venga riapplicata l'azione predefinita di DMS?"
},
"Duplicate": {
"Duplicate": "Duplica"
@@ -2358,13 +2460,16 @@
"Edit App": "Modifica App"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "Modifica Appunti"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "Modifica Regola Finestra"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "Modifica il testo degli appunti"
},
"Education": {
"Education": "Istruzione"
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Enterprise"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Voce fissata"
},
@@ -2580,7 +2688,7 @@
"Exclusive Zone Offset": "Offset Zona Esclusiva"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "Utenti esistenti"
},
"Experimental Feature": {
"Experimental Feature": "Funzionalità Sperimentale"
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Impossibile attivare la configurazione"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Impossibile attivare il profilo - file non trovato"
- },
"Failed to add binds include": {
"Failed to add binds include": "Impossibile aggiungere l'inclusione delle scorciatoie"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Impossibile annullare la stampa selezionata"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "Impossibile verificare gli aggiornamenti:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Impossibile verificare il limite delle voci fissate"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Impossibile creare la stampante"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Impossibile creare la directory dei profili"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Impossibile eliminare la VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": "Impossibile recuperare il codice QR di rete: %1"
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Impossibile sospendere la stampa"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "Impossibile salvare il profilo"
},
- "Failed to save profile file": {
- "Failed to save profile file": "Impossibile salvare il file del profilo"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Impossibile inviare gli appunti"
},
@@ -2865,7 +2964,7 @@
"Failed to update autoconnect": "Impossibile aggiornare connessione automatica"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "Impossibile aggiornare gli appunti"
},
"Failed to update description": {
"Failed to update description": "Impossibile aggiornare la descrizione"
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Impossibile aggiornare la condivisione"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Impossibile scrivere il file temporaneo per la validazione"
},
@@ -2919,7 +3024,7 @@
"File received from": "File ricevuto da"
},
"File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": {
- "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "La ricerca file richiede dsearch\\nInstalla da github.com/AvengeMedia/danksearch"
+ "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "La ricerca file richiede dsearch\nInstallalo da github.com/AvengeMedia/danksearch"
},
"File search unavailable": {
"File search unavailable": "Ricerca file non disponibile"
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Riempi"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Trova nel Testo"
},
@@ -2940,7 +3048,7 @@
"Find in note...": "Trova nelle note..."
},
"Fine-tune the space reserved for the bar from the screen edge": {
- "Fine-tune the space reserved for the bar from the screen edge": ""
+ "Fine-tune the space reserved for the bar from the screen edge": "Regola con precisione lo spazio riservato alla barra dal bordo dello schermo"
},
"Fingerprint availability could not be confirmed.": {
"Fingerprint availability could not be confirmed.": "Impossibile confermare la disponibilità dell'impronta digitale."
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "Errore impronta digitale"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "Errore impronta digitale: %1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "Impronta digitale non riconosciuta (%1/%2). Riprova o usa la password."
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Fluttuante"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "Fluente"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Focus"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Attiva all'Avvio"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Bordo Attivo"
},
@@ -3042,7 +3159,7 @@
"Follow focus": "Segui il focus"
},
"Follows the default launcher choice selected above.": {
- "Follows the default launcher choice selected above.": ""
+ "Follows the default launcher choice selected above.": "Segue l'impostazione predefinita del launcher selezionata in precedenza."
},
"Font": {
"Font": "Font"
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Terminazione Forzata (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Forza Colore Esteso"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Legenda Formato"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "Trovato %1 pacchetto da aggiornare:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "Trovati %1 pacchetti da aggiornare:"
- },
"Frame": {
"Frame": "Cornice"
},
@@ -3170,14 +3284,14 @@
"Full Day & Month": {
"Full Day & Month": "Data e Mese Estesi"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Completo con Anno"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": "Un launcher completo con schede di modalità, visualizzazione a griglia e pannello delle azioni."
- },
"Fullscreen": {
- "Fullscreen": "Schermo intero"
+ "Fullscreen": "Schermo Intero"
},
"Fullscreen Only": {
"Fullscreen Only": "Solo Schermo Intero"
@@ -3201,7 +3315,7 @@
"GPU Temperature": "Temperatura GPU"
},
"GPU temperature display": {
- "GPU temperature display": "Mostra Temperatura GPU"
+ "GPU temperature display": "Mostra temperatura GPU"
},
"GTK colors applied successfully": {
"GTK colors applied successfully": "I colori GTK sono stati applicati con successo"
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Controllo gamma non disponibile. Richiede API DMS v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Genera configurazioni di base GTK3/4 o QT5/QT6 (richiede qt6ct-kde) per seguire i colori DMS. Necessario solo una volta.
Si consiglia di configurare adw-gtk3 prima di applicare i temi GTK."
},
@@ -3255,19 +3372,19 @@
"Gradually fade the screen before turning off monitors with a configurable grace period": "Dissolvi gradualmente lo schermo prima di spegnere gli schermi, con un periodo di tolleranza configurabile"
},
"Grant": {
- "Grant": ""
+ "Grant": "Concedi"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "Concedi privilegi amministrativi?"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "Concedi i privilegi di amministratore"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "Privilegi di amministratore concessi"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "Accesso di login concesso al greeter"
},
"Graph Time Range": {
"Graph Time Range": "Intervallo Temporale del Grafico"
@@ -3294,10 +3411,10 @@
"Greeter font": "Font del Greeter"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "I membri del gruppo Greeter possono sincronizzare il tema della schermata di accesso con il comando dms greeter sync --profile dopo aver effettuato il logout e aver effettuato nuovamente l'accesso."
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "Gruppo greeter:"
},
"Greeter only — does not affect main clock": {
"Greeter only — does not affect main clock": "Solo per il greeter - non influenza l'orologio principale"
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Nascondi Indicatori"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Nascondi Widget di Aggiornamento"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "Nascondi a Schermo Intero"
- },
"Hide When Typing": {
"Hide When Typing": "Nascondi Durante la Digitazione"
},
@@ -3456,10 +3567,10 @@
"Hide on Touch": "Nascondi al Tocco"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "Nascondi la barra quando il puntatore esce, anche se una finestra a comparsa è ancora aperta."
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "Nascondi il dock quando una finestra è a schermo intero"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Tavolozza ad alta fedeltà che preserva le tonalità della sorgente."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Sito Web di Hyprland"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Ho capito"
@@ -3582,22 +3699,25 @@
"Icon Theme": "Tema Icone"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "Gli avvisi identici vengono visualizzati come un unico popup anziché impilarsi"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "Gli avvisi identici vengono visualizzati come schede di notifica separate."
},
"Idle": {
"Idle": "Inattivo"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Blocco Sospensione"
},
"Idle Settings": {
"Idle Settings": "Impostazioni di Inattività"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Monitoraggio inattività non supportato - richiede una versione più recente di Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Se il campo è nascosto, apparirà non appena viene premuto un tasto."
@@ -3609,7 +3729,7 @@
"Image": "Immagine"
},
"Image Viewer": {
- "Image Viewer": "Visualizzatore di immagini"
+ "Image Viewer": "Visualizzatore di Immagini"
},
"Image copied to clipboard": {
"Image copied to clipboard": "Immagine copiata negli appunti"
@@ -3677,8 +3797,11 @@
"Inhibitable": {
"Inhibitable": "Inibibile"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "Spaziatura interna applicata a ciascun widget"
},
"Input Devices": {
"Input Devices": "Dispositivi di Input"
@@ -3708,7 +3831,7 @@
"Install complete. Greeter has been installed.": "Installazione completata. Il Greeter è stato installato."
},
"Install dsearch to search files.": {
- "Install dsearch to search files.": "Installare dsearch per cercare i file."
+ "Install dsearch to search files.": "Installa dsearch per cercare i file."
},
"Install failed: %1": {
"Install failed: %1": "Installazione fallita: %1"
@@ -3771,7 +3894,7 @@
"Invalid password for %1": "Password non valida per %1"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "Nome utente non valido"
},
"Invert on mode change": {
"Invert on mode change": "Inverti al cambio di modalità"
@@ -3795,7 +3918,7 @@
"Keep Changes": "Conserva Modifiche"
},
"Keep typing": {
- "Keep typing": "Continuare a digitare"
+ "Keep typing": "Continua a digitare"
},
"Keeping Awake": {
"Keeping Awake": "Mantieni Attivo"
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Avvia su dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "Avvia sulla GPU dedicata per impostazione predefinita"
- },
"Launcher": {
"Launcher": "Launcher"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "Lato di Comparsa del Launcher"
},
- "Launcher Style": {
- "Launcher Style": "Stile del Launcher"
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "Opacità Contorno Livello"
},
@@ -3933,7 +4050,7 @@
"Left Section": "Sezione Sinistra"
},
"Light": {
- "Light": "Luce"
+ "Light": "Chiaro"
},
"Light Direction": {
"Light Direction": "Direzione della Luce"
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Termina Sessione"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "Accesso in corso..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Longitudine"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Bassa Priorità"
},
@@ -4077,13 +4194,13 @@
"Mail": "Posta"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "Imposta come amministratore"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "Assicurati che KDE Connect o Valent siano in esecuzione sui tuoi altri dispositivi"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "Rendi lo sfondo della barra completamente trasparente"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Gestione e configurazione dei plugin per estendere le funzionalità della DMS"
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "Gestito dalla Cornice"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": "Gestito dalla modalità Frame"
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "Gestito dalla Cornice in Modalità Connessa"
},
@@ -4128,7 +4242,7 @@
"Manual Show/Hide": "Mostra/Nascondi Manuale"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "Configurazione manuale"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "Associa i nomi delle classi delle finestre ai nomi delle icone per una corretta visualizzazione"
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Vaschetta Recupero Toner Piena"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Criteri di Corrispondenza"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Corrisponde al profilo: %1"
- },
"Material": {
"Material": "Material"
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Impostazioni Lettore Multimediale"
},
- "Media Players": {
- "Media Players": "Lettori Multimediali"
- },
"Media Players (": {
"Media Players (": "Lettori Multimediali ("
},
@@ -4329,7 +4443,7 @@
"Microphone Volume": "Volume Microfono"
},
"Microphone settings": {
- "Microphone settings": "Impostazioni Microfono"
+ "Microphone settings": "Impostazioni microfono"
},
"Microphone volume control": {
"Microphone volume control": "Controllo volume microfono"
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Larghezza Min."
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": "Barra minimale in stile Spotlight: appare immediatamente nella parte superiore dello schermo e si espande man mano che si digita."
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Tavolozza minima costruita attorno a una singola tonalità."
},
@@ -4419,7 +4530,7 @@
"Mount Points": "Punti di Montaggio"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "I clic del mouse attraversano la barra e raggiungono le finestre dietro di essa."
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "Aspetto puntatore del mouse"
@@ -4458,7 +4569,7 @@
"Music": "Musica"
},
"Music Player": {
- "Music Player": "Lettore musicale"
+ "Music Player": "Lettore Musicale"
},
"Mute Popups": {
"Mute Popups": "Silenzia Popup"
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Icone Spazi di Lavoro con Nome"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "Native: renderer di piattaforma (FreeType)."
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Nessuno Sfondo"
},
- "No Battery": {
- "No Battery": "Nessuna Batteria"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Nessun adattatore Bluetooth trovato"
},
@@ -4659,7 +4770,7 @@
"No active %1 sessions": "Nessuna sessione %1 attiva"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "Nessuna sessione attiva trovata per %1"
},
"No adapter": {
"No adapter": "Nessun adattatore"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Nessuna personalizzazione app."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Nessuna app trovata"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Nessuna app silenziata. Fai clic destro su una notifica e scegli \"Silenzia popup\" per aggiungerne una qui."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Nessuna batteria"
},
@@ -4710,7 +4827,7 @@
"No disk data available": "Nessun dato sul disco disponibile"
},
"No display profiles found. Create them in Settings > Displays.": {
- "No display profiles found. Create them in Settings > Displays.": "Non sono stati trovati profili di visualizzazione. Crearli in Impostazioni > Schermi."
+ "No display profiles found. Create them in Settings > Displays.": "Non sono stati trovati profili di visualizzazione. Creali in Impostazioni > Schermi."
},
"No drivers found": {
"No drivers found": "Nessun driver trovato"
@@ -4734,7 +4851,7 @@
"No hidden apps.": "Nessuna app nascosta."
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "Nessun account utente umano trovato."
},
"No info items": {
"No info items": "Nessun elemento informativo"
@@ -4776,7 +4893,7 @@
"No mount points found": "Nessun punto di montaggio trovato"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "Non ci sono altre sessioni attive su questo sedile."
},
"No output device": {
"No output device": "Nessun dispositivo di output"
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Nessun dispositivo di output trovato"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "Nessun gestore pacchetti trovato. Installa \"paru\" o \"yay\" su sistemi basati su Arch per verificare gli aggiornamenti."
- },
"No peers found": {
"No peers found": "Nessun peer trovato"
},
@@ -4824,7 +4938,7 @@
"No saved clipboard entries": "Nessuna voce degli appunti salvata"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "Nessuna sessione selezionata"
},
"No sessions found": {
"No sessions found": "Nessuna sessione trovata"
@@ -4848,7 +4962,7 @@
"No trigger": "Nessun attivatore"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "Nessun utente specificato"
},
"No video found in folder": {
"No video found in folder": "Nessun video trovato nella cartella"
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Nessuna regola finestra configurata"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Nessuna"
},
@@ -4908,7 +5025,7 @@
"Not available — install or configure pam_u2f.": "Non disponibile — installa o configura pam_u2f."
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "Non vincolato"
},
"Not connected": {
"Not connected": "Non connesso"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Non rilevato"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Non associato"
},
@@ -5040,10 +5160,10 @@
"Opacity": "Opacità"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "Opacità dello sfondo della barra"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "Opacità degli sfondi dei widget"
},
"Opaque": {
"Opaque": "Opaco"
@@ -5085,7 +5205,7 @@
"Open in Browser": "Apri nel Browser"
},
"Open in terminal": {
- "Open in terminal": "Apri nel Terminale"
+ "Open in terminal": "Apri nel terminale"
},
"Open search bar to find text": {
"Open search bar to find text": "Apri barra di ricerca per cercare testo"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "Apertura dei file"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "Apertura del terminale: "
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "Apre un selettore di altre sessioni attive su questo sedile"
},
"Opens image files": {
"Opens image files": "Apre i file di immagine"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "Apre il launcher connesso in modalità Connected Frame."
},
"Optional description": {
"Optional description": "Descrizione facoltativa"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Posizione facoltativa"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Opzioni"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Vassoio di Uscita Pieno"
},
- "Output Device": {
- "Output Device": "Dispositivo di Uscita"
- },
"Output Devices": {
"Output Devices": "Dispositivi di Uscita"
},
@@ -5193,7 +5316,7 @@
"Override the global shadow with per-bar settings": "Sovrascrivi l'ombra globale con le impostazioni per ogni singola barra"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "Sovrascrivi la dimensione dello spazio del popup quando la modalità automatica è disabilitata"
},
"Overrides": {
"Overrides": "Sovrascritture"
@@ -5280,22 +5403,22 @@
"Password": "Password"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "La password non può essere vuota"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "Cambio password non riuscito (uscita %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "Password impostata"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "Password aggiornata"
},
"Password...": {
"Password...": "Password..."
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "Le password non corrispondono."
},
"Paste": {
"Paste": "Incolla"
@@ -5403,10 +5526,10 @@
"Place plugins in %1": "Inserisci i plugin in %1"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "Posiziona la barra sul livello di sovrapposizione di Wayland"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "Posiziona il dock sul livello di sovrapposizione di Wayland"
},
"Play a video when the screen locks.": {
"Play a video when the screen locks.": "Riproduci un video quando lo schermo si blocca."
@@ -5415,16 +5538,16 @@
"Play sound after logging in": "Riproduci un suono dopo l'accesso"
},
"Play sound when new notification arrives": {
- "Play sound when new notification arrives": "Riproduci suono quando arriva una nuova notifica"
+ "Play sound when new notification arrives": "Riproduci un suono quando arriva una nuova notifica"
},
"Play sound when power cable is connected": {
"Play sound when power cable is connected": "Riproduci un suono al collegamento del cavo di alimentazione"
},
"Play sound when volume is adjusted": {
- "Play sound when volume is adjusted": "Riproduci suono quando il volume viene regolato"
+ "Play sound when volume is adjusted": "Riproduci un suono quando il volume viene regolato"
},
"Play sounds for system events": {
- "Play sounds for system events": "Riproduci suoni per eventi di sistema"
+ "Play sounds for system events": "Riproduci dei suoni per eventi di sistema"
},
"Playback": {
"Playback": "Riproduzione"
@@ -5487,7 +5610,7 @@
"Pointer": "Puntatore"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "L'integrazione con Polkit è disabilitata. La gestione degli utenti richiede che Polkit elevi i privilegi."
},
"Popout Shadows": {
"Popout Shadows": "Ombre dei Popup"
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Ombra Popup"
},
- "Popup Transparency": {
- "Popup Transparency": "Trasparenza Popup"
- },
"Popup behavior, position": {
"Popup behavior, position": "Comportamento e posizione dei popup"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Personalizzazione Menu Alimentazione"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Spegni"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protocollo"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": "I colori Qt sono stati applicati con successo"
},
@@ -5757,7 +5883,10 @@
"Rate": "Velocità"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "Reinserisci la password"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "Lettura:"
@@ -5787,7 +5916,7 @@
"Refresh Weather": "Aggiorna Meteo"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "Aggiornamento…"
},
"Regex": {
"Regex": "Regex"
@@ -5814,7 +5943,7 @@
"Remaining / Total": "Rimanente/Totale"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "Ricorda l'ultima modalità"
},
"Remember Last Query": {
"Remember Last Query": "Ricorda l'Ultima Ricerca"
@@ -5829,46 +5958,49 @@
"Remove": "Rimuovi"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "Rimuovere \"%1\" dal gruppo %2?"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "Rimuovere il collegamento?"
},
"Remove Widget Padding": {
"Remove Widget Padding": "Rimuovi Spaziatura Widget"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "Rimuovi amministratore"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "Rimuovere l'amministratore?"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "Rimuovere gli angoli arrotondati dalla barra"
},
"Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Rimuovi spazi e bordo quando le finestre sono massimizzate"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "Rimuovere l'accesso al greeter?"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "Rimuovere l'accesso di login al greeter"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "Rimuovi la spaziatura interna da tutti i widget"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "Rimuovere il collegamento %1?"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "Rimuovere la scorciatoia %1? Verrà salvata una voce di rimozione nel file dms/binds-user.lua, in modo che rimanga rimossa anche dopo gli aggiornamenti di DMS."
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "Privilegi di amministratore rimossi"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "Accesso di login per il greeter rimosso"
},
"Rename": {
"Rename": "Rinomina"
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Richiede il supporto alla modalità notturna"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Reimposta"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "Reimposta Dimensioni"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "Ripristina le impostazioni predefinite?"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "Ripristina le impostazioni predefinite"
},
"Reset to default name": {
"Reset to default name": "Ripristina nome predefinito"
@@ -5958,7 +6093,7 @@
"Restore Special Workspace Windows": "Ripristina Finestre dello Spazio di Lavoro Speciale"
},
"Restore the last selected mode (tab) when the launcher is opened": {
- "Restore the last selected mode (tab) when the launcher is opened": ""
+ "Restore the last selected mode (tab) when the launcher is opened": "Ripristina l'ultima modalità (scheda) selezionata all'apertura del launcher."
},
"Resume": {
"Resume": "Riprendi"
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Regole (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Esegui di Nuovo"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Salva"
},
@@ -6075,10 +6216,10 @@
"Save QR Code": "Salva Codice QR"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "Salva e chiudi"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "Salva e incolla"
},
"Save and switch between display configurations": {
"Save and switch between display configurations": "Salva e passa tra le configurazioni dello schermo"
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Punteggio"
},
- "Screen Sharing": {
- "Screen Sharing": "Condivisione Schermo"
- },
"Screen sharing": {
"Screen sharing": "Condivisione schermo"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Opzioni di Ricerca"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Cerca per combinazione di tasti, descrizione o nome azione.\n\nL'azione predefinita copia la scorciatoia negli appunti.\nFai clic destro o Freccia Destra per fissare le scorciatoie frequenti - appariranno in cima quando non si cerca."
},
@@ -6278,6 +6419,9 @@
"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 desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Seleziona un widget da aggiungere al tuo desktop. Ogni widget è un'istanza separata con le proprie impostazioni."
},
@@ -6288,7 +6432,7 @@
"Select a window...": "Seleziona una finestra..."
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "Seleziona una sessione attiva a cui passare. La sessione corrente continuerà a essere eseguita in background."
},
"Select an image file...": {
"Select an image file...": "Seleziona un'immagine..."
@@ -6330,7 +6474,7 @@
"Select the palette algorithm used for wallpaper-based colors": "Seleziona l'algoritmo della tavolozza usato per i colori basati sullo sfondo"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "Seleziona l'utente..."
},
"Select which keybind providers to include": {
"Select which keybind providers to include": "Seleziona quali fornitori di scorciatoie includere"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "Imposta sfondi differenti per modalità chiara e scura"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "Imposta la password iniziale"
},
"Set key and action to save": {
"Set key and action to save": "Imposta tasto e azione per salvare"
@@ -6426,7 +6570,7 @@
"Shadow Override": "Sovrascrittura Ombra"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "Raggio di sfocatura dell'ombra in pixel"
},
"Shadow elevation on bars and panels": {
"Shadow elevation on bars and panels": "Ombra in rilievo su barre e pannelli"
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Canc: Cancella Tutto • Esc: Chiudi"
- },
"Shift+Enter to copy": {
- "Shift+Enter to copy": "Maiusc+Invio per copiare"
+ "Shift+Enter to copy": "Shift+Invio per copiare"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Invio per incollare"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Invio: Copia • Shift+Canc: Cancella Tutto • Esc: Chiudi"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Invio: Incolla • Shift+Canc: Cancella Tutto • Esc: Chiudi"
- },
"Short": {
"Short": "Breve"
},
@@ -6495,7 +6630,7 @@
"Show All Tags": "Mostra Tutti i Tag"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "I pulsanti Mostra tutto, App, File e Plugin si trovano accanto al pulsante di input della barra Spotlight."
},
"Show Badge": {
"Show Badge": "Mostra Badge"
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Mostra Umidità"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Mostra Pulsante Launcher"
},
@@ -6576,7 +6714,7 @@
"Show Memory in GB": "Mostra la Memoria in GB"
},
"Show Mode Chips": {
- "Show Mode Chips": ""
+ "Show Mode Chips": "Mostra Chip Modalità"
},
"Show Network": {
"Show Network": "Mostra Rete"
@@ -6630,7 +6768,7 @@
"Show Swap": "Mostra Swap"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "Mostra Cambia Utente"
},
"Show System Date": {
"Show System Date": "Mostra Data di Sistema"
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Mostra schede modalità e suggerimenti tastiera in basso."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "Mostra i popup delle notifiche solo sullo schermo attualmente attivo"
},
@@ -6749,14 +6890,11 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Mostra indicatore a schermo quando il volume cambia"
},
- "Show seconds": {
- "Show seconds": "Mostra secondi"
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "Mostra la barra solo quando non ci sono finestre aperte."
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "Mostra la barra quando la panoramica di Niri è attiva"
},
"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"
@@ -6819,11 +6957,14 @@
"Skip": "Salta"
},
"Skip confirmation": {
- "Skip confirmation": "Salta Conferma"
+ "Skip confirmation": "Salta conferma"
},
"Skip setup": {
"Skip setup": "Salta configurazione"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Piccolo"
},
@@ -6846,7 +6987,7 @@
"Sort Alphabetically": "Ordina Alfabeticamente"
},
"Sort By": {
- "Sort By": "Ordina per"
+ "Sort By": "Ordina Per"
},
"Sorting & Layout": {
"Sorting & Layout": "Ordinamento e Layout"
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "Suoni"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "Spazio tra la barra e i bordi dello schermo"
},
"Space between windows": {
"Space between windows": "Spazio tra le finestre"
@@ -6888,10 +7032,10 @@
"Spotlight": "Riflettore"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "Barra Spotlight"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "Scorciatoia per la barra Spotlight"
},
"Spotlight Search": {
"Spotlight Search": "Ricerca Spotlight"
@@ -6939,10 +7083,10 @@
"Stretch": "Estendi"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "Allarga le icone del widget per riempire l'altezza disponibile della barra"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "Allunga il testo del widget per riempire l'altezza disponibile della barra"
},
"Strict auto-hide": {
"Strict auto-hide": "Nascondi automaticamente (rigoroso)"
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Strisce"
},
- "Style": {
- "Style": "Stile"
- },
"Summary": {
"Summary": "Riassunto"
},
@@ -6963,7 +7104,7 @@
"Sunset": "Tramonto"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "Disabilita le notifiche duplicate"
},
"Suppress notification popups while enabled": {
"Suppress notification popups while enabled": "Sopprimi i popup di notifica quando attivato"
@@ -6990,7 +7131,7 @@
"Suspend": "Sospendi"
},
"Suspend behavior": {
- "Suspend behavior": "Comportamento Sospensione"
+ "Suspend behavior": "Comportamento sospensione"
},
"Suspend system after": {
"Suspend system after": "Sospendi sistema dopo"
@@ -7005,7 +7146,7 @@
"Switch User": "Cambia Utente"
},
"Switch between display configurations": {
- "Switch between display configurations": "Passare da una configurazione all'altra del display"
+ "Switch between display configurations": "Passa da una configurazione all'altra del display"
},
"Switch to power profile": {
"Switch to power profile": "Passa al profilo energetico"
@@ -7062,7 +7203,7 @@
"System Tray": "Area di Notifica"
},
"System Tray Icon Tint": {
- "System Tray Icon Tint": "Tonalità Icona nella Barra Applicazioni"
+ "System Tray Icon Tint": "Tonalità Icona nell'Area di Notifica"
},
"System Update": {
"System Update": "Aggiornamento di Sistema"
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Notifiche a comparsa di sistema"
},
- "System update custom command": {
- "System update custom command": "Comando personalizzato aggiornamento sistema"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Scheda"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "Parametri aggiuntivi del terminale"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "Terminale di ripiego non riuscito. Installa un emulatore di terminale supportato o esegui 'dms auth sync' manualmente."
},
@@ -7158,7 +7296,7 @@
"Text Color": "Colore Testo"
},
"Text Editor": {
- "Text Editor": "Editor di testo"
+ "Text Editor": "Editor di Testo"
},
"Text Rendering": {
"Text Rendering": "Rendering del Testo"
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "La coda delle stampe della stampante è vuota"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Tema e Colori"
},
@@ -7188,10 +7329,10 @@
"Theme Registry": "Registro dei Temi"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "Colore del tema utilizzato per il bordo"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "Colore del tema utilizzato per il contorno del widget"
},
"Theme worker failed (%1)": {
"Theme worker failed (%1)": "Lavoratore a tema non riuscito (%1)"
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Temi"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Spessore"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "Questo dispositivo"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "L'operazione potrebbe richiedere alcuni secondi"
},
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "Formato Ora"
},
- "Time format": {
- "Time format": "Formato ora"
- },
"Time remaining: %1": {
"Time remaining: %1": "Tempo rimanente: %1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "Tempo prima di nascondere dopo che il puntatore se ne va."
},
"Time until full: %1": {
"Time until full: %1": "Tempo alla carica completa: %1"
@@ -7314,7 +7467,7 @@
"To Full": "Alla Carica Completa"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "Per accedere con un utente diverso, termina la sessione e seleziona l'account dal menu di benvenuto. La creazione di una nuova sessione in parallelo richiede un menu di benvenuto multi-sessione (greetd-flexiserver / GDM / LightDM)."
},
"To update, run the following command:": {
"To update, run the following command:": "Per aggiornare, esegui il seguente comando:"
@@ -7329,7 +7482,7 @@
"Today": "Oggi"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "Attiva/disattiva manualmente la visibilità della barra tramite IPC"
},
"Toggle fonts": {
"Toggle fonts": "Alterna i font"
@@ -7404,13 +7557,13 @@
"Transparency": "Trasparenza"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "Trasparenza del bordo"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "Trasparenza dello strato d'ombra"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "Trasparenza del contorno del widget"
},
"Trash": {
"Trash": "Cestino"
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "Comando cestino non riuscito (exit %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "GIF di Tendenza"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Non disponibile"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Colore Inattivo"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Tempo di Attività:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Colore Urgente"
},
@@ -7653,10 +7815,7 @@
"Use Monospace Font": "Usa Font a Larghezza Fissa"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": "Usa il Launcher Spotlight"
+ "Use Overlay Layer": "Utilizza il livello di sovrapposizione"
},
"Use System Theme": {
"Use System Theme": "Usa Tema di Sistema"
@@ -7665,7 +7824,7 @@
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "Usa un'immagine personalizzata per la schermata di blocco, o lascia vuoto per utilizzare lo sfondo del tuo desktop."
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "Utilizza un raggio personalizzato per i ritagli angolari acuti"
},
"Use a fixed shadow direction for this bar": {
"Use a fixed shadow direction for this bar": "Usa una direzione dell'ombra fissa per questa barra"
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Usa larghezza bordo/cornice di focus personalizzata"
},
- "Use custom command": {
- "Use custom command": "Usa comando personalizzato"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Usa comando personalizzato per aggiornare il sistema"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Usa spaziature personalizzate invece di quelle della barra"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "Usa l'autenticazione tramite impronta digitale per la schermata di blocco."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Usa tema chiaro invece del tema scuro"
},
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Usa tema di suoni dalle impostazioni di sistema"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": "Utilizzare il launcher minimale centrato invece del launcher V2 connesso"
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "Usa la superficie estesa per il contenuto del launcher"
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "Utilizza il livello di sovrapposizione all'apertura del launcher"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "Usa la stessa posizione e dimensione su tutti gli schermi"
@@ -7742,38 +7895,41 @@
"User": {
"User": "Utente"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "L'utente esiste già"
},
"User created": {
- "User created": ""
+ "User created": "Utente creato"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "Utente creato con accesso di amministratore e login greeter"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "Utente creato con privilegi di amministratore"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "Utente creato con accesso di benvenuto"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "Utente cancellato"
},
"User not found": {
- "User not found": ""
+ "User not found": "Utente non trovato"
},
"Username": {
"Username": "Nome Utente"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "Il nome utente deve iniziare con una lettera minuscola o un trattino basso e deve contenere solo lettere minuscole, cifre, trattini o trattini bassi."
},
"Username...": {
"Username...": "Nome utente..."
},
"Users": {
- "Users": ""
+ "Users": "Utenti"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "Utilizza gli orari di alba/tramonto in base alla tua posizione."
@@ -7782,7 +7938,7 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Usa gli orari di alba e tramonto per regolare automaticamente la modalità notturna in base alla tua posizione."
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "Utilizza l'azione IPC spotlight-bar e apre sempre la barra minima."
},
"Using global monospace font from Settings → Personalization": {
"Using global monospace font from Settings → Personalization": "Utilizzo del font monospace globale da Impostazioni → Personalizzazione"
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Tiling Verticale"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Vivace"
},
@@ -7938,7 +8097,7 @@
"Weather Widget": "Widget Meteo"
},
"Web Browser": {
- "Web Browser": "Browser web"
+ "Web Browser": "Browser Web"
},
"Welcome": {
"Welcome": "Benvenuto"
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "Quando bloccato"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Se si usa il widget di aggiornamento, nascondilo se non ne viene trovato nessuno"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Password Wi-Fi"
},
@@ -8028,10 +8184,10 @@
"Width": "Larghezza"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "Larghezza del bordo in pixel"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "Larghezza del contorno del widget in pixel"
},
"Width of window border (borderpx)": {
"Width of window border (borderpx)": "Larghezza bordo finestra (borderpx)"
@@ -8082,7 +8238,7 @@
"Wipe": "Tendina"
},
"Working…": {
- "Working…": ""
+ "Working…": "Elaborazione in corso…"
},
"Workspace": {
"Workspace": "Spazio di Lavoro"
@@ -8106,7 +8262,7 @@
"Workspace Switcher": "Switcher Spazi di Lavoro"
},
"Workspace name": {
- "Workspace name": "Nome dello Spazio di Lavoro"
+ "Workspace name": "Nome dello spazio di lavoro"
},
"Workspaces": {
"Workspaces": "Spazi di Lavoro"
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Spazi di Lavoro e Widget"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Scrittura:"
},
"X Axis": {
"X Axis": "Asse X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Asse Y"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Devi impostare una delle seguenti come variabili d'ambiente:\nQT_QPA_PLATFORMTHEME=gtk3 OPPURE\nQT_QPA_PLATFORMTHEME=qt6ct,\ne poi riavviare la shell.\n\nqt6ct richiede che qt6ct-kde sia installato."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Tutto Pronto!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "Il tuo sistema è aggiornato!"
},
@@ -8154,7 +8331,7 @@
"actions": "azioni"
},
"admin": {
- "admin": ""
+ "admin": "amministratore"
},
"attached": {
"attached": "agganciato"
@@ -8192,8 +8369,14 @@
"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 allo schermo non saranno persistenti."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "ad esempio Alice"
},
"e.g., firefox, kitty --title foo": {
"e.g., firefox, kitty --title foo": "es. firefox, kitty --title foo"
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "es. focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "es. notify-send \"Ciao\" && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "in primo piano"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "visto l'ultima volta %1"
},
@@ -8226,7 +8409,7 @@
"leave empty for default": "lascia vuoto per il valore predefinito"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "loginctl activate non riuscito (uscita %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl non disponibile - integrazione blocco richiede connessione socket DMS"
@@ -8316,13 +8499,13 @@
"relay: %1": "relay: %1"
},
"remote": {
- "remote": ""
+ "remote": "remoto"
},
"seconds": {
"seconds": "secondi"
},
"session %1": {
- "session %1": ""
+ "session %1": "sessione %1"
},
"source": {
"source": "sorgente"
@@ -8340,13 +8523,13 @@
"update dms for NM integration.": "aggiorna dms per l'integrazione NM."
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "aggiunta utente non riuscita (uscita %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "userdel non riuscito (uscita %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "usermod non riuscito (uscita %1)"
},
"v%1 by %2": {
"v%1 by %2": "v%1 di %2"
@@ -8397,15 +8580,9 @@
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: Nav • Spazio: Espandi • Invio: Azione/Espandi • E: Testo"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: Naviga • Invio/Ctrl+C: Copia • Canc: Elimina • F10: Aiuto"
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: Naviga • Invio/Ctrl+C: Copia • Canc: Elimina • Ctrl+E: Modifica • Ctrl+S: Aggiungi/Rimuovi • F10: Aiuto"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Naviga • Invio: Incolla • Canc: Elimina • F10: Aiuto"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: Naviga • Invio: Incolla • Ctrl+C: Copia • Canc: Elimina • Ctrl+E: Modifica • Ctrl+S: Aggiungi/Rimuovi • F10: Aiuto"
}
}
diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json
index 7d5d012e..eb7890dd 100644
--- a/quickshell/translations/poexports/ja.json
+++ b/quickshell/translations/poexports/ja.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1 アニメーション速度"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1分前"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "「Alternative」はキーだけでロックを解除できます。「Second factor」は最初にパスワードまたは指紋認証が必要で、その後にキーが必要です。"
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "アクティブ VPN"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "アクティブタイルの背景色とアイコン色"
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "デスクトップウィジェットを追加"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "プリンターを追加"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "ウィジェットを追加"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "%1 セクションにウィジェットを追加"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "ドックの周囲に境界線を追加"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": "アドレスで追加"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "匿名 ID (オプション)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "アプリのカスタマイズ"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "App ID 置換"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "App ID の正規表現(例: ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "外観"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "アプリドック"
},
"Applications": {
"Applications": "アプリ"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "変更を適用"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "認証の変更を適用中…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "アプリ"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "ディスプレイを配置し、解像度、リフレッシュレート、VRR を設定"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "少なくとも1つの出力は有効のままにしておく必要がある"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "ドックを自動的に隠す"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "自動保存中..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "自動化"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "利用可能"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "戻る"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "バックエンド"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "背景のぼかし"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "背景の透明度"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "バーの間隔とサイズ"
},
- "Bar transparency": {
- "Bar transparency": "バーの透明度"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "影の基本色(透明度は自動的に適用されます)"
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth は利用できません"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "ぼかし境界線の色"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "ボーダーの色"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "ボーダーの透明度"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "ぼかしたサーフェスの周囲のボーダー色"
},
- "Border with BG": {
- "Border with BG": "背景付きボーダー"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "ボトム"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Caps Lock がオンです"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "センターセクション"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "必要に応じて同期状態を確認します。Sync はテーマ、設定、壁紙設定をログイン画面にコピーします。認証の変更は自動的に適用されます。"
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "設定 → ドック → ゴミ箱でカスタムコマンドを確認してください。"
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "色を選ぶ"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "パレットから色を選ぶ"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "OSDの表示する場所を選んでください"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "このウィジェットを表示するディスプレイを選ぶ"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "円"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Class の正規表現(例: ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "クリップボード管理"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "クリップボードを送信しました"
},
- "Clipboard service not available": {
- "Clipboard service not available": "クリップボードサービスは利用できません"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "クリップボードは動作しますが、ディスクには何も保存されません"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "コマンド"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "コマンド"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "コンポジター設定"
},
- "Compositor not supported": {
- "Compositor not supported": "コンポジターはサポートされていません"
- },
"Config Format": {
"Config Format": "設定形式"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "コントラスト"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "コントロールセンター"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "ログイン画面用の便利なオプションです。適用するには Sync を実行してください。"
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "クールダウン"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "PID をコピー"
},
- "Copy Path": {
- "Copy Path": "パスをコピー"
- },
"Copy Text": {
"Copy Text": "テキストをコピー"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "角と背景"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "件数のみ"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: タブ切替 • Ctrl+S: ピン留め/解除 • Shift+Del: すべてクリア • Esc: 閉じる"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: タブ切替 • Ctrl+S: ピン留め/解除 • Shift+Enter: コピー • Shift+Del: すべてクリア • Esc: 閉じる"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: タブ切替 • Ctrl+S: ピン留め/解除 • Shift+Enter: 貼り付け • Shift+Del: すべてクリア • Esc: 閉じる"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "カーソルテーマ"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "曲線:曲線ラスタライザー。"
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": "DMS 設定"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "DMS ショートカット"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS greeter には greetd と dms-greeter が必要です。指紋認証には fprintd と pam_fprintd、セキュリティキーには pam_u2f が必要です。ユーザーを greeter グループに追加してください。認証の変更は自動的に適用され、sudo 認証が必要な場合は端末が開くことがあります。"
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMSに更新があります"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "日付形式"
},
- "Date format": {
- "Date format": "日付形式"
- },
"Date format on greeter": {
"Date format on greeter": "greeter の日付形式"
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "プリンターを削除"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "保存済みアイテムを削除しますか?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "デスクトップ"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "デスクトップ時計"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "WiFi を無効化中..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "ディスク"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": "エディタに行番号を表示する"
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "ウィンドウを含むワークスペースのみ表示"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "時計に秒を表示"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "電源システムメニューを表示"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "ドックの余白、透明度、境界線"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "ドックの間隔、透明度、境界線"
- },
"Docs": {
"Docs": "ドキュメント"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": "ウィンドウルールを編集"
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "エンタープライズ"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "項目を固定しました"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "設定が適用できませんでした"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "プロファイルの有効化に失敗しました - ファイルが見つかりません"
- },
"Failed to add binds include": {
"Failed to add binds include": "binds include の追加に失敗しました"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "選ばれたジョブの取り消しに失敗しました"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "更新の確認に失敗しました:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "固定数上限の確認に失敗しました"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "プリンターの作成に失敗しました"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "profiles ディレクトリの作成に失敗しました"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "VPN の削除に失敗しました"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": "ネットワークQRコードの取得に失敗しました: %1"
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "ジョブの保留に失敗しました"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "プロファイルの保存に失敗しました"
},
- "Failed to save profile file": {
- "Failed to save profile file": "プロファイルファイルの保存に失敗しました"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "クリップボードの送信に失敗しました"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "共有設定の更新に失敗しました"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "検証用の一時ファイル書き込みに失敗しました"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "埋める"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "テキスト内検索"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "指紋認証エラー"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "指紋認証エラー: %1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "指紋を認識できませんでした(%1/%2)。もう一度試すか、パスワードを使用してください。"
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "フロート"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": " Fluent"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "フォーカス"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "起動時にフォーカス"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "フォーカス時のボーダー"
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "強制終了(SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "ワイドカラーを強制"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "フォーマット凡例"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "更新可能なパッケージが %1 個見つかりました:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "更新可能なパッケージが %1 個見つかりました:"
- },
"Frame": {
"Frame": "フレーム"
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "曜日と月を完全表示"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "年を含めて完全表示"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": "モードタブ、グリッド表示、アクションパネルを備えたフル機能ランチャー。"
- },
"Fullscreen": {
"Fullscreen": "フルスクリーン"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "ガンマ制御は使用できません。DMS API v6+ が必要です。"
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "DMS の色に合わせたベースライン GTK3/4 または QT5/QT6(qt6ct-kde が必要)設定を生成します。必要なのは一度だけです。
GTK テーマを適用する前に adw-gtk3 を設定することを推奨します。"
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "インジケーターを非表示"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "アップデーターウィジェットを非表示"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "全画面表示時は非表示"
- },
"Hide When Typing": {
"Hide When Typing": "入力中は非表示"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "ウィンドウが全画面表示のときにドックを非表示にする"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "ソースの色相を保持する忠実度の高いパレット。"
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Hyprland ウェブサイト"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "わかりました"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "アイドル"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "アイドルインヒビター"
},
"Idle Settings": {
"Idle Settings": "アイドル設定"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "アイドル監視はサポートされていません - 新しい Quickshell バージョンが必要です"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "フィールドが非表示の場合、キーが押されるとすぐに表示されます。"
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": "抑制可能"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "dGPU で起動"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "デフォルトで dGPU で起動"
- },
"Launcher": {
"Launcher": "ランチャー"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "ランチャー側が出現"
},
- "Launcher Style": {
- "Launcher Style": "ランチャースタイル"
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "レイヤーアウトラインの透明度"
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "ログアウト"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "ログイン中..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "経度"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "低優先度"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "Frameによって管理されています"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": "フレームモードによって管理されます"
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "接続モードではフレームによって管理されます"
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "マーカー廃棄物がいっぱい"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "一致条件"
},
- "Matches profile: %1": {
- "Matches profile: %1": "一致するプロファイル: %1"
- },
"Material": {
"Material": "材料"
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "メディアプレーヤーの設定"
},
- "Media Players": {
- "Media Players": "メディアプレーヤー"
- },
"Media Players (": {
"Media Players (": "メディアプレーヤー("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "最小幅"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": "最小限のスポットライトスタイルのバー:画面上部に瞬時に表示され、入力に合わせて拡大します。"
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "単一の色相を中心に構築された最小限のパレット。"
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "名前付きワークスペースアイコン"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "ネイティブ: プラットフォームレンダラー (FreeType)。"
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "背景なし"
},
- "No Battery": {
- "No Battery": "バッテリーなし"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Bluetoothアダプタが見つかりませんでした"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "アプリのカスタマイズはありません。"
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "アプリが見つかりませんでした"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "ミュートされたアプリはありません。通知を右クリックして「Mute popups」を選択すると、ここに追加できます。"
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "バッテリーなし"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "出力デバイスが見つかりませんでした"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "パッケージマネージャーが見つかりません。Arch 系システムで更新を確認するには 'paru' または 'yay' をインストールしてください。"
- },
"No peers found": {
"No peers found": "ピアが見つかりませんでした"
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "ウィンドウルールは設定されていません"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "ない"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "未検出"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "未ペアリング"
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": "ファイルを開いています"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "端末を開いています: "
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "任意の場所"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "オプション"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "アウトプットエリアがいっぱい"
},
- "Output Device": {
- "Output Device": "出力デバイス"
- },
"Output Devices": {
"Output Devices": "出力デバイス"
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "ポップアップの影"
},
- "Popup Transparency": {
- "Popup Transparency": "ポップアップの透明度"
- },
"Popup behavior, position": {
"Popup behavior, position": "ポップアップの挙動、位置"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "電源メニューのカスタマイズ"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "電源オフ"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "プロトコル"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": "Qt カラーが正常に適用されました"
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "読み取り:"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "ナイトモード対応が必要"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "リセット"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "ルール(%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "再実行"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "保存"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "スコア"
},
- "Screen Sharing": {
- "Screen Sharing": "画面共有"
- },
"Screen sharing": {
"Screen sharing": "画面共有"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "検索オプション"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "キーの組み合わせ、説明、またはアクション名で検索します。\n\n既定の操作ではキーバインドをクリップボードにコピーします。\nよく使うキーバインドは右クリックまたは右矢印キーでピン留めできます。検索していないときに上部に表示されます。"
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "パレットから色を選ぶか、カスタムスライダーを使用します"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "デスクトップに追加するウィジェットを選択してください。各ウィジェットはそれぞれ独自の設定を持つ別インスタンスです。"
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "シェル"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: すべてクリア • Esc: 閉じる"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": "Shift+Enter でコピー"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter で貼り付け"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: コピー • Shift+Del: すべてクリア • Esc: 閉じる"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: 貼り付け • Shift+Del: すべてクリア • Esc: 閉じる"
- },
"Short": {
"Short": "短い"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "湿度を表示"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "ランチャーボタンを表示"
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "下部にモードタブとキーボードヒントを表示します。"
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "現在フォーカスされているモニターにのみ通知ポップアップを表示"
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "音量が変化したときにOSDを表示"
},
- "Show seconds": {
- "Show seconds": "秒を表示"
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "セットアップをスキップ"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "小"
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "サウンド"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "ストライプ"
},
- "Style": {
- "Style": "スタイル"
- },
"Summary": {
"Summary": "概要"
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "システムトースト通知"
},
- "System update custom command": {
- "System update custom command": "システム更新カスタムコマンド"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "タブ"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "端末の追加パラメーター"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "端末のカスタム追加パラメーター"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "端末フォールバックに失敗しました。対応する端末エミュレーターをインストールするか、'dms auth sync' を手動で実行してください。"
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "このプリンタのジョブ待ち行列は空です"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "テーマおよびカラー"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "テーマ"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "太さ"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "このデバイス"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "これには数秒かかる場合があります"
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "時刻形式"
},
- "Time format": {
- "Time format": "時刻形式"
- },
"Time remaining: %1": {
"Time remaining: %1": "残り時間: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "ゴミ箱コマンドが失敗しました (終了コード %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "人気の GIF"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "利用できません"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "非フォーカス時の色"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "稼働時間:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "緊急時の色"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": "Spotlight Launcher を使用する"
- },
"Use System Theme": {
"Use System Theme": "システムテーマを使用"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "カスタムの境界線/フォーカスリング幅を使用"
},
- "Use custom command": {
- "Use custom command": "カスタムコマンドを使用"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "カスタムコマンドを使用してシステムを更新"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "バー間隔の代わりにカスタムギャップを使用"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "ロック画面に指紋認証を使用します。"
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "ダークテーマではなく、ライトテーマを使用"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "システム設定からサウンドテーマを使用"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": "接続された V2 ランチャーの代わりに、中央に配置された最小限のランチャーを使用する"
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "拡張サーフェスを使用してランチャーコンテンツを表示する"
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "ユーザー"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "垂直タイリング"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Vibrant"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "ロック時"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "アップデーターウィジェット使用時、更新がなければ非表示にする"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi パスワード"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "ワークスペースとウィジェット"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "書き込み:"
},
"X Axis": {
"X Axis": "X 軸"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y 軸"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "環境変数として以下のいずれかを設定し、その後シェルを再起動する必要があります。\nQT_QPA_PLATFORMTHEME=gtk3 または\nQT_QPA_PLATFORMTHEME=qt6ct\n\nqt6ct には qt6ct-kde のインストールが必要です。"
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "準備完了です!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "システムは最新です!"
},
@@ -8192,6 +8369,12 @@
"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 設定は存在しますが、コンポジター設定に含まれていません。ディスプレイ変更は保持されません。"
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "例: focus-workspace 3、resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "例: notify-send 'Hello' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "おすすめ"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "最後に確認されたのは 1%"
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: 移動 • Enter/Ctrl+C: コピー • Del: 削除 • F10: ヘルプ"
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: 移動 • Enter: 貼り付け • Del: 削除 • F10: ヘルプ"
}
}
diff --git a/quickshell/translations/poexports/nl.json b/quickshell/translations/poexports/nl.json
index 13bab795..4f881a12 100644
--- a/quickshell/translations/poexports/nl.json
+++ b/quickshell/translations/poexports/nl.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1 animatiesnelheid"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1m geleden"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'Alternatief' laat de sleutel zelfstandig ontgrendelen. 'Tweede factor' vereist eerst een wachtwoord of vingerafdruk en daarna pas de sleutel."
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "Actieve VPN"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Achtergrond- en pictogramkleur van actieve tegel"
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Bureaubladwidget toevoegen"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Printer toevoegen"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Widget toevoegen"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Widget toevoegen aan sectie %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Een rand om het dock toevoegen"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": "Toevoegen op adres"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Anonieme identiteit (optioneel)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "App-aanpassingen"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "App ID-vervangingen"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "App-ID regex (bijv. ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Uiterlijk"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Applicatiedock"
},
"Applications": {
"Applications": "Applicaties"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Wijzigingen toepassen"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "Verificatiewijzigingen toepassen…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "Apps"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Beeldschermen rangschikken en resolutie, verversingssnelheid en VRR configureren"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "Er moet ten minste één beeldscherm ingeschakeld blijven"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Dock automatisch verbergen"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Automatisch opslaan..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automatisering"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Beschikbaar"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Terug"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "Achtergrondvervaging"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Achtergronddekking"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "Afstand en grootte van de balk"
},
- "Bar transparency": {
- "Bar transparency": "Transparantie van de balk"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Basiskleur voor schaduwen (dekking wordt automatisch toegepast)"
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth niet beschikbaar"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "Kleur van vervagingsrand"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Randkleur"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Randdekking"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "Randkleur rondom vervaagde oppervlakken"
},
- "Border with BG": {
- "Border with BG": "Rand met achtergrond"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Onder"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Caps Lock staat aan"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Middensectie"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "Synchronisatiestatus op aanvraag controleren. Synchronisatie kopieert uw thema, instellingen en achtergrondconfiguratie naar het aanmeldscherm. Verificatiewijzigingen worden automatisch toegepast."
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "Controleer je aangepaste opdracht in Instellingen → Dock → Prullenbak."
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Kies een kleur"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Kies kleuren uit palet"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Kies waar on-screen displays op het scherm verschijnen"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Kies welke beeldschermen deze widget tonen"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Cirkel"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Klasse-regex (bijv. ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Klembordbeheer"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Klembord verzonden"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Klembord-service niet beschikbaar"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Klembord werkt maar niets opgeslagen op schijf"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Opdracht"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Opdrachten"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Compositor-instellingen"
},
- "Compositor not supported": {
- "Compositor not supported": "Compositor niet ondersteund"
- },
"Config Format": {
"Config Format": "Config-formaat"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Contrast"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Bedieningspaneel"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "Gemaksopties voor het aanmeldscherm. Voer Sync uit om toe te passen."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Afkoeltijd"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "PID kopiëren"
},
- "Copy Path": {
- "Copy Path": "Pad kopiëren"
- },
"Copy Text": {
"Copy Text": "Tekst kopiëren"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Hoeken & Achtergrond"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Alleen aantal"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Wissel tabblad • Ctrl+S: Vastzetten/losmaken • Shift+Del: Alles wissen • Esc: Sluiten"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Wissel tabblad • Ctrl+S: Vastzetten/losmaken • Shift+Enter: Kopiëren • Shift+Del: Alles wissen • Esc: Sluiten"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: Wissel tabblad • Ctrl+S: Vastzetten/losmaken • Shift+Enter: Plakken • Shift+Del: Alles wissen • Esc: Sluiten"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Cursorthema"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "Curve: curve-rasterizer."
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": "DMS-instellingen"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "DMS-sneltoetsen"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS-aanmeldscherm heeft nodig: greetd, dms-greeter. Vingerafdruk: fprintd, pam_fprintd. Beveiligingssleutels: pam_u2f. Voeg uw gebruiker toe aan de greeter-groep. Verificatiewijzigingen worden automatisch toegepast en kunnen een terminal openen wanneer sudo-verificatie vereist is."
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS verouderd"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Datumnotatie"
},
- "Date format": {
- "Date format": "Datumnotatie"
- },
"Date format on greeter": {
"Date format on greeter": "Datumnotatie op Greeter"
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Printer verwijderen"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Opgeslagen item verwijderen?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Bureaublad"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Bureaubladklok"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Wifi uitschakelen..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Schijf"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": "Regelnummers weergeven in editor"
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Toon alleen werkbladen die vensters bevatten"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Seconden tonen in de klok"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Het systeem-energiemenu weergeven"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "Marge, transparantie en rand van het dock"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "Afstand, transparantie en rand van het dock"
- },
"Docs": {
"Docs": "Documentatie"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": "Vensterregel bewerken"
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Enterprise"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Item vastgemaakt"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Activeren van configuratie mislukt"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Kon profiel niet activeren - bestand niet gevonden"
- },
"Failed to add binds include": {
"Failed to add binds include": "Toevoegen van binds-include mislukt"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Annuleren van geselecteerde taak mislukt"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "Controleren op updates mislukt:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Controleren van vastmaaklimiet mislukt"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Aanmaken van printer mislukt"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Kon profielenmap niet aanmaken"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Verwijderen van VPN mislukt"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": "Ophalen van netwerk-QR-code mislukt: %1"
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Vasthouden van taak mislukt"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "Profiel opslaan mislukt"
},
- "Failed to save profile file": {
- "Failed to save profile file": "Kon profielbestand niet opslaan"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Verzenden van klembord mislukt"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Bijwerken van delen mislukt"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Schrijven van tijdelijk bestand voor validatie mislukt"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Vullen"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Zoeken in tekst"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "Vingerafdrukfout"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "Vingerafdrukfout: %1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "Vingerafdruk niet herkend (%1/%2). Probeer het opnieuw of gebruik een wachtwoord."
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Zweven"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "Fluent"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Focus"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Focus bij opstarten"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Gefocuste rand"
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Geforceerd beëindigen (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Breed kleurengamma forceren"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Legenda voor notatie"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "%1 pakket gevonden om bij te werken:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "%1 pakketten gevonden om bij te werken:"
- },
"Frame": {
"Frame": "Frame"
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Volledige dag & maand"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Volledig met jaar"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": "Volledige launcher met modustabbladen, rasterweergave en actiepaneel."
- },
"Fullscreen": {
"Fullscreen": "Volledig scherm"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gammaregeling niet beschikbaar. Vereist DMS API v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Genereer basisconfiguraties voor GTK3/4 of QT5/QT6 (vereist qt6ct-kde) om de DMS-kleuren te volgen. Slechts eenmalig nodig.
Het wordt aanbevolen om adw-gtk3 te configureren voordat u GTK-thema's toepast."
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Indicatoren verbergen"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Updater-widget verbergen"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "Verbergen bij volledig scherm"
- },
"Hide When Typing": {
"Hide When Typing": "Verbergen tijdens typen"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "Het dock verbergen wanneer een venster in volledig scherm is"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Natuurgetrouw palet dat de oorspronkelijke tinten behoudt."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Hyprland-website"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Ik begrijp het"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Inactief"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inactiviteitspreventie"
},
"Idle Settings": {
"Idle Settings": "Instellingen voor inactiviteit"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Monitoring van inactiviteit niet ondersteund - vereist nieuwere Quickshell-versie"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Als het veld verborgen is, verschijnt het zodra een toets wordt ingedrukt."
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": "Onderdrukbaar"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Starten op dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "Start standaard op dGPU"
- },
"Launcher": {
"Launcher": "Starter"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "Zijde waar de launcher verschijnt"
},
- "Launcher Style": {
- "Launcher Style": "Launcher-stijl"
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "Dekking laagomlijning"
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Afmelden"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "Inloggen..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Lengtegraad"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Lage prioriteit"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "Beheerd door Frame"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": "Beheerd door Frame-modus"
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "Beheerd door Frame in Verbonden Modus"
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Afvaltank vol"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Overeenkomstcriteria"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Komt overeen met profiel: %1"
- },
"Material": {
"Material": "Material"
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Instellingen mediaspeler"
},
- "Media Players": {
- "Media Players": "Mediaspelers"
- },
"Media Players (": {
"Media Players (": "Mediaspelers ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Min. B"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": "Minimale balk in Spotlight-stijl: verschijnt direct bovenaan het scherm en breidt uit terwijl u typt."
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Minimalistisch palet gebaseerd op één enkele tint."
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Pictogrammen voor benoemde werkbladen"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "Native: platform-renderer (FreeType)."
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Geen achtergrond"
},
- "No Battery": {
- "No Battery": "Geen batterij"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Geen Bluetooth-adapter gevonden"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Geen app-aanpassingen."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Geen apps gevonden"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Geen apps gedempt. Klik met de rechtermuisknop op een melding en kies \"Pop-ups dempen\" om er hier een toe te voegen."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Geen batterij"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Geen uitvoerapparaten gevonden"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "Geen pakketbeheerder gevonden. Installeer 'paru' of 'yay' op Arch-gebaseerde systemen om op updates te controleren."
- },
"No peers found": {
"No peers found": "Geen peers gevonden"
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Geen vensterregels geconfigureerd"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Geen"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Niet gedetecteerd"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Niet gekoppeld"
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": "Bestanden openen"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "Terminal openen: "
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Optionele locatie"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Opties"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Uitvoergebied vol"
},
- "Output Device": {
- "Output Device": "Uitvoerapparaat"
- },
"Output Devices": {
"Output Devices": "Uitvoerapparaten"
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Pop-upschaduw"
},
- "Popup Transparency": {
- "Popup Transparency": "Popup-transparantie"
- },
"Popup behavior, position": {
"Popup behavior, position": "Gedrag en positie pop-ups"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Aanpassing energiemenu"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Uitschakelen"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protocol"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": "Qt-kleuren succesvol toegepast"
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "Lezen:"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Vereist ondersteuning voor nachtmodus"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Herstellen"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Regels (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Opnieuw uitvoeren"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "Sms"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Opslaan"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Score"
},
- "Screen Sharing": {
- "Screen Sharing": "Schermdelen"
- },
"Screen sharing": {
"Screen sharing": "Schermdelen"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Zoekopties"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Zoek op toetsencombinatie, beschrijving of actienaam.\n\nDe standaardactie kopieert de sneltoets naar het klembord.\nKlik met rechts of druk op Pijl-rechts om veelgebruikte sneltoetsen vast te pinnen - ze verschijnen bovenaan als u niet zoekt."
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "Selecteer een kleur uit het palet of gebruik aangepaste schuifregelaars"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Selecteer een widget om toe te voegen aan uw bureaublad. Elke widget is een apart exemplaar met eigen instellingen."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Alles wissen • Esc: Sluiten"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": "Shift+Enter om te kopiëren"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter om te plakken"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Kopiëren • Shift+Del: Alles leegmaken • Esc: Sluiten"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Plakken • Shift+Del: Alles wissen • Esc: Sluiten"
- },
"Short": {
"Short": "Kort"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Toon luchtvochtigheid"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Startknop tonen"
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Toon modustabbladen en toetsenbordhints onderaan."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "Meldingspop-ups alleen op de momenteel actieve monitor tonen"
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "On-screen display tonen wanneer volume wijzigt"
},
- "Show seconds": {
- "Show seconds": "Toon seconden"
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Installatie overslaan"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Klein"
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Geluiden"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Strepen"
},
- "Style": {
- "Style": "Stijl"
- },
"Summary": {
"Summary": "Samenvatting"
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Systeemmeldingen"
},
- "System update custom command": {
- "System update custom command": "Aangepaste opdracht systeemupdate"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Tab"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "Aanvullende terminalparameters"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Aangepaste extra parameters terminal"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "Terminal-terugval mislukt. Installeer een ondersteunde terminalemulator of voer handmatig 'dms auth sync' uit."
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "De wachtrij van deze printer is leeg"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Thema & Kleuren"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Thema's"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Dikte"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "Dit apparaat"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "Dit kan enkele seconden duren"
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Tijdnotatie"
},
- "Time format": {
- "Time format": "Tijdnotatie"
- },
"Time remaining: %1": {
"Time remaining: %1": "Resterende tijd: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "Prullenbakopdracht mislukt (exit %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "Populaire GIF's"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Niet beschikbaar"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Ongefocusseerde kleur"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Uptime:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Urgente kleur"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": "Spotlight-launcher gebruiken"
- },
"Use System Theme": {
"Use System Theme": "Systeemthema gebruiken"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Aangepaste rand-/focusringbreedte gebruiken"
},
- "Use custom command": {
- "Use custom command": "Aangepaste opdracht gebruiken"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Gebruik aangepaste opdracht om uw systeem bij te werken"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Gebruik aangepaste tussenruimtes in plaats van balkafstand"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "Gebruik vingerafdrukauthenticatie voor het vergrendelscherm."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Licht thema gebruiken in plaats van donker thema"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Geluidsthema van systeeminstellingen gebruiken"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": "Gebruik de gecentreerde minimale launcher in plaats van de verbonden V2-launcher"
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "Het uitgebreide oppervlak gebruiken voor launcher-inhoud"
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Gebruiker"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Verticaal tegelen"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Levendig"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "Indien vergrendeld"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Wanneer de updater-widget wordt gebruikt, verberg deze dan als er geen updates zijn gevonden"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi-wachtwoord"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Werkbladen & Widgets"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Schrijven:"
},
"X Axis": {
"X Axis": "X-as"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y-as"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "U moet het volgende instellen:\nQT_QPA_PLATFORMTHEME=gtk3 OF\nQT_QPA_PLATFORMTHEME=qt6ct\nals omgevingsvariabelen, en daarna de shell herstarten.\n\nqt6ct vereist dat qt6ct-kde is geïnstalleerd."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "U bent helemaal klaar!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "Uw systeem is bijgewerkt!"
},
@@ -8192,6 +8369,12 @@
"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-configuratie bestaat maar is niet opgenomen in uw compositor-configuratie. Beeldschermwijzigingen blijven niet behouden."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "bijv. focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "bijv. notify-send 'Hallo' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "uitgelicht"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "laatst gezien %1"
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: Navigeer • Enter/Ctrl+C: Kopieer • Del: Verwijder • F10: Help"
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Navigeren • Enter: Plakken • Del: Verwijderen • F10: Help"
}
}
diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json
index 0fd9065c..18dc1446 100644
--- a/quickshell/translations/poexports/pl.json
+++ b/quickshell/translations/poexports/pl.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": ""
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1m temu"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": ""
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": ""
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": ""
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Dodaj Widżet Pulpitu"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Dodaj drukarkę"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Dodaj widżet"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Dodaj widżet do sekcji %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Dodaj obramowanie wokół doku"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": ""
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Tożsamość anonimowa (opcjonalnie)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": ""
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": ""
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": ""
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": ""
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Dok Aplikacji"
},
"Applications": {
"Applications": "Aplikacje"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Zastosuj zmiany"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": ""
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": ""
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Zarządzaj wyświetlaczami, konfiguruj rozdzielczość, częstotliwość odświeżania i VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": ""
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Automatyczne ukrywanie doku"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Automatyczny zapis..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": ""
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Dostępny"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Wstecz"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": ""
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Przeźroczystość tła"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": ""
},
- "Bar transparency": {
- "Bar transparency": ""
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": ""
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth niedostępne"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": ""
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Kolor obramowania"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Przezroczystość obramowania"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": ""
},
- "Border with BG": {
- "Border with BG": ""
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Dół"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": ""
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Sekcja środkowa"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": ""
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Wybierz kolor"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Wybierz kolory z palety"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Wybierz miejsce wyświetlania informacji na ekranie"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Wybierz wyświetlacze na których pokaże się ten widżet"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": ""
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": ""
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Menedżer schowka"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Wysłano zawartość schowka"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Usługa schowka nie jest dostępna"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Schowek działa, ale nic nie zostało zapisane na dysku"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Rozkaz"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": ""
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Ustawienia Kompozytora"
},
- "Compositor not supported": {
- "Compositor not supported": ""
- },
"Config Format": {
"Config Format": "Format konfiguracji"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Kontrast"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Centrum sterowania"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": ""
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Czas Odnowienia"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Kopiuj PID"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": ""
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Rogi i tło"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Tylko liczba"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Motyw kursora"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "Skróty DMS"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS nieaktualny"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Format daty"
},
- "Date format": {
- "Date format": ""
- },
"Date format on greeter": {
"Date format on greeter": ""
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Usuń drukarkę"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Usunąć zapisany element?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": ""
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Zegar na pulpicie"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Wyłączanie WiFi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": ""
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Wyświetlaj tylko obszary robocze zawierające okna"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Wyświetlanie sekund na zegarze"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Wyświetl menu zasilania"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": ""
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
- },
"Docs": {
"Docs": "Dokumenty"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": ""
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Korporacyjny"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Przypięto wpis"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Nie udało się aktywować konfiguracji"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": ""
- },
"Failed to add binds include": {
"Failed to add binds include": "Nie udało się dodać powiązań"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Anulowanie wybranego zadania nie powiodło się"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": ""
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Nie udało się sprawdzić limitu pinu"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Nie udało się utworzyć drukarki"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": ""
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Nie udało się usunąć VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Nie udało się wstrzymać zadania"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": ""
},
- "Failed to save profile file": {
- "Failed to save profile file": ""
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Nie udało się wysłać zawartości schowka"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Nie udało się zaktualizować udostępniania"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Zapisanie pliku tymczasowego do walidacji nie powiodło się"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": ""
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Znajdź w tekście"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": ""
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": ""
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": ""
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": ""
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Aktywuj przy starcie"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": ""
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": ""
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Wymuś Szerokie Kolory"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Legenda formatowania"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": ""
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": ""
- },
"Frame": {
"Frame": ""
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": ""
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": ""
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": ""
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Kontrola gamma niedostępna. Wymaga DMS API w wersji 6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": ""
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Ukryj Widżet Aktualizatora"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "Ukryj podczas pisania"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"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."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": ""
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Rozumiem"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Bezczynna"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inhibitor bezczynności"
},
"Idle Settings": {
"Idle Settings": "Ustawienia bezczynności"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Monitorowanie bezczynności nie jest obsługiwane - wymaga nowszej wersji Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Jeśli pole jest ukryte pokaże się gdy klawisz zostanie wciśnięty."
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": ""
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Uruchom na dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "Program uruchamiający"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Wyloguj"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": ""
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Długość geograficzna"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Niski priorytet"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": ""
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": ""
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Pojemnik na zużyty materiał pełny"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": ""
},
- "Matches profile: %1": {
- "Matches profile: %1": ""
- },
"Material": {
"Material": ""
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Ustawienia odtwarzacza multimediów"
},
- "Media Players": {
- "Media Players": ""
- },
"Media Players (": {
"Media Players (": "Odtwarzacze multimediów ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": ""
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Minimalna paleta zbudowana wokół jednego odcienia."
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Ikony nazwanych obszarów roboczych"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": ""
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Brak tła"
},
- "No Battery": {
- "No Battery": ""
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Nie znaleziono adaptera Bluetooth"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": ""
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": ""
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": ""
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Brak baterii"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": ""
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": ""
- },
"No peers found": {
"No peers found": ""
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": ""
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Brak"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Nie wykryto"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": ""
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": ""
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": ""
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Opcjonalna lokalizacja"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Opcje"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Obszar wyjściowy pełny"
},
- "Output Device": {
- "Output Device": ""
- },
"Output Devices": {
"Output Devices": ""
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": ""
},
- "Popup Transparency": {
- "Popup Transparency": "Przezroczystość wyskakującego okienka"
- },
"Popup behavior, position": {
"Popup behavior, position": ""
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Dostosowywanie menu zasilania"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Wyłącz komputer"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protokół"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "Odczyt:"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Wymaga wsparcia dla trybu nocnego"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Resetuj"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": ""
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Uruchom ponownie"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Zapisz"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": ""
},
- "Screen Sharing": {
- "Screen Sharing": "Udostępnianie ekranu"
- },
"Screen sharing": {
"Screen sharing": "Udostępnianie ekranu"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": ""
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": ""
},
@@ -6278,6 +6419,9 @@
"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 desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Wybierz widżet do dodania na pulpit. Każdy widżet jest osobną instancją z własnymi ustawieniami."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Powłoka"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Wyczyść wszystko • Esc: Zamknij"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": ""
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Wklej • Shift+Del: Wyczyść wszystko • Esc: Zamknij"
- },
"Short": {
"Short": "Krótki"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": ""
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": ""
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": ""
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": ""
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Wyświetlaj powiadomienie ekranowe przy zmianie głośności"
},
- "Show seconds": {
- "Show seconds": ""
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Pomiń ustawianie"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": ""
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Dźwięki"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": ""
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": ""
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Powiadomienia o toastach systemowych"
},
- "System update custom command": {
- "System update custom command": "Niestandardowe polecenie aktualizacji systemu"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Karta"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": ""
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "Kolejka zadań tej drukarki jest pusta"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Motyw i kolory"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Motywy"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Grubość"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": ""
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": ""
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Format czasu"
},
- "Time format": {
- "Time format": ""
- },
"Time remaining: %1": {
"Time remaining: %1": "Czas pozostały: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": ""
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": ""
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Niedostępny"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": ""
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": ""
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": ""
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "Użyj motywu systemowego"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Użyj niestandardowej szerokości obramowania/focus-ring"
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Użyj niestandardowego polecenia do aktualizacji systemu"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Użyj własnych odstępów w miejsce odstępów paska"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": ""
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Użyj jasnego motywu zamiast ciemnego"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Użyj motywu dźwiękowego z ustawień systemowych"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Użytkownik"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Płytki pionowe"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": ""
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": ""
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Kiedy widżet aktualizatora jest użyty, ukryj go gdy nie ma aktualizacji"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Hasło Wi-Fi"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Obszary robocze i widżety"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": ""
},
"X Axis": {
"X Axis": "Oś X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Oś Y"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": ""
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": ""
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": ""
},
@@ -8192,6 +8369,12 @@
"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.": "Konfiguracja dms/outputs istnieje, ale nie jest dodana do konfiguracji twojego kompozytora. Zmiany nie będą miały efektu."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"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., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "np. notify-send 'Cześć' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": ""
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": ""
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": ""
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": ""
}
}
diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json
index 99bf654b..2817f544 100644
--- a/quickshell/translations/poexports/pt.json
+++ b/quickshell/translations/poexports/pt.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1 Velocidade de Animação"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1m atrás"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": ""
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": ""
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Cor de fundo e ícone do bloco ativo"
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Adicionar Widget de Área de Trabalho"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Adicionar Impressora"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Adicionar Widget"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Adicionar Widget para a Seção %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Adicionar uma borda ao redor da dock"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": "Adicionar por Endereço"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Identidade Anônima (opcional)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "Personalizações do Aplicativo"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "Substituições de ID de Aplicativo"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "Regex de ID de Aplicativo (ex: ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Aparência"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Dock de Aplicativos"
},
"Applications": {
"Applications": "Aplicativos"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Aplicar Alterações"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": ""
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "Aplicativos"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Organizar monitores e configurar resolução, taxa de atualização e VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": ""
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Esconder Automaticamente o Dock"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Salvando automáticamente..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automação"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Disponível"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Voltar"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Backend"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": ""
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Opacidade do Fundo"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": ""
},
- "Bar transparency": {
- "Bar transparency": ""
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Cor base para sombras (a opacidade é aplicada automaticamente)"
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth indisponível"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": ""
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Cor da Borda"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Opacidade da Borda"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": ""
},
- "Border with BG": {
- "Border with BG": "Borda com Fundo"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Inferior"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Caps Lock está ligado"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Seção Central"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": ""
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Escolha uma cor"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Escolha cores da paleta"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Escolher onde OSDs aparecerão na tela"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Escolha quais monitores mostrarão este widget"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Círculo"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Regex de Classe (ex: ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Gerenciador da Área de Transferência"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Área de transferência enviada"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Serviço de área de transferência não disponível"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "A área de transferência funciona mas nada é salvo no disco"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Comando"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Comandos"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Configurações do Compositor"
},
- "Compositor not supported": {
- "Compositor not supported": "Compositor não suportado"
- },
"Config Format": {
"Config Format": "Formato de Configuração"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Contraste"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Painel de Controle"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "Opções de conveniência para a tela de login. Sincronize para aplicar."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Tempo de espera"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Copiar PID"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": "Copiar Texto"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Cantos e Fundo"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Apenas Contagem"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Tema do Cursor"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "Atalhos DMS"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS desatualizado"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Formatação de Data"
},
- "Date format": {
- "Date format": ""
- },
"Date format on greeter": {
"Date format on greeter": ""
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Excluir Impressora"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Excluir Item Salvo?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Área de Trabalho"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Relógio da Área de Trabalho"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Desativando WiFi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Disco"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Mostrar apenas áreas de trabalho que possuem janelas"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Exibir segundos no relógio"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Mostra o menu de energia do sistema"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": ""
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
- },
"Docs": {
"Docs": "Documentos"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": "Editar Regra de Janela"
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Enterprise"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Entrada fixada"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Erro ao ativar configuração"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Falha ao ativar perfil - arquivo não encontrado"
- },
"Failed to add binds include": {
"Failed to add binds include": "Falha ao adicionar \"include\" dos atalhos"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Falha ao cancelar o trabalho selecionado"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": ""
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Falha ao verificar limite de pin"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Falha ao criar impressora"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Falha ao criar diretório de perfis"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Falha ao excluir VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Falha ao segurar trabalho"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": ""
},
- "Failed to save profile file": {
- "Failed to save profile file": "Falha ao salvar arquivo de perfil"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Falha ao enviar área de transferência"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Falha ao atualizar compartilhamento"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Falha ao salvar arquivo temporário para validação"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Preenchimento"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Procurar no Texto"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": ""
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Flutuante"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": ""
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Foco"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Foco no Iniciar"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Borda em Foco"
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Forçar Encerramento (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Forçar Cor Ampla"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Formatar Legenda"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": ""
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": ""
- },
"Frame": {
"Frame": ""
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Dia e Mês Completo"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Completo com Ano"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": "Tela Cheia"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Controle de gama não disponível. Necessário DMS API v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Ocultar Indicadores"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Ocultar Widget de Atualização"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "Ocultar ao Digitar"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Paleta de alta fidelidade que preserva tons da fonte."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": ""
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Entendi"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Em espera"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Inibitor de inatividade"
},
"Idle Settings": {
"Idle Settings": "Configurações de inatividade"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Monitoramento de inatividade não disponível – requer versão mais recente do Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Se o campo está escondido, ele aparecerá no momento que uma tecla e pressionada."
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": "Inibível"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Inicializar na dGPU"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "Lançador"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Sair"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": ""
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Longitude"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Baixa Prioridade"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": ""
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": ""
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Coletor de Resíduos Cheio"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Critérios de Correspondência"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Perfil correspondente: %1"
- },
"Material": {
"Material": ""
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Configurações do Reprodutor de Mídia"
},
- "Media Players": {
- "Media Players": ""
- },
"Media Players (": {
"Media Players (": "Reprodutores de Mídia("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Largura Mín"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"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."
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Ícones de Áreas de Trabalho Nomeadas"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": ""
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Sem fundo"
},
- "No Battery": {
- "No Battery": "Sem Bateria"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Adaptador Bluetooth não encontrado"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Sem personalizações de aplicativo."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Nenhum aplicativo encontrado"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Nenhum aplicativo silenciado. Clique com o botão direito em uma notificação e escolha \"Silenciar popups\" para adicionar um aqui."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Sem bateria"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Nenhum dispositivo de saída encontrado"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": ""
- },
"No peers found": {
"No peers found": ""
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Nenhuma regra de janela configurada"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Nenhum"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Não detectado"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Não pareado"
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": "Abrindo arquivos"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": ""
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Localização opcional"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Opções"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Área de Saída Cheia"
},
- "Output Device": {
- "Output Device": ""
- },
"Output Devices": {
"Output Devices": "Dispositivos de Saída"
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Sombra do Popup"
},
- "Popup Transparency": {
- "Popup Transparency": "Transparência do Popup"
- },
"Popup behavior, position": {
"Popup behavior, position": "Comportamento de pop-up, posição"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Customização do Menu de Energia"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Desligar"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protocolo"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "Leitura:"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Requer suporte a modo noturno"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Resetar"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Regras (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Executar Novamente"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Salvar"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Pontuação"
},
- "Screen Sharing": {
- "Screen Sharing": "Compartilhamento de Tela"
- },
"Screen sharing": {
"Screen sharing": "Compartilhamento de tela"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Opções de Pesquisa"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Buscar por combinação de teclas, descrição ou nome de ação.\n\nA ação padrão copia o atalho para a área de transferência.\nClique com o botão direito ou pressione Seta para a Direita para fixar atalhos usados com frequência - eles aparecerão no topo quando não estiver pesquisando."
},
@@ -6278,6 +6419,9 @@
"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 desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Selecione um widget para adicionar à sua área de trabalho. Cada widget é uma instância separada com suas próprias configurações."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Apagar tudo • Esc: Fechar"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter para colar"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Copiar • Shift+Del: Limpar Tudo • Esc: Fechar"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Colar • Shift+Del: Limpar Tudo • Esc: Fechar"
- },
"Short": {
"Short": "Curto"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Mostrar Umidade"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Mostrar Botão do Launcher"
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Mostrar guias de modo e dicas de teclado na parte inferior."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": ""
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Mostrar aviso na tela quando o volume mudar"
},
- "Show seconds": {
- "Show seconds": ""
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Pular configuração"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Pequeno"
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Sons"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Listras"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "Resumo"
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Notificações toast do sistema"
},
- "System update custom command": {
- "System update custom command": "Comando personalizado para atualização do sistema"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Aba"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": ""
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Parâmetros adicionais para o terminal"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "A fila de trabalhos dessa impressora está vazia"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Tema & Cores"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Temas"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Espessura"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": ""
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "Isso pode levar alguns segundos"
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Formato de Tempo"
},
- "Time format": {
- "Time format": ""
- },
"Time remaining: %1": {
"Time remaining: %1": "Tempo restante: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": ""
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "GIFs em alta"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Indisponível"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Cor sem Foco"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Tempo de Atividade:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Cor Urgente"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "Usar Tema do Sistema"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Usar largura de borda/anel de foco personalizada"
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Usar comando personalizado para atualizar seu sistema"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Usar espaçamentos personalizados em vez de espaçamento da barra"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": ""
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Usar tema claro em vez de escuro"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Usar tema de som das configurações do sistema"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Usuário"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Tiling Vertical"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Vibrante"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "Quando bloqueado"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Quando o widget de atualização for usado, ocultá-lo se nenhuma atualização for encontrada"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Senha do Wi-Fi"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Áreas de Trabalho e Widgets"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Escrita:"
},
"X Axis": {
"X Axis": "Eixo X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Eixo Y"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Você precisa definir um dos seguintes:\nQT_QPA_PLATFORMTHEME=gtk3 OU\nQT_QPA_PLATFORMTHEME=qt6ct\ncomo variáveis de ambiente, e então reiniciar o shell.\n\nqt6ct requer qt6ct-kde para ser instalado."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Tudo Pronto!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": ""
},
@@ -8192,6 +8369,12 @@
"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 configuração dms/outputs existe, mas não está incluída no seu configurador de compositor. As alterações de exibição não serão persistentes."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "ex. focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "por exemplo, notify-send 'Olá' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "em destaque"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": ""
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": ""
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Navegar • Enter: Colar • Del: Excluir • F10: Ajuda"
}
}
diff --git a/quickshell/translations/poexports/ru.json b/quickshell/translations/poexports/ru.json
index 0c9520ed..befaebc8 100644
--- a/quickshell/translations/poexports/ru.json
+++ b/quickshell/translations/poexports/ru.json
@@ -1,24 +1,27 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "Скорость анимации %1"
},
"%1 Sessions": {
- "%1 Sessions": ""
+ "%1 Sessions": "Сеансы %1"
},
"%1 active session": {
- "%1 active session": ""
+ "%1 active session": "%1 активный сеанс"
},
"%1 active sessions": {
- "%1 active sessions": ""
+ "%1 active sessions": "%1 активных сеансов"
},
"%1 adapter, none connected": {
- "%1 adapter, none connected": ""
+ "%1 adapter, none connected": "%1 адаптер, ни один не подключен"
},
"%1 adapters, none connected": {
- "%1 adapters, none connected": ""
+ "%1 adapters, none connected": "%1 адаптер, ни один не подключен"
},
"%1 character": {
- "%1 character": ""
+ "%1 character": "%1 символ"
},
"%1 characters": {
"%1 characters": "%1 символов"
@@ -27,7 +30,7 @@
"%1 connected": "%1 подключен(о)"
},
"%1 copied": {
- "%1 copied": ""
+ "%1 copied": "%1 скопировано"
},
"%1 custom animation duration": {
"%1 custom animation duration": "Пользовательская длительность анимации %1"
@@ -39,10 +42,10 @@
"%1 disconnected (hidden)": "%1 отключен(о) (скрыто)"
},
"%1 display": {
- "%1 display": ""
+ "%1 display": "%1 дисплей"
},
"%1 displays": {
- "%1 displays": ""
+ "%1 displays": "%1 дисплей"
},
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": "%1 существует, но не включён в конфигурацию. Пользовательские комбинации клавиш не будут работать, пока это не будет исправлено."
@@ -51,61 +54,64 @@
"%1 exists but is not included. Window rules won't apply.": "%1 существует, но не включен. Правила окон не будут применены."
},
"%1 filtered": {
- "%1 filtered": ""
+ "%1 filtered": "%1 отфильтровано"
},
"%1 h %2 m left": {
- "%1 h %2 m left": ""
+ "%1 h %2 m left": "Осталось %1 ч %2 мин"
},
"%1 h left": {
- "%1 h left": ""
+ "%1 h left": "Осталось %1 ч"
},
"%1 is now included in config": {
"%1 is now included in config": "%1 теперь включен в конфигурацию"
},
"%1 issue found": {
- "%1 issue found": ""
+ "%1 issue found": "%1 проблема найдена"
},
"%1 issues found": {
- "%1 issues found": ""
+ "%1 issues found": "%1 проблема найдена"
},
"%1 min left": {
- "%1 min left": ""
+ "%1 min left": "Осталось %1 мин"
},
"%1 notifications": {
"%1 notifications": "%1 уведомлений"
},
"%1 online": {
- "%1 online": ""
+ "%1 online": "%1 в сети"
},
"%1 update": {
- "%1 update": ""
+ "%1 update": "%1 обновление"
},
"%1 updates": {
- "%1 updates": ""
+ "%1 updates": "%1 обновлений"
},
"%1 variants": {
"%1 variants": "%1 вариант(ов)"
},
"%1 wallpaper • %2 / %3": {
- "%1 wallpaper • %2 / %3": ""
+ "%1 wallpaper • %2 / %3": "%1 обои • %2 / %3"
},
"%1 wallpapers • %2 / %3": {
- "%1 wallpapers • %2 / %3": ""
+ "%1 wallpapers • %2 / %3": "%1 обоев • %2 / %3"
},
"%1 widgets": {
"%1 widgets": "%1 виджет(ов)"
},
"%1 window": {
- "%1 window": ""
+ "%1 window": "%1 окно"
},
"%1 windows": {
- "%1 windows": ""
+ "%1 windows": "%1 окон"
},
"%1m ago": {
"%1m ago": "%1 мин. назад"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
- "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": ""
+ "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "«Альтернативный» позволяет ключу разблокировать систему самостоятельно. «Второй фактор» требует сначала пароль или отпечаток пальца, а затем ключ."
},
"(Default)": {
"(Default)": "(По умолчанию)"
@@ -117,7 +123,7 @@
"+ %1 more": "+ ещё %1"
},
"/path/to/videos": {
- "/path/to/videos": ""
+ "/path/to/videos": "/path/to/videos"
},
"0 = square corners": {
"0 = square corners": "0 = прямые углы"
@@ -162,7 +168,7 @@
"14 days": "14 дней"
},
"15 min": {
- "15 min": ""
+ "15 min": "15 мин"
},
"15 minutes": {
"15 minutes": "15 минут"
@@ -192,7 +198,7 @@
"24-Hour Format": "24-Часовой формат"
},
"24-hour clock": {
- "24-hour clock": ""
+ "24-hour clock": "24-часовой формат времени"
},
"24-hour format": {
"24-hour format": "24-часовой формат"
@@ -222,7 +228,7 @@
"30 days": "30 дней"
},
"30 min": {
- "30 min": ""
+ "30 min": "30 мин"
},
"30 minutes": {
"30 minutes": "30 минут"
@@ -285,7 +291,7 @@
"90°": "90°"
},
"MIT License": {
- "MIT License": ""
+ "MIT License": "MIT License"
},
"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?": "Файл с таким именем уже существует. Хотите его перезаписать?"
@@ -294,10 +300,10 @@
"A modern desktop shell for Wayland compositors": "Современная оболочка рабочего стола для композиторов Wayland"
},
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": {
- "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
+ "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "Отдельное действие минималистичного лаунчера, работающее в автономном режиме, режиме отдельной рамки и режиме связанной рамки."
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "Пользователь с таким именем уже существует."
},
"AC Power": {
"AC Power": "Сеть"
@@ -306,7 +312,7 @@
"API": "API"
},
"AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": {
- "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": ""
+ "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": "AUR-помощники интерактивны — следите за запросами в окне терминала. Это окно вернётся в режим ожидания после завершения обновления."
},
"Aborted": {
"Aborted": "Прервано"
@@ -339,13 +345,13 @@
"Action": "Действие"
},
"Action failed or terminal was closed.": {
- "Action failed or terminal was closed.": ""
+ "Action failed or terminal was closed.": "Действие не удалось или терминал был закрыт."
},
"Action performed when scrolling horizontally on the bar": {
- "Action performed when scrolling horizontally on the bar": ""
+ "Action performed when scrolling horizontally on the bar": "Действие, выполняемое при горизонтальной прокрутке на панели"
},
"Action performed when scrolling vertically on the bar": {
- "Action performed when scrolling vertically on the bar": ""
+ "Action performed when scrolling vertically on the bar": "Действие, выполняемое при вертикальной прокрутке на панели"
},
"Actions": {
"Actions": "Действия"
@@ -354,10 +360,10 @@
"Activate": "Активировать"
},
"Activate Greeter": {
- "Activate Greeter": ""
+ "Activate Greeter": "Активировать экран приветствия"
},
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": {
- "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": ""
+ "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "Активировать экран приветствия DMS? Откроется терминал для аутентификации через sudo. Запустите синхронизацию после активации, чтобы применить настройки."
},
"Activation": {
"Activation": "Активация"
@@ -372,7 +378,10 @@
"Active Lock Screen Monitor": "Монитор экрана блокировки"
},
"Active VPN": {
- "Active VPN": ""
+ "Active VPN": "Активный VPN"
+ },
+ "Active in Column": {
+ "Active in Column": ""
},
"Active tile background and icon color": {
"Active tile background and icon color": "Фон активной плитки и цвет значка"
@@ -390,16 +399,16 @@
"Adapters": "Адаптеры"
},
"Adaptive Media Width": {
- "Adaptive Media Width": ""
+ "Adaptive Media Width": "Адаптивная ширина медиа"
},
"Add": {
"Add": "Добавить"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "Добавить «%1» в группу %2?"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "Добавить «%1» в группу %2? Пользователю потребуется выйти из системы и войти снова, а затем выполнить команду dms greeter sync --profile, чтобы опубликовать свою тему экрана входа."
},
"Add Bar": {
"Add Bar": "Добавить бар"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Добавить виджет рабочего стола"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Добавить принтер"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Добавить виджет"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Добавить виджет в секцию %1"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Добавить рамку вокруг дока"
@@ -429,16 +444,22 @@
"Add and configure widgets that appear on your desktop": "Добавить и настроить виджеты, отображаемые на рабочем столе"
},
"Add by Address": {
- "Add by Address": ""
+ "Add by Address": "Добавить по адресу"
+ },
+ "Add match": {
+ "Add match": ""
},
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "Добавить нового пользователя в группу %1, чтобы он мог запустить dms greeter sync --profile."
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "Добавить нового пользователя в группу %1, чтобы он мог использовать sudo."
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "Настройка высоты панели через внутренние отступы"
},
"Adjust the number of columns in grid view mode.": {
"Adjust the number of columns in grid view mode.": "Настроить количество столбцов в режиме сетки."
@@ -447,10 +468,10 @@
"Adjust volume per scroll indent": "Регулировка громкости на шаг прокрутки"
},
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
- "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
+ "Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Регулирует контрастность сгенерированных цветов (-100 = минимум, 0 = стандарт, 100 = максимум)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "Группа администраторов:"
},
"Advanced": {
"Advanced": "Дополнительно"
@@ -474,25 +495,25 @@
"All displays": "Все мониторы"
},
"Allow": {
- "Allow": ""
+ "Allow": "Разрешить"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "Разрешить клики проходить сквозь виджет"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "Разрешить доступ экрану входа?"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "Разрешить доступ экрану входа"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "Уже в этой сессии"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Назад • F1/I: Информация о Файле • F10: Справка • Esc: Закрыть"
},
"Alternative (OR)": {
- "Alternative (OR)": ""
+ "Alternative (OR)": "Альтернативный (ИЛИ)"
},
"Always Active": {
"Always Active": "Всегда активно"
@@ -516,7 +537,7 @@
"Always show when there's only one connected display": "Всегда показывать, если подключен только один дисплей"
},
"Always use this app for %1": {
- "Always use this app for %1": ""
+ "Always use this app for %1": "Всегда использовать это приложение для %1"
},
"Amount": {
"Amount": "Количество"
@@ -537,7 +558,7 @@
"Animation Speed": "Скорость анимации"
},
"Animation Style": {
- "Animation Style": ""
+ "Animation Style": "Стиль анимации"
},
"Anonymous Identity": {
"Anonymous Identity": "Анонимный идентификатор"
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Анонимный идентификатор (необязательно)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "Приложение Настройки"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "Подстановки ID приложения"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "Regex ID приложения (например, ^firefox$)"
},
@@ -566,17 +599,23 @@
"Appearance": {
"Appearance": "Внешний вид"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Приложение Док"
},
"Applications": {
"Applications": "Приложения"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Применить изменения"
},
"Apply Flatpak updates alongside system updates when running 'Update All'.": {
- "Apply Flatpak updates alongside system updates when running 'Update All'.": ""
+ "Apply Flatpak updates alongside system updates when running 'Update All'.": "Устанавливать обновления Flatpak вместе с системными обновлениями при запуске «Обновить всё»."
},
"Apply GTK Colors": {
"Apply GTK Colors": "Применить цвета GTK"
@@ -585,16 +624,19 @@
"Apply Qt Colors": "Применить цвета Qt"
},
"Apply compositor blur behind the frame border": {
- "Apply compositor blur behind the frame border": ""
+ "Apply compositor blur behind the frame border": "Применять размытие композитора за рамкой"
},
"Apply inverse concave corner cutouts to the bar": {
- "Apply inverse concave corner cutouts to the bar": ""
+ "Apply inverse concave corner cutouts to the bar": "Применить обратные вогнутые вырезы по углам панели"
},
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Применить тёплую цветовую температуру для снижения нагрузки на глаза. Используйте настройки автоматизации ниже для управления активацией."
},
"Applying authentication changes…": {
- "Applying authentication changes…": ""
+ "Applying authentication changes…": "Применение изменений аутентификации…"
+ },
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
},
"Apps": {
"Apps": "Приложения"
@@ -618,22 +660,25 @@
"Apps with notification popups muted. Unmute or delete to remove.": "Приложения с отключёнными всплывающими уведомлениями. Включите звук или удалите для удаления."
},
"Arc Extender": {
- "Arc Extender": ""
+ "Arc Extender": "Расширитель Arc"
},
"Architecture": {
"Architecture": "Архитектура"
},
"Are you sure you want to kill session \"%1\"?": {
- "Are you sure you want to kill session \"%1\"?": ""
+ "Are you sure you want to kill session \"%1\"?": "Вы уверены, что хотите завершить сессию \"%1\"?"
},
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Расположить дисплеи и настроить разрешение, частоту обновления и VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
- "At least one output must remain enabled": ""
+ "At least one output must remain enabled": "Как минимум один выход должен оставаться включённым"
},
"Attach": {
- "Attach": ""
+ "Attach": "Подключить"
},
"Audio": {
"Audio": "Аудио"
@@ -678,7 +723,7 @@
"Authenticate": "Аутентифицировать"
},
"Authenticating...": {
- "Authenticating...": ""
+ "Authenticating...": "Аутентификация..."
},
"Authentication": {
"Authentication": "Аутентификация"
@@ -687,19 +732,19 @@
"Authentication Required": "Требуется авторизация"
},
"Authentication changes applied.": {
- "Authentication changes applied.": ""
+ "Authentication changes applied.": "Изменения аутентификации применены."
},
"Authentication changes apply automatically.": {
- "Authentication changes apply automatically.": ""
+ "Authentication changes apply automatically.": "Изменения аутентификации применяются автоматически."
},
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
- "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
+ "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "Изменения аутентификации применяются автоматически. Вход только по отпечатку пальца может не разблокировать связку ключей."
},
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
- "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
+ "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "Для изменения аутентификации требуются права sudo. Открытие терминала для ввода пароля или сканирования отпечатка пальца."
},
"Authentication error - try again": {
- "Authentication error - try again": ""
+ "Authentication error - try again": "Ошибка аутентификации — попробуйте еще раз"
},
"Authentication failed, please try again": {
"Authentication failed, please try again": "Аутентификация не удалась, попробуйте снова"
@@ -717,7 +762,7 @@
"Auto": "Авто"
},
"Auto (Bar-aware)": {
- "Auto (Bar-aware)": ""
+ "Auto (Bar-aware)": "Авто (с учетом панели)"
},
"Auto (Wide)": {
"Auto (Wide)": "Авто (широкий)"
@@ -729,7 +774,7 @@
"Auto Popup Gaps": "Авто Всплывающее Отступы"
},
"Auto mode is on. Manual profile selection is disabled.": {
- "Auto mode is on. Manual profile selection is disabled.": ""
+ "Auto mode is on. Manual profile selection is disabled.": "Включён автоматический режим. Ручной выбор профиля отключён."
},
"Auto-Clear After": {
"Auto-Clear After": "Автоочистка через"
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Автоскрытие Дока"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Автосохранение..."
},
@@ -762,7 +819,7 @@
"Autoconnect enabled": "Автоподключение включено"
},
"Autofill last remembered query when opened": {
- "Autofill last remembered query when opened": ""
+ "Autofill last remembered query when opened": "Автоматически подставлять последний поисковый запрос при открытии"
},
"Automatic Color Mode": {
"Automatic Color Mode": "Автоматический Цвет Режим"
@@ -774,7 +831,7 @@
"Automatic Cycling": "Автоматическое Переключение"
},
"Automatically calculate popup gap based on bar spacing": {
- "Automatically calculate popup gap based on bar spacing": ""
+ "Automatically calculate popup gap based on bar spacing": "Автоматически вычислять отступ всплывающего окна на основе расстояния панели"
},
"Automatically cycle through wallpapers in the same folder": {
"Automatically cycle through wallpapers in the same folder": "Автоматическое переключение между обоями в одной папке"
@@ -789,7 +846,7 @@
"Automatically determine your location using your IP address": "Автоматическое определение вашего местоположения с помощью вашего IP-адреса"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "Автоматически скрывать панель, когда указатель уходит"
},
"Automatically lock after": {
"Automatically lock after": "Автоматическая блокировка после"
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Автоматизация"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Доступный"
},
@@ -822,7 +885,7 @@
"Available in Detailed and Forecast view modes": "Доступно в режимах просмотра 'Подробно' и 'Прогноз'"
},
"Available.": {
- "Available.": ""
+ "Available.": "Доступно."
},
"BSSID": {
"BSSID": "BSSID"
@@ -830,23 +893,29 @@
"Back": {
"Back": "Назад"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Бэкенд"
},
"Backends: %1": {
- "Backends: %1": ""
+ "Backends: %1": "Бэкенды: %1"
},
"Background": {
- "Background": ""
+ "Background": "Фон"
},
"Background Blur": {
- "Background Blur": ""
+ "Background Blur": "Размытие фона"
+ },
+ "Background Effect": {
+ "Background Effect": ""
},
"Background Opacity": {
"Background Opacity": "Непрозрачность фона"
},
"Background authentication sync failed. Trying terminal mode.": {
- "Background authentication sync failed. Trying terminal mode.": ""
+ "Background authentication sync failed. Trying terminal mode.": "Сбой синхронизации аутентификации в фоновом режиме. Запуск в режиме терминала."
},
"Background image": {
"Background image": "Фоновое изображение"
@@ -867,25 +936,22 @@
"Bar Configurations": "Конфигурации бара"
},
"Bar Shadows": {
- "Bar Shadows": ""
+ "Bar Shadows": "Тени панели"
},
"Bar Transparency": {
"Bar Transparency": "Прозрачность бара"
},
"Bar corners and background": {
- "Bar corners and background": ""
+ "Bar corners and background": "Углы и фон бара"
},
"Bar shadow, border, and corners": {
- "Bar shadow, border, and corners": ""
+ "Bar shadow, border, and corners": "Тень, рамка и углы бара"
},
"Bar spacing and size": {
- "Bar spacing and size": ""
- },
- "Bar transparency": {
- "Bar transparency": ""
+ "Bar spacing and size": "Отступы и размер бара"
},
"Base color for shadows (opacity is applied automatically)": {
- "Base color for shadows (opacity is applied automatically)": ""
+ "Base color for shadows (opacity is applied automatically)": "Базовый цвет для теней (непрозрачность применяется автоматически)"
},
"Base duration for animations (drag to use Custom)": {
"Base duration for animations (drag to use Custom)": "Базовая длительность анимаций (перетащите для использования пользовательской)"
@@ -894,7 +960,7 @@
"Battery": "Батарея"
},
"Battery %1": {
- "Battery %1": ""
+ "Battery %1": "Батарея %1"
},
"Battery Charge Limit": {
"Battery Charge Limit": "Батарея Заряда Ограничение"
@@ -912,10 +978,10 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Привязать экран блокировки к DBus-сигналам от loginctl. Отключите при использовании внешнего экрана блокировки"
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "Привяжите IPC-действие spotlight в конфигурации композитора."
},
"Bind the spotlight-bar IPC action in your compositor config.": {
- "Bind the spotlight-bar IPC action in your compositor config.": ""
+ "Bind the spotlight-bar IPC action in your compositor config.": "Привяжите IPC-действие spotlight-bar в конфигурации композитора."
},
"Binds Include Missing": {
"Binds Include Missing": "Binds Include отсутствует"
@@ -927,7 +993,7 @@
"Bit Depth": "Глубина цвета"
},
"Black": {
- "Black": ""
+ "Black": "Чёрный"
},
"Block Out": {
"Block Out": "Блокировать с"
@@ -953,11 +1019,14 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth недоступен"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
- "Blur Border Color": ""
+ "Blur Border Color": "Цвет рамки размытия"
},
"Blur Border Opacity": {
- "Blur Border Opacity": ""
+ "Blur Border Opacity": "Непрозрачность рамки размытия"
},
"Blur Wallpaper Layer": {
"Blur Wallpaper Layer": "Размытие Обоев слоя"
@@ -966,7 +1035,7 @@
"Blur on Overview": "Размытие в режиме обзора"
},
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
- "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
+ "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "Размывать фон за барами, всплывающими окнами, модальными окнами и уведомлениями. Требуется поддержка и настройка композитора."
},
"Blur wallpaper when niri overview is open": {
"Blur wallpaper when niri overview is open": "Размытие обоев при открытом обзоре Niri"
@@ -975,7 +1044,7 @@
"Body": "Заголовок"
},
"Bold": {
- "Bold": ""
+ "Bold": "Полужирный"
},
"Border": {
"Border": "Рамка"
@@ -983,11 +1052,14 @@
"Border Color": {
"Border Color": "Цвет рамки"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Границы Непрозрачность"
},
"Border Radius": {
- "Border Radius": ""
+ "Border Radius": "Радиус скругления"
},
"Border Size": {
"Border Size": "Размер границы"
@@ -996,13 +1068,16 @@
"Border Thickness": "Толщина рамки"
},
"Border Width": {
- "Border Width": ""
+ "Border Width": "Ширина рамки"
},
"Border color around blurred surfaces": {
- "Border color around blurred surfaces": ""
+ "Border color around blurred surfaces": "Цвет рамки вокруг размытых поверхностей"
},
- "Border with BG": {
- "Border with BG": "Граница с фоном"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Снизу"
@@ -1086,7 +1161,7 @@
"CUPS not available": "CUPS недоступен"
},
"Calendar": {
- "Calendar": ""
+ "Calendar": "Календарь"
},
"Camera": {
"Camera": "Камера"
@@ -1101,22 +1176,22 @@
"Canceled": "Отменено"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "Невозможно удалить единственного администратора"
},
"Cannot disable the only output": {
- "Cannot disable the only output": ""
+ "Cannot disable the only output": "Невозможно отключить единственный выход"
},
"Cannot open trash: '%1' is not installed": {
- "Cannot open trash: '%1' is not installed": ""
+ "Cannot open trash: '%1' is not installed": "Не удалось открыть корзину: «%1» не установлен"
},
"Cannot open trash: no custom command set": {
- "Cannot open trash: no custom command set": ""
+ "Cannot open trash: no custom command set": "Не удалось открыть корзину: пользовательская команда не задана"
},
"Cannot pair": {
"Cannot pair": "Невозможно сопрячь"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "Невозможно убрать единственного администратора"
},
"Capabilities": {
"Capabilities": "Возможности"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Caps Lock включён"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Центральная Секция"
},
@@ -1155,10 +1236,10 @@
"Change bar appearance": "Изменить панели внешний вид"
},
"Change the locale used by the DMS interface.": {
- "Change the locale used by the DMS interface.": ""
+ "Change the locale used by the DMS interface.": "Изменить язык, используемую интерфейсом DMS."
},
"Change the locale used for date and time formatting, independent of the interface language.": {
- "Change the locale used for date and time formatting, independent of the interface language.": ""
+ "Change the locale used for date and time formatting, independent of the interface language.": "Изменить язык, используемую для форматирования даты и времени, независимо от языка интерфейса."
},
"Channel": {
"Channel": "Канал"
@@ -1170,31 +1251,28 @@
"Check for system updates": "Проверить наличие обновлений системы"
},
"Check interval": {
- "Check interval": ""
+ "Check interval": "Интервал проверки"
},
"Check on startup": {
- "Check on startup": ""
+ "Check on startup": "Проверять при запуске"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
- },
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
+ "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "Проверяйте статус синхронизации по запросу. Синхронизация (полная) предназначена для главного администратора: она копирует вашу тему на экран входа и настраивает конфигурацию системного гритера. В многопользовательских системах добавьте другие учётные записи в Настройки → Пользователи, а затем пусть каждый из них запустит dms greeter sync --profile после выхода и повторного входа в систему — а не полную синхронизацию. Изменения аутентификации применяются автоматически."
},
"Check your custom command in Settings → Dock → Trash.": {
- "Check your custom command in Settings → Dock → Trash.": ""
+ "Check your custom command in Settings → Dock → Trash.": "Проверьте пользовательскую команду в Настройки → Док → Корзина."
},
"Checking for updates...": {
- "Checking for updates...": ""
+ "Checking for updates...": "Проверка обновлений..."
},
"Checking whether sudo authentication is needed…": {
- "Checking whether sudo authentication is needed…": ""
+ "Checking whether sudo authentication is needed…": "Проверка необходимости аутентификации через sudo…"
},
"Checking...": {
- "Checking...": ""
+ "Checking...": "Проверка..."
},
"Checking…": {
- "Checking…": ""
+ "Checking…": "Проверка…"
},
"Choose Color": {
"Choose Color": "Выбрать Цвет"
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Выбрать a цвет"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Выбрать цвета из палитры"
},
@@ -1224,13 +1305,13 @@
"Choose how the weather widget is displayed": "Выбрать способ отображения виджета погоды"
},
"Choose how this bar resolves shadow direction": {
- "Choose how this bar resolves shadow direction": ""
+ "Choose how this bar resolves shadow direction": "Выберите, как эта панель определяет направление тени"
},
"Choose icon": {
"Choose icon": "Выбрать Значок"
},
"Choose monochrome or a theme color tint for system tray icons": {
- "Choose monochrome or a theme color tint for system tray icons": ""
+ "Choose monochrome or a theme color tint for system tray icons": "Выберите монохромный вариант или оттенок цвета темы для значков системного трея"
},
"Choose the background color for widgets": {
"Choose the background color for widgets": "Выбрать цвет фона для виджетов"
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Выбрать, где на экране появляются наэкранные дисплеи"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Выбрать, на каких дисплеях показывать этот виджет"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Линия"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Regex класса (например, ^firefox$)"
},
@@ -1302,7 +1389,7 @@
"Click Import to add a .ovpn or .conf": "Нажмите Import для добавления .ovpn или .conf"
},
"Click Refresh to check status.": {
- "Click Refresh to check status.": ""
+ "Click Refresh to check status.": "Нажмите «Обновить», чтобы проверить статус."
},
"Click Through": {
"Click Through": "Нажмите насквозь"
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Менеджер Буфера Обмена"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Буфер обмена отправлен"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Служба буфера обмена недоступна"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Буфер обмена работает, но ничего не сохраняется на диск"
},
@@ -1362,7 +1449,7 @@
"Color": "Цвет"
},
"Color %1 copied": {
- "Color %1 copied": ""
+ "Color %1 copied": "Цвет %1 скопирован"
},
"Color Gamut": {
"Color Gamut": "Цветовой охват"
@@ -1425,11 +1512,14 @@
"Column Width": "Ширина столбца"
},
"Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": {
- "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": ""
+ "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": "Разделенный запятыми список имен сессий для скрытия. Заключите в косые черты для регулярных выражений (например, /^_.*/)."
},
"Command": {
"Command": "Команда"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Команды"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Настройки композитора"
},
- "Compositor not supported": {
- "Compositor not supported": "Композитор не поддерживается"
- },
"Config Format": {
"Config Format": "Формат конфига"
},
@@ -1491,7 +1578,7 @@
"Configure match criteria and actions": "Настроить критерии соответствия и действия"
},
"Configure one in Settings → Dock → Trash.": {
- "Configure one in Settings → Dock → Trash.": ""
+ "Configure one in Settings → Dock → Trash.": "Настройте этот параметр в Настройки → Док → Корзина."
},
"Configure which displays show \"%1": {
"Configure which displays show \"%1\"": "%1 дисплей(ев)"
@@ -1512,7 +1599,7 @@
"Confirm passkey for ": "Подтвердить ключ доступа для "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "Подтвердите пароль"
},
"Conflicts with: %1": {
"Conflicts with: %1": "Конфликтует с: %1"
@@ -1539,25 +1626,25 @@
"Connected Displays": "Подключённые Мониторы"
},
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": {
- "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
+ "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "Режим связанной рамки использует подключённый лаунчер для сочетаний клавиш лаунчера по умолчанию."
},
"Connected Options": {
- "Connected Options": ""
+ "Connected Options": "Параметры подключения"
},
"Connected to %1": {
- "Connected to %1": ""
+ "Connected to %1": "Подключено к %1"
},
"Connecting to Device": {
"Connecting to Device": "Подключение к устройству"
},
"Connecting to clipboard service…": {
- "Connecting to clipboard service…": ""
+ "Connecting to clipboard service…": "Подключение к службе буфера обмена…"
},
"Connecting...": {
"Connecting...": "Подключение..."
},
"Connection failed": {
- "Connection failed": ""
+ "Connection failed": "Сбой подключения"
},
"Contains": {
"Contains": "Регулярное выражение"
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Контраст"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Центр Управления"
},
@@ -1593,31 +1683,34 @@
"Control workspaces and columns by scrolling on the bar": "Управление рабочими пространствами и столбцами прокруткой на панели"
},
"Controls how much original icon color is removed before applying tint": {
- "Controls how much original icon color is removed before applying tint": ""
+ "Controls how much original icon color is removed before applying tint": "Управляет тем, сколько исходного цвета значка удаляется перед применением оттенка"
},
"Controls how strongly the selected tint color is applied": {
- "Controls how strongly the selected tint color is applied": ""
+ "Controls how strongly the selected tint color is applied": "Управляет тем, насколько сильно применяется выбранный цвет оттенка"
},
"Controls opacity of all popouts, modals, and their content layers": {
"Controls opacity of all popouts, modals, and their content layers": "Контролирует непрозрачность всех всплывающих окон, модальных окон и их слоев контента"
},
"Controls outlines around blurred foreground cards, pills, and notification cards": {
- "Controls outlines around blurred foreground cards, pills, and notification cards": ""
+ "Controls outlines around blurred foreground cards, pills, and notification cards": "Управляет контурами вокруг размытых карточек переднего плана, плашек и карточек уведомлений"
},
"Controls shadow cast direction for elevation layers": {
- "Controls shadow cast direction for elevation layers": ""
+ "Controls shadow cast direction for elevation layers": "Управляет направлением отбрасывания тени для слоев высоты"
},
"Controls the base blur radius and offset of shadows": {
- "Controls the base blur radius and offset of shadows": ""
+ "Controls the base blur radius and offset of shadows": "Управляет базовым радиусом размытия и смещением теней"
},
"Controls the outer edge of protocol-blurred windows": {
- "Controls the outer edge of protocol-blurred windows": ""
+ "Controls the outer edge of protocol-blurred windows": "Управляет внешним краем окон с размытием по протоколу"
},
"Controls the transparency of the shadow": {
- "Controls the transparency of the shadow": ""
+ "Controls the transparency of the shadow": "Управляет прозрачностью тени"
},
"Convenience options for the login screen. Sync to apply.": {
- "Convenience options for the login screen. Sync to apply.": ""
+ "Convenience options for the login screen. Sync to apply.": "Удобные параметры для экрана входа. Синхронизируйте для применения."
+ },
+ "Convert to DMS": {
+ "Convert to DMS": ""
},
"Cooldown": {
"Cooldown": "Перезарядка"
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Скопировать PID"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": "Копировать текст"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Углы и фон"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Полное содержимое"
},
@@ -1689,13 +1782,13 @@
"Create Printer": "Создать принтер"
},
"Create User": {
- "Create User": ""
+ "Create User": "Создать пользователя"
},
"Create Window Rule": {
"Create Window Rule": "Создать правило окна"
},
"Create a new %1 session (n)": {
- "Create a new %1 session (n)": ""
+ "Create a new %1 session (n)": "Создать новую %1 сессию (n)"
},
"Create rule for:": {
"Create rule for:": "Создать правило для:"
@@ -1704,7 +1797,7 @@
"Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.": "Создать правила для отключения звука, игнорирования, скрытия из истории или переопределения приоритета уведомлений. По умолчанию переопределяется только приоритет; уведомления всё равно показываются нормально."
},
"Created plugin directory: %1": {
- "Created plugin directory: %1": ""
+ "Created plugin directory: %1": "Создан каталог плагинов: %1"
},
"Creating...": {
"Creating...": "Создание..."
@@ -1713,19 +1806,13 @@
"Critical Priority": "Критический Приоритет"
},
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
+ "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab: переключить вкладку • Ctrl+S: закрепить/открепить • Shift+Del: очистить всё • Esc: закрыть"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: переключить вкладки • Ctrl+S: закрепить/открепить • Shift+Enter: копировать • Shift+Del: очистить всё • F10: справка • Esc: закрыть"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab: переключить вкладки • Ctrl+S: закрепить/открепить • Shift+Enter: вставить • Shift+Del: очистить всё • F10: справка • Esc: закрыть"
},
"Current": {
"Current": "История"
@@ -1734,7 +1821,7 @@
"Current Items": "Текущие Элементы"
},
"Current Locale": {
- "Current Locale": ""
+ "Current Locale": "Текущий язык"
},
"Current Monitor": {
"Current Monitor": "Текущий монитор"
@@ -1778,8 +1865,11 @@
"Cursor Theme": {
"Cursor Theme": "Тема курсора"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
- "Curve: curve rasterizer.": ""
+ "Curve: curve rasterizer.": "Curve: растеризатор кривых."
},
"Custom": {
"Custom": "Свой"
@@ -1815,10 +1905,10 @@
"Custom Reboot Command": "Пользовательская команда перезагрузки"
},
"Custom Shadow Color": {
- "Custom Shadow Color": ""
+ "Custom Shadow Color": "Пользовательский цвет тени"
},
"Custom Shadow Override": {
- "Custom Shadow Override": ""
+ "Custom Shadow Override": "Пользовательское переопределение тени"
},
"Custom Suspend Command": {
"Custom Suspend Command": "Пользовательская команда приостановки"
@@ -1827,10 +1917,10 @@
"Custom Transparency": "Своя Прозрачность"
},
"Custom command and terminal params are split on whitespace; paths with spaces will break.": {
- "Custom command and terminal params are split on whitespace; paths with spaces will break.": ""
+ "Custom command and terminal params are split on whitespace; paths with spaces will break.": "Пользовательская команда и параметры терминала разделяются по пробелам; пути с пробелами приведут к сбою."
},
"Custom open-trash command": {
- "Custom open-trash command": ""
+ "Custom open-trash command": "Пользовательская команда открытия корзины"
},
"Custom power profile": {
"Custom power profile": "Приоритет производительности"
@@ -1839,7 +1929,7 @@
"Custom theme loaded from JSON file": "Пользовательская тема загружена из JSON-файла"
},
"Custom update command": {
- "Custom update command": ""
+ "Custom update command": "Пользовательская команда обновления"
},
"Custom...": {
"Custom...": "Пользовательский..."
@@ -1860,28 +1950,31 @@
"DEMO MODE - Click anywhere to exit": "ДЕМОНСТРАЦИОННЫЙ РЕЖИМ - Нажмите в любом месте, чтобы выйти"
},
"DMS Chooser": {
- "DMS Chooser": ""
+ "DMS Chooser": "DMS Chooser"
},
"DMS Plugin Manager Unavailable": {
"DMS Plugin Manager Unavailable": "Менеджер Дополнений DMS Недоступен"
},
"DMS Settings": {
- "DMS Settings": ""
+ "DMS Settings": "Настройки DMS"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "Комбинации клавиш DMS"
},
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
- "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
+ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Для работы DMS greeter необходимы: greetd, dms-greeter. Отпечаток пальца: fprintd, pam_fprintd. Ключи безопасности: pam_u2f. Добавьте своего пользователя в группу greeter. Изменения аутентификации применяются автоматически и могут открыть терминал, если потребуется подтверждение прав sudo."
+ },
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
},
"DMS out of date": {
"DMS out of date": "DMS устарел"
},
"DMS server is outdated (API v%1, expected v%2)": {
- "DMS server is outdated (API v%1, expected v%2)": ""
+ "DMS server is outdated (API v%1, expected v%2)": "Сервер DMS устарел (API v%1, ожидается v%2)"
},
"DMS service is not connected. Clipboard settings are unavailable.": {
"DMS service is not connected. Clipboard settings are unavailable.": "Служба DMS не подключена. Настройки буфера обмена недоступны."
@@ -1920,10 +2013,10 @@
"Dark Mode": "Тёмный режим"
},
"Dark mode base": {
- "Dark mode base": ""
+ "Dark mode base": "Основа темного режима"
},
"Dark mode harmony": {
- "Dark mode harmony": ""
+ "Dark mode harmony": "Гармония темного режима"
},
"Darken Modal Background": {
"Darken Modal Background": "Затемнение фона модальных окон"
@@ -1931,11 +2024,8 @@
"Date Format": {
"Date Format": "Формат Даты"
},
- "Date format": {
- "Date format": ""
- },
"Date format on greeter": {
- "Date format on greeter": ""
+ "Date format on greeter": "Формат даты на экране приветствия"
},
"Dawn (Astronomical Twilight)": {
"Dawn (Astronomical Twilight)": "Рассвет (астрономические сумерки)"
@@ -1965,31 +2055,31 @@
"Default": "По умолчанию"
},
"Default (Black)": {
- "Default (Black)": ""
+ "Default (Black)": "По умолчанию (Черный)"
},
"Default (Global)": {
- "Default (Global)": ""
+ "Default (Global)": "По умолчанию (глобально)"
},
"Default Apps": {
- "Default Apps": ""
+ "Default Apps": "Приложения по умолчанию"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "Лаунчер по умолчанию"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "Сочетание клавиш лаунчера по умолчанию"
},
"Default Opens": {
- "Default Opens": ""
+ "Default Opens": "Открытие по умолчанию"
},
"Default Width (%)": {
"Default Width (%)": "Ширина по умолчанию (%)"
},
"Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": {
- "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": ""
+ "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "Сочетания клавиш лаунчера по умолчанию открывают полнофункциональный лаунчер с вкладками режимов, сеткой и панелью действий."
},
"Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": {
- "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": ""
+ "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "Сочетания клавиш лаунчера по умолчанию открывают минималистичную панель Spotlight. Выделенное сочетание клавиш для панели Spotlight ниже остаётся независимым."
},
"Default selected action": {
"Default selected action": "Действие по умолчанию"
@@ -2007,7 +2097,7 @@
"Delete": "Удалить"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "Удалить «%1» и удалить домашний каталог? Это действие невозможно отменить."
},
"Delete \"%1\"?": {
"Delete \"%1\"?": "Удалить \"%1\"?"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Удалить принтер"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Удалить сохранённый элемент?"
},
@@ -2031,22 +2124,22 @@
"Delete profile \"%1\"?": "Удалить профиль \"%1\"?"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "Удалить пользователя"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "Удалить пользователя?"
},
"Demi Bold": {
- "Demi Bold": ""
+ "Demi Bold": "Среднежирный"
},
"Dependencies & documentation": {
- "Dependencies & documentation": ""
+ "Dependencies & documentation": "Зависимости и документация"
},
"Depth": {
- "Depth": ""
+ "Depth": "Глубина"
},
"Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": {
- "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": ""
+ "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": "Глубина: панели увеличиваются в масштабе при выдвижении — выразительный эффект появления из глубины."
},
"Derives colors that closely match the underlying image.": {
"Derives colors that closely match the underlying image.": "Извлекает цвета, которые точно соответствуют исходному изображению."
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Рабочий стол"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Настольные часы"
},
@@ -2076,10 +2172,10 @@
"Detailed": "Подробно"
},
"Details for \"%1": {
- "Details for \"%1\"": ""
+ "Details for \"%1\"": "Подробности для \"%1\""
},
"Detected backends: %1": {
- "Detected backends: %1": ""
+ "Detected backends: %1": "Обнаруженные бэкенды: %1"
},
"Development": {
"Development": "Разработка"
@@ -2103,13 +2199,13 @@
"Digital": "Цифровой"
},
"Direction Source": {
- "Direction Source": ""
+ "Direction Source": "Источник направления"
},
"Directional": {
- "Directional": ""
+ "Directional": "Направленный"
},
"Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": {
- "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": ""
+ "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": "Направленный: панели плавно заезжают с большего расстояния в полном размере — без изменения масштаба, чистое и чёткое движение."
},
"Disable Autoconnect": {
"Disable Autoconnect": "Отключите Автоподключение"
@@ -2127,11 +2223,14 @@
"Disabled": "Отключено"
},
"Disabled by Frame Mode": {
- "Disabled by Frame Mode": ""
+ "Disabled by Frame Mode": "Отключено режимом рамки"
},
"Disabling WiFi...": {
"Disabling WiFi...": "Отключение Wi-Fi…"
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Стирание"
},
@@ -2151,7 +2250,7 @@
"Disconnected from WiFi": "Отключен от WiFi"
},
"Discover Devices": {
- "Discover Devices": ""
+ "Discover Devices": "Обнаружить устройства"
},
"Disk": {
"Disk": "Диск"
@@ -2163,7 +2262,7 @@
"Disk Usage": "Использование Диска"
},
"Disk Usage Display": {
- "Disk Usage Display": ""
+ "Disk Usage Display": "Отображение использования диска"
},
"Disks": {
"Disks": "Диски"
@@ -2214,7 +2313,10 @@
"Display hourly weather predictions": "Отображать почасовые прогнозы погоды"
},
"Display line numbers in editor": {
- "Display line numbers in editor": ""
+ "Display line numbers in editor": "Отображать номера строк в редакторе"
+ },
+ "Display name for this entry": {
+ "Display name for this entry": ""
},
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Отображать только рабочие пространства, содержащие окна"
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Отображать секунды в часах"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Отображать меню системы питания"
},
@@ -2262,10 +2367,7 @@
"Dock Visibility": "Видимость дока"
},
"Dock margin, transparency, and border": {
- "Dock margin, transparency, and border": ""
- },
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
+ "Dock margin, transparency, and border": "Поля, прозрачность и рамка дока"
},
"Docs": {
"Docs": "Документация"
@@ -2298,7 +2400,7 @@
"Drag workspace indicators to reorder them": "Перетащите индикаторы рабочих пространств для изменения порядка"
},
"Draw a connected picture-frame border around the entire display": {
- "Draw a connected picture-frame border around the entire display": ""
+ "Draw a connected picture-frame border around the entire display": "Отрисовывать сплошную рамку по всему периметру экрана"
},
"Driver": {
"Driver": "Драйвер"
@@ -2307,7 +2409,7 @@
"Drizzle": "Морось"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "Сбросить переопределение для %1, чтобы снова применять действие DMS по умолчанию?"
},
"Duplicate": {
"Duplicate": "Дублировать"
@@ -2340,31 +2442,34 @@
"Dynamic colors from wallpaper": "Динамические цвета из обоев"
},
"Dynamic colors parse error: %1": {
- "Dynamic colors parse error: %1": ""
+ "Dynamic colors parse error: %1": "Ошибка разбора динамических цветов: %1"
},
"Dynamic colors, presets": {
"Dynamic colors, presets": "Динамические цвета, предустановки"
},
"Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.": {
- "Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.": ""
+ "Dynamic: Spring bezier with overshoot — entry briefly exceeds its target then settles. Expressive and alive.": "Динамичный: упругая кривая Безье с проскоком — при появлении элемент ненадолго превышает конечную точку, а затем стабилизируется. Выразительно и живо."
},
"Edge Spacing": {
"Edge Spacing": "Отступ краёв"
},
"Edge the launcher slides from": {
- "Edge the launcher slides from": ""
+ "Edge the launcher slides from": "Край, с которого выдвигается лаунчер"
},
"Edit App": {
"Edit App": "Изменить приложение"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "Редактировать буфер обмена"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "Изменить правило окна"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "Редактировать текст буфера обмена"
},
"Education": {
"Education": "Обучение"
@@ -2373,13 +2478,13 @@
"Empty": "Пусто"
},
"Empty Trash": {
- "Empty Trash": ""
+ "Empty Trash": "Очистить корзину"
},
"Empty Trash (%1)": {
- "Empty Trash (%1)": ""
+ "Empty Trash (%1)": "Очистить корзину (%1)"
},
"Empty Trash?": {
- "Empty Trash?": ""
+ "Empty Trash?": "Очистить корзину?"
},
"Enable 10-bit color depth for wider color gamut and HDR support": {
"Enable 10-bit color depth for wider color gamut and HDR support": "Включить 10-битную глубину цвета для более широкой цветовой гаммы и поддержки HDR"
@@ -2394,7 +2499,7 @@
"Enable Do Not Disturb": "Включить режим 'Не беспокоить'"
},
"Enable Frame": {
- "Enable Frame": ""
+ "Enable Frame": "Включить рамку"
},
"Enable History": {
"Enable History": "Включить историю"
@@ -2409,7 +2514,7 @@
"Enable System Sounds": "Включить системные звуки"
},
"Enable Video Screensaver": {
- "Enable Video Screensaver": ""
+ "Enable Video Screensaver": "Включить видеозаставку"
},
"Enable Weather": {
"Enable Weather": "Включить Погоду"
@@ -2418,61 +2523,61 @@
"Enable WiFi": "Включить WiFi"
},
"Enable a custom override below to set per-bar shadow intensity, opacity, and color.": {
- "Enable a custom override below to set per-bar shadow intensity, opacity, and color.": ""
+ "Enable a custom override below to set per-bar shadow intensity, opacity, and color.": "Включите пользовательское переопределение ниже, чтобы настроить интенсивность, непрозрачность и цвет тени для каждой панели."
},
"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."
},
"Enable fingerprint at login": {
- "Enable fingerprint at login": ""
+ "Enable fingerprint at login": "Включить вход по отпечатку пальца"
},
"Enable fingerprint authentication": {
"Enable fingerprint authentication": "Включить аутентификацию по отпечатку пальца"
},
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
- "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
+ "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": "Включить аутентификацию по отпечатку пальца или ключу безопасности для DMS Greeter. Изменения аутентификации применяются автоматически."
},
"Enable loginctl lock integration": {
"Enable loginctl lock integration": "Включить интеграцию блокировки loginctl"
},
"Enable security key at login": {
- "Enable security key at login": ""
+ "Enable security key at login": "Включить вход по ключу безопасности"
},
"Enable security key authentication": {
- "Enable security key authentication": ""
+ "Enable security key authentication": "Включить аутентификацию по ключу безопасности"
},
"Enabled": {
"Enabled": "Включено"
},
"Enabled, but fingerprint availability could not be confirmed.": {
- "Enabled, but fingerprint availability could not be confirmed.": ""
+ "Enabled, but fingerprint availability could not be confirmed.": "Включено, но доступность отпечатков пальцев не удалось подтвердить."
},
"Enabled, but no fingerprint reader was detected.": {
- "Enabled, but no fingerprint reader was detected.": ""
+ "Enabled, but no fingerprint reader was detected.": "Включено, но сканер отпечатков пальцев не обнаружен."
},
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
- "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
+ "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": "Включено, но отпечатки ещё не зарегистрированы. Изменения аутентификации применятся автоматически после регистрации отпечатков."
},
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
- "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
+ "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Включено, но отпечатки еще не зарегистрированы. Зарегистрируйте отпечатки пальцев и запустите Синхронизацию."
},
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
- "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
+ "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "Включено, но зарегистрированный ключ безопасности пока не найден. Изменения аутентификации применятся автоматически после регистрации ключа или обновления конфигурации U2F."
},
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
- "Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
+ "Enabled, but no registered security key was found yet. Register a key and run Sync.": "Включено, но зарегистрированный ключ безопасности еще не найден. Зарегистрируйте ключ и запустите Синхронизацию."
},
"Enabled, but security-key availability could not be confirmed.": {
- "Enabled, but security-key availability could not be confirmed.": ""
+ "Enabled, but security-key availability could not be confirmed.": "Включено, но доступность ключа безопасности не удалось подтвердить."
},
"Enabled. PAM already provides fingerprint auth.": {
- "Enabled. PAM already provides fingerprint auth.": ""
+ "Enabled. PAM already provides fingerprint auth.": "Включено. PAM уже обеспечивает аутентификацию по отпечатку пальца."
},
"Enabled. PAM already provides security-key auth.": {
- "Enabled. PAM already provides security-key auth.": ""
+ "Enabled. PAM already provides security-key auth.": "Включено. PAM уже обеспечивает аутентификацию по ключу безопасности."
},
"Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": {
- "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": ""
+ "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Включено. PAM обеспечивает аутентификацию по отпечатку пальца, но отпечатки еще не зарегистрированы."
},
"Enabling WiFi...": {
"Enabling WiFi...": "Включение Wi-Fi…"
@@ -2499,13 +2604,13 @@
"Enter URL or text to share": "Введите URL или текст для отправки"
},
"Enter a new name for session \"%1": {
- "Enter a new name for session \"%1\"": ""
+ "Enter a new name for session \"%1\"": "Введите новое имя для сессии \"%1\""
},
"Enter a new name for this workspace": {
"Enter a new name for this workspace": "Введите новое имя для этого рабочего пространства"
},
"Enter command or script path": {
- "Enter command or script path": ""
+ "Enter command or script path": "Введите команду или путь к скрипту"
},
"Enter credentials for ": {
"Enter credentials for ": "Введите учётные данные для "
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Корпоративный"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Запись закреплена"
},
@@ -2562,16 +2670,16 @@
"Ethernet": "Ethernet"
},
"Every 15 minutes": {
- "Every 15 minutes": ""
+ "Every 15 minutes": "Каждые 15 минут"
},
"Every 30 minutes": {
- "Every 30 minutes": ""
+ "Every 30 minutes": "Каждые 30 минут"
},
"Every 4 hours": {
- "Every 4 hours": ""
+ "Every 4 hours": "Каждые 4 часа"
},
"Every hour": {
- "Every hour": ""
+ "Every hour": "Каждый час"
},
"Exact": {
"Exact": "Регулярное выражение"
@@ -2580,7 +2688,7 @@
"Exclusive Zone Offset": "Смещение Исключительной Зоны"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "Существующие пользователи"
},
"Experimental Feature": {
"Experimental Feature": "Экспериментальная функция"
@@ -2592,7 +2700,7 @@
"Exponential": "Экспоненциальный"
},
"Expose the Arcs": {
- "Expose the Arcs": ""
+ "Expose the Arcs": "Отображать дуги"
},
"Expressive": {
"Expressive": "Яркий"
@@ -2610,10 +2718,10 @@
"Extra Arguments": "Дополнительные аргументы"
},
"Extra Bold": {
- "Extra Bold": ""
+ "Extra Bold": "Сверхжирный"
},
"Extra Light": {
- "Extra Light": ""
+ "Extra Light": "Сверхсветлый"
},
"F1/I: Toggle • F10: Help": {
"F1/I: Toggle • F10: Help": "F1/I: Переключить • F10: Справка"
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Не удалось активировать конфигурацию"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Не удалось активировать профиль — файл не найден"
- },
"Failed to add binds include": {
"Failed to add binds include": "Не удалось добавить binds include"
},
@@ -2643,13 +2748,13 @@
"Failed to add printer to class": "Не удалось добавить принтер в класс"
},
"Failed to apply GTK colors": {
- "Failed to apply GTK colors": ""
+ "Failed to apply GTK colors": "Не удалось применить цвета GTK"
},
"Failed to apply Qt colors": {
- "Failed to apply Qt colors": ""
+ "Failed to apply Qt colors": "Не удалось применить цвета Qt"
},
"Failed to apply profile": {
- "Failed to apply profile": ""
+ "Failed to apply profile": "Не удалось применить профиль"
},
"Failed to browse device": {
"Failed to browse device": "Не удалось просмотреть устройство"
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Не удалось отменить выбранное задание"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": ""
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Не удалось проверить лимит закрепления"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Не удалось создать принтер"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Не удалось создать директорию Profiles"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Не удалось удалить VPN"
},
@@ -2697,7 +2796,7 @@
"Failed to disable night mode": "Не удалось отключить ночной режим"
},
"Failed to disable plugin: %1": {
- "Failed to disable plugin: %1": ""
+ "Failed to disable plugin: %1": "Не удалось отключить плагин: %1"
},
"Failed to disconnect VPN": {
"Failed to disconnect VPN": "Не удалось отключить VPN"
@@ -2709,7 +2808,7 @@
"Failed to disconnect WiFi": "Не удалось отключить WiFi"
},
"Failed to empty trash": {
- "Failed to empty trash": ""
+ "Failed to empty trash": "Не удалось очистить корзину"
},
"Failed to enable IP location": {
"Failed to enable IP location": "Не удалось включить определение местоположения по IP"
@@ -2724,10 +2823,13 @@
"Failed to enable night mode": "Не удалось включить ночной режим"
},
"Failed to enable plugin: %1": {
- "Failed to enable plugin: %1": ""
+ "Failed to enable plugin: %1": "Не удалось включить плагин: %1"
},
"Failed to fetch network QR code: %1": {
- "Failed to fetch network QR code: %1": ""
+ "Failed to fetch network QR code: %1": "Не удалось получить QR-код сети: %1"
+ },
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
},
"Failed to hold job": {
"Failed to hold job": "Не удалось удержать задание"
@@ -2748,7 +2850,7 @@
"Failed to move job": "Не удалось переместить задание"
},
"Failed to move to trash": {
- "Failed to move to trash": ""
+ "Failed to move to trash": "Не удалось переместить в корзину"
},
"Failed to parse plugin_settings.json": {
"Failed to parse plugin_settings.json": "Не удалось разобрать plugin_settings.json"
@@ -2769,16 +2871,16 @@
"Failed to print test page": "Не удалось напечатать тестовую страницу"
},
"Failed to read theme file: %1": {
- "Failed to read theme file: %1": ""
+ "Failed to read theme file: %1": "Не удалось прочитать файл темы: %1"
},
"Failed to reject pairing": {
"Failed to reject pairing": "Не удалось отклонить сопряжение"
},
"Failed to reload plugin: %1": {
- "Failed to reload plugin: %1": ""
+ "Failed to reload plugin: %1": "Не удалось перезагрузить плагин: %1"
},
"Failed to remove QR code at %1: %2": {
- "Failed to remove QR code at %1: %2": ""
+ "Failed to remove QR code at %1: %2": "Не удалось удалить QR-код в %1: %2"
},
"Failed to remove device": {
"Failed to remove device": "Не удалось удалить устройство"
@@ -2802,7 +2904,7 @@
"Failed to ring device": "Не удалось вызвать устройство"
},
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": {
- "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": ""
+ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Не удалось выполнить 'dms greeter status'. Убедитесь, что DMS установлен и dms находится в PATH."
},
"Failed to save audio config": {
"Failed to save audio config": "Не удалось сохранить аудиоконфиг"
@@ -2814,10 +2916,7 @@
"Failed to save keybind": "Не удалось сохранить комбинацию клавиш"
},
"Failed to save profile": {
- "Failed to save profile": ""
- },
- "Failed to save profile file": {
- "Failed to save profile file": "Не удалось сохранить файл профиля"
+ "Failed to save profile": "Не удалось сохранить профиль"
},
"Failed to send clipboard": {
"Failed to send clipboard": "Не удалось отправить буфер обмена"
@@ -2841,7 +2940,7 @@
"Failed to set night mode temperature": "Не удалось установить температуру ночного режима"
},
"Failed to set power profile": {
- "Failed to set power profile": ""
+ "Failed to set power profile": "Не удалось установить профиль питания"
},
"Failed to set profile image": {
"Failed to set profile image": "Не удалось установить изображение профиля"
@@ -2865,7 +2964,7 @@
"Failed to update autoconnect": "Не удалось обновить автоподключение"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "Не удалось обновить буфер обмена"
},
"Failed to update description": {
"Failed to update description": "Не удалось обновить описание"
@@ -2876,11 +2975,17 @@
"Failed to update sharing": {
"Failed to update sharing": "Не удалось обновить общий доступ"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Не удалось записать временный файл для проверки"
},
"Failed: %1": {
- "Failed: %1": ""
+ "Failed: %1": "Сбой: %1"
},
"Features": {
"Features": "Возможности"
@@ -2910,10 +3015,10 @@
"File Information": "Информация о Файле"
},
"File Manager": {
- "File Manager": ""
+ "File Manager": "Файловый менеджер"
},
"File manager used to open the trash. Pick \"custom\" to enter your own command.": {
- "File manager used to open the trash. Pick \"custom\" to enter your own command.": ""
+ "File manager used to open the trash. Pick \"custom\" to enter your own command.": "Файловый менеджер, используемый для открытия корзины. Выберите «custom», чтобы ввести собственную команду."
},
"File received from": {
"File received from": "Файл получен от"
@@ -2922,7 +3027,7 @@
"File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "Поиск файлов требует dsearch. Установите с github.com/morelazers/dsearch"
},
"File search unavailable": {
- "File search unavailable": ""
+ "File search unavailable": "Поиск файлов недоступен"
},
"Files": {
"Files": "Файлы"
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Плитка вертикально"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Найти в Тексте"
},
@@ -2940,31 +3048,28 @@
"Find in note...": "Поиск по заметке..."
},
"Fine-tune the space reserved for the bar from the screen edge": {
- "Fine-tune the space reserved for the bar from the screen edge": ""
+ "Fine-tune the space reserved for the bar from the screen edge": "Точная настройка пространства, зарезервированного для панели от края экрана"
},
"Fingerprint availability could not be confirmed.": {
- "Fingerprint availability could not be confirmed.": ""
+ "Fingerprint availability could not be confirmed.": "Доступность отпечатков пальцев не удалось подтвердить."
},
"Fingerprint error": {
- "Fingerprint error": ""
- },
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
+ "Fingerprint error": "Ошибка отпечатка пальца"
},
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
- "Fingerprint not recognized (%1/%2). Please try again or use password.": ""
+ "Fingerprint not recognized (%1/%2). Please try again or use password.": "Отпечаток не распознан (%1/%2). Пожалуйста, попробуйте снова или используйте пароль."
},
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
- "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
+ "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Сканер отпечатков пальцев обнаружен, но отпечатки еще не зарегистрированы. Вы можете включить это сейчас и зарегистрировать их позже."
},
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": {
- "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": ""
+ "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": "Сканер отпечатков пальцев обнаружен, но отпечатки еще не зарегистрированы. Вы можете включить это сейчас и запустить Синхронизацию позже."
},
"Finish": {
"Finish": "Завершить"
},
"First Day of Week": {
- "First Day of Week": ""
+ "First Day of Week": "Первый день недели"
},
"First Time Setup": {
"First Time Setup": "Первоначальная настройка"
@@ -2996,18 +3101,30 @@
"Float": {
"Float": "Плавающий"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
- "Fluent": ""
+ "Fluent": "Fluent"
},
"Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.": {
- "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.": ""
+ "Fluent: Smooth cubic deceleration in, quick snap out — clean, elegant curves.": "Fluent: плавное кубическое замедление при появлении, быстрое скрытие — чистые, элегантные кривые."
},
"Focus": {
"Focus": "Фокус"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Фокус при запуске"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Граница активного"
},
@@ -3015,13 +3132,13 @@
"Focused Color": "Цвет активного"
},
"Focused Monitor Only": {
- "Focused Monitor Only": ""
+ "Focused Monitor Only": "Только активный монитор"
},
"Focused Window": {
"Focused Window": "Используемое Окно"
},
"Focused monitor only": {
- "Focused monitor only": ""
+ "Focused monitor only": "Только активный монитор"
},
"Fog": {
"Fog": "Туман"
@@ -3033,7 +3150,7 @@
"Folders": "Папки"
},
"Follow DMS background color": {
- "Follow DMS background color": ""
+ "Follow DMS background color": "Соответствовать цвету фона DMS"
},
"Follow Monitor Focus": {
"Follow Monitor Focus": "Следовать за фокусом монитора"
@@ -3042,10 +3159,10 @@
"Follow focus": "Следовать за фокусом"
},
"Follows the default launcher choice selected above.": {
- "Follows the default launcher choice selected above.": ""
+ "Follows the default launcher choice selected above.": "Следует выбору лаунчера по умолчанию, сделанному выше."
},
"Font": {
- "Font": ""
+ "Font": "Шрифт"
},
"Font Family": {
"Font Family": "Семейство Шрифта"
@@ -3060,28 +3177,28 @@
"Font Weight": "Вес Шрифта"
},
"Font used on the login screen": {
- "Font used on the login screen": ""
+ "Font used on the login screen": "Шрифт, используемый на экране входа"
},
"For 1 hour": {
- "For 1 hour": ""
+ "For 1 hour": "На 1 час"
},
"For 15 minutes": {
- "For 15 minutes": ""
+ "For 15 minutes": "На 15 минут"
},
"For 3 hours": {
- "For 3 hours": ""
+ "For 3 hours": "На 3 часа"
},
"For 30 minutes": {
- "For 30 minutes": ""
+ "For 30 minutes": "На 30 минут"
},
"For 8 hours": {
- "For 8 hours": ""
+ "For 8 hours": "На 8 часов"
},
"For editing plain text files": {
- "For editing plain text files": ""
+ "For editing plain text files": "Для редактирования текстовых файлов"
},
"For reading PDF files": {
- "For reading PDF files": ""
+ "For reading PDF files": "Для чтения PDF-файлов"
},
"Force HDR": {
"Force HDR": "Принудительный HDR"
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Принудительно остановить (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Force Wide цвет"
},
@@ -3105,7 +3225,7 @@
"Forecast Not Available": "Прогноз недоступен"
},
"Foreground Layers": {
- "Foreground Layers": ""
+ "Foreground Layers": "Слои переднего плана"
},
"Forever": {
"Forever": "Навсегда"
@@ -3128,23 +3248,17 @@
"Format Legend": {
"Format Legend": "Условные Обозначения"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": ""
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": ""
- },
"Frame": {
- "Frame": ""
+ "Frame": "Рамка"
},
"Frame Blur": {
- "Frame Blur": ""
+ "Frame Blur": "Размытие рамки"
},
"Frame Blur follows Background Blur in Theme & Colors": {
- "Frame Blur follows Background Blur in Theme & Colors": ""
+ "Frame Blur follows Background Blur in Theme & Colors": "Размытие рамки соответствует размытию фона в «Темах и цветах»"
},
"Frame Border Color": {
- "Frame Border Color": ""
+ "Frame Border Color": "Цвет границы рамки"
},
"Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": {
"Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": "Освободить VRAM/память при закрытии лаунчера. Может вызвать небольшую задержку при повторном открытии."
@@ -3159,7 +3273,7 @@
"Fruit Salad": "Яркий"
},
"Full": {
- "Full": ""
+ "Full": "Полное"
},
"Full Command:": {
"Full Command:": "Полная комманда:"
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Системный по умолчанию"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Системный по умолчанию"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": "Полноэкранный"
},
@@ -3201,10 +3315,10 @@
"GPU Temperature": "Температура ГП"
},
"GPU temperature display": {
- "GPU temperature display": ""
+ "GPU temperature display": "Отображение температуры GPU"
},
"GTK colors applied successfully": {
- "GTK colors applied successfully": ""
+ "GTK colors applied successfully": "Цвета GTK успешно применены"
},
"GTK, Qt, IDEs, more": {
"GTK, Qt, IDEs, more": "GTK, Qt, IDEs, и далее"
@@ -3218,8 +3332,11 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Управление Gamma недоступно. Требуется DMS API v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
- "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
+ "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes."
},
"Generic": {
"Generic": "Общий"
@@ -3231,7 +3348,7 @@
"GitHub": "GitHub"
},
"Global fonts can be configured in Settings → Personalization": {
- "Global fonts can be configured in Settings → Personalization": ""
+ "Global fonts can be configured in Settings → Personalization": "Глобальные шрифты можно настроить в Настройки → Персонализация"
},
"Globally scale all animation durations": {
"Globally scale all animation durations": "Глобально масштабировать все длительности анимаций"
@@ -3255,19 +3372,19 @@
"Gradually fade the screen before turning off monitors with a configurable grace period": "Постепенно затемнять экран перед выключением мониторов с настраиваемым льготным периодом"
},
"Grant": {
- "Grant": ""
+ "Grant": "Предоставить"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "Предоставить права администратора?"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "Предоставить права администратора"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "Права администратора предоставлены"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "Доступ к экрану входа предоставлен"
},
"Graph Time Range": {
"Graph Time Range": "Временной диапазон графика"
@@ -3276,34 +3393,34 @@
"Graphics": "Графика"
},
"Greeter": {
- "Greeter": ""
+ "Greeter": "Экран приветствия"
},
"Greeter Appearance": {
- "Greeter Appearance": ""
+ "Greeter Appearance": "Внешний вид экрана приветствия"
},
"Greeter Behavior": {
- "Greeter Behavior": ""
+ "Greeter Behavior": "Поведение экрана приветствия"
},
"Greeter Status": {
- "Greeter Status": ""
+ "Greeter Status": "Статус экрана приветствия"
},
"Greeter activated. greetd is now enabled.": {
- "Greeter activated. greetd is now enabled.": ""
+ "Greeter activated. greetd is now enabled.": "Экран приветствия активирован. greetd теперь включен."
},
"Greeter font": {
- "Greeter font": ""
+ "Greeter font": "Шрифт экрана приветствия"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "Участники группы greeter могут синхронизировать тему экрана входа с помощью dms greeter sync --profile после выхода и повторного входа в систему."
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "Группа greeter:"
},
"Greeter only — does not affect main clock": {
- "Greeter only — does not affect main clock": ""
+ "Greeter only — does not affect main clock": "Только для экрана приветствия — не влияет на основные часы"
},
"Greeter only — format for the date on the login screen": {
- "Greeter only — format for the date on the login screen": ""
+ "Greeter only — format for the date on the login screen": "Только для экрана приветствия — формат даты на экране входа"
},
"Grid": {
"Grid": "Сетка"
@@ -3351,16 +3468,16 @@
"HSV": "HSV"
},
"HSV %1 copied": {
- "HSV %1 copied": ""
+ "HSV %1 copied": "HSV %1 скопировано"
},
"HTML copied to clipboard": {
"HTML copied to clipboard": "HTML скопирован в буфера обмена"
},
"Handles links and opens HTML files": {
- "Handles links and opens HTML files": ""
+ "Handles links and opens HTML files": "Обрабатывает ссылки и открывает HTML-файлы"
},
"Handles mailto links": {
- "Handles mailto links": ""
+ "Handles mailto links": "Обрабатывает ссылки mailto"
},
"Health": {
"Health": "Здоровье"
@@ -3390,7 +3507,7 @@
"Hibernate": "Гибернация"
},
"Hibernate failed": {
- "Hibernate failed": ""
+ "Hibernate failed": "Сбой гибернации"
},
"Hidden": {
"Hidden": "Скрытый"
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Скрыть индикаторы"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Скрыть виджет обновления"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "Скрывать когда печатаешь"
},
@@ -3456,19 +3567,19 @@
"Hide on Touch": "Скрывать при касании"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "Скрывать панель, когда указатель уходит, даже если всплывающее окно всё ещё открыто"
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Высокоточная палитра, сохраняющая исходные оттенки."
},
"Highlight Active Workspace App": {
- "Highlight Active Workspace App": ""
+ "Highlight Active Workspace App": "Подсвечивать приложение активного рабочего пространства"
},
"Highlight the currently focused app inside workspace indicators": {
- "Highlight the currently focused app inside workspace indicators": ""
+ "Highlight the currently focused app inside workspace indicators": "Подсвечивать приложение в фокусе внутри индикаторов рабочих пространств"
},
"History": {
"History": "История"
@@ -3501,10 +3612,10 @@
"Home": "Домой"
},
"Horizontal and vertical bar thickness": {
- "Horizontal and vertical bar thickness": ""
+ "Horizontal and vertical bar thickness": "Горизонтальная и вертикальная толщина бара"
},
"Host": {
- "Host": ""
+ "Host": "Хост"
},
"Hostname": {
"Hostname": "Имя хоста"
@@ -3525,19 +3636,19 @@
"Hourly Forecast Count": "Количество почасовых прогнозов"
},
"How often the server polls for new updates.": {
- "How often the server polls for new updates.": ""
+ "How often the server polls for new updates.": "Как часто сервер проверяет наличие новых обновлений."
},
"How often to change wallpaper": {
"How often to change wallpaper": "Как часто изменять обои"
},
"How the background image is scaled": {
- "How the background image is scaled": ""
+ "How the background image is scaled": "Как масштабируется фоновое изображение"
},
"Humidity": {
"Humidity": "Влажность"
},
"Hyprland Discord Server": {
- "Hyprland Discord Server": ""
+ "Hyprland Discord Server": "Discord-сервер Hyprland"
},
"Hyprland Layout Overrides": {
"Hyprland Layout Overrides": "Переопределения макета Hyprland"
@@ -3546,10 +3657,16 @@
"Hyprland Options": "Опции Hyprland"
},
"Hyprland Website": {
- "Hyprland Website": ""
+ "Hyprland Website": "Сайт Hyprland"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Я Понимаю"
@@ -3561,7 +3678,7 @@
"IP Address:": "IP-адрес:"
},
"IP address or hostname": {
- "IP address or hostname": ""
+ "IP address or hostname": "IP-адрес или имя хоста"
},
"ISO Date": {
"ISO Date": "Системный по умолчанию"
@@ -3582,22 +3699,25 @@
"Icon Theme": "Тема Значков"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "Одинаковые оповещения отображаются как одно всплывающее окно вместо отображения стопкой"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "Одинаковые оповещения отображаются стопкой в виде отдельных карточек уведомлений"
},
"Idle": {
"Idle": "Бездействие"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Ингибитор бездействия"
},
"Idle Settings": {
"Idle Settings": "Настройки бездействия"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Мониторинг бездействия не поддерживается — требуется более новая версия Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Если поле скрыто, оно появится сразу после нажатия клавиши."
@@ -3609,7 +3729,7 @@
"Image": "Изображение"
},
"Image Viewer": {
- "Image Viewer": ""
+ "Image Viewer": "Просмотр изображений"
},
"Image copied to clipboard": {
"Image copied to clipboard": "Изображение скопировано в буфера обмена"
@@ -3624,16 +3744,16 @@
"Inactive Monitor Color": "Цвет неактивного монитора"
},
"Include AUR updates": {
- "Include AUR updates": ""
+ "Include AUR updates": "Включить обновления AUR"
},
"Include Files in All Tab": {
- "Include Files in All Tab": ""
+ "Include Files in All Tab": "Включать файлы во вкладку «Все»"
},
"Include Flatpak updates": {
- "Include Flatpak updates": ""
+ "Include Flatpak updates": "Включить обновления Flatpak"
},
"Include Folders in All Tab": {
- "Include Folders in All Tab": ""
+ "Include Folders in All Tab": "Включать папки во вкладку «Все»"
},
"Include Transitions": {
"Include Transitions": "Включить переходы"
@@ -3648,13 +3768,13 @@
"Incorrect password": "Неправильный пароль"
},
"Incorrect password - attempt %1 of %2 (lockout may follow)": {
- "Incorrect password - attempt %1 of %2 (lockout may follow)": ""
+ "Incorrect password - attempt %1 of %2 (lockout may follow)": "Неверный пароль — попытка %1 из %2 (возможна блокировка)"
},
"Incorrect password - next failures may trigger account lockout": {
- "Incorrect password - next failures may trigger account lockout": ""
+ "Incorrect password - next failures may trigger account lockout": "Неверный пароль — следующие неудачи могут привести к блокировке учетной записи"
},
"Incorrect password - try again": {
- "Incorrect password - try again": ""
+ "Incorrect password - try again": "Неверный пароль — попробуйте снова"
},
"Indicator Style": {
"Indicator Style": "Индикатор Стиль"
@@ -3672,13 +3792,16 @@
"Inherit": "Наследовать"
},
"Inherit Global (Default)": {
- "Inherit Global (Default)": ""
+ "Inherit Global (Default)": "Наследовать глобальный (По умолчанию)"
},
"Inhibitable": {
"Inhibitable": "Блокируемый"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "Внутренний отступ, применяемый к каждому виджету"
},
"Input Devices": {
"Input Devices": "Устройства Ввода"
@@ -3687,13 +3810,13 @@
"Input Volume Slider": "Вход Громкость Ползунок"
},
"Insert your security key...": {
- "Insert your security key...": ""
+ "Insert your security key...": "Вставьте ключ безопасности..."
},
"Install": {
"Install": "Установить"
},
"Install Greeter": {
- "Install Greeter": ""
+ "Install Greeter": "Установить экран приветствия"
},
"Install Plugin": {
"Install Plugin": "Установить дополнение"
@@ -3705,10 +3828,10 @@
"Install color themes from the DMS theme registry": "Установить цветовые темы из реестра тем DMS"
},
"Install complete. Greeter has been installed.": {
- "Install complete. Greeter has been installed.": ""
+ "Install complete. Greeter has been installed.": "Установка завершена. Экран приветствия был установлен."
},
"Install dsearch to search files.": {
- "Install dsearch to search files.": ""
+ "Install dsearch to search files.": "Установите dsearch для поиска файлов."
},
"Install failed: %1": {
"Install failed: %1": "Ошибка установки: %1"
@@ -3723,13 +3846,13 @@
"Install plugins from the DMS plugin registry": "Установить дополнения из репозитория DMS"
},
"Install the DMS greeter? A terminal will open for sudo authentication.": {
- "Install the DMS greeter? A terminal will open for sudo authentication.": ""
+ "Install the DMS greeter? A terminal will open for sudo authentication.": "Установить экран приветствия DMS? Откроется терминал для аутентификации через sudo."
},
"Install theme '%1' from the DMS registry?": {
"Install theme '%1' from the DMS registry?": "Установить тему '%1' из реестра DMS?"
},
"Installation and PAM setup: see the ": {
- "Installation and PAM setup: see the ": ""
+ "Installation and PAM setup: see the ": "Установка и настройка PAM: см "
},
"Installed": {
"Installed": "Установлено"
@@ -3741,7 +3864,7 @@
"Installing: %1": "Установка: %1"
},
"Integrations": {
- "Integrations": ""
+ "Integrations": "Интеграции"
},
"Intelligent Auto-hide": {
"Intelligent Auto-hide": "Умное автоскрытие"
@@ -3762,16 +3885,16 @@
"Interval": "Интервал"
},
"Invalid JSON format: %1": {
- "Invalid JSON format: %1": ""
+ "Invalid JSON format: %1": "Неверный формат JSON: %1"
},
"Invalid configuration": {
"Invalid configuration": "Недействительная конфигурация"
},
"Invalid password for %1": {
- "Invalid password for %1": ""
+ "Invalid password for %1": "Неверный пароль для %1"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "Неверное имя пользователя"
},
"Invert on mode change": {
"Invert on mode change": "Инвертировать при смене режима"
@@ -3795,7 +3918,7 @@
"Keep Changes": "Сохранить изменения"
},
"Keep typing": {
- "Keep typing": ""
+ "Keep typing": "Продолжайте ввод"
},
"Keeping Awake": {
"Keeping Awake": "Не спит"
@@ -3828,13 +3951,13 @@
"Keys": "Ключи"
},
"Kill": {
- "Kill": ""
+ "Kill": "Завершить"
},
"Kill Process": {
"Kill Process": "Завершить Процесс"
},
"Kill Session": {
- "Kill Session": ""
+ "Kill Session": "Принудительно завершить сеанс"
},
"Ko-fi": {
"Ko-fi": "Ko-fi"
@@ -3843,10 +3966,10 @@
"LED device": "LED устройство"
},
"LabWC IRC Channel": {
- "LabWC IRC Channel": ""
+ "LabWC IRC Channel": "IRC-канал LabWC"
},
"LabWC Website": {
- "LabWC Website": ""
+ "LabWC Website": "Сайт LabWC"
},
"Large": {
"Large": "Большой"
@@ -3861,22 +3984,22 @@
"Last launched %1": "Последние запущененные %1"
},
"Last launched %1 day ago": {
- "Last launched %1 day ago": ""
+ "Last launched %1 day ago": "Последний раз запущено %1 день назад"
},
"Last launched %1 days ago": {
- "Last launched %1 days ago": ""
+ "Last launched %1 days ago": "Последний раз запущено %1 дней назад"
},
"Last launched %1 hour ago": {
- "Last launched %1 hour ago": ""
+ "Last launched %1 hour ago": "Последний раз запущено %1 час назад"
},
"Last launched %1 hours ago": {
- "Last launched %1 hours ago": ""
+ "Last launched %1 hours ago": "Последний раз запущено %1 часов назад"
},
"Last launched %1 minute ago": {
- "Last launched %1 minute ago": ""
+ "Last launched %1 minute ago": "Последний раз запущено %1 минуту назад"
},
"Last launched %1 minutes ago": {
- "Last launched %1 minutes ago": ""
+ "Last launched %1 minutes ago": "Последний раз запущено %1 минут назад"
},
"Last launched just now": {
"Last launched just now": "Последний запуск только что"
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Запустить на дискретной видеокарте"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "Лаунчер"
},
@@ -3906,13 +4026,10 @@
"Launcher Button Logo": "Логотип кнопки лаунчера"
},
"Launcher Emerge Side": {
- "Launcher Emerge Side": ""
- },
- "Launcher Style": {
- "Launcher Style": ""
+ "Launcher Emerge Side": "Сторона выдвижения лаунчера"
},
"Layer Outline Opacity": {
- "Layer Outline Opacity": ""
+ "Layer Outline Opacity": "Непрозрачность контура слоя"
},
"Layout": {
"Layout": "Макет"
@@ -3921,7 +4038,7 @@
"Layout Overrides": "Переопределения макета"
},
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": {
- "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": ""
+ "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Расположение и позиции модулей на экране приветствия синхронизируются из вашей оболочки (например, конфигурации панели). Запустите Синхронизацию для применения."
},
"Left": {
"Left": "Слева"
@@ -3933,10 +4050,10 @@
"Left Section": "Левая секция"
},
"Light": {
- "Light": ""
+ "Light": "Светлый"
},
"Light Direction": {
- "Light Direction": ""
+ "Light Direction": "Направление света"
},
"Light Mode": {
"Light Mode": "Светлый Режим"
@@ -3951,16 +4068,16 @@
"Light Snow Showers": "Лёгкий снегопад"
},
"Light mode base": {
- "Light mode base": ""
+ "Light mode base": "Основа светлого режима"
},
"Light mode harmony": {
- "Light mode harmony": ""
+ "Light mode harmony": "Гармония светлого режима"
},
"Line": {
"Line": "Линия"
},
"Line: %1": {
- "Line: %1": ""
+ "Line: %1": "Строка: %1"
},
"Linear": {
"Linear": "Линейный"
@@ -3993,10 +4110,10 @@
"Local": "Локальный"
},
"Locale": {
- "Locale": ""
+ "Locale": "Локаль"
},
"Locale Settings": {
- "Locale Settings": ""
+ "Locale Settings": "Настройки локали"
},
"Location": {
"Location": "Местоположение"
@@ -4032,7 +4149,7 @@
"Lock fade grace period": "Льготный период затухания блокировки"
},
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
- "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
+ "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "Изменения аутентификации экрана блокировки применяются автоматически и могут открыть терминал, если потребуется подтверждение прав sudo."
},
"Locked": {
"Locked": "Заблокировано"
@@ -4040,17 +4157,14 @@
"Log Out": {
"Log Out": "Выйти"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
- "Logging in...": ""
+ "Logging in...": "Вход в систему..."
},
"Login": {
- "Login": ""
+ "Login": "Войти"
},
"Login Authentication": {
- "Login Authentication": ""
+ "Login Authentication": "Аутентификация при входе"
},
"Long": {
"Long": "Длинный"
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Долгота"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Низкий Приоритет"
},
@@ -4074,16 +4191,16 @@
"MTU": "MTU"
},
"Mail": {
- "Mail": ""
+ "Mail": "Почта"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "Сделать администратором"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "Убедитесь, что KDE Connect или Valent запущены на других устройствах"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "Сделать фон панели полностью прозрачным"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "Управление и настройка дополнений для расширения функционала DMS"
@@ -4092,34 +4209,31 @@
"Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "Управление до 4 независимыми конфигурациями панели. Каждая панель имеет собственную позицию, виджетов, стиль и назначение Display."
},
"Managed by Frame": {
- "Managed by Frame": ""
- },
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
+ "Managed by Frame": "Управляется рамкой"
},
"Managed by Frame in Connected Mode": {
- "Managed by Frame in Connected Mode": ""
+ "Managed by Frame in Connected Mode": "Управляется рамкой в сплошном режиме"
},
"Management": {
"Management": "Управление"
},
"Manages calendar events": {
- "Manages calendar events": ""
+ "Manages calendar events": "Управляет событиями календаря"
},
"Manages files and directories": {
- "Manages files and directories": ""
+ "Manages files and directories": "Управляет файлами и каталогами"
},
"MangoWC Layout Overrides": {
"MangoWC Layout Overrides": "Переопределения макета MangoWC"
},
"Manual": {
- "Manual": ""
+ "Manual": "Вручную"
},
"Manual Coordinates": {
"Manual Coordinates": "Свои Координаты"
},
"Manual Direction": {
- "Manual Direction": ""
+ "Manual Direction": "Направление вручную"
},
"Manual Gap Size": {
"Manual Gap Size": "Ручной размер отступа"
@@ -4128,7 +4242,7 @@
"Manual Show/Hide": "Ручное Отображение/Скрытие"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "Ручная конфигурация"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "Сопоставить имена классов окон с именами значков для правильного отображения значков"
@@ -4148,14 +4262,17 @@
"Marker Waste Full": {
"Marker Waste Full": "Marker Waste полно"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Критерии соответствия"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Соответствует профилю: %1"
- },
"Material": {
- "Material": ""
+ "Material": "Material"
},
"Material Colors": {
"Material Colors": "Акцентные Цвета"
@@ -4167,13 +4284,13 @@
"Material colors generated from wallpaper": "Цветовая палитра Material, созданная из обоев"
},
"Material inspired shadows and elevation on modals, popouts, and dialogs": {
- "Material inspired shadows and elevation on modals, popouts, and dialogs": ""
+ "Material inspired shadows and elevation on modals, popouts, and dialogs": "Тени и высота в стиле Material на модальных, всплывающих и диалоговых окнах"
},
"Material: Material Design 3 Expressive bezier curves. The DMS default feel.": {
- "Material: Material Design 3 Expressive bezier curves. The DMS default feel.": ""
+ "Material: Material Design 3 Expressive bezier curves. The DMS default feel.": "Material: выразительные кривые Безье из Material Design 3. Стандартный стиль DMS."
},
"Matugen Contrast": {
- "Matugen Contrast": ""
+ "Matugen Contrast": "Контрастность Matugen"
},
"Matugen Missing": {
"Matugen Missing": "Matugen отсутствует"
@@ -4239,7 +4356,7 @@
"Maximum Pinned Entries": "Максимум закреплённых записей"
},
"Maximum fingerprint attempts reached. Please use password.": {
- "Maximum fingerprint attempts reached. Please use password.": ""
+ "Maximum fingerprint attempts reached. Please use password.": "Достигнуто максимальное количество попыток сканирования отпечатка. Пожалуйста, используйте пароль."
},
"Maximum number of clipboard entries to keep": {
"Maximum number of clipboard entries to keep": "Максимальное количество записей буфера обмена для хранения"
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Настройки Медиаплеера"
},
- "Media Players": {
- "Media Players": ""
- },
"Media Players (": {
"Media Players (": "Медиаплееры ("
},
@@ -4308,10 +4422,10 @@
"Memory usage indicator": "Индикатор Использования Памяти"
},
"Merge indexed file results into the All tab (requires dsearch).": {
- "Merge indexed file results into the All tab (requires dsearch).": ""
+ "Merge indexed file results into the All tab (requires dsearch).": "Объединять результаты индексации файлов со вкладкой «Все» (требуется dsearch)."
},
"Merge indexed folder results into the All tab (requires dsearch).": {
- "Merge indexed folder results into the All tab (requires dsearch).": ""
+ "Merge indexed folder results into the All tab (requires dsearch).": "Объединять результаты индексации папок со вкладкой «Все» (требуется dsearch)."
},
"Message": {
"Message": "Сообщение"
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Мин Ш"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Минимальная палитра, встроенная вокруг одного оттенка."
},
@@ -4362,7 +4473,7 @@
"Modal Background": "Фон модального окна"
},
"Modal Shadows": {
- "Modal Shadows": ""
+ "Modal Shadows": "Тени модальных окон"
},
"Modals": {
"Modals": "Модальные окна"
@@ -4395,7 +4506,7 @@
"Monitor whose wallpaper drives dynamic theming colors": "Монитор, чьи обои определяют цвета динамической темы"
},
"Monitors in \"%1\":": {
- "Monitors in \"%1\":": ""
+ "Monitors in \"%1\":": "Мониторы в \"%1\":"
},
"Monochrome": {
"Monochrome": "Яркий"
@@ -4413,13 +4524,13 @@
"Morning": "Утро"
},
"Motion Effects": {
- "Motion Effects": ""
+ "Motion Effects": "Эффекты движения"
},
"Mount Points": {
"Mount Points": "Точки монтирования"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "Клики мыши проходят сквозь панель к окнам позади неё"
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "Внешний вид указателя мыши"
@@ -4434,7 +4545,7 @@
"Move Widget": "Переместить виджет"
},
"Move to Trash": {
- "Move to Trash": ""
+ "Move to Trash": "Переместить в корзину"
},
"Moving to Paused": {
"Moving to Paused": "Перемещение в Paused"
@@ -4443,22 +4554,22 @@
"Multi-Monitor": "Мульти-мониторы"
},
"Multimedia": {
- "Multimedia": ""
+ "Multimedia": "Мультимедиа"
},
"Multiplexer": {
- "Multiplexer": ""
+ "Multiplexer": "Мультиплексор"
},
"Multiplexer Type": {
- "Multiplexer Type": ""
+ "Multiplexer Type": "Тип мультиплексора"
},
"Multiplexers": {
- "Multiplexers": ""
+ "Multiplexers": "Мультиплексоры"
},
"Music": {
"Music": "Музыка"
},
"Music Player": {
- "Music Player": ""
+ "Music Player": "Музыкальный плеер"
},
"Mute Popups": {
"Mute Popups": "Только всплывающее"
@@ -4476,7 +4587,7 @@
"Muted palette with subdued, calming tones.": "Приглушённая палитра со спокойными тонами."
},
"My Online": {
- "My Online": ""
+ "My Online": "Мой онлайн"
},
"NM not supported": {
"NM not supported": "NM не поддерживается"
@@ -4487,11 +4598,14 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Значки Именованных Рабочих Пространств"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
- "Native: platform renderer (FreeType).": ""
+ "Native: platform renderer (FreeType).": "Native: системный рендерер (FreeType)."
},
"Navigate": {
- "Navigate": ""
+ "Navigate": "Навигация"
},
"Navigation": {
"Navigation": "Навигация"
@@ -4521,7 +4635,7 @@
"Network download and upload speed display": "Отображение скорости скачивания и загрузки данных по сети"
},
"Network not found": {
- "Network not found": ""
+ "Network not found": "Сеть не найдена"
},
"Neutral": {
"Neutral": "Яркий"
@@ -4530,7 +4644,7 @@
"Never": "Никогда"
},
"Never used": {
- "Never used": ""
+ "Never used": "Никогда не использовалось"
},
"New": {
"New": "Новый"
@@ -4545,7 +4659,7 @@
"New Notification": "Новое уведомление"
},
"New Session": {
- "New Session": ""
+ "New Session": "Новый сеанс"
},
"New Window Rule": {
"New Window Rule": "Новое правило окна"
@@ -4575,7 +4689,7 @@
"Night mode & gamma": "Безопасность и конфиденциальность"
},
"Night mode failed: DMS gamma control not available": {
- "Night mode failed: DMS gamma control not available": ""
+ "Night mode failed: DMS gamma control not available": "Сбой ночного режима: управление гаммой DMS недоступно"
},
"Niri Integration": {
"Niri Integration": "Интеграция Niri"
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Без Заднего Фона"
},
- "No Battery": {
- "No Battery": "Подключено"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Адаптер Bluetooth не найден"
},
@@ -4644,7 +4755,7 @@
"No VPN profiles": "Нет профилей VPN"
},
"No Weather": {
- "No Weather": ""
+ "No Weather": "Нет погоды"
},
"No Weather Data": {
"No Weather Data": "Нету данных о погоде"
@@ -4656,10 +4767,10 @@
"No action": "Нет действия"
},
"No active %1 sessions": {
- "No active %1 sessions": ""
+ "No active %1 sessions": "Нет активных сеансов %1"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "Активная сессия для %1 не найдена"
},
"No adapter": {
"No adapter": "Выкл"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Настроек приложений нет."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Приложения не найдены"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Приложения не отключены. Щёлкните ПКМ по уведомлению и выберите «Отключить всплывающие» для добавления сюда."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Нет батареи"
},
@@ -4710,7 +4827,7 @@
"No disk data available": "Данные о диске недоступны"
},
"No display profiles found. Create them in Settings > Displays.": {
- "No display profiles found. Create them in Settings > Displays.": ""
+ "No display profiles found. Create them in Settings > Displays.": "Профили дисплеев не найдены. Создайте их в Настройки > Дисплеи."
},
"No drivers found": {
"No drivers found": "Драйверы не найдены"
@@ -4725,7 +4842,7 @@
"No files found": "Файлы не найдены"
},
"No fingerprint reader detected.": {
- "No fingerprint reader detected.": ""
+ "No fingerprint reader detected.": "Сканер отпечатков пальцев не обнаружен."
},
"No folders found": {
"No folders found": "Папки не найдены"
@@ -4734,13 +4851,13 @@
"No hidden apps.": "Нет скрытых приложений."
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "Учётные записи пользователей не найдены."
},
"No info items": {
"No info items": "Нет предупреждений"
},
"No information available": {
- "No information available": ""
+ "No information available": "Нет доступной информации"
},
"No input device": {
"No input device": "Выбрать устройство"
@@ -4764,7 +4881,7 @@
"No matches": "Нет совпадений"
},
"No matching devices": {
- "No matching devices": ""
+ "No matching devices": "Нет подходящих устройств"
},
"No matching processes": {
"No matching processes": "Нет соответствующих процессов"
@@ -4776,7 +4893,7 @@
"No mount points found": "Точки монтирования не найдены"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "Нет других активных сессий на этом рабочем месте"
},
"No output device": {
"No output device": "Выбрать устройство"
@@ -4784,11 +4901,8 @@
"No output devices found": {
"No output devices found": "Устройства вывода не найдены"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": ""
- },
"No peers found": {
- "No peers found": ""
+ "No peers found": "Пиры не найдены"
},
"No plugin results": {
"No plugin results": "Нет результатов плагинов"
@@ -4815,7 +4929,7 @@
"No recent clipboard entries found": "Недавние записи буфера обмена не найдены"
},
"No results": {
- "No results": ""
+ "No results": "Нет результатов"
},
"No results found": {
"No results found": "Ничего не найдено"
@@ -4824,19 +4938,19 @@
"No saved clipboard entries": "Сохранённые записи буфера обмена отсутствуют"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "Сессия не выбрана"
},
"No sessions found": {
- "No sessions found": ""
+ "No sessions found": "Сеансы не найдены"
},
"No status output.": {
- "No status output.": ""
+ "No status output.": "Нет вывода статуса."
},
"No supported package manager found.": {
- "No supported package manager found.": ""
+ "No supported package manager found.": "Поддерживаемый пакетный менеджер не найден."
},
"No terminal configured": {
- "No terminal configured": ""
+ "No terminal configured": "Терминал не настроен"
},
"No themes found": {
"No themes found": "Темы не найдены"
@@ -4848,16 +4962,16 @@
"No trigger": "Нет триггера"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "Пользователь не указан"
},
"No video found in folder": {
- "No video found in folder": ""
+ "No video found in folder": "В папке не найдено видео"
},
"No wallpaper selected": {
"No wallpaper selected": "Обои не выбраны"
},
"No wallpapers": {
- "No wallpapers": ""
+ "No wallpapers": "Нет обоев"
},
"No wallpapers found\n\nClick the folder icon below to browse": {
"No wallpapers found\n\nClick the folder icon below to browse": "Обои не найдены\n\nНажмите на значок папки ниже для просмотра"
@@ -4877,11 +4991,14 @@
"No window rules configured": {
"No window rules configured": "Правила окон не настроены"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Нет"
},
"None active": {
- "None active": ""
+ "None active": "Нет активных"
},
"Normal": {
"Normal": "Нормальный"
@@ -4896,19 +5013,19 @@
"Not available": "Недоступно"
},
"Not available — install fprintd and pam_fprintd, or configure greetd PAM.": {
- "Not available — install fprintd and pam_fprintd, or configure greetd PAM.": ""
+ "Not available — install fprintd and pam_fprintd, or configure greetd PAM.": "Недоступно — установите fprintd и pam_fprintd или настройте PAM для greetd."
},
"Not available — install fprintd and pam_fprintd.": {
- "Not available — install fprintd and pam_fprintd.": ""
+ "Not available — install fprintd and pam_fprintd.": "Недоступно — установите fprintd и pam_fprintd."
},
"Not available — install or configure pam_u2f, or configure greetd PAM.": {
- "Not available — install or configure pam_u2f, or configure greetd PAM.": ""
+ "Not available — install or configure pam_u2f, or configure greetd PAM.": "Недоступно — установите или настройте pam_u2f либо настройте PAM для greetd."
},
"Not available — install or configure pam_u2f.": {
- "Not available — install or configure pam_u2f.": ""
+ "Not available — install or configure pam_u2f.": "Недоступно — установите или настройте pam_u2f."
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "Не привязано"
},
"Not connected": {
"Not connected": "Не подключено"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Не обнаружено"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Не сопряжено"
},
@@ -5007,7 +5127,7 @@
"On": "Вкл"
},
"On indefinitely": {
- "On indefinitely": ""
+ "On indefinitely": "Включено бессрочно"
},
"On-Demand": {
"On-Demand": "По требованию"
@@ -5019,16 +5139,16 @@
"On-screen Displays": "Наэкранные отображения"
},
"Once a day": {
- "Once a day": ""
+ "Once a day": "Раз в день"
},
"Online": {
- "Online": ""
+ "Online": "В сети"
},
"Only adjust gamma based on time or location rules.": {
"Only adjust gamma based on time or location rules.": "Регулировать цветовую температуру только на основе правил времени или местоположения."
},
"Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": {
- "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": ""
+ "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "Влияет только на PAM, управляемый DMS. Если greetd уже включает pam_fprintd, вход по отпечатку останется включённым."
},
"Only show windows from the current monitor on each dock": {
"Only show windows from the current monitor on each dock": "Показывать только окна с текущего монитора на каждом доке"
@@ -5040,10 +5160,10 @@
"Opacity": "Непрозрачность"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "Прозрачность фона панели"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "Прозрачность фона виджетов"
},
"Opaque": {
"Opaque": "Непрозрачный"
@@ -5055,10 +5175,10 @@
"Open App": "Открыть приложение"
},
"Open Dir": {
- "Open Dir": ""
+ "Open Dir": "Открыть папку"
},
"Open Frame": {
- "Open Frame": ""
+ "Open Frame": "Разомкнутая рамка"
},
"Open KDE Connect on your phone": {
"Open KDE Connect on your phone": "Откройте KDE Connect на телефоне"
@@ -5067,16 +5187,16 @@
"Open Notepad File": "Открыть Файл Блокнота"
},
"Open Trash": {
- "Open Trash": ""
+ "Open Trash": "Открыть корзину"
},
"Open Trash With": {
- "Open Trash With": ""
+ "Open Trash With": "Открыть корзину с помощью"
},
"Open a new note": {
"Open a new note": "Открыть новую заметку"
},
"Open a terminal and run a custom command instead of the in-shell upgrade flow.": {
- "Open a terminal and run a custom command instead of the in-shell upgrade flow.": ""
+ "Open a terminal and run a custom command instead of the in-shell upgrade flow.": "Открыть терминал и запустить пользовательскую команду вместо встроенного процесса обновления."
},
"Open folder": {
"Open folder": "Открыть папку"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "Открытие файлов"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
- "Opening terminal: ": ""
+ "Opening terminal: ": "Открытие терминала:"
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "Открывает выбор других активных сессий на этом рабочем месте"
},
"Opens image files": {
- "Opens image files": ""
+ "Opens image files": "Открывает файлы изображений"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "Открывает подключённый лаунчер в режиме связанной рамки."
},
"Optional description": {
"Optional description": "Необязательное описание"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Необязательное местоположение"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Опции"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Область вывода заполнена"
},
- "Output Device": {
- "Output Device": ""
- },
"Output Devices": {
"Output Devices": "Устройства вывода"
},
@@ -5184,16 +5307,16 @@
"Override global layout settings for this output": "Переопределить глобальные настройки макета для этого выхода"
},
"Override global transparency for Notepad": {
- "Override global transparency for Notepad": ""
+ "Override global transparency for Notepad": "Переопределить глобальную прозрачность для Блокнота"
},
"Override terminal with a custom command or script": {
- "Override terminal with a custom command or script": ""
+ "Override terminal with a custom command or script": "Переопределить терминал пользовательской командой или скриптом"
},
"Override the global shadow with per-bar settings": {
- "Override the global shadow with per-bar settings": ""
+ "Override the global shadow with per-bar settings": "Переопределить глобальную тень настройками для каждой панели"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "Переопределить размер отступа всплывающего окна, когда автоматический режим отключён"
},
"Overrides": {
"Overrides": "Переопределения"
@@ -5208,25 +5331,25 @@
"Overwrite": "Перезаписать"
},
"Owner: %1": {
- "Owner: %1": ""
+ "Owner: %1": "Владелец: %1"
},
"PAM already provides fingerprint auth. Enable this to show it at login.": {
- "PAM already provides fingerprint auth. Enable this to show it at login.": ""
+ "PAM already provides fingerprint auth. Enable this to show it at login.": "PAM уже обеспечивает аутентификацию по отпечатку пальца. Включите эту опцию, чтобы отображать её при входе."
},
"PAM already provides security-key auth. Enable this to show it at login.": {
- "PAM already provides security-key auth. Enable this to show it at login.": ""
+ "PAM already provides security-key auth. Enable this to show it at login.": "PAM уже обеспечивает аутентификацию по ключу безопасности. Включите эту опцию, чтобы отображать её при входе."
},
"PAM provides fingerprint auth, but availability could not be confirmed.": {
- "PAM provides fingerprint auth, but availability could not be confirmed.": ""
+ "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM обеспечивает аутентификацию по отпечатку пальца, но её доступность не удалось подтвердить."
},
"PAM provides fingerprint auth, but no prints are enrolled yet.": {
- "PAM provides fingerprint auth, but no prints are enrolled yet.": ""
+ "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM обеспечивает аутентификацию по отпечатку пальца, но ни один отпечаток ещё не зарегистрирован."
},
"PAM provides fingerprint auth, but no reader was detected.": {
- "PAM provides fingerprint auth, but no reader was detected.": ""
+ "PAM provides fingerprint auth, but no reader was detected.": "PAM обеспечивает аутентификацию по отпечатку пальца, но сканер не обнаружен."
},
"PDF Reader": {
- "PDF Reader": ""
+ "PDF Reader": "Просмотр PDF"
},
"PIN": {
"PIN": "PIN"
@@ -5238,7 +5361,7 @@
"Pad Hours": "Пад часы"
},
"Pad hours (02:00 vs 2:00)": {
- "Pad hours (02:00 vs 2:00)": ""
+ "Pad hours (02:00 vs 2:00)": "Дополнять часы нулями (02:00 вместо 2:00)"
},
"Padding": {
"Padding": "Отступ"
@@ -5280,28 +5403,28 @@
"Password": "Пароль"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "Пароль не может быть пустым"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "Сбой смены пароля (код выхода %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "Пароль установлен"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "Пароль обновлён"
},
"Password...": {
- "Password...": ""
+ "Password...": "Пароль..."
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "Пароли не совпадают."
},
"Paste": {
"Paste": "Вставить"
},
"Path to a video file or folder containing videos": {
- "Path to a video file or folder containing videos": ""
+ "Path to a video file or folder containing videos": "Путь к видеофайлу или папке с видео"
},
"Pattern": {
"Pattern": "Шаблон"
@@ -5337,7 +5460,7 @@
"Performance": "Производительность"
},
"Permanently delete %1 item(s)? This cannot be undone.": {
- "Permanently delete %1 item(s)? This cannot be undone.": ""
+ "Permanently delete %1 item(s)? This cannot be undone.": "Безвозвратно удалить %1 элемент(ов)? Это действие нельзя отменить."
},
"Permission denied to set profile image.": {
"Permission denied to set profile image.": "Отказано в доступе при установки изображения профиля."
@@ -5355,16 +5478,16 @@
"Phone number": "Номер телефона"
},
"Pick a different file manager in Settings → Dock → Trash.": {
- "Pick a different file manager in Settings → Dock → Trash.": ""
+ "Pick a different file manager in Settings → Dock → Trash.": "Выберите другой файловый менеджер в Настройки → Док → Корзина."
},
"Pick a different random video each time from the same folder": {
- "Pick a different random video each time from the same folder": ""
+ "Pick a different random video each time from the same folder": "Каждый раз выбирать другое случайное видео из той же папки"
},
"Pick a terminal in Settings → Launcher (or set $TERMINAL).": {
- "Pick a terminal in Settings → Launcher (or set $TERMINAL).": ""
+ "Pick a terminal in Settings → Launcher (or set $TERMINAL).": "Выберите терминал в Настройки → Лаунчер (или установите $TERMINAL)."
},
"Pick how long to pause notifications": {
- "Pick how long to pause notifications": ""
+ "Pick how long to pause notifications": "Выберите, на сколько приостановить уведомления"
},
"Pictures": {
"Pictures": "Картинки"
@@ -5394,7 +5517,7 @@
"Pixelate": "Стирание"
},
"Place a trash bin at the end of the dock": {
- "Place a trash bin at the end of the dock": ""
+ "Place a trash bin at the end of the dock": "Разместить корзину в конце дока"
},
"Place plugin directories here. Each plugin should have a plugin.json manifest file.": {
"Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Поместите каталоги дополнений здесь. Каждое дополнение должно иметь файл plugin.json в качестве манифеста."
@@ -5403,16 +5526,16 @@
"Place plugins in %1": "Поместите плагины в %1"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "Разместить панель на слое оверлея Wayland"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "Разместить док на слое оверлея Wayland"
},
"Play a video when the screen locks.": {
- "Play a video when the screen locks.": ""
+ "Play a video when the screen locks.": "Воспроизводить видео при блокировке экрана."
},
"Play sound after logging in": {
- "Play sound after logging in": ""
+ "Play sound after logging in": "Воспроизводить звук после входа в систему"
},
"Play sound when new notification arrives": {
"Play sound when new notification arrives": "Проигрывать звук при новом уведомление"
@@ -5430,19 +5553,19 @@
"Playback": "Воспроизведение"
},
"Playback error: ": {
- "Playback error: ": ""
+ "Playback error: ": "Ошибка воспроизведения: "
},
"Plays audio files": {
- "Plays audio files": ""
+ "Plays audio files": "Воспроизводит аудиофайлы"
},
"Plays video files": {
- "Plays video files": ""
+ "Plays video files": "Воспроизводит видеофайлы"
},
"Please wait...": {
"Please wait...": "Пожалуйста, подождите…"
},
"Please write a name for your new %1 session": {
- "Please write a name for your new %1 session": ""
+ "Please write a name for your new %1 session": "Пожалуйста, введите имя для нового сеанса %1"
},
"Plugged In": {
"Plugged In": "Подключено"
@@ -5463,22 +5586,22 @@
"Plugin Visibility": "Видимость плагинов"
},
"Plugin disabled: %1": {
- "Plugin disabled: %1": ""
+ "Plugin disabled: %1": "Плагин отключён: %1"
},
"Plugin enabled: %1": {
- "Plugin enabled: %1": ""
+ "Plugin enabled: %1": "Плагин включён: %1"
},
"Plugin is disabled - enable in Plugins settings to use": {
"Plugin is disabled - enable in Plugins settings to use": "Дополнение отключено - для использования включите в настройках дополнений"
},
"Plugin reloaded: %1": {
- "Plugin reloaded: %1": ""
+ "Plugin reloaded: %1": "Плагин перезагружен: %1"
},
"Plugin uninstalled: %1": {
- "Plugin uninstalled: %1": ""
+ "Plugin uninstalled: %1": "Плагин удалён: %1"
},
"Plugin updated: %1": {
- "Plugin updated: %1": ""
+ "Plugin updated: %1": "Плагин обновлён: %1"
},
"Plugins": {
"Plugins": "Дополнения"
@@ -5487,10 +5610,10 @@
"Pointer": "Указатель"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "Интеграция с Polkit отключена. Управление пользователями требует Polkit для повышения привилегий."
},
"Popout Shadows": {
- "Popout Shadows": ""
+ "Popout Shadows": "Тени всплывающих окон"
},
"Popouts": {
"Popouts": "Всплывающие окна"
@@ -5507,14 +5630,11 @@
"Popup Shadow": {
"Popup Shadow": "Тень всплывающего"
},
- "Popup Transparency": {
- "Popup Transparency": "Прозрачность Всплывающего Окна"
- },
"Popup behavior, position": {
"Popup behavior, position": "Поведение всплывающих окон, позиция"
},
"Port": {
- "Port": ""
+ "Port": "Порт"
},
"Portal": {
"Portal": "Стирание"
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Настройка меню питания"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Завершить Работу"
},
@@ -5568,10 +5691,10 @@
"Power source": "Источник питания"
},
"Pre-fill the last successful username on the greeter": {
- "Pre-fill the last successful username on the greeter": ""
+ "Pre-fill the last successful username on the greeter": "Предварительно заполнять последнее успешное имя пользователя на экране приветствия"
},
"Pre-select the last used session on the greeter": {
- "Pre-select the last used session on the greeter": ""
+ "Pre-select the last used session on the greeter": "Предварительно выбирать последнюю использованную сессию на экране приветствия"
},
"Precip": {
"Precip": "Осадки"
@@ -5589,7 +5712,7 @@
"Preset Widths (%)": "Предустановленные ширины (%)"
},
"Press 'n' or click 'New Session' to create one": {
- "Press 'n' or click 'New Session' to create one": ""
+ "Press 'n' or click 'New Session' to create one": "Нажмите 'n' или нажмите «Новый сеанс», чтобы создать его"
},
"Press Enter and the audio system will restart to apply the change": {
"Press Enter and the audio system will restart to apply the change": "Нажмите Enter, и аудиосистема перезапустится для применения изменений"
@@ -5637,7 +5760,7 @@
"Printer name (no spaces)": "Имя принтера (без пробелов)"
},
"Printer reachable": {
- "Printer reachable": ""
+ "Printer reachable": "Принтер доступен"
},
"Printers": {
"Printers": "Принтеры"
@@ -5694,7 +5817,7 @@
"Profile not found": "Профиль не найден"
},
"Profile not found in monitors.json": {
- "Profile not found in monitors.json": ""
+ "Profile not found in monitors.json": "Профиль не найден в monitors.json"
},
"Profile saved: %1": {
"Profile saved: %1": "Профиль сохранён: %1"
@@ -5702,20 +5825,23 @@
"Protocol": {
"Protocol": "Протокол"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
- "Qt colors applied successfully": ""
+ "Qt colors applied successfully": "Цвета Qt успешно применены"
},
"Qt: distance-field renderer.": {
- "Qt: distance-field renderer.": ""
+ "Qt: distance-field renderer.": "Qt: рендерер distance-field."
},
"QtMultimedia is not available": {
- "QtMultimedia is not available": ""
+ "QtMultimedia is not available": "QtMultimedia недоступно"
},
"QtMultimedia is not available - video screensaver requires qt multimedia services": {
- "QtMultimedia is not available - video screensaver requires qt multimedia services": ""
+ "QtMultimedia is not available - video screensaver requires qt multimedia services": "QtMultimedia недоступно — видеозаставка требует мультимедийных служб qt"
},
"Quality": {
- "Quality": ""
+ "Quality": "Качество"
},
"Quick Access": {
"Quick Access": "Быстрый доступ"
@@ -5757,7 +5883,10 @@
"Rate": "Частота"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "Повторите пароль"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "Прочитано:"
@@ -5769,7 +5898,7 @@
"Reboot": "Перезагрузка"
},
"Recent": {
- "Recent": ""
+ "Recent": "Недавние"
},
"Recent Colors": {
"Recent Colors": "Недавние Цвета"
@@ -5787,13 +5916,13 @@
"Refresh Weather": "Обновить погоду"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "Обновление…"
},
"Regex": {
"Regex": "Регулярное выражение"
},
"Regular": {
- "Regular": ""
+ "Regular": "Обычный"
},
"Reject": {
"Reject": "Отклонить"
@@ -5808,73 +5937,76 @@
"Reload Plugin": "Перезагрузить плагин"
},
"Remaining": {
- "Remaining": ""
+ "Remaining": "Осталось"
},
"Remaining / Total": {
- "Remaining / Total": ""
+ "Remaining / Total": "Осталось / Всего"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "Запоминать последний режим"
},
"Remember Last Query": {
- "Remember Last Query": ""
+ "Remember Last Query": "Запоминать последний запрос"
},
"Remember last session": {
- "Remember last session": ""
+ "Remember last session": "Запомнить последнюю сессию"
},
"Remember last user": {
- "Remember last user": ""
+ "Remember last user": "Запомнить последнего пользователя"
},
"Remove": {
"Remove": "Удалить"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "Удалить «%1» из группы %2?"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "Удалить сочетание клавиш?"
},
"Remove Widget Padding": {
"Remove Widget Padding": "Убрать отступ виджета"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "Убрать права администратора"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "Убрать права администратора?"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "Убрать закругление углов панели"
},
"Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Убрать отступы и границу когда окна развёрнуты"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "Убрать доступ экрану входа?"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "Убрать доступ экрану входа"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "Убрать внутренние отступы у всех виджетов"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "Удалить сочетание клавиш %1?"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "Удалить сочетание клавиш %1? Запись об отмене привязки будет сохранена в dms/binds-user.lua, чтобы оно оставалось удалённым при обновлениях DMS."
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "Права администратора убраны"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "Доступ к экрану входа убран"
},
"Rename": {
"Rename": "Переименовать"
},
"Rename Session": {
- "Rename Session": ""
+ "Rename Session": "Переименовать сеанс"
},
"Rename Workspace": {
"Rename Workspace": "Переименовать рабочую область"
@@ -5895,7 +6027,7 @@
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Требовать удержания кнопки/клавиши для подтверждения выключения, перезапуска, приостановки, гибернации и выхода"
},
"Required plugin: ": {
- "Required plugin: ": ""
+ "Required plugin: ": "Необходимый плагин: "
},
"Requires %1": {
"Requires %1": "Требуется %1"
@@ -5907,17 +6039,20 @@
"Requires DMS %1": "Требуется DMS %1"
},
"Requires DMS server with sysupdate capability": {
- "Requires DMS server with sysupdate capability": ""
+ "Requires DMS server with sysupdate capability": "Требуется сервер DMS с поддержкой sysupdate"
},
"Requires DWL compositor": {
"Requires DWL compositor": "Требуется композитор DWL"
},
"Requires a newer version of Quickshell": {
- "Requires a newer version of Quickshell": ""
+ "Requires a newer version of Quickshell": "требуется более новая версия Quickshell"
},
"Requires night mode support": {
"Requires night mode support": "Требуется поддержка ночного режима"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Сбросить"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "Сбросить размер"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "Сбросить по умолчанию?"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "Сбросить по умолчанию"
},
"Reset to default name": {
"Reset to default name": "Сбросить к имени по умолчанию"
@@ -5955,16 +6090,16 @@
"Restarting audio system...": "Перезапуск аудиосистемы..."
},
"Restore Special Workspace Windows": {
- "Restore Special Workspace Windows": ""
+ "Restore Special Workspace Windows": "Восстановить окна специального рабочего пространства"
},
"Restore the last selected mode (tab) when the launcher is opened": {
- "Restore the last selected mode (tab) when the launcher is opened": ""
+ "Restore the last selected mode (tab) when the launcher is opened": "Восстанавливать последний выбранный режим (вкладку) при открытии лаунчера"
},
"Resume": {
"Resume": "Продолжить"
},
"Reveal the arcs where surfaces meet the frame": {
- "Reveal the arcs where surfaces meet the frame": ""
+ "Reveal the arcs where surfaces meet the frame": "Показывать дуги в местах соприкосновения элементов с рамкой"
},
"Reverse Scrolling Direction": {
"Reverse Scrolling Direction": "Обратить направление прокрутки"
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Правила (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Запустить ещё раз"
},
@@ -6042,7 +6180,7 @@
"Run a shell command (e.g., notify-send)": "Запустить команду оболочки (например, notify-send)"
},
"Run paru/yay with AUR enabled when 'Update All' is clicked.": {
- "Run paru/yay with AUR enabled when 'Update All' is clicked.": ""
+ "Run paru/yay with AUR enabled when 'Update All' is clicked.": "Запускать paru/yay с включённым AUR при нажатии «Обновить всё»."
},
"Running Apps": {
"Running Apps": "Запущенные Приложения"
@@ -6051,10 +6189,10 @@
"Running Apps Settings": "Настройка Запущенных Приложений"
},
"Running greeter sync…": {
- "Running greeter sync…": ""
+ "Running greeter sync…": "Выполняется синхронизация экрана приветствия…"
},
"Running in terminal": {
- "Running in terminal": ""
+ "Running in terminal": "Выполняется в терминале"
},
"SDR Brightness": {
"SDR Brightness": "Яркость SDR"
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Сохранить"
},
@@ -6075,10 +6216,10 @@
"Save QR Code": "Сохранить QR-код"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "Сохранить и закрыть"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "Сохранить и вставить"
},
"Save and switch between display configurations": {
"Save and switch between display configurations": "Сохранить и переключаться между конфигурациями дисплеев"
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Счёт"
},
- "Screen Sharing": {
- "Screen Sharing": "Демонстрация экрана"
- },
"Screen sharing": {
"Screen sharing": "Демонстрация экрана"
},
@@ -6153,7 +6291,7 @@
"Scroll Factor": "Фактор прокрутки"
},
"Scroll GitHub": {
- "Scroll GitHub": ""
+ "Scroll GitHub": "Прокрутка GitHub"
},
"Scroll Wheel": {
"Scroll Wheel": "Колесо прокрутки"
@@ -6176,17 +6314,20 @@
"Search Options": {
"Search Options": "Опции поиска"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Поиск по комбинации клавиш, описанию или имени действия.\n\nДействие по умолчанию копирует комбинацию клавиш в буфер обмена.\nЩёлкните ПКМ или нажмите стрелку вправо для закрепления часто используемых комбинаций клавиш — они будут отображаться вверху при отсутствии поиска."
},
"Search devices...": {
- "Search devices...": ""
+ "Search devices...": "Поиск устройств..."
},
"Search for a location...": {
"Search for a location...": "Поиск местоположения..."
},
"Search installed plugins...": {
- "Search installed plugins...": ""
+ "Search installed plugins...": "Поиск установленных плагинов..."
},
"Search keybinds...": {
"Search keybinds...": "Поиск комбинаций клавиш..."
@@ -6201,7 +6342,7 @@
"Search processes...": "Поиск процессов..."
},
"Search sessions...": {
- "Search sessions...": ""
+ "Search sessions...": "Поиск сеансов..."
},
"Search themes...": {
"Search themes...": "Поиск тем..."
@@ -6213,13 +6354,13 @@
"Search...": "Поиск..."
},
"Searching": {
- "Searching": ""
+ "Searching": "Поиск"
},
"Searching...": {
"Searching...": "Поиск..."
},
"Second Factor (AND)": {
- "Second Factor (AND)": ""
+ "Second Factor (AND)": "Второй фактор (И)"
},
"Secondary": {
"Secondary": "Вторичный"
@@ -6234,13 +6375,13 @@
"Security & privacy": "Безопасность и конфиденциальность"
},
"Security key mode": {
- "Security key mode": ""
+ "Security key mode": "Режим ключа безопасности"
},
"Security-key availability could not be confirmed.": {
- "Security-key availability could not be confirmed.": ""
+ "Security-key availability could not be confirmed.": "Не удалось подтвердить доступность ключа безопасности."
},
"Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.": {
- "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.": ""
+ "Security-key support was detected, but no registered key was found yet. You can enable this now and register one later.": "Обнаружена поддержка ключей безопасности, но зарегистрированный ключ пока не найден. Вы можете включить эту опцию сейчас и зарегистрировать ключ позже."
},
"Select": {
"Select": "Выбрать"
@@ -6267,7 +6408,7 @@
"Select Profile Image": "Выберите изображение профиля"
},
"Select Video or Folder": {
- "Select Video or Folder": ""
+ "Select Video or Folder": "Выбрать видео или папку"
},
"Select Wallpaper": {
"Select Wallpaper": "Выберите обои для рабочего стола"
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "Выбрать цвет из палитры или использовать пользовательские ползунки"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Выбрать виджет для добавления на рабочий стол. Каждый виджет это отдельный экземпляр со своими настройками."
},
@@ -6288,7 +6432,7 @@
"Select a window...": "Выбрать окно..."
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "Выберите активную сессию для переключения. Текущая сессия продолжит работать в фоновом режиме."
},
"Select an image file...": {
"Select an image file...": "Выбрать изображение..."
@@ -6309,7 +6453,7 @@
"Select font weight for UI text": "Выбрать насыщенность шрифта для текста UI"
},
"Select greeter background image": {
- "Select greeter background image": ""
+ "Select greeter background image": "Выбрать фоновое изображение экрана приветствия"
},
"Select monitor to configure wallpaper": {
"Select monitor to configure wallpaper": "Выберите монитор для настройки обоев"
@@ -6330,7 +6474,7 @@
"Select the palette algorithm used for wallpaper-based colors": "Выбрать алгоритм палитры, используемый для цветов на основе обоев"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "Выберите пользователя…"
},
"Select which keybind providers to include": {
"Select which keybind providers to include": "Выбрать, какие источники комбинаций клавиш включать"
@@ -6360,7 +6504,7 @@
"Sending": "Отправка"
},
"Separate": {
- "Separate": ""
+ "Separate": "Раздельно"
},
"Separator": {
"Separator": "Разделитель"
@@ -6369,7 +6513,7 @@
"Server": "Сервер"
},
"Session Filter": {
- "Session Filter": ""
+ "Session Filter": "Фильтр сеансов"
},
"Set Custom Device Name": {
"Set Custom Device Name": "Установить пользовательское имя устройства"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "Установить разные обои для светлого и тёмного режима"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "Установить начальный пароль"
},
"Set key and action to save": {
"Set key and action to save": "Установить клавишу и действие для сохранения"
@@ -6399,13 +6543,13 @@
"Set notification rules": "Установить правила уведомлений"
},
"Setting": {
- "Setting": ""
+ "Setting": "Параметр"
},
"Settings": {
"Settings": "Настройки"
},
"Settings Search": {
- "Settings Search": ""
+ "Settings Search": "Поиск по настройкам"
},
"Settings are read-only. Changes will not persist.": {
"Settings are read-only. Changes will not persist.": "Настройки доступны только для чтения. Изменения не будут сохранены."
@@ -6414,31 +6558,31 @@
"Setup": "Настройка"
},
"Shadow Color": {
- "Shadow Color": ""
+ "Shadow Color": "Цвет тени"
},
"Shadow Intensity": {
- "Shadow Intensity": ""
+ "Shadow Intensity": "Интенсивность тени"
},
"Shadow Opacity": {
- "Shadow Opacity": ""
+ "Shadow Opacity": "Непрозрачность тени"
},
"Shadow Override": {
- "Shadow Override": ""
+ "Shadow Override": "Переопределение тени"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "Радиус размытия тени в пикселях"
},
"Shadow elevation on bars and panels": {
- "Shadow elevation on bars and panels": ""
+ "Shadow elevation on bars and panels": "Высота тени на барах/панелях"
},
"Shadow elevation on modals and dialogs": {
- "Shadow elevation on modals and dialogs": ""
+ "Shadow elevation on modals and dialogs": "Высота тени на модальных и диалоговых окнах"
},
"Shadow elevation on popouts, OSDs, and dropdowns": {
- "Shadow elevation on popouts, OSDs, and dropdowns": ""
+ "Shadow elevation on popouts, OSDs, and dropdowns": "Высота тени на всплывающих окнах, OSD и выпадающих списках"
},
"Shadows": {
- "Shadows": ""
+ "Shadows": "Тени"
},
"Share": {
"Share": "Поделиться"
@@ -6458,26 +6602,17 @@
"Shell": {
"Shell": "Оболочка"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Очистить All • Esc: Закрыть"
- },
"Shift+Enter to copy": {
- "Shift+Enter to copy": ""
+ "Shift+Enter to copy": "Shift+Enter, чтобы скопировать"
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter для вставки"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "↑/↓: Навигация • Enter: Вставить • Del: Удалить • F10: Справка"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Вставить • Shift+Del: Очистить всё • Esc: Закрыть"
- },
"Short": {
"Short": "Короткий"
},
"Shortcut (%1)": {
- "Shortcut (%1)": ""
+ "Shortcut (%1)": "Сочетание клавиш (%1)"
},
"Shortcuts": {
"Shortcuts": "Ярлыки"
@@ -6495,7 +6630,7 @@
"Show All Tags": "Показать все тэги"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "Показывать чипы «Все», «Приложения», «Файлы» и «Плагины» рядом с полем ввода панели Spotlight."
},
"Show Badge": {
"Show Badge": "Показать значок"
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Показать влажность"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Показать кнопку лаунчера"
},
@@ -6573,10 +6711,10 @@
"Show Memory Graph": "Показать график памяти"
},
"Show Memory in GB": {
- "Show Memory in GB": ""
+ "Show Memory in GB": "Показать объём памяти в GB"
},
"Show Mode Chips": {
- "Show Mode Chips": ""
+ "Show Mode Chips": "Показывать чипы режимов"
},
"Show Network": {
"Show Network": "Показать сеть"
@@ -6627,10 +6765,10 @@
"Show Suspend": "Показать приостановку"
},
"Show Swap": {
- "Show Swap": ""
+ "Show Swap": "Показать Swap"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "Показывать «Сменить пользователя»"
},
"Show System Date": {
"Show System Date": "Показать системную дату"
@@ -6645,13 +6783,13 @@
"Show Top Processes": "Показать топ процессов"
},
"Show Trash in Dock": {
- "Show Trash in Dock": ""
+ "Show Trash in Dock": "Показывать корзину в доке"
},
"Show Weather Condition": {
"Show Weather Condition": "Показать условие погоды"
},
"Show Week Number": {
- "Show Week Number": ""
+ "Show Week Number": "Показывать номер недели"
},
"Show Welcome": {
"Show Welcome": "Показать приветствие"
@@ -6681,16 +6819,16 @@
"Show dock when floating windows don't overlap its area": "Показывать док, когда плавающие окна не перекрывают его область"
},
"Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": {
- "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": ""
+ "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": "Показывать отбрасываемую тень на всплывающих уведомлениях. Требуется включение M3 Elevation в «Темах и цветах»."
},
"Show during Niri overview": {
- "Show during Niri overview": ""
+ "Show during Niri overview": "Показывать в режиме обзора Niri"
},
"Show foreground surfaces on blurred panels for stronger contrast": {
- "Show foreground surfaces on blurred panels for stronger contrast": ""
+ "Show foreground surfaces on blurred panels for stronger contrast": "Показывать элементы переднего плана на размытых панелях для лучшего контраста"
},
"Show in GB": {
- "Show in GB": ""
+ "Show in GB": "Показывать в GB"
},
"Show launcher overlay when typing in Niri overview. Disable to use another launcher.": {
"Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Показывать наложение лаунчера при вводе в обзоре Niri. Отключите для использования другого лаунчера."
@@ -6698,11 +6836,14 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Показывать вкладки режимов и подсказки клавиатуры внизу."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
- "Show notification popups only on the currently focused monitor": ""
+ "Show notification popups only on the currently focused monitor": "Показывать всплывающие уведомления только на мониторе в фокусе"
},
"Show notifications only on the currently focused monitor": {
- "Show notifications only on the currently focused monitor": ""
+ "Show notifications only on the currently focused monitor": "Показывать уведомления только на мониторе в фокусе"
},
"Show on Last Display": {
"Show on Last Display": "Показать на последнем дисплее"
@@ -6749,20 +6890,17 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Показывать on-screen отображение при изменении громкости"
},
- "Show seconds": {
- "Show seconds": ""
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "Показывать панель только когда нет открытых окон"
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "Показывать панель, когда активен обзор niri"
},
"Show weather information in top bar and control center": {
"Show weather information in top bar and control center": "Показывать информацию о погоде в верхней панели и центре управления"
},
"Show week number in the calendar": {
- "Show week number in the calendar": ""
+ "Show week number in the calendar": "Показывать номер недели в календаре"
},
"Show workspace index numbers in the top bar workspace switcher": {
"Show workspace index numbers in the top bar workspace switcher": "Показывать номера индексов рабочих пространств в переключателе рабочих пространств верхней панели"
@@ -6786,7 +6924,7 @@
"Shows when microphone, camera, or screen sharing is active": "Показывает, когда микрофон, камера или демонстрация экрана активны"
},
"Shrink the media widget to fit shorter song titles while still respecting the configured maximum size": {
- "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size": ""
+ "Shrink the media widget to fit shorter song titles while still respecting the configured maximum size": "Уменьшать медиавиджет под короткие названия треков, учитывая настроенный максимальный размер"
},
"Shutdown": {
"Shutdown": "Выключение"
@@ -6798,10 +6936,10 @@
"Signal:": "Сигнал:"
},
"Silence for a while": {
- "Silence for a while": ""
+ "Silence for a while": "Приглушить на время"
},
"Silence notifications": {
- "Silence notifications": ""
+ "Silence notifications": "Приглушить уведомления"
},
"Size": {
"Size": "Размер"
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Пропустить настройку"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Маленький"
},
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "Звуки"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "Расстояние между панелью и краями экрана"
},
"Space between windows": {
"Space between windows": "Расстояние между окнами"
@@ -6885,16 +7029,16 @@
"Spool Area Full": "Область очереди заполнена"
},
"Spotlight": {
- "Spotlight": ""
+ "Spotlight": "Spotlight"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "Панель Spotlight"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "Сочетание клавиш для панели Spotlight"
},
"Spotlight Search": {
- "Spotlight Search": ""
+ "Spotlight Search": "Поиск Spotlight"
},
"Square Corners": {
"Square Corners": "Прямые углы"
@@ -6906,7 +7050,7 @@
"Standard": "Стандарт"
},
"Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": {
- "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": ""
+ "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": "Стандартный: классический Material Design 3 — панели выдвигаются снизу с лёгким масштабированием. Стандартный стиль DMS."
},
"Start": {
"Start": "Старт"
@@ -6939,20 +7083,17 @@
"Stretch": "Плитка вертикально"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "Растягивать значки виджетов по всей доступной высоте панели"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "Растягивать текст виджетов по всей доступной высоте панели"
},
"Strict auto-hide": {
- "Strict auto-hide": ""
+ "Strict auto-hide": "Строгое автоскрытие"
},
"Stripes": {
"Stripes": "Стирание"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "Заголовок"
},
@@ -6963,7 +7104,7 @@
"Sunset": "Закат"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "Подавлять дублирующиеся уведомления"
},
"Suppress notification popups while enabled": {
"Suppress notification popups while enabled": "Подавить всплывающие уведомления, пока включено"
@@ -6972,19 +7113,19 @@
"Surface": "Поверхность"
},
"Surface Behavior": {
- "Surface Behavior": ""
+ "Surface Behavior": "Поведение поверхностей"
},
"Surface Opacity": {
- "Surface Opacity": ""
+ "Surface Opacity": "Непрозрачность поверхностей"
},
"Surface Variant": {
"Surface Variant": "Вариант поверхности"
},
"Surfaces emerge flush from the bar": {
- "Surfaces emerge flush from the bar": ""
+ "Surfaces emerge flush from the bar": "Поверхности выдвигаются вплотную к бару"
},
"Surfaces float independently of the frame": {
- "Surfaces float independently of the frame": ""
+ "Surfaces float independently of the frame": "Поверхности парят независимо от рамки"
},
"Suspend": {
"Suspend": "Приостановить"
@@ -6999,19 +7140,19 @@
"Suspend then Hibernate": "Приостановить затем гибернация"
},
"Sway Website": {
- "Sway Website": ""
+ "Sway Website": "Сайт Sway"
},
"Switch User": {
"Switch User": "Переключить пользователя"
},
"Switch between display configurations": {
- "Switch between display configurations": ""
+ "Switch between display configurations": "Переключение между конфигурациями дисплеев"
},
"Switch to power profile": {
"Switch to power profile": "Переключиться на профиль питания"
},
"Sync": {
- "Sync": ""
+ "Sync": "Синхронизация"
},
"Sync Mode with Portal": {
"Sync Mode with Portal": "Синхронизировать режим с Portal"
@@ -7023,16 +7164,16 @@
"Sync Position Across Screens": "Синхронизировать позицию на всех экранах"
},
"Sync completed successfully.": {
- "Sync completed successfully.": ""
+ "Sync completed successfully.": "Синхронизация завершена успешно."
},
"Sync dark mode with settings portals for system-wide theme hints": {
"Sync dark mode with settings portals for system-wide theme hints": "Синхронизировать тёмный режим с порталами настроек для общесистемных подсказок темы"
},
"Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": {
- "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": ""
+ "Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": "Синхронизация не удалась в фоновом режиме. Запуск в режиме терминала для интерактивной аутентификации."
},
"Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": {
- "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": ""
+ "Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": "Для синхронизации требуются права sudo. Открытие терминала для ввода пароля или сканирования отпечатка пальца."
},
"System": {
"System": "Система"
@@ -7062,7 +7203,7 @@
"System Tray": "Системный трей"
},
"System Tray Icon Tint": {
- "System Tray Icon Tint": ""
+ "System Tray Icon Tint": "Оттенок значков системного трея"
},
"System Update": {
"System Update": "Обновление системы"
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Системные всплывающие уведомления"
},
- "System update custom command": {
- "System update custom command": "Пользовательская команда обновления системы"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Вкладка"
@@ -7095,52 +7236,49 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Навигация • ←→↑↓: Навигация сетки • Enter/Space: Выбрать"
},
"Tags: %1": {
- "Tags: %1": ""
+ "Tags: %1": "Теги: %1"
},
"Tailscale": {
- "Tailscale": ""
+ "Tailscale": "Tailscale"
},
"Tailscale Network": {
- "Tailscale Network": ""
+ "Tailscale Network": "Сеть Tailscale"
},
"Tailscale not available": {
- "Tailscale not available": ""
+ "Tailscale not available": "Tailscale недоступен"
},
"Terminal": {
- "Terminal": ""
+ "Terminal": "Терминал"
},
"Terminal additional parameters": {
- "Terminal additional parameters": ""
- },
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Пользовательские дополнительные параметры терминала"
+ "Terminal additional parameters": "Дополнительные параметры терминала"
},
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
- "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
+ "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "Сбой запуска терминала. Установите один из поддерживаемых эмуляторов терминала или запустите 'dms auth sync' вручную."
},
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
- "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
+ "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Сбой запуска терминала. Установите один из поддерживаемых эмуляторов терминала или запустите 'dms greeter sync' вручную."
},
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
- "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
+ "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "Запущен терминал для резервного режима. Завершите настройку аутентификации в нём; окно закроется автоматически по окончании."
},
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
- "Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
+ "Terminal fallback opened. Complete sync there; it will close automatically when done.": "Запущен терминал для резервного режима. Завершите синхронизацию в нём; окно закроется автоматически по окончании."
},
"Terminal multiplexer backend to use": {
- "Terminal multiplexer backend to use": ""
+ "Terminal multiplexer backend to use": "Используемый бэкенд терминального мультиплексора"
},
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
- "Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
+ "Terminal opened. Complete authentication setup there; it will close automatically when done.": "Терминал открыт. Завершите настройку аутентификации в нём; окно закроется автоматически по окончании."
},
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
- "Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
+ "Terminal opened. Complete sync authentication there; it will close automatically when done.": "Терминал открыт. Завершите аутентификацию для синхронизации в нём; окно закроется автоматически по окончании."
},
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": "Терминалы — всегда использовать тёмную тему"
},
"Test Connection": {
- "Test Connection": ""
+ "Test Connection": "Проверить подключение"
},
"Test Page": {
"Test Page": "Тестовая страница"
@@ -7149,19 +7287,19 @@
"Test page sent to printer": "Тестовая страница отправлена на принтер"
},
"Testing...": {
- "Testing...": ""
+ "Testing...": "Проверка..."
},
"Text": {
"Text": "Текст"
},
"Text Color": {
- "Text Color": ""
+ "Text Color": "Цвет текста"
},
"Text Editor": {
- "Text Editor": ""
+ "Text Editor": "Текстовый редактор"
},
"Text Rendering": {
- "Text Rendering": ""
+ "Text Rendering": "Отрисовка текста"
},
"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 для использования этой функции."
@@ -7173,11 +7311,14 @@
"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).": "Приведённые ниже настройки изменят ваши настройки GTK и Qt. Если вы хотите сохранить текущие конфигурации, сделайте их резервную копию (qt5ct.conf|qt6ct.conf и ~/.config/gtk-3.0|gtk-4.0)."
},
"The custom command used when attaching to sessions (receives the session name as the first argument)": {
- "The custom command used when attaching to sessions (receives the session name as the first argument)": ""
+ "The custom command used when attaching to sessions (receives the session name as the first argument)": "Пользовательская команда, используемая при подключении к сеансам (принимает имя сеанса в качестве первого аргумента)"
},
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "Очередь заданий этого принтера пуста"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Темы и цвета"
},
@@ -7188,22 +7329,25 @@
"Theme Registry": "Реестр тем"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "Цвет темы, используемый для границы"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "Цвет темы, используемый для контура виджета"
},
"Theme worker failed (%1)": {
- "Theme worker failed (%1)": ""
+ "Theme worker failed (%1)": "Сбой обработчика темы (%1)"
},
"Themes": {
"Themes": "Темы"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Толщина"
},
"Thin": {
- "Thin": ""
+ "Thin": "Тонкий"
},
"Third-Party Plugin Warning": {
"Third-Party Plugin Warning": "Предупреждение о стороннем плагине"
@@ -7215,13 +7359,25 @@
"This bind is overridden by config.kdl": "Эта комбинация клавиш переопределена в config.kdl"
},
"This device": {
- "This device": ""
+ "This device": "Это устройство"
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
},
"This may take a few seconds": {
"This may take a few seconds": "Это может занять несколько секунд"
},
"This output is disabled in the current profile": {
- "This output is disabled in the current profile": ""
+ "This output is disabled in the current profile": "Этот выход отключён в текущем профиле"
},
"This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": {
"This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": "Этот плагин не имеет разрешения 'settings_write'.\n\nДобавьте \"permissions\": [\"settings_read\", \"settings_write\"] в plugin.json"
@@ -7266,7 +7422,7 @@
"Time": "Время"
},
"Time & Date Locale": {
- "Time & Date Locale": ""
+ "Time & Date Locale": "Локаль времени и даты"
},
"Time & Weather": {
"Time & Weather": "Время & Погода"
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "Формат времени"
},
- "Time format": {
- "Time format": ""
- },
"Time remaining: %1": {
"Time remaining: %1": "Осталось времени: %1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "Время ожидания перед скрытием после ухода указателя"
},
"Time until full: %1": {
"Time until full: %1": "Времени до полной зарядки: %1"
@@ -7299,10 +7452,10 @@
"Timeout for normal priority notifications": "Тайм-аут для уведомлений нормального приоритета"
},
"Tint Saturation": {
- "Tint Saturation": ""
+ "Tint Saturation": "Насыщенность оттенка"
},
"Tint Strength": {
- "Tint Strength": ""
+ "Tint Strength": "Интенсивность оттенка"
},
"Title": {
"Title": "Заголовок"
@@ -7314,7 +7467,7 @@
"To Full": "До полной"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "Чтобы войти под другим пользователем, выйдите из системы и выберите учётную запись на экране входа. Для параллельного создания новой сессии необходим экран входа с поддержкой нескольких сессий (greetd-flexiserver / GDM / LightDM)."
},
"To update, run the following command:": {
"To update, run the following command:": "Для обновления, запустите следующую команду:"
@@ -7329,10 +7482,10 @@
"Today": "Сегодня"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "Переключать видимость панели вручную через IPC"
},
"Toggle fonts": {
- "Toggle fonts": ""
+ "Toggle fonts": "Переключить шрифты"
},
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": "Переключить видимость этой конфигурации панели"
@@ -7353,10 +7506,10 @@
"Toner Low": "Тонер заканчивается"
},
"Too many attempts - locked out": {
- "Too many attempts - locked out": ""
+ "Too many attempts - locked out": "Слишком много попыток — вход заблокирован"
},
"Too many failed attempts - account may be locked": {
- "Too many failed attempts - account may be locked": ""
+ "Too many failed attempts - account may be locked": "Слишком много неудачных попыток — учётная запись может быть заблокирована"
},
"Tools": {
"Tools": "Инструменты"
@@ -7365,7 +7518,7 @@
"Top": "Сверху"
},
"Top (Default)": {
- "Top (Default)": ""
+ "Top (Default)": "Сверху (По умолчанию)"
},
"Top Bar Format": {
"Top Bar Format": "Формат верхней панели"
@@ -7386,13 +7539,13 @@
"Top Section": "Верхняя секция"
},
"Total": {
- "Total": ""
+ "Total": "Всего"
},
"Total Jobs": {
"Total Jobs": "Всего заданий"
},
"Touch your security key...": {
- "Touch your security key...": ""
+ "Touch your security key...": "Коснитесь ключа безопасности..."
},
"Transform": {
"Transform": "Преобразовать"
@@ -7404,19 +7557,22 @@
"Transparency": "Прозрачность"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "Прозрачность границы"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "Прозрачность слоя тени"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "Прозрачность контура виджета"
},
"Trash": {
- "Trash": ""
+ "Trash": "Корзина"
},
"Trash command failed (exit %1)": {
- "Trash command failed (exit %1)": ""
+ "Trash command failed (exit %1)": "Сбой команды корзины (код выхода %1)"
+ },
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
},
"Trending GIFs": {
"Trending GIFs": "Трендовые GIF"
@@ -7440,13 +7596,13 @@
"Try a different search": "Попробуйте другой поиск"
},
"Try a different search or switch filters.": {
- "Try a different search or switch filters.": ""
+ "Try a different search or switch filters.": "Попробуйте изменить запрос или переключить фильтры."
},
"Turn off": {
- "Turn off": ""
+ "Turn off": "Выключить"
},
"Turn off Do Not Disturb": {
- "Turn off Do Not Disturb": ""
+ "Turn off Do Not Disturb": "Отключить режим «Не беспокоить»"
},
"Turn off all displays immediately when the lock screen activates": {
"Turn off all displays immediately when the lock screen activates": "Выключить все дисплеи немедленно при активации Lock Screen"
@@ -7455,10 +7611,10 @@
"Turn off monitors after": "Отключить мониторы после"
},
"Turn off monitors after lock": {
- "Turn off monitors after lock": ""
+ "Turn off monitors after lock": "Выключать мониторы после блокировки"
},
"Turn off now": {
- "Turn off now": ""
+ "Turn off now": "Выключить сейчас"
},
"Type": {
"Type": "Тип"
@@ -7467,7 +7623,7 @@
"Type at least 2 characters": "Введите не менее 2 символов"
},
"Type at least 2 characters to search files.": {
- "Type at least 2 characters to search files.": ""
+ "Type at least 2 characters to search files.": "Введите не менее 2 символов для поиска файлов."
},
"Type this prefix to search keybinds": {
"Type this prefix to search keybinds": "Введите этот префикс для поиска комбинацию клавишs"
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Недоступно"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Цвет неактивного"
},
@@ -7494,19 +7653,19 @@
"Uninstall": "Удалить"
},
"Uninstall Greeter": {
- "Uninstall Greeter": ""
+ "Uninstall Greeter": "Удалить экран входа"
},
"Uninstall Plugin": {
"Uninstall Plugin": "Удалить плагин"
},
"Uninstall complete. Greeter has been removed.": {
- "Uninstall complete. Greeter has been removed.": ""
+ "Uninstall complete. Greeter has been removed.": "Удаление завершено. Экран входа был удалён."
},
"Uninstall failed: %1": {
"Uninstall failed: %1": "Ошибка удаления: %1"
},
"Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": {
- "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": ""
+ "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "Удалить DMS greeter? Это приведёт к удалению конфигурации и восстановлению предыдущего дисплейного менеджера. Откроется терминал для подтверждения прав sudo."
},
"Uninstalled: %1": {
"Uninstalled: %1": "Удалено: %1"
@@ -7518,7 +7677,7 @@
"Unknown": "Неизвестный"
},
"Unknown App": {
- "Unknown App": ""
+ "Unknown App": "Неизвестное приложение"
},
"Unknown Artist": {
"Unknown Artist": "Неизвестный исполнитель"
@@ -7542,7 +7701,7 @@
"Unknown Title": "Неизвестный заголовок"
},
"Unknown Track": {
- "Unknown Track": ""
+ "Unknown Track": "Неизвестный трек"
},
"Unload on Close": {
"Unload on Close": "Выгрузить при закрытии"
@@ -7578,19 +7737,19 @@
"Unsaved note...": "Несохранённая заметка..."
},
"Unset": {
- "Unset": ""
+ "Unset": "Не задано"
},
"Until %1": {
- "Until %1": ""
+ "Until %1": "До %1"
},
"Until 8 AM": {
- "Until 8 AM": ""
+ "Until 8 AM": "До 8 утра"
},
"Until I turn it off": {
- "Until I turn it off": ""
+ "Until I turn it off": "Пока я не выключу"
},
"Until tomorrow, 8:00 AM": {
- "Until tomorrow, 8:00 AM": ""
+ "Until tomorrow, 8:00 AM": "До завтра, 8:00"
},
"Untitled": {
"Untitled": "Без названия"
@@ -7599,7 +7758,7 @@
"Untrust": "Не доверять"
},
"Up to date": {
- "Up to date": ""
+ "Up to date": "Обновлено"
},
"Update": {
"Update": "Обновление"
@@ -7611,10 +7770,10 @@
"Update Plugin": "Обновить плагин"
},
"Update failed: %1": {
- "Update failed: %1": ""
+ "Update failed: %1": "Сбой обновления: %1"
},
"Upgrading...": {
- "Upgrading...": ""
+ "Upgrading...": "Обновление..."
},
"Uptime": {
"Uptime": "Время работы"
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Время работы:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Цвет срочного"
},
@@ -7647,31 +7809,28 @@
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "Использовать имперские единицы (°F, mph, inHg) вместо метрических (°C, km/h, hPa)"
},
"Use Inline Expansion": {
- "Use Inline Expansion": ""
+ "Use Inline Expansion": "Использовать встроенное раскрытие"
},
"Use Monospace Font": {
"Use Monospace Font": "Использовать моноширинный шрифт"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
+ "Use Overlay Layer": "Использовать слой оверлея"
},
"Use System Theme": {
"Use System Theme": "Использовать системную тему"
},
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": {
- "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": ""
+ "Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "Использовать собственное изображение для экрана входа или оставить пустым, чтобы использовать обои рабочего стола."
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "Использовать пользовательский радиус для готических вырезов по углам"
},
"Use a fixed shadow direction for this bar": {
- "Use a fixed shadow direction for this bar": ""
+ "Use a fixed shadow direction for this bar": "Использовать фиксированное направление тени для этой панели"
},
"Use a security key for lock screen authentication.": {
- "Use a security key for lock screen authentication.": ""
+ "Use a security key for lock screen authentication.": "Использовать ключ безопасности для аутентификации на экране блокировки."
},
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": {
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "Используйте внешний менеджер обоев, такой как swww, hyprpaper или swaybg."
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Использовать пользовательскую ширину границы/кольца фокуса"
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Использовать пользовательскую команду для обновления вашей системы"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Использовать пользовательские отступы вместо отступов панели"
},
@@ -7701,10 +7854,13 @@
"Use custom window rounding instead of theme radius": "Использовать пользовательское скругление окон вместо радиуса темы"
},
"Use desktop wallpaper": {
- "Use desktop wallpaper": ""
+ "Use desktop wallpaper": "Использовать обои рабочего стола"
},
"Use fingerprint authentication for the lock screen.": {
- "Use fingerprint authentication for the lock screen.": ""
+ "Use fingerprint authentication for the lock screen.": "Использовать аутентификацию по отпечатку пальца для экрана блокировки."
+ },
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
},
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Использовать светлую тему вместо тёмной"
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Использовать звуковую тему из системных настроек"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
- "Use the extended surface for launcher content": ""
+ "Use the extended surface for launcher content": "Использовать расширенную поверхность для содержимого лаунчера"
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "Использовать слой оверлея при открытии лаунчера"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "Использовать одинаковую позицию и размер на всех дисплеях"
@@ -7734,7 +7887,7 @@
"Use trigger prefix to activate": "Использовать префикс триггера для активации"
},
"Used for xdg-terminal-exec": {
- "Used for xdg-terminal-exec": ""
+ "Used for xdg-terminal-exec": "Используется для xdg-terminal-exec"
},
"Used when accent color is set to Custom": {
"Used when accent color is set to Custom": "Используется, когда акцентный цвет установлен в Custom"
@@ -7742,38 +7895,41 @@
"User": {
"User": "Пользователь"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "Пользователь уже существует"
},
"User created": {
- "User created": ""
+ "User created": "Пользователь создан"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "Пользователь создан с правами администратора и доступом к экрану входа"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "Пользователь создан с правами администратора"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "Пользователь создан с доступом к экрану входа"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "Пользователь удалён"
},
"User not found": {
- "User not found": ""
+ "User not found": "Пользователь не найден"
},
"Username": {
"Username": "Имя пользователя"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "Имя пользователя должно начинаться со строчной буквы или знака подчёркивания и содержать только строчные буквы, цифры, дефисы или знаки подчёркивания."
},
"Username...": {
- "Username...": ""
+ "Username...": "Имя пользователя..."
},
"Users": {
- "Users": ""
+ "Users": "Пользователи"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "Использует время восхода/заката солнца на основе вашего местоположения."
@@ -7782,10 +7938,10 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Использует время восхода/заката солнца для автоматической настройки ночного режима на основе вашего местоположения."
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "Использует IPC-действие spotlight-bar и всегда открывает минималистичную панель."
},
"Using global monospace font from Settings → Personalization": {
- "Using global monospace font from Settings → Personalization": ""
+ "Using global monospace font from Settings → Personalization": "Используется глобальный моноширинный шрифт из Настройки → Персонализация"
},
"Using shared settings from Gamma Control": {
"Using shared settings from Gamma Control": "Использование общих настроек из Gamma Control"
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Вертикальный тайлинг"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Яркий"
},
@@ -7857,13 +8016,13 @@
"Vibrant palette with playful saturation.": "Яркая палитра с игривой насыщенностью."
},
"Video Path": {
- "Video Path": ""
+ "Video Path": "Путь к видео"
},
"Video Player": {
- "Video Player": ""
+ "Video Player": "Видеоплеер"
},
"Video Screensaver": {
- "Video Screensaver": ""
+ "Video Screensaver": "Видео-заставка"
},
"Videos": {
"Videos": "Видео"
@@ -7908,7 +8067,7 @@
"Wallpaper Monitor": "Монитор обоев"
},
"Wallpaper fill mode": {
- "Wallpaper fill mode": ""
+ "Wallpaper fill mode": "Режим заполнения обоев"
},
"Wallpaper processing failed": {
"Wallpaper processing failed": "Не удалось обработать обои"
@@ -7938,7 +8097,7 @@
"Weather Widget": "Виджет погоды"
},
"Web Browser": {
- "Web Browser": ""
+ "Web Browser": "Веб-браузер"
},
"Welcome": {
"Welcome": "Добро пожаловать"
@@ -7947,20 +8106,17 @@
"Welcome to DankMaterialShell": "Добро пожаловать в DankMaterialShell"
},
"When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": {
- "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": ""
+ "When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": "При клике на окно дока в специальном рабочем пространстве Hyprland, вернуть это рабочее пространство перед тем, как перевести фокус на окно"
},
"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, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": {
- "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": ""
+ "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": "Если включено, проверка обновлений выполняется при запуске. Если отключено, проверка выполняется только согласно интервалу выше или при обновлении вручную."
},
"When locked": {
"When locked": "Когда заблокировано"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Когда виджет обновления используется, скрывать его если обновление не найдено"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi Пароль"
},
@@ -8028,10 +8184,10 @@
"Width": "Ширина"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "Ширина границы в пикселях"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "Ширина контура виджета в пикселях"
},
"Width of window border (borderpx)": {
"Width of window border (borderpx)": "Ширина границы окна (borderpx)"
@@ -8082,7 +8238,7 @@
"Wipe": "Стирание"
},
"Working…": {
- "Working…": ""
+ "Working…": "Выполнение…"
},
"Workspace": {
"Workspace": "Рабочее пространство"
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Рабочие области и виджеты"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Запись:"
},
"X Axis": {
"X Axis": "Ось X"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Ось Y"
},
@@ -8144,20 +8312,29 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Необходимо установить одну из переменных окружения:\nQT_QPA_PLATFORMTHEME=gtk3 ИЛИ\nQT_QPA_PLATFORMTHEME=qt6ct\nа затем перезапустить оболочку.\n\nДля qt6ct требуется qt6ct-kde."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Всё готово!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
- "Your system is up to date!": ""
+ "Your system is up to date!": "Ваша система обновлена!"
},
"actions": {
"actions": "действия"
},
"admin": {
- "admin": ""
+ "admin": "admin"
},
"attached": {
- "attached": ""
+ "attached": "Подключён"
},
"brandon": {
"brandon": "brandon"
@@ -8169,7 +8346,7 @@
"days": "дней"
},
"detached": {
- "detached": ""
+ "detached": "Отключён"
},
"device": {
"device": "устройство"
@@ -8181,10 +8358,10 @@
"dgop not available": "dgop недоступен"
},
"direct": {
- "direct": ""
+ "direct": "прямое"
},
"dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": {
- "dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": ""
+ "dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language."
},
"dms/cursor config exists but is not included. Cursor settings won't apply.": {
"dms/cursor config exists but is not included. Cursor settings won't apply.": "конфигурация dms/cursor существует но не включена. Настройки курсора не будут применены."
@@ -8192,8 +8369,14 @@
"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 config существует, но не включён в ваш конфиг композитора. Изменения дисплеев не сохранятся."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "например, alice"
},
"e.g., firefox, kitty --title foo": {
"e.g., firefox, kitty --title foo": "например, firefox, kitty --title foo"
@@ -8201,11 +8384,14 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "например, focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "например, notify-send 'Hello' && sleep 1"
},
"e.g., scratch, /^tmp_.*/, build": {
- "e.g., scratch, /^tmp_.*/, build": ""
+ "e.g., scratch, /^tmp_.*/, build": "например: scratch, /^tmp_.*/, build"
},
"events": {
"events": "события"
@@ -8216,32 +8402,29 @@
"featured": {
"featured": "избранное"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
- "last seen %1": ""
+ "last seen %1": "был в сети %1"
},
"leave empty for default": {
"leave empty for default": "оставьте пустым для значения по умолчанию"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "Сбой loginctl activate (код выхода %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl недоступен — интеграция блокировки требует подключения к сокету DMS"
},
"mangowc Discord Server": {
- "mangowc Discord Server": ""
+ "mangowc Discord Server": "Discord-сервер mangowc"
},
"mangowc GitHub": {
- "mangowc GitHub": ""
+ "mangowc GitHub": "GitHub mangowc"
},
"matugen not available or disabled - cannot apply GTK colors": {
- "matugen not available or disabled - cannot apply GTK colors": ""
+ "matugen not available or disabled - cannot apply GTK colors": "matugen недоступен или отключён — невозможно применить цвета GTK"
},
"matugen not available or disabled - cannot apply Qt colors": {
- "matugen not available or disabled - cannot apply Qt colors": ""
+ "matugen not available or disabled - cannot apply Qt colors": "matugen недоступен или отключён — невозможно применить цвета Qt"
},
"matugen not found - install matugen package for dynamic theming": {
"matugen not found - install matugen package for dynamic theming": "matugen не найден - установите пакет matugen для динамической тематизации"
@@ -8256,22 +8439,22 @@
"nav": "навигация"
},
"niri GitHub": {
- "niri GitHub": ""
+ "niri GitHub": "GitHub niri"
},
"niri Matrix Chat": {
- "niri Matrix Chat": ""
+ "niri Matrix Chat": "Matrix-чат niri"
},
"niri shortcuts config": {
"niri shortcuts config": "конфигурация комбинаций клавиш niri"
},
"niri/dms Discord": {
- "niri/dms Discord": ""
+ "niri/dms Discord": "Discord-сервер niri/dms"
},
"niri: config reloaded": {
- "niri: config reloaded": ""
+ "niri: config reloaded": "niri: конфигурация перезагружена"
},
"niri: failed to load config": {
- "niri: failed to load config": ""
+ "niri: failed to load config": "niri: не удалось загрузить конфигурацию"
},
"now": {
"now": "сейчас"
@@ -8301,28 +8484,28 @@
"open": "открыть"
},
"or run ": {
- "or run ": ""
+ "or run ": "или запустите "
},
"power-profiles-daemon not available": {
- "power-profiles-daemon not available": ""
+ "power-profiles-daemon not available": "power-profiles-daemon недоступен"
},
"procs": {
"procs": "проц."
},
"r/niri Subreddit": {
- "r/niri Subreddit": ""
+ "r/niri Subreddit": "Субреддит r/niri"
},
"relay: %1": {
- "relay: %1": ""
+ "relay: %1": "реле: %1"
},
"remote": {
- "remote": ""
+ "remote": "удалённая"
},
"seconds": {
"seconds": "секунд"
},
"session %1": {
- "session %1": ""
+ "session %1": "сессия %1"
},
"source": {
"source": "исходный"
@@ -8331,7 +8514,7 @@
"this app": "это приложение"
},
"until %1": {
- "until %1": ""
+ "until %1": "до %1"
},
"up": {
"up": "вверх"
@@ -8340,13 +8523,13 @@
"update dms for NM integration.": "обновите dms для NM интеграции."
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "Сбой useradd (код выхода %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "Сбой userdel (код выхода %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "Сбой usermod (код выхода %1)"
},
"v%1 by %2": {
"v%1 by %2": "v%1 от %2"
@@ -8397,15 +8580,9 @@
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: Навигация • Пробел: Развернуть • Enter: Действие/Развернуть • E: Текст"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": ""
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: навигация • Enter/Ctrl+C: копировать • Del: удалить • Ctrl+E: редактировать • Ctrl+S: закрепить/открепить • F10: справка"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Навигация • Enter: Вставить • Del: Удалить • F10: Справка"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓: навигация • Enter: вставить • Ctrl+C: копировать • Del: удалить • Ctrl+E: редактировать • Ctrl+S: закрепить/открепить • F10: справка"
}
}
diff --git a/quickshell/translations/poexports/sv.json b/quickshell/translations/poexports/sv.json
index 84bb3345..ff220b4f 100644
--- a/quickshell/translations/poexports/sv.json
+++ b/quickshell/translations/poexports/sv.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1 animeringshastighet"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "för %1 min sedan"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'Alternativ' låter nyckeln låsa upp på egen hand. 'Andra faktor' kräver lösenord eller fingeravtryck först, sedan nyckeln."
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": ""
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "Bakgrund och iconfärg för aktiv platta"
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Lägg till skrivbordswidget"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Lägg till skrivare"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Lägg till widget"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "Lägg till widget i %1-avdelningen"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Lägg till en ram runt docken"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": "Lägg till med adress"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Anonym identitet (valfritt)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "Appanpassningar"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "App-ID-substitutioner"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "App-ID-regex (t.ex. ^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "Utseende"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Programdock"
},
"Applications": {
"Applications": "Appar"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Tillämpa ändringar"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": ""
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "Appar"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Arrangera bildskärmar och konfigurera upplösning, uppdateringsfrekvens och VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": ""
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Göm Dock automatiskt"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Sparar automatiskt..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "Automatisering"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Tillgängligt"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Tillbaka"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Bakgrundstjänst"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": ""
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Bakgrundsopacitet"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": ""
},
- "Bar transparency": {
- "Bar transparency": ""
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "Basfärg för skuggor (opacitet tillämpas automatiskt)"
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth är inte tillgängligt"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": ""
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Färg på kantlinje"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Opacitet på kantlinje"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": ""
},
- "Border with BG": {
- "Border with BG": "Ram med bakgrund"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Nederkant"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "Caps Lock är på"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Mittavdelning"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": ""
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Välj en färg"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Välj färger från paletten"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Välj var skärmvisningar visas på skärmen"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Välj vilka bildskärmar som visar denna widget"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "Cirkel"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "Klassregex (t.ex. ^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Urklippshanterare"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "Urklipp skickat"
},
- "Clipboard service not available": {
- "Clipboard service not available": "Urklippstjänsten är inte tillgänglig"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Urklipp fungerar men inget sparas till disk"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Kommando"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "Kommandon"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Kompositoriminställningar"
},
- "Compositor not supported": {
- "Compositor not supported": "Kompositor stöds inte"
- },
"Config Format": {
"Config Format": "Konfigurationsformat"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Kontrast"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Kontrollcenter"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "Bekvämlighetsalternativ för inloggningsskärmen. Synka för att tillämpa."
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Nedkylningstid"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "Kopiera PID"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": "Kopiera text"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Hörn & bakgrund"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "Bara antal"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "Markörtemat"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "DMS-kortkommandon"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS är utdaterat"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Datumformat"
},
- "Date format": {
- "Date format": "Datumformat"
- },
"Date format on greeter": {
"Date format on greeter": "Datumformat på välkomstskärmen"
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Radera skrivare"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "Radera sparat objekt?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "Skrivbord"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Skrivbordsklocka"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "Avaktiverar Wi-Fi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "Skiva"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Visa bara arbetsytor som innehåller fönster"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Visa sekunder i klockan"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Visa strömmenyn"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": ""
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
- },
"Docs": {
"Docs": "Dokumentation"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": "Redigera fönsterregel"
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Enterprise"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "Post fäst"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Misslyckades med att aktivera konfiguration"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "Misslyckades med att aktivera profil – filen hittades inte"
- },
"Failed to add binds include": {
"Failed to add binds include": "Misslyckades med att lägga till inkludering av kortkommandon"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Misslyckades med att avbryta valt jobb"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "Misslyckades med att söka efter uppdateringar:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "Misslyckades med att kontrollera fästningsgräns"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Misslyckades med att skapa skrivare"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "Misslyckades med att skapa profilmapp"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "Misslyckades med att radera VPN"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "Misslyckades med att pausa jobb"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": ""
},
- "Failed to save profile file": {
- "Failed to save profile file": "Misslyckades med att spara profilfil"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "Misslyckades med att skicka urklipp"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Misslyckades med att uppdatera delning"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Misslyckades med att skriva temporär fil för validering"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "Fyll"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Sök i text"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": ""
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "Flytande"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": ""
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "Fokus"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Fokusera vid start"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "Fokusrad ram"
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "Tvångsavsluta (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Tvinga bred färg"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Formateringsguide"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "Hittade %1 paket att uppdatera:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "Hittade %1 paket att uppdatera:"
- },
"Frame": {
"Frame": ""
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "Fullständig dag och månad"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "Fullständigt med år"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": "Helskärm"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gammakontroll är inte tillgänglig. Kräver DMS API v6+."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "Generera grundläggande GTK3/4- eller QT5/QT6-konfigurationer (kräver qt6ct-kde) för att följa DMS-färger. Behövs bara en gång.
Det rekommenderas att konfigurera adw-gtk3 innan GTK-teman tillämpas."
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "Dölj indikatorer"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Dölj uppdateringswidget"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": "Dölj vid skrivning"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Högtrogen palett som bevarar källfärgerna."
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Hyprlands webbplats"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Jag förstår"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Inaktiv"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Förhindra strömsparläge"
},
"Idle Settings": {
"Idle Settings": "Inställningar för strömsparläge"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Stöd för aktivitetsövervakning saknas - kräver nyare Quickshell-version"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Om fältet är dolt visas det så snart en tangent trycks ned."
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": "Kan inhiberas"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "Kör med diskret grafikkort"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "Appstartare"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Logga ut"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "Loggar in..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Longitud"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Låg prioritet"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": ""
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": ""
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Bläckavfall fullt"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "Matchkriterier"
},
- "Matches profile: %1": {
- "Matches profile: %1": "Matchar profil: %1"
- },
"Material": {
"Material": ""
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Inställningar för mediespelaren"
},
- "Media Players": {
- "Media Players": "Mediespelare"
- },
"Media Players (": {
"Media Players (": "Mediespelare ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "Min B"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Minimal palett byggd kring en enda färg."
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Ikoner för arbetsytor med namn"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": ""
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Ingen bakgrund"
},
- "No Battery": {
- "No Battery": "Inget batteri"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Ingen Bluetooth-adapter hittades"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "Inga appanpassningar."
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "Inga appar hittades"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "Inga appar tystade. Högerklicka på en notis och välj \"Tysta banderoller\" för att lägga till en här."
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Inget batteri"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "Inga utgångsenheter hittades"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "Ingen pakethanterare hittades. Installera 'paru' eller 'yay' på Arch-baserade system för att söka efter uppdateringar."
- },
"No peers found": {
"No peers found": ""
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "Inga fönsterregler konfigurerade"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Ingen"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Inte detekterat"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "Inte parkopplad"
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": "Öppnar filer"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "Öppnar terminal: "
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Valfri plats"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Alternativ"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Utmatningsfäcket fullt"
},
- "Output Device": {
- "Output Device": "Utgångsenhet"
- },
"Output Devices": {
"Output Devices": "Utgångsenheter"
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "Banderollskugga"
},
- "Popup Transparency": {
- "Popup Transparency": "Genomskinlighet på notisbanderoller"
- },
"Popup behavior, position": {
"Popup behavior, position": "Popupbeteende, position"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Anpassning av strömmenyn"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Stäng av"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protokoll"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "Läst:"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Kräver stöd för nattläge"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Återställ"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "Regler (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "Kör igen"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "SMS"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Spara"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "Poäng"
},
- "Screen Sharing": {
- "Screen Sharing": "Skärmdelning"
- },
"Screen sharing": {
"Screen sharing": "Skärmdelning"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "Sökalternativ"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Sök efter tangentkombination, beskrivning eller åtgärdsnamn.\n\nStandardåtgärden kopierar kortkommandot till urklipp.\nHögerklicka eller tryck på högerpil för att fästa kortkommandon – de visas överst när du inte söker."
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "Välj en standardfärg från färgpaletten eller välj din egen"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Välj en widget att lägga till på skrivbordet. Varje widget är en separat instans med egna inställningar."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Skift+Del: Rensa allt • Esc: Stäng"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Skift+Retur för att klistra in"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Skift+Retur: Kopiera • Skift+Del: Rensa allt • Esc: Stäng"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Skift+Retur: Klistra in • Skift+Del: Rensa allt • Esc: Stäng"
- },
"Short": {
"Short": "Kort"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "Visa luftfuktighet"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "Visa startarknapp"
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "Visa lägesflikar och tangentbordstips längst ned."
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "Visa notisbanderoller bara på den aktuellt fokuserade bildskärmen"
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Visa skärmvisning när volymen ändras"
},
- "Show seconds": {
- "Show seconds": "Visa sekunder"
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "Hoppa över konfiguration"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "Liten"
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Ljud"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "Ränder"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "Sammanfattning"
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Systemnotiser"
},
- "System update custom command": {
- "System update custom command": "Anpassat kommando för systemuppdatering"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Flik"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": ""
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Ytterligare parametrar för terminalen"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "Skrivarens jobbkö är tom"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Teman och färger"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "Teman"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Tjocklek"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": ""
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "Detta kan ta några sekunder"
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Tidsformat"
},
- "Time format": {
- "Time format": "Tidsformat"
- },
"Time remaining: %1": {
"Time remaining: %1": "Återstående tid: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": ""
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "Trendande GIF:er"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Otillgänglig"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "Ofokuserad färg"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "Drifttid:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "Brådskande färg"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "Använd systemtema"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "Använd anpassad ram/fokusring-bredd"
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Använd ett anpassat kommando för att uppdatera systemet"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Använd anpassade mellanrum istället för menyradsavstånd"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "Använd fingeravtrycksautentisering för låsskärmen."
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Använd ljust läge istället för mörkt läge"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Använd ljudtemat från systeminställningarna"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Användare"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Kakla vertikalt"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "Livlig"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "När låst"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "När uppdateringswidgeten används, dölj den om ingen uppdatering hittas"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi-lösenord"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Arbetsytor & widgetar"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "Skrivit:"
},
"X Axis": {
"X Axis": "X-axel"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y-axel"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Du måste ange antingen:\nQT_QPA_PLATFORMTHEME=gtk3 ELLER\nQT_QPA_PLATFORMTHEME=qt6ct\nsom miljövariabler och sedan starta om skalet.\n\nqt6ct kräver att qt6ct-kde är installerat."
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "Allt är klart!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "Ditt system är uppdaterat!"
},
@@ -8192,6 +8369,12 @@
"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-konfigurationen finns men ingår inte i din kompositorkonfiguration. Bildskärmsändringar sparas inte."
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "t.ex. focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "t.ex. notify-send 'Hej' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "utvald"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": ""
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: Navigera • Retur/Ctrl+C: Kopiera • Del: Radera • F10: Hjälp"
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: Navigera • Retur: Klistra in • Del: Radera • F10: Hjälp"
}
}
diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json
index 0dda7cfc..9435ec16 100644
--- a/quickshell/translations/poexports/tr.json
+++ b/quickshell/translations/poexports/tr.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": ""
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1dk önce"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": ""
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": ""
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": ""
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "Masaüstü Widget'ı Ekle"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "Yazıcı Ekle"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "Widget Ekle"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "%1 Bölümüne Widget Ekle"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "Dock etrafına kenarlık ekle"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": ""
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Anonim Kimlik (isteğe bağlı)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": ""
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": ""
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": ""
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": ""
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "Uygulama Dock'u"
},
"Applications": {
"Applications": "Uygulamalar"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "Değişiklikleri Uygula"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": ""
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": ""
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "Ekranları düzenleyin ve çözünürlüğü, yenileme hızını ve VRR'yi yapılandırın"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": ""
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "Dock'u Otomatik Gizle"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "Otomatik kaydetme..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": ""
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "Kullanılabilir"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "Geri"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "Arka Uç"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": ""
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "Arkaplan Opaklığı"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": ""
},
- "Bar transparency": {
- "Bar transparency": ""
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": ""
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "Bluetooth kullanılamıyor"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": ""
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "Kenarlık Rengi"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "Kenarlık Opaklığı"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": ""
},
- "Border with BG": {
- "Border with BG": ""
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "Alt"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": ""
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "Orta Bölüm"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": ""
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "Renk seç"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "Paletten renkler seç"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "Ekran gösterimlerinin ekranda nerede gösterileceğini seç"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "Bu widget'ı hangi ekranlarda göstereceğinizi seçin"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": ""
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": ""
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "Pano Yöneticisi"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": ""
},
- "Clipboard service not available": {
- "Clipboard service not available": "Pano hizmeti kullanılamıyor"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "Pano çalışır fakat hiçbir şey diske kaydedilmez"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "Komut"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": ""
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "Kompozitör Ayarları"
},
- "Compositor not supported": {
- "Compositor not supported": ""
- },
"Config Format": {
"Config Format": "Yapılandırma Biçimi"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "Kontrast"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "Kontrol Merkezi"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": ""
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "Bekleme"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "PID'i Kopyala"
},
- "Copy Path": {
- "Copy Path": ""
- },
"Copy Text": {
"Copy Text": ""
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "Köşeler & Arkaplan"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": ""
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": ""
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": ""
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": ""
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": ""
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": ""
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS güncel değil"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "Tarih Biçimi"
},
- "Date format": {
- "Date format": ""
- },
"Date format on greeter": {
"Date format on greeter": ""
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "Yazıcı Sil"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": ""
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": ""
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "Masaüstü Saati"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "WiFi kapatılıyor..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": ""
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Yalnızca pencere içeren çalışma alanlarını göster"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "Saatte saniyeleri göster"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "Güç sistem menüsünü göster"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": ""
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": ""
- },
"Docs": {
"Docs": "Belgeler"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": ""
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "Kurumsal"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": ""
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "Yapılandırma etkinleştirilemedi"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": ""
- },
"Failed to add binds include": {
"Failed to add binds include": "Bağlantı dahili eklenemedi"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "Seçilen işler iptal edemedi"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": ""
- },
"Failed to check pin limit": {
"Failed to check pin limit": ""
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "Yazıcı oluşturulamadı"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": ""
- },
"Failed to delete VPN": {
"Failed to delete VPN": "VPN silinemedi"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "İş bekletilemedi"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": ""
},
- "Failed to save profile file": {
- "Failed to save profile file": ""
- },
"Failed to send clipboard": {
"Failed to send clipboard": ""
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "Paylaşım güncellenemedi"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "Doğrulama için geçici dosya yazılmadı"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": ""
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "Metinde Bul"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": ""
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": ""
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": ""
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": ""
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": ""
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "Başlangıçta Odakla"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": ""
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": ""
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "Geniş Rengi Zorla"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "Biçim Açıklaması"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": ""
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": ""
- },
"Frame": {
"Frame": ""
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": ""
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": ""
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": ""
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gama kontrolü mevcut değil. DMS API V6+ gerekir."
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": ""
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": ""
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "Güncelleyici Widgetını Gizle"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": ""
- },
"Hide When Typing": {
"Hide When Typing": ""
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": ""
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "Kaynak tonları koruyan yüksek sadakatli palet"
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": ""
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "Anladım"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "Boşta"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "Boşta Kalma Engelleyici"
},
"Idle Settings": {
"Idle Settings": "Boşta Kalma Ayarları"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "Boşta kalma takibi desteklenmiyor - daha yeni Quickshell sürümü gerekli"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "Alan gizliyse, bir tuşa basıldığında görünür."
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": ""
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "dGPU'da Başlat"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": ""
- },
"Launcher": {
"Launcher": "Başlatıcı"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": ""
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": ""
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "Çıkış"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": ""
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "Boylam"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "Düşük Öncelik"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": ""
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": ""
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "Atık Haznesi Dolu"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": ""
},
- "Matches profile: %1": {
- "Matches profile: %1": ""
- },
"Material": {
"Material": ""
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "Medya Oynatıcı Ayarları"
},
- "Media Players": {
- "Media Players": ""
- },
"Media Players (": {
"Media Players (": "Medya Oynatıcıları ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": ""
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "Tek bir renk tonu etrafında oluşturulmuş minimal palet."
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "Adlandırılmış Çalışma Alanı Simgeleri"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": ""
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "Arkaplan Yok"
},
- "No Battery": {
- "No Battery": ""
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "Bluetooth adaptörü bulunamadı"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": ""
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": ""
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": ""
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "Batarya yok"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": ""
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": ""
- },
"No peers found": {
"No peers found": ""
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": ""
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "Hiçbiri"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "Algılanmadı"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": ""
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": ""
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": ""
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "Opsiyonel konum"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "Seçenekler"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "Çıkış Alanı Dolu"
},
- "Output Device": {
- "Output Device": ""
- },
"Output Devices": {
"Output Devices": ""
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": ""
},
- "Popup Transparency": {
- "Popup Transparency": "Açılır Pencere Opaklığı"
- },
"Popup behavior, position": {
"Popup behavior, position": ""
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "Güç Menüsü Özelleştirme"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "Kapat"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "Protokol"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": ""
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "Gece modu desteği gerektirir"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "Sıfırla"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": ""
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": ""
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": ""
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "Kaydet"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": ""
},
- "Screen Sharing": {
- "Screen Sharing": ""
- },
"Screen sharing": {
"Screen sharing": "Ekran paylaşımı"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": ""
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": ""
},
@@ -6278,6 +6419,9 @@
"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 desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "Masaüstünüze eklemek için bir widget seçin. Her widget, kendi ayarları olan ayrı bir örnektir."
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: Tümünü Temizle • Esc: Kapat"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": ""
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": ""
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Yapıştır • Shift+Del: Tümünü Temizle • Esc: Kapat"
- },
"Short": {
"Short": "Kısa"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": ""
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": ""
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": ""
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": ""
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "Ses değiştiğinde ekran gösterimi göster"
},
- "Show seconds": {
- "Show seconds": ""
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": ""
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": ""
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "Sesler"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": ""
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": ""
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "Sistem anlık bildirimleri"
},
- "System update custom command": {
- "System update custom command": "Sistem güncelleme özel komutu"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "Sekme"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": ""
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "Terminal özel ek parametreleri"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "Bu yazıcının iş kuyruğu boş"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "Tema & Renkler"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": ""
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "Kalınlık"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": ""
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": ""
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "Zaman Biçimi"
},
- "Time format": {
- "Time format": ""
- },
"Time remaining: %1": {
"Time remaining: %1": "Kalan zaman: %1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": ""
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": ""
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "Mevcut Değil"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": ""
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": ""
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": ""
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "Sistem Temasını Kullan"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": ""
},
- "Use custom command": {
- "Use custom command": ""
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "Sistemi güncellemek için özel komut kullan"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "Bar aralığı yerine özel boşluklar kullanın"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": ""
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "Karanlık tema yerine aydınlık tema kullan"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "Sistem ayarlarındaki ses temasını kullan"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": ""
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "Kullanıcı"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "Dikey Döşeme"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": ""
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": ""
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "Güncelleyici widgetı kullanıldığında, güncelleme bulunmazsa gizle"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi Parolası"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Çalışma Alanları & Widgetlar"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": ""
},
"X Axis": {
"X Axis": "X Ekseni"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y Ekseni"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": ""
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": ""
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": ""
},
@@ -8192,6 +8369,12 @@
"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. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"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., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "Örneğin, notify-send 'Merhaba' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": ""
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": ""
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": ""
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": ""
}
}
diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json
index 8a2f6914..979104cf 100644
--- a/quickshell/translations/poexports/zh_CN.json
+++ b/quickshell/translations/poexports/zh_CN.json
@@ -1,111 +1,117 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1动画速度"
},
"%1 Sessions": {
- "%1 Sessions": "%1个会话"
+ "%1 Sessions": "%1 个会话"
},
"%1 active session": {
- "%1 active session": "%1个激活会话"
+ "%1 active session": "%1 个活动会话"
},
"%1 active sessions": {
- "%1 active sessions": "%1个激活会话"
+ "%1 active sessions": "%1 个活动会话"
},
"%1 adapter, none connected": {
- "%1 adapter, none connected": "1%个适配器,未连接任何适配器"
+ "%1 adapter, none connected": "%1 个适配器,未连接任何适配器"
},
"%1 adapters, none connected": {
- "%1 adapters, none connected": "1%个适配器,未连接任何适配器"
+ "%1 adapters, none connected": "%1 个适配器,未连接任何适配器"
},
"%1 character": {
- "%1 character": "%1个字母"
+ "%1 character": "%1 个字符"
},
"%1 characters": {
- "%1 characters": "%1个字符"
+ "%1 characters": "%1 个字符"
},
"%1 connected": {
"%1 connected": "已连接 %1"
},
"%1 copied": {
- "%1 copied": ""
+ "%1 copied": "已复制 RGB 颜色 %1"
},
"%1 custom animation duration": {
"%1 custom animation duration": "%1自定义动画持续时间"
},
"%1 disconnected": {
- "%1 disconnected": "%1已断开连接"
+ "%1 disconnected": "%1 已断开连接"
},
"%1 disconnected (hidden)": {
- "%1 disconnected (hidden)": "%1已断开连接(隐藏)"
+ "%1 disconnected (hidden)": "%1 已断开连接(隐藏)"
},
"%1 display": {
- "%1 display": "%1个显示器"
+ "%1 display": "%1 个显示器"
},
"%1 displays": {
- "%1 displays": "%1个显示器"
+ "%1 displays": "%1 个显示器"
},
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
- "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": "%1存在但并未被包含至配置文件。在此问题修复前,自定义快捷键绑定将不会生效。"
+ "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": "%1 配置存在,但未被合成器配置文件引用。在此问题修复前,自定义快捷键绑定将不会生效。"
},
"%1 exists but is not included. Window rules won't apply.": {
- "%1 exists but is not included. Window rules won't apply.": "%1已存在但未被包含。窗口规则将不会生效。"
+ "%1 exists but is not included. Window rules won't apply.": "%1 配置存在,但未被合成器配置文件引用。窗口规则将不会生效。"
},
"%1 filtered": {
- "%1 filtered": "%1个已筛选"
+ "%1 filtered": "已筛选 %1 个"
},
"%1 h %2 m left": {
- "%1 h %2 m left": "剩余%1小时%2分钟"
+ "%1 h %2 m left": "剩余 %1 小时 %2 分钟"
},
"%1 h left": {
- "%1 h left": "剩余%1小时"
+ "%1 h left": "剩余 %1 小时"
},
"%1 is now included in config": {
- "%1 is now included in config": "%1现在已被包含至配置文件"
+ "%1 is now included in config": "%1 现在已被你的合成器配置引用"
},
"%1 issue found": {
- "%1 issue found": "发现%1个问题"
+ "%1 issue found": "发现 %1 个问题"
},
"%1 issues found": {
- "%1 issues found": "发现%1个问题"
+ "%1 issues found": "发现 %1 个问题"
},
"%1 min left": {
- "%1 min left": "剩余%1分钟"
+ "%1 min left": "剩余 %1 分钟"
},
"%1 notifications": {
- "%1 notifications": "%1条通知"
+ "%1 notifications": "%1 条通知"
},
"%1 online": {
- "%1 online": "%1在线"
+ "%1 online": "%1 在线"
},
"%1 update": {
- "%1 update": "%1个更新"
+ "%1 update": "%1 个更新"
},
"%1 updates": {
- "%1 updates": "%1个更新"
+ "%1 updates": "%1 个更新"
},
"%1 variants": {
- "%1 variants": "%1变体"
+ "%1 variants": "%1 个变体"
},
"%1 wallpaper • %2 / %3": {
- "%1 wallpaper • %2 / %3": "%1张壁纸 • %2 / %3"
+ "%1 wallpaper • %2 / %3": "%1 张壁纸 • %2 / %3"
},
"%1 wallpapers • %2 / %3": {
- "%1 wallpapers • %2 / %3": "%1张壁纸 • %2 / %3"
+ "%1 wallpapers • %2 / %3": "%1 张壁纸 • %2 / %3"
},
"%1 widgets": {
- "%1 widgets": "%1 部件"
+ "%1 widgets": "%1 个部件"
},
"%1 window": {
- "%1 window": "%1个窗口"
+ "%1 window": "%1 个窗口"
},
"%1 windows": {
- "%1 windows": "%1个窗口"
+ "%1 windows": "%1 个窗口"
},
"%1m ago": {
- "%1m ago": "%1分之前"
+ "%1m ago": "%1 分钟前"
+ },
+ "%command%": {
+ "%command%": ""
},
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
- "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "“Alternative”(替代)模式允许密钥自行解锁。“Second factor”(双重验证)模式则需要先输入密码或指纹,然后再使用密钥。"
+ "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "替代模式(Alternative)允许密钥自行解锁。双重验证模式(Second factor)则需要先输入密码或指纹,然后再使用密钥。"
},
"(Default)": {
"(Default)": "(默认)"
@@ -114,7 +120,7 @@
"(Unnamed)": "(未命名)"
},
"+ %1 more": {
- "+ %1 more": "+%1更多"
+ "+ %1 more": "+ %1 个更多"
},
"/path/to/videos": {
"/path/to/videos": "/path/to/videos"
@@ -123,163 +129,163 @@
"0 = square corners": "0 = 直角"
},
"1 day": {
- "1 day": "1天"
+ "1 day": "1 天"
},
"1 device connected": {
- "1 device connected": "已连接1个设备"
+ "1 device connected": "已连接 1 个设备"
},
"1 event": {
- "1 event": "1个事件"
+ "1 event": "1 个事件"
},
"1 hour": {
- "1 hour": "1小时"
+ "1 hour": "1 小时"
},
"1 hour 30 minutes": {
- "1 hour 30 minutes": "1小时30分钟"
+ "1 hour 30 minutes": "1 小时 30 分钟"
},
"1 minute": {
"1 minute": "1 分钟"
},
"1 notification": {
- "1 notification": "1条通知"
+ "1 notification": "1 条通知"
},
"1 second": {
- "1 second": "1 秒"
+ "1 second": "1 秒钟"
},
"10 minutes": {
"10 minutes": "10 分钟"
},
"10 seconds": {
- "10 seconds": "10 秒"
+ "10 seconds": "10 秒钟"
},
"10-bit Color": {
- "10-bit Color": "10位色彩"
+ "10-bit Color": "10 位颜色"
},
"12 hours": {
- "12 hours": "12小时"
+ "12 hours": "12 小时"
},
"14 days": {
- "14 days": "14天"
+ "14 days": "14 天"
},
"15 min": {
- "15 min": "15分钟"
+ "15 min": "15 分钟"
},
"15 minutes": {
- "15 minutes": "15分钟"
+ "15 minutes": "15 分钟"
},
"15 seconds": {
- "15 seconds": "15 秒"
+ "15 seconds": "15 秒钟"
},
"180°": {
"180°": "180°"
},
"2 hours": {
- "2 hours": "2小时"
+ "2 hours": "2 小时"
},
"2 minutes": {
"2 minutes": "2 分钟"
},
"2 seconds": {
- "2 seconds": "2秒"
+ "2 seconds": "2 秒钟"
},
"20 minutes": {
- "20 minutes": "20分钟"
+ "20 minutes": "20 分钟"
},
"20 seconds": {
- "20 seconds": "20秒"
+ "20 seconds": "20 秒钟"
},
"24-Hour Format": {
- "24-Hour Format": "24小时制"
+ "24-Hour Format": "24 小时制"
},
"24-hour clock": {
- "24-hour clock": "24小时制时钟"
+ "24-hour clock": "24 小时制时钟"
},
"24-hour format": {
- "24-hour format": "24小时制"
+ "24-hour format": "24 小时制"
},
"25 seconds": {
- "25 seconds": "25秒"
+ "25 seconds": "25 秒钟"
},
"250 ms": {
- "250 ms": "250毫秒"
+ "250 ms": "250 毫秒"
},
"270°": {
"270°": "270°"
},
"3 days": {
- "3 days": "3天"
+ "3 days": "3 天"
},
"3 hours": {
- "3 hours": "3小时"
+ "3 hours": "3 小时"
},
"3 minutes": {
- "3 minutes": "3分钟"
+ "3 minutes": "3 分钟"
},
"3 seconds": {
- "3 seconds": "3 秒"
+ "3 seconds": "3 秒钟"
},
"30 days": {
- "30 days": "30天"
+ "30 days": "30 天"
},
"30 min": {
- "30 min": "30分钟"
+ "30 min": "30 分钟"
},
"30 minutes": {
- "30 minutes": "30分钟"
+ "30 minutes": "30 分钟"
},
"30 seconds": {
- "30 seconds": "30 秒"
+ "30 seconds": "30 秒钟"
},
"35 seconds": {
- "35 seconds": "35秒"
+ "35 seconds": "35 秒钟"
},
"3rd party": {
"3rd party": "第三方"
},
"4 hours": {
- "4 hours": "4小时"
+ "4 hours": "4 小时"
},
"4 seconds": {
- "4 seconds": "4秒"
+ "4 seconds": "4 秒钟"
},
"40 seconds": {
- "40 seconds": "40秒"
+ "40 seconds": "40 秒钟"
},
"45 seconds": {
- "45 seconds": "45秒"
+ "45 seconds": "45 秒钟"
},
"5 minutes": {
"5 minutes": "5 分钟"
},
"5 seconds": {
- "5 seconds": "5 秒"
+ "5 seconds": "5 秒钟"
},
"50 seconds": {
- "50 seconds": "50秒"
+ "50 seconds": "50 秒钟"
},
"500 ms": {
- "500 ms": "500毫秒"
+ "500 ms": "500 毫秒"
},
"55 seconds": {
- "55 seconds": "55秒"
+ "55 seconds": "55 秒钟"
},
"6 hours": {
- "6 hours": "6小时"
+ "6 hours": "6 小时"
},
"7 days": {
- "7 days": "7天"
+ "7 days": "7 天"
},
"750 ms": {
- "750 ms": "750毫秒"
+ "750 ms": "750 毫秒"
},
"8 hours": {
- "8 hours": "8小时"
+ "8 hours": "8 小时"
},
"8 seconds": {
- "8 seconds": "8 秒"
+ "8 seconds": "8 秒钟"
},
"90 days": {
- "90 days": "90天"
+ "90 days": "90 天"
},
"90°": {
"90°": "90°"
@@ -291,13 +297,13 @@
"A file with this name already exists. Do you want to overwrite it?": "已存在同名文件,是否覆盖?"
},
"A modern desktop shell for Wayland compositors": {
- "A modern desktop shell for Wayland compositors": "为wayland合成器设计的一款现代桌面shell"
+ "A modern desktop shell for Wayland compositors": "一款面向 Wayland 合成器的现代桌面 Shell"
},
"A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": {
- "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": ""
+ "A separate minimal launcher action that works in Standalone, Separate Frame Mode, and Connected Frame Mode.": "一个独立的极简启动器动作,适用于独立模式、分离框架模式和连接框架模式。"
},
"A user with that name already exists.": {
- "A user with that name already exists.": ""
+ "A user with that name already exists.": "已存在同名用户。"
},
"AC Power": {
"AC Power": "交流电"
@@ -306,7 +312,7 @@
"API": "API"
},
"AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": {
- "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": "AUR助手是交互式的——请查看终端窗口中的提示。当升级退出时,这个弹出窗口会恢复空闲。"
+ "AUR helpers are interactive — see the terminal window for prompts. This popout will return to idle when the upgrade exits.": "AUR 助手是交互式的 - 请查看终端窗口中的提示。当升级退出时,这个弹窗会恢复空闲。"
},
"Aborted": {
"Aborted": "已中止"
@@ -315,19 +321,19 @@
"About": "关于"
},
"Accent Color": {
- "Accent Color": "重点色"
+ "Accent Color": "强调色"
},
"Accept": {
"Accept": "接受"
},
"Accept Jobs": {
- "Accept Jobs": "接受任务"
+ "Accept Jobs": "接受作业"
},
"Accepting": {
"Accepting": "正在接受"
},
"Access clipboard history": {
- "Access clipboard history": "访问剪切板记录"
+ "Access clipboard history": "访问剪切板历史记录"
},
"Access to notifications and do not disturb": {
"Access to notifications and do not disturb": "访问通知与请勿打扰"
@@ -342,10 +348,10 @@
"Action failed or terminal was closed.": "操作失败或终端已关闭。"
},
"Action performed when scrolling horizontally on the bar": {
- "Action performed when scrolling horizontally on the bar": ""
+ "Action performed when scrolling horizontally on the bar": "在状态栏上水平滚动时执行的操作"
},
"Action performed when scrolling vertically on the bar": {
- "Action performed when scrolling vertically on the bar": ""
+ "Action performed when scrolling vertically on the bar": "在状态栏上垂直滚动时执行的操作"
},
"Actions": {
"Actions": "操作"
@@ -354,10 +360,10 @@
"Activate": "激活"
},
"Activate Greeter": {
- "Activate Greeter": "激活 Greeter"
+ "Activate Greeter": "激活登录界面"
},
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": {
- "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "激活 DMS Greeter?将打开一个终端进行 sudo 身份验证。激活后运行“同步”以应用您的设置。"
+ "Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "要激活 DMS 登录界面吗?将打开终端进行 sudo 认证。激活后运行“同步”以应用你的设置。"
},
"Activation": {
"Activation": "激活"
@@ -366,25 +372,28 @@
"Active": "活动"
},
"Active Color": {
- "Active Color": "激活颜色"
+ "Active Color": "活动颜色"
},
"Active Lock Screen Monitor": {
"Active Lock Screen Monitor": "活动锁屏显示器"
},
"Active VPN": {
- "Active VPN": "激活VPN"
+ "Active VPN": "活动 VPN"
+ },
+ "Active in Column": {
+ "Active in Column": ""
},
"Active tile background and icon color": {
- "Active tile background and icon color": "激活平铺背景与图标颜色"
+ "Active tile background and icon color": "激活的磁帖背景及图标颜色"
},
"Active: %1": {
"Active: %1": "激活:%1"
},
"Active: %1 +%2": {
- "Active: %1 +%2": "激活:%1 +%2"
+ "Active: %1 +%2": "激活:%1 + %2"
},
"Active: None": {
- "Active: None": "活动: 无"
+ "Active: None": "活动:无"
},
"Adapters": {
"Adapters": "适配器"
@@ -396,10 +405,10 @@
"Add": "添加"
},
"Add \"%1\" to the %2 group?": {
- "Add \"%1\" to the %2 group?": ""
+ "Add \"%1\" to the %2 group?": "将“%1” 添加到 %2 组吗?"
},
"Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": {
- "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": ""
+ "Add \"%1\" to the %2 group? They must log out and back in, then run dms greeter sync --profile to publish their login-screen theme.": "将“%1” 添加到 %2 组吗?该用户必须注销并重新登录,然后运行 dms greeter sync --profile 以应用其登录屏幕主题。"
},
"Add Bar": {
"Add Bar": "添加状态栏"
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "添加桌面部件"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "添加打印机"
},
@@ -416,14 +428,17 @@
"Add Widget": {
"Add Widget": "添加部件"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "将部件添加到 %1 部分"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"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或其他命令封装器。"
+ "Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "在所有应用启动前添加自定义前缀。可用于 uwsm-app、systemd-run 或其他命令封装器。"
},
"Add and configure widgets that appear on your desktop": {
"Add and configure widgets that appear on your desktop": "添加与配置出现在你桌面的部件"
@@ -431,26 +446,32 @@
"Add by Address": {
"Add by Address": "通过地址添加"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
- "Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
+ "Add the new user to the %1 group so they can run dms greeter sync --profile.": "将新用户添加到 %1 组,使其能够运行 dms greeter sync --profile。"
},
"Add the new user to the %1 group so they can use sudo.": {
- "Add the new user to the %1 group so they can use sudo.": ""
+ "Add the new user to the %1 group so they can use sudo.": "将新用户添加到 %1 组,使其能够使用 sudo。"
+ },
+ "Add to Autostart": {
+ "Add to Autostart": ""
},
"Adjust the bar height via inner padding": {
- "Adjust the bar height via inner padding": ""
+ "Adjust the bar height via inner padding": "通过内边距调整状态栏高度"
},
"Adjust the number of columns in grid view mode.": {
"Adjust the number of columns in grid view mode.": "在网格模式中按需调整列的数量。"
},
"Adjust volume per scroll indent": {
- "Adjust volume per scroll indent": "每滚动一格调节音量"
+ "Adjust volume per scroll indent": "每滚动一格调节的音量"
},
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "调整生成颜色的对比度(-100 = 最小,0 = 标准,100 = 最大)"
},
"Administrator group:": {
- "Administrator group:": ""
+ "Administrator group:": "管理员组:"
},
"Advanced": {
"Advanced": "高级"
@@ -468,34 +489,34 @@
"All checks passed": "所有检查均已通过"
},
"All day": {
- "All day": "每天"
+ "All day": "全天"
},
"All displays": {
"All displays": "所有显示器"
},
"Allow": {
- "Allow": ""
+ "Allow": "允许"
},
"Allow clicks to pass through the widget": {
"Allow clicks to pass through the widget": "允许鼠标穿透部件"
},
"Allow greeter access?": {
- "Allow greeter access?": ""
+ "Allow greeter access?": "允许访问登录界面吗?"
},
"Allow greeter login access": {
- "Allow greeter login access": ""
+ "Allow greeter login access": "允许登录界面访问"
},
"Already on that session": {
- "Already on that session": ""
+ "Already on that session": "已在该会话中"
},
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": {
- "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/退格: 返回 • F1/I: 文件信息 • F10: 帮助 • Esc: 关闭"
+ "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace:返回 • F1/I:文件信息 • F10:帮助 • Esc:关闭"
},
"Alternative (OR)": {
- "Alternative (OR)": "Alternative (OR)"
+ "Alternative (OR)": "备选(或)"
},
"Always Active": {
- "Always Active": "总是激活"
+ "Always Active": "始终激活"
},
"Always Show Percentage": {
"Always Show Percentage": "始终显示百分比"
@@ -504,34 +525,34 @@
"Always hide the dock and reveal it when hovering near the dock area": "总是隐藏程序坞,并在靠近它时显露"
},
"Always on icons": {
- "Always on icons": "总显示的图标"
+ "Always on icons": "始终显示的图标"
},
"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 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": "当仅连接一个显示器时,总是显示"
},
"Always use this app for %1": {
- "Always use this app for %1": ""
+ "Always use this app for %1": "始终使用此应用打开 %1"
},
"Amount": {
"Amount": "数量"
},
"Analog": {
- "Analog": "模拟"
+ "Analog": "模拟式"
},
"Analog, digital, or stacked clock display": {
"Analog, digital, or stacked clock display": "模拟、数字以及堆叠时钟显示"
},
"Analyzing configuration...": {
- "Analyzing configuration...": "配置分析中..."
+ "Analyzing configuration...": "正在分析配置..."
},
"Animation Duration": {
- "Animation Duration": "动画时长"
+ "Animation Duration": "动画持续时间"
},
"Animation Speed": {
"Animation Speed": "动画速度"
@@ -545,20 +566,32 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "匿名身份(可选)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "应用自定义"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
- "App ID Substitutions": "应用ID替换"
+ "App ID Substitutions": "应用 ID 替换"
+ },
+ "App ID regex": {
+ "App ID regex": ""
},
"App ID regex (e.g. ^firefox$)": {
- "App ID regex (e.g. ^firefox$)": "应用ID正则(比如^firefox$)"
+ "App ID regex (e.g. ^firefox$)": "应用 ID 正则(例如:^firefox$)"
},
"App Launcher": {
"App Launcher": "启动器"
},
"App Names": {
- "App Names": "仅应用名"
+ "App Names": "应用名称"
},
"App Theming": {
"App Theming": "应用主题"
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "外观"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "程序坞"
},
"Applications": {
"Applications": "应用程序"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "应用更改"
},
@@ -582,19 +621,22 @@
"Apply GTK Colors": "应用 GTK 配色"
},
"Apply Qt Colors": {
- "Apply Qt Colors": "应用 Qt 配色"
+ "Apply Qt Colors": "应用 QT 配色"
},
"Apply compositor blur behind the frame border": {
- "Apply compositor blur behind the frame border": "在帧框后面应用合成器模糊"
+ "Apply compositor blur behind the frame border": "在框架边框后面应用合成器模糊"
},
"Apply inverse concave corner cutouts to the bar": {
- "Apply inverse concave corner cutouts to the bar": ""
+ "Apply inverse concave corner cutouts to the bar": "为状态栏应用反向凹角裁切"
},
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
- "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "应用暖色温以减轻眼睛疲劳,可通过下方设置配置按时间自动启用。"
+ "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "应用暖色温以减轻眼睛疲劳,可通过下方设置控制自动激活时间。"
},
"Applying authentication changes…": {
- "Applying authentication changes…": "正在应用认证变更……"
+ "Applying authentication changes…": "正在应用认证变更..."
+ },
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
},
"Apps": {
"Apps": "应用"
@@ -603,16 +645,16 @@
"Apps Dock": "程序坞"
},
"Apps Dock Settings": {
- "Apps Dock Settings": "程序坞设定"
+ "Apps Dock Settings": "程序坞设置"
},
"Apps Icon": {
"Apps Icon": "应用图标"
},
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
- "Apps are ordered by usage frequency, then last used, then alphabetically.": "应用按使用频率、最近使用时间和字母顺序排序。"
+ "Apps are ordered by usage frequency, then last used, then alphabetically.": "应用依次按使用频率、最近使用时间和字母顺序排序。"
},
"Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": {
- "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "程序会带有自定义名称、图标与启动选项。右键应用并选择“编辑应用”进行自定义。"
+ "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "程序会带有自定义名称、图标与启动选项。右键点击应用并选择“编辑应用”进行自定义。"
},
"Apps with notification popups muted. Unmute or delete to remove.": {
"Apps with notification popups muted. Unmute or delete to remove.": "已静音通知弹窗的应用。请取消静音或删除以移除。"
@@ -624,16 +666,19 @@
"Architecture": "架构"
},
"Are you sure you want to kill session \"%1\"?": {
- "Are you sure you want to kill session \"%1\"?": "确认要结束会话\"%1\"吗?"
+ "Are you sure you want to kill session \"%1\"?": "确认要结束会话“%1” 吗?"
},
"Arrange displays and configure resolution, refresh rate, and VRR": {
- "Arrange displays and configure resolution, refresh rate, and VRR": "排列显示器、配置分辨率、刷新率和VRR"
+ "Arrange displays and configure resolution, refresh rate, and VRR": "排列显示器,配置分辨率、刷新率和 VRR"
+ },
+ "At Startup": {
+ "At Startup": ""
},
"At least one output must remain enabled": {
"At least one output must remain enabled": "至少应有一个输出保持启用"
},
"Attach": {
- "Attach": "标记"
+ "Attach": "附加"
},
"Audio": {
"Audio": "音频"
@@ -678,7 +723,7 @@
"Authenticate": "认证"
},
"Authenticating...": {
- "Authenticating...": "认证中……"
+ "Authenticating...": "认证中..."
},
"Authentication": {
"Authentication": "认证"
@@ -696,10 +741,10 @@
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": "认证变更自动应用。仅指纹登录可能无法解锁密钥环。"
},
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
- "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "认证变更需要sudo权限。正在打开终端,你可以使用密码或指纹通过验证。"
+ "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": "认证变更需要 sudo 权限。正在打开终端,你可以使用密码或指纹通过验证。"
},
"Authentication error - try again": {
- "Authentication error - try again": "认证错误——请重试"
+ "Authentication error - try again": "认证错误 - 请重试"
},
"Authentication failed, please try again": {
"Authentication failed, please try again": "认证失败,请重试"
@@ -717,7 +762,7 @@
"Auto": "自动"
},
"Auto (Bar-aware)": {
- "Auto (Bar-aware)": "自动(基于Bar)"
+ "Auto (Bar-aware)": "自动(感知状态栏)"
},
"Auto (Wide)": {
"Auto (Wide)": "自动(宽角)"
@@ -726,10 +771,10 @@
"Auto Location": "自动定位"
},
"Auto Popup Gaps": {
- "Auto Popup Gaps": "自动弹窗间距"
+ "Auto Popup Gaps": "自动弹窗间隙"
},
"Auto mode is on. Manual profile selection is disabled.": {
- "Auto mode is on. Manual profile selection is disabled.": ""
+ "Auto mode is on. Manual profile selection is disabled.": "自动模式已开启。手动选择配置已禁用。"
},
"Auto-Clear After": {
"Auto-Clear After": "在此之后自动清除"
@@ -738,7 +783,7 @@
"Auto-Hide Timeout": "自动隐藏超时"
},
"Auto-close Niri overview when launching apps.": {
- "Auto-close Niri overview when launching apps.": "当启动程序时自动关闭Niri概览。"
+ "Auto-close Niri overview when launching apps.": "当启动程序时自动关闭 Niri 概览。"
},
"Auto-delete notifications older than this": {
"Auto-delete notifications older than this": "自动删除在此之前的通知"
@@ -749,17 +794,29 @@
"Auto-hide Dock": {
"Auto-hide Dock": "自动隐藏程序坞"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
- "Auto-saving...": "自动保存中..."
+ "Auto-saving...": "正在自动保存..."
},
"Autoconnect": {
"Autoconnect": "自动连接"
},
"Autoconnect disabled": {
- "Autoconnect disabled": "已禁用自动连接"
+ "Autoconnect disabled": "自动连接已禁用"
},
"Autoconnect enabled": {
- "Autoconnect enabled": "已启用自动连接"
+ "Autoconnect enabled": "自动连接已启用"
},
"Autofill last remembered query when opened": {
"Autofill last remembered query when opened": "打开时自动填充上次记忆的查询"
@@ -774,7 +831,7 @@
"Automatic Cycling": "自动轮换"
},
"Automatically calculate popup gap based on bar spacing": {
- "Automatically calculate popup gap based on bar spacing": ""
+ "Automatically calculate popup gap based on bar spacing": "根据状态栏间距自动计算弹窗间隙"
},
"Automatically cycle through wallpapers in the same folder": {
"Automatically cycle through wallpapers in the same folder": "自动轮换文件夹中的壁纸"
@@ -789,10 +846,10 @@
"Automatically determine your location using your IP address": "通过 IP 地址自动检测您的位置"
},
"Automatically hide the bar when the pointer moves away": {
- "Automatically hide the bar when the pointer moves away": ""
+ "Automatically hide the bar when the pointer moves away": "指针移开时自动隐藏状态栏"
},
"Automatically lock after": {
- "Automatically lock after": "在此时间后自动锁定"
+ "Automatically lock after": "锁定超时"
},
"Automatically lock the screen when DMS starts": {
"Automatically lock the screen when DMS starts": "DMS 启动时自动锁定屏幕"
@@ -801,7 +858,13 @@
"Automatically lock the screen when the system prepares to suspend": "当系统准备挂起时自动锁定屏幕"
},
"Automation": {
- "Automation": "自动"
+ "Automation": "自动化"
+ },
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
},
"Available": {
"Available": "可用"
@@ -830,6 +893,9 @@
"Back": {
"Back": "返回"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "后端"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "背景模糊"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "背景透明度"
},
@@ -855,7 +924,7 @@
"Backlight device": "背光设备"
},
"Balance power and performance": {
- "Balance power and performance": "平衡与性能电源模式"
+ "Balance power and performance": "平衡功耗与性能"
},
"Balanced": {
"Balanced": "平衡"
@@ -873,17 +942,14 @@
"Bar Transparency": "状态栏透明度"
},
"Bar corners and background": {
- "Bar corners and background": "状态栏四角与背景"
+ "Bar corners and background": "状态栏圆角与背景"
},
"Bar shadow, border, and corners": {
- "Bar shadow, border, and corners": "状态栏阴影、边框与四角"
+ "Bar shadow, border, and corners": "状态栏阴影、边框与圆角"
},
"Bar spacing and size": {
"Bar spacing and size": "状态栏间隙与尺寸"
},
- "Bar transparency": {
- "Bar transparency": "状态栏透明度"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "阴影基础颜色(不透明度会自动应用)"
},
@@ -894,7 +960,7 @@
"Battery": "电池"
},
"Battery %1": {
- "Battery %1": "电池余量%1"
+ "Battery %1": "剩余电量 %1"
},
"Battery Charge Limit": {
"Battery Charge Limit": "电池充电限制"
@@ -912,28 +978,28 @@
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "将锁屏绑定到来自 loginctl 的 dbus 信号。如使用外部锁屏程序,请禁用此项"
},
"Bind the spotlight IPC action in your compositor config.": {
- "Bind the spotlight IPC action in your compositor config.": ""
+ "Bind the spotlight IPC action in your compositor config.": "请在合成器配置中绑定 spotlight IPC 动作。"
},
"Bind the spotlight-bar IPC action in your compositor config.": {
- "Bind the spotlight-bar IPC action in your compositor config.": ""
+ "Bind the spotlight-bar IPC action in your compositor config.": "请在合成器配置中绑定 spotlight-bar IPC 动作。"
},
"Binds Include Missing": {
- "Binds Include Missing": "缺失的绑定包含"
+ "Binds Include Missing": "快捷键绑定引用缺失"
},
"Binds include added": {
- "Binds include added": "已添加绑定包含"
+ "Binds include added": "快捷键绑定引用已添加"
},
"Bit Depth": {
"Bit Depth": "位深"
},
"Black": {
- "Black": ""
+ "Black": "黑体"
},
"Block Out": {
- "Block Out": "封锁"
+ "Block Out": "阻止捕获"
},
"Block Out From": {
- "Block Out From": "从此处封锁"
+ "Block Out From": "阻止捕获来源"
},
"Block notifications": {
"Block notifications": "屏蔽通知"
@@ -953,11 +1019,14 @@
"Bluetooth not available": {
"Bluetooth not available": "蓝牙不可用"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "模糊边框颜色"
},
"Blur Border Opacity": {
- "Blur Border Opacity": "模糊边框透明度"
+ "Blur Border Opacity": "模糊边框不透明度"
},
"Blur Wallpaper Layer": {
"Blur Wallpaper Layer": "模糊壁纸层"
@@ -966,16 +1035,16 @@
"Blur on Overview": "在概览中模糊"
},
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
- "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "模糊状态栏、弹窗、模态以及通知的背景。需要合成器支持与配置。"
+ "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": "模糊状态栏、弹窗、模态框以及通知的背景。需要合成器支持与配置。"
},
"Blur wallpaper when niri overview is open": {
- "Blur wallpaper when niri overview is open": "当打开概览时模糊壁纸"
+ "Blur wallpaper when niri overview is open": "打开 Niri 概览时模糊壁纸"
},
"Body": {
"Body": "主体"
},
"Bold": {
- "Bold": ""
+ "Bold": "粗体"
},
"Border": {
"Border": "边框"
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "边框颜色"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "边框透明度"
},
@@ -990,37 +1062,40 @@
"Border Radius": "边框半径"
},
"Border Size": {
- "Border Size": "边框宽度"
+ "Border Size": "边框尺寸"
},
"Border Thickness": {
- "Border Thickness": "边框厚度"
+ "Border Thickness": "边框尺寸"
},
"Border Width": {
"Border Width": "边框宽度"
},
"Border color around blurred surfaces": {
- "Border color around blurred surfaces": "模糊表面周围的边框颜色"
+ "Border color around blurred surfaces": "模糊平面周围的边框颜色"
},
- "Border with BG": {
- "Border with BG": "带BG的边框"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "底部"
},
"Bottom Center": {
- "Bottom Center": "底部中间"
+ "Bottom Center": "中下"
},
"Bottom Left": {
- "Bottom Left": "左下角"
+ "Bottom Left": "左下"
},
"Bottom Right": {
- "Bottom Right": "右下角"
+ "Bottom Right": "右下"
},
"Bottom Section": {
"Bottom Section": "底部区域"
},
"Bottom dock for pinned and running applications": {
- "Bottom dock for pinned and running applications": "底部程序坞:显示已固定和活动应用"
+ "Bottom dock for pinned and running applications": "显示已固定和运行中应用的程序坞"
},
"Brightness": {
"Brightness": "亮度"
@@ -1056,7 +1131,7 @@
"CPU": "CPU"
},
"CPU Graph": {
- "CPU Graph": "CPU图表"
+ "CPU Graph": "CPU 图表"
},
"CPU Temperature": {
"CPU Temperature": "CPU 温度"
@@ -1065,10 +1140,10 @@
"CPU Usage": "CPU 占用"
},
"CPU temperature display": {
- "CPU temperature display": "显示 CPU 温度"
+ "CPU temperature display": "CPU 温度显示"
},
"CPU usage indicator": {
- "CPU usage indicator": "CPU 占用情况"
+ "CPU usage indicator": "CPU 占用指示器"
},
"CPU, memory, network, and disk monitoring": {
"CPU, memory, network, and disk monitoring": "CPU、内存、网络与磁盘监控"
@@ -1083,10 +1158,10 @@
"CUPS Print Server": "CUPS 打印服务器"
},
"CUPS not available": {
- "CUPS not available": "CUPS不可用"
+ "CUPS not available": "CUPS 不可用"
},
"Calendar": {
- "Calendar": ""
+ "Calendar": "日历"
},
"Camera": {
"Camera": "摄像头"
@@ -1101,7 +1176,7 @@
"Canceled": "已取消"
},
"Cannot delete the only administrator": {
- "Cannot delete the only administrator": ""
+ "Cannot delete the only administrator": "无法删除唯一的管理员"
},
"Cannot disable the only output": {
"Cannot disable the only output": "不可禁用唯一输出"
@@ -1110,13 +1185,13 @@
"Cannot open trash: '%1' is not installed": "无法打开回收站:“%1”未安装"
},
"Cannot open trash: no custom command set": {
- "Cannot open trash: no custom command set": "无法打开垃圾桶:未设置自定义命令"
+ "Cannot open trash: no custom command set": "无法打开回收站:未设置自定义命令"
},
"Cannot pair": {
"Cannot pair": "无法配对"
},
"Cannot remove the only administrator": {
- "Cannot remove the only administrator": ""
+ "Cannot remove the only administrator": "无法移除唯一的管理员"
},
"Capabilities": {
"Capabilities": "功能"
@@ -1125,13 +1200,19 @@
"Capacity": "电池容量"
},
"Caps Lock": {
- "Caps Lock": "大写锁定"
+ "Caps Lock": "大写锁"
},
"Caps Lock Indicator": {
- "Caps Lock Indicator": "大小写指示灯"
+ "Caps Lock Indicator": "大写锁指示灯"
},
"Caps Lock is on": {
- "Caps Lock is on": "大小写已锁定"
+ "Caps Lock is on": "大写锁已激活"
+ },
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
},
"Center Section": {
"Center Section": "中间区域"
@@ -1170,46 +1251,43 @@
"Check for system updates": "检查系统更新"
},
"Check interval": {
- "Check interval": "检查区间"
+ "Check interval": "检查间隔"
},
"Check on startup": {
- "Check on startup": ""
+ "Check on startup": "启动时检查"
},
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
- },
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "按需检查同步状态。同步会将你的主题、设置和壁纸配置复制到登录界面。认证变更会自动生效。"
+ "Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": "按需检查同步状态。“同步(完整)”供主管理员使用:它会将你的主题复制到登录屏幕,并设置系统登录界面配置。在多用户系统上,请在“设置” → “用户”中添加其他账户,然后让各用户注销并重新登录后运行 dms greeter sync --profile,而不是执行完整同步。认证变更会自动应用。"
},
"Check your custom command in Settings → Dock → Trash.": {
- "Check your custom command in Settings → Dock → Trash.": "在设置→程序坞→回收站中检查你的自定义命令。"
+ "Check your custom command in Settings → Dock → Trash.": "在“设置” → “程序坞” → “回收站”中检查你的自定义命令。"
},
"Checking for updates...": {
- "Checking for updates...": "正检测更新……"
+ "Checking for updates...": "正在检查更新..."
},
"Checking whether sudo authentication is needed…": {
"Checking whether sudo authentication is needed…": "正在检查是否需要 sudo 认证..."
},
"Checking...": {
- "Checking...": "检测中……"
+ "Checking...": "正在检查..."
},
"Checking…": {
- "Checking…": "检查中……"
+ "Checking…": "正在检查..."
},
"Choose Color": {
"Choose Color": "选择颜色"
},
"Choose Dark Mode Color": {
- "Choose Dark Mode Color": "选择黑暗模式颜色"
+ "Choose Dark Mode Color": "选择深色模式颜色"
},
"Choose Dock Launcher Logo Color": {
- "Choose Dock Launcher Logo Color": "选择程序坞启动器图标颜色"
+ "Choose Dock Launcher Logo Color": "选择程序坞启动器 Logo 颜色"
},
"Choose Launcher Logo Color": {
"Choose Launcher Logo Color": "设置启动器 Logo 颜色"
},
"Choose Light Mode Color": {
- "Choose Light Mode Color": "选择明亮模式颜色"
+ "Choose Light Mode Color": "选择浅色模式颜色"
},
"Choose Wallpaper Color": {
"Choose Wallpaper Color": "选择壁纸颜色"
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "选择颜色"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "从调色板中选择颜色"
},
@@ -1239,7 +1320,7 @@
"Choose the border accent color": "选择边框强调色"
},
"Choose the logo displayed on the launcher button in DankBar": {
- "Choose the logo displayed on the launcher button in DankBar": "选择在 DankBar 启动器按钮上显示的 Logo"
+ "Choose the logo displayed on the launcher button in DankBar": "选择在 Dank 状态栏上启动器按钮显示的 Logo"
},
"Choose where notification popups appear on screen": {
"Choose where notification popups appear on screen": "设置通知弹窗的出现位置"
@@ -1247,11 +1328,14 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "选择 OSD 在屏幕上出现的位置"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose 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 屏幕防烧伤。"
+ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "选择哪个显示器显示锁屏界面。其他显示器将显示纯色以防止 OLED 屏幕烧伤。"
},
"Chroma Style": {
"Chroma Style": "浓度风格"
@@ -1262,8 +1346,11 @@
"Circle": {
"Circle": "圆形"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
- "Class regex (e.g. ^firefox$)": "窗口类型正则(比如^firefox$)"
+ "Class regex (e.g. ^firefox$)": "窗口类型正则(比如:^firefox$)"
},
"Clear": {
"Clear": "清除"
@@ -1287,16 +1374,16 @@
"Clear at Startup": "启动时清除"
},
"Click 'Setup' to create %1 and add include to config.": {
- "Click 'Setup' to create %1 and add include to config.": "点击设置以创建%1并将其包含至配置文件。"
+ "Click 'Setup' to create %1 and add include to config.": "点击“设置”以创建%1配置,并添加引用至合成器配置文件。"
},
"Click 'Setup' to create %1 and add include to your compositor config.": {
- "Click 'Setup' to create %1 and add include to your compositor config.": "点击设置以创建%1并添加包含文件至合成器配置文件。"
+ "Click 'Setup' to create %1 and add include to your compositor config.": "点击“设置”以创建%1配置,并添加引用至合成器配置文件。"
},
"Click 'Setup' to create cursor config and add include to your compositor config.": {
- "Click 'Setup' to create cursor config and add include to your compositor config.": "点击设置以创建光标配置,并导入至合成器配置文件。"
+ "Click 'Setup' to create cursor config and add include to your compositor config.": "点击“设置”以创建光标配置,并添加引用至合成器配置文件。"
},
"Click 'Setup' to create the outputs config and add include to your compositor config.": {
- "Click 'Setup' to create the outputs config and add include to your compositor config.": "点击设置以创建输出配置,并添加至合成器配置。"
+ "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 文件"
@@ -1308,13 +1395,13 @@
"Click Through": "鼠标穿透"
},
"Click any shortcut to edit. Changes save to %1": {
- "Click any shortcut to edit. Changes save to %1": "点击任意快捷方式以编辑。更改将保存至%1。"
+ "Click any shortcut to edit. Changes save to %1": "点击任意快捷方式以编辑。更改将保存至 %1。"
},
"Click to capture": {
"Click to capture": "点击以捕获"
},
"Click to select a custom theme JSON file": {
- "Click to select a custom theme JSON file": "点击以选择自定义主题的JSON文件"
+ "Click to select a custom theme JSON file": "点击以选择自定义主题的 JSON 文件"
},
"Clip": {
"Clip": "裁剪"
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "剪切板管理器"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "已发送剪切板"
},
- "Clipboard service not available": {
- "Clipboard service not available": "剪切板服务不可用"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "剪切板正常工作但无存入磁盘内容"
},
@@ -1362,7 +1449,7 @@
"Color": "颜色"
},
"Color %1 copied": {
- "Color %1 copied": ""
+ "Color %1 copied": "已复制 HEX 颜色 %1"
},
"Color Gamut": {
"Color Gamut": "色域"
@@ -1383,7 +1470,7 @@
"Color Temperature": "色温"
},
"Color displayed on monitors without the lock screen": {
- "Color displayed on monitors without the lock screen": "未显示锁屏的显示器上显示的颜色"
+ "Color displayed on monitors without the lock screen": "未显示锁屏界面的显示器上显示的颜色"
},
"Color for primary action buttons": {
"Color for primary action buttons": "主要操作按钮颜色"
@@ -1395,19 +1482,19 @@
"Color temperature for night mode": "夜间模式色温"
},
"Color theme for syntax highlighting.": {
- "Color theme for syntax highlighting.": "语法高亮的颜色主题。"
+ "Color theme for syntax highlighting.": "语法高亮颜色主题。"
},
"Color theme for syntax highlighting. %1 themes available.": {
- "Color theme for syntax highlighting. %1 themes available.": "语法高亮的颜色主题。有%1的主题可供使用。"
+ "Color theme for syntax highlighting. %1 themes available.": "语法高亮颜色主题。共 %1 个主题可供使用。"
},
"Color theme from DMS registry": {
- "Color theme from DMS registry": "DMS注册表的颜色主题"
+ "Color theme from DMS registry": "DMS 主题仓库的颜色主题"
},
"Colorful": {
"Colorful": "彩色"
},
"Colorful mix of bright contrasting accents.": {
- "Colorful mix of bright contrasting accents.": "色彩鲜明、对比强烈的配色。"
+ "Colorful mix of bright contrasting accents.": "色彩鲜明、对比强烈的配色"
},
"Colorize Active": {
"Colorize Active": "激活上色"
@@ -1419,17 +1506,20 @@
"Column": "列"
},
"Column Display": {
- "Column Display": "列式显示"
+ "Column Display": "列显示方式"
},
"Column Width": {
"Column Width": "列宽"
},
"Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": {
- "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": "要隐藏的会话名称的逗号分隔列表。使用正则表达式时用斜杠包裹(例如 /^_.*/)。"
+ "Comma-separated list of session names to hide. Wrap in slashes for regex (e.g., /^_.*/).": "要隐藏的会话名称的逗号分隔列表。使用正则表达式时用斜杠包裹(例如:/^_.*/)。"
},
"Command": {
"Command": "命令"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "命令"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "合成器设置"
},
- "Compositor not supported": {
- "Compositor not supported": "合成器不支持"
- },
"Config Format": {
"Config Format": "配置格式"
},
@@ -1470,7 +1557,7 @@
"Configuration": "配置"
},
"Configuration activated": {
- "Configuration activated": "已应用配置"
+ "Configuration activated": "配置已激活"
},
"Configuration will be preserved when this display reconnects": {
"Configuration will be preserved when this display reconnects": "当该显示器重新连接时,配置将被保留"
@@ -1491,13 +1578,13 @@
"Configure match criteria and actions": "配置文件匹配条件与动作"
},
"Configure one in Settings → Dock → Trash.": {
- "Configure one in Settings → Dock → Trash.": "在设置→程序坞→回收站中进行设置。"
+ "Configure one in Settings → Dock → Trash.": "在“设置” → “程序坞” → “回收站”中进行设置。"
},
"Configure which displays show \"%1": {
- "Configure which displays show \"%1\"": "配置要显示的显示器\"%1\""
+ "Configure which displays show \"%1\"": "配置要显示“%1” 的显示器"
},
"Configure which displays show shell components": {
- "Configure which displays show shell components": "配置哪些显示器显示各类部件"
+ "Configure which displays show shell components": "为显示器分配可显示的 shell 组件"
},
"Confirm": {
"Confirm": "确认"
@@ -1506,13 +1593,13 @@
"Confirm Delete": "确认删除"
},
"Confirm Display Changes": {
- "Confirm Display Changes": "确认显示更改"
+ "Confirm Display Changes": "确认显示器更改"
},
"Confirm passkey for ": {
"Confirm passkey for ": "确认密钥 "
},
"Confirm password": {
- "Confirm password": ""
+ "Confirm password": "确认密码"
},
"Conflicts with: %1": {
"Conflicts with: %1": "冲突:%1"
@@ -1536,25 +1623,25 @@
"Connected Device": "已连接的设备"
},
"Connected Displays": {
- "Connected Displays": "已连接显示器"
+ "Connected Displays": "已连接的显示器"
},
"Connected Frame Mode uses the connected launcher for default launcher shortcuts.": {
- "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": ""
+ "Connected Frame Mode uses the connected launcher for default launcher shortcuts.": "连接框架模式会将连接式启动器用于默认启动器快捷键。"
},
"Connected Options": {
"Connected Options": "连接选项"
},
"Connected to %1": {
- "Connected to %1": "已连接至%1"
+ "Connected to %1": "已连接至 %1"
},
"Connecting to Device": {
- "Connecting to Device": "连接设备中"
+ "Connecting to Device": "正在连接设备"
},
"Connecting to clipboard service…": {
- "Connecting to clipboard service…": "正在连接剪贴板服务......"
+ "Connecting to clipboard service…": "正在连接剪贴板服务..."
},
"Connecting...": {
- "Connecting...": "连接中..."
+ "Connecting...": "正在连接..."
},
"Connection failed": {
"Connection failed": "连接失败"
@@ -1571,11 +1658,14 @@
"Contrast": {
"Contrast": "对比度"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "控制中心"
},
"Control Center Tile Color": {
- "Control Center Tile Color": "控制中心平铺颜色"
+ "Control Center Tile Color": "控制中心磁帖颜色"
},
"Control animation duration for notification popups and history": {
"Control animation duration for notification popups and history": "控制通知弹窗和历史记录的动画持续时间"
@@ -1587,10 +1677,10 @@
"Control what notification information is shown on the lock screen": "控制在锁屏上显示的通知内容"
},
"Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": {
- "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "控制哪些插件会出现在“所有”模式中,而无需触发器prefix。可通过拖拽调整顺序。"
+ "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "控制哪些插件会在“全部”模式中显示,且无需触发前缀。可通过拖拽调整顺序。"
},
"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 how much original icon color is removed before applying tint": {
"Controls how much original icon color is removed before applying tint": "控制在加色前去除多少原始图标颜色"
@@ -1599,13 +1689,13 @@
"Controls how strongly the selected tint color is applied": "控制选定的色调颜色的应用强度"
},
"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": "控制所有弹窗、模态框及其内容层的透明度"
},
"Controls outlines around blurred foreground cards, pills, and notification cards": {
- "Controls outlines around blurred foreground cards, pills, and notification cards": "控制模糊的前景卡片、按钮和通知卡的轮廓"
+ "Controls outlines around blurred foreground cards, pills, and notification cards": "控制已模糊处理的前景卡片、按钮和通知卡片的轮廓"
},
"Controls shadow cast direction for elevation layers": {
- "Controls shadow cast direction for elevation layers": "控制提升图层的阴影投射方向"
+ "Controls shadow cast direction for elevation layers": "控制高程层的阴影投射方向"
},
"Controls the base blur radius and offset of shadows": {
"Controls the base blur radius and offset of shadows": "控制阴影的基础模糊半径和偏移量"
@@ -1619,17 +1709,20 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "登录界面的便捷选项。同步以应用。"
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "冷却"
},
"Copied GIF": {
- "Copied GIF": "已复制的动图"
+ "Copied GIF": "已复制的 GIF"
},
"Copied MP4": {
- "Copied MP4": "已复制的MP4"
+ "Copied MP4": "已复制的 MP4"
},
"Copied WebP": {
- "Copied WebP": "已复制的WebP"
+ "Copied WebP": "已复制的 WebP"
},
"Copied to clipboard": {
"Copied to clipboard": "复制到剪切板"
@@ -1653,10 +1746,7 @@
"Copy Name": "复制名称"
},
"Copy PID": {
- "Copy PID": "复制进程ID"
- },
- "Copy Path": {
- "Copy Path": "复制路径"
+ "Copy PID": "复制进程 ID"
},
"Copy Text": {
"Copy Text": "复制文本"
@@ -1671,7 +1761,10 @@
"Corner Radius Override": "圆角半径覆盖"
},
"Corners & Background": {
- "Corners & Background": "角落与背景"
+ "Corners & Background": "圆角与背景"
+ },
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
},
"Count Only": {
"Count Only": "仅数量"
@@ -1689,13 +1782,13 @@
"Create Printer": "创建打印机"
},
"Create User": {
- "Create User": ""
+ "Create User": "创建用户"
},
"Create Window Rule": {
"Create Window Rule": "创建窗口规则"
},
"Create a new %1 session (n)": {
- "Create a new %1 session (n)": "创建一个%1会话(n)"
+ "Create a new %1 session (n)": "创建新的 %1 会话(n)"
},
"Create rule for:": {
"Create rule for:": "为此创建规则:"
@@ -1704,28 +1797,22 @@
"Create rules to mute, ignore, hide from history, or override notification priority. Default only overrides priority; notifications still show normally.": "创建规则以静音、忽略、从历史记录中隐藏或覆盖通知优先级。默认设置仅覆盖优先级;通知仍会正常显示。"
},
"Created plugin directory: %1": {
- "Created plugin directory: %1": ""
+ "Created plugin directory: %1": "已创建插件目录:%1"
},
"Creating...": {
"Creating...": "正在创建..."
},
"Critical Priority": {
- "Critical Priority": "紧急通知"
+ "Critical Priority": "紧急优先级"
},
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切换标签 • Ctrl+S:固定/取消固定 • Shift+Del:全部清除 • Esc:关闭"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切换标签 • Ctrl+S:固定/取消固定 • Shift+Enter:复制 • Shift+Del:全部清除 • Esc:关闭"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切换标签 • Ctrl+S:固定/取消固定 • Shift+Enter:粘贴 • Shift+Del:全部清除 • Esc:关闭"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab:切换标签页 • Ctrl+S:固定/取消固定 • Shift+Enter:复制 • Shift+Del:清空全部 • F10:帮助 • Esc:关闭"
},
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": {
- "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": ""
+ "Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • F10: Help • Esc: Close": "Ctrl+Tab:切换标签页 • Ctrl+S:固定/取消固定 • Shift+Enter:粘贴 • Shift+Del:清空全部 • F10:帮助 • Esc:关闭"
},
"Current": {
"Current": "当前"
@@ -1770,7 +1857,7 @@
"Cursor Config Not Configured": "光标未配置"
},
"Cursor Include Missing": {
- "Cursor Include Missing": "未找到光标导入配置"
+ "Cursor Include Missing": "光标引用缺失"
},
"Cursor Size": {
"Cursor Size": "光标尺寸"
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "光标主题"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "曲线:曲线光栅器。"
},
@@ -1836,7 +1926,7 @@
"Custom power profile": "自定义电源配置"
},
"Custom theme loaded from JSON file": {
- "Custom theme loaded from JSON file": "从JSON文件加载的自定义主题"
+ "Custom theme loaded from JSON file": "从 JSON 文件加载的自定义主题"
},
"Custom update command": {
"Custom update command": "自定义更新命令"
@@ -1845,7 +1935,7 @@
"Custom...": "自定义..."
},
"Custom: ": {
- "Custom: ": "自定义: "
+ "Custom: ": "自定义:"
},
"Customizable empty space": {
"Customizable empty space": "可调节留白"
@@ -1854,40 +1944,43 @@
"Customize which actions appear in the power menu": "自定义电源菜单选项"
},
"DDC/CI monitor": {
- "DDC/CI monitor": "DDC/CI监视器"
+ "DDC/CI monitor": "DDC/CI 监视器"
},
"DEMO MODE - Click anywhere to exit": {
"DEMO MODE - Click anywhere to exit": "演示模式 - 点击任意位置退出"
},
"DMS Chooser": {
- "DMS Chooser": ""
+ "DMS Chooser": "DMS 选择器"
},
"DMS Plugin Manager Unavailable": {
"DMS Plugin Manager Unavailable": "DMS 插件管理器不可用"
},
"DMS Settings": {
- "DMS Settings": ""
+ "DMS Settings": "DMS 设置"
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
- "DMS Shortcuts": "DMS快捷键"
+ "DMS Shortcuts": "DMS 快捷键"
},
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
- "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS欢迎界面需要:greetd、dms-greeter。指纹:fprintd、pam_fprintd。安全钥匙:pam_u2f。把你的用户添加到greeter组。认证变更会自动应用,当需要sudo认证时,可能会打开终端。"
+ "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS 登录界面需要:greetd、dms-greeter。指纹:fprintd、pam_fprintd。安全密钥:pam_u2f。请将你的用户添加到 greeter 组。认证变更会自动应用,需要 sudo 认证时可能会打开终端。"
+ },
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
},
"DMS out of date": {
- "DMS out of date": "DMS 不是最新版本"
+ "DMS out of date": "DMS 已过期"
},
"DMS server is outdated (API v%1, expected v%2)": {
- "DMS server is outdated (API v%1, expected v%2)": ""
+ "DMS server is outdated (API v%1, expected v%2)": "DMS 服务器版本过旧(API v%1,应为 v%2)"
},
"DMS service is not connected. Clipboard settings are unavailable.": {
- "DMS service is not connected. Clipboard settings are unavailable.": "DMS服务未连接。剪切板设置不可用。"
+ "DMS service is not connected. Clipboard settings are unavailable.": "DMS 服务未连接。剪切板设置不可用。"
},
"DMS shell actions (launcher, clipboard, etc.)": {
- "DMS shell actions (launcher, clipboard, etc.)": "DMS shell 操作(启动器、剪贴板等)"
+ "DMS shell actions (launcher, clipboard, etc.)": "DMS Shell 操作(启动器、剪贴板等)"
},
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET 不可用"
@@ -1905,37 +1998,34 @@
"Dank": "Dank"
},
"Dank Bar": {
- "Dank Bar": "Dank Bar"
+ "Dank Bar": "Dank 状态栏"
},
"DankBar": {
- "DankBar": "DankBar"
+ "DankBar": "Dank 状态栏"
},
"DankMaterialShell is ready to use": {
- "DankMaterialShell is ready to use": "DankMaterialShell现已可用"
+ "DankMaterialShell is ready to use": "DankMaterialShell 现已可用"
},
"DankShell & System Icons (requires restart)": {
"DankShell & System Icons (requires restart)": "DankShell 和系统图标 (需要重启)"
},
"Dark Mode": {
- "Dark Mode": "暗色模式"
+ "Dark Mode": "深色模式"
},
"Dark mode base": {
- "Dark mode base": "基于黑暗模式"
+ "Dark mode base": "深色模式基于..."
},
"Dark mode harmony": {
- "Dark mode harmony": "黑暗模式和谐"
+ "Dark mode harmony": "深色模式调和"
},
"Darken Modal Background": {
- "Darken Modal Background": "暗化背景"
+ "Darken Modal Background": "暗化模态框背景"
},
"Date Format": {
"Date Format": "日期格式"
},
- "Date format": {
- "Date format": "日期格式"
- },
"Date format on greeter": {
- "Date format on greeter": "Greeter 界面日期格式"
+ "Date format on greeter": "登录界面日期格式"
},
"Dawn (Astronomical Twilight)": {
"Dawn (Astronomical Twilight)": "黎明(天文晨光)"
@@ -1947,16 +2037,16 @@
"Dawn (Nautical Twilight)": "黎明(航海晨光)"
},
"Day Date": {
- "Day Date": "日 日期"
+ "Day Date": "周 日"
},
"Day Month Date": {
- "Day Month Date": "日 月份 日期"
+ "Day Month Date": "周 月 日"
},
"Day Temperature": {
"Day Temperature": "日间色温"
},
"Daytime": {
- "Daytime": "日期"
+ "Daytime": "白天"
},
"Deck": {
"Deck": "Deck"
@@ -1968,49 +2058,49 @@
"Default (Black)": "默认(黑色)"
},
"Default (Global)": {
- "Default (Global)": ""
+ "Default (Global)": "默认(全局)"
},
"Default Apps": {
- "Default Apps": ""
+ "Default Apps": "默认应用"
},
"Default Launcher": {
- "Default Launcher": ""
+ "Default Launcher": "默认启动器"
},
"Default Launcher Shortcut": {
- "Default Launcher Shortcut": ""
+ "Default Launcher Shortcut": "默认启动器快捷键"
},
"Default Opens": {
- "Default Opens": ""
+ "Default Opens": "默认打开"
},
"Default Width (%)": {
"Default Width (%)": "默认宽度(%)"
},
"Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": {
- "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": ""
+ "Default launcher shortcuts open the full launcher with mode tabs, grid view, and action panel.": "默认启动器快捷键会打开带模式标签页、网格视图和操作面板的完整启动器。"
},
"Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": {
- "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": ""
+ "Default launcher shortcuts open the minimal Spotlight Bar. The dedicated Spotlight Bar shortcut below stays independent.": "默认启动器快捷键会打开极简聚焦搜索栏。下方专用聚焦搜索栏快捷键保持独立。"
},
"Default selected action": {
"Default selected action": "默认选项"
},
"Defaults": {
- "Defaults": "复位"
+ "Defaults": "默认值"
},
"Define rules for window behavior. Saves to %1": {
- "Define rules for window behavior. Saves to %1": "定义窗口行为规则。保存至%1"
+ "Define rules for window behavior. Saves to %1": "定义窗口行为规则。保存至 %1"
},
"Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": {
- "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": "Del: 清除 • Shift+Del: 清空 • 1-9: 操作 • F10: 帮助 • Esc: 关闭"
+ "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": "Del:清除 • Shift+Del:清空 • 1-9:操作 • F10:帮助 • Esc:关闭"
},
"Delete": {
"Delete": "删除"
},
"Delete \"%1\" and remove the home directory? This cannot be undone.": {
- "Delete \"%1\" and remove the home directory? This cannot be undone.": ""
+ "Delete \"%1\" and remove the home directory? This cannot be undone.": "确认删除“%1” 并移除主目录?此操作无法撤销。"
},
"Delete \"%1\"?": {
- "Delete \"%1\"?": "删除\"%1\"?"
+ "Delete \"%1\"?": "删除“%1” 吗?"
},
"Delete Class": {
"Delete Class": "删除类别"
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "删除打印机"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "是否删除已保存项目?"
},
@@ -2025,19 +2118,19 @@
"Delete VPN": "删除 VPN"
},
"Delete class \"%1\"?": {
- "Delete class \"%1\"?": "删除类别\"%1\"?"
+ "Delete class \"%1\"?": "删除类别“%1” 吗?"
},
"Delete profile \"%1\"?": {
- "Delete profile \"%1\"?": "删除档案\"%1\"?"
+ "Delete profile \"%1\"?": "删除配置“%1” 吗?"
},
"Delete user": {
- "Delete user": ""
+ "Delete user": "删除用户"
},
"Delete user?": {
- "Delete user?": ""
+ "Delete user?": "删除用户吗?"
},
"Demi Bold": {
- "Demi Bold": ""
+ "Demi Bold": "半粗"
},
"Dependencies & documentation": {
"Dependencies & documentation": "依赖与文档"
@@ -2046,10 +2139,10 @@
"Depth": "深度"
},
"Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": {
- "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": "深度:面板从小滑入时逐渐放大——产生戏剧性的前置深度效果。"
+ "Depth: Panels scale up from small as they slide in — a dramatic pop-forward depth effect.": "深度:面板滑入时逐渐从小变大——急剧变化的向前弹出的深度效果。"
},
"Derives colors that closely match the underlying image.": {
- "Derives colors that closely match the underlying image.": "提取与壁纸高度匹配的颜色。"
+ "Derives colors that closely match the underlying image.": "提取与壁纸相近的颜色"
},
"Description": {
"Description": "描述"
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "桌面"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "桌面时钟"
},
@@ -2076,7 +2172,7 @@
"Detailed": "详细"
},
"Details for \"%1": {
- "Details for \"%1\"": "\"%1\"的详细信息"
+ "Details for \"%1\"": "“%1” 的详细信息"
},
"Detected backends: %1": {
"Detected backends: %1": "检测到后端:%1"
@@ -2100,16 +2196,16 @@
"Device unpaired": "设备已取消配对"
},
"Digital": {
- "Digital": "电子"
+ "Digital": "数字式"
},
"Direction Source": {
- "Direction Source": "方向源"
+ "Direction Source": "方向来源"
},
"Directional": {
"Directional": "定向"
},
"Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": {
- "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": "定向:面板从较远距离滑入全尺寸——无比例变化,纯粹干净的运动。"
+ "Directional: Panels glide in from a larger distance at full size — no scale change, pure clean motion.": "定向:面板从较远距离以全尺寸滑入——无比例变化,纯粹干净的运动。"
},
"Disable Autoconnect": {
"Disable Autoconnect": "禁用自动连接"
@@ -2121,19 +2217,22 @@
"Disable History Persistence": "禁用历史持久化"
},
"Disable Output": {
- "Disable Output": "禁止输出"
+ "Disable Output": "禁用输出"
},
"Disabled": {
- "Disabled": "已关闭"
+ "Disabled": "已禁用"
},
"Disabled by Frame Mode": {
"Disabled by Frame Mode": "已被框架模式禁用"
},
"Disabling WiFi...": {
- "Disabling WiFi...": "正在禁用WiFi..."
+ "Disabling WiFi...": "正在禁用 Wi-Fi..."
+ },
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
},
"Disc": {
- "Disc": "涟漪"
+ "Disc": "圆盘"
},
"Discard": {
"Discard": "放弃"
@@ -2157,25 +2256,25 @@
"Disk": "磁盘"
},
"Disk I/O": {
- "Disk I/O": "磁盘I/O"
+ "Disk I/O": "磁盘 I/O"
},
"Disk Usage": {
"Disk Usage": "磁盘占用"
},
"Disk Usage Display": {
- "Disk Usage Display": "显示磁盘使用量"
+ "Disk Usage Display": "磁盘占用显示"
},
"Disks": {
"Disks": "磁盘"
},
"Dismiss": {
- "Dismiss": "忽略"
+ "Dismiss": "关闭"
},
"Display": {
- "Display": "显示"
+ "Display": "显示器"
},
"Display Assignment": {
- "Display Assignment": "显示布局"
+ "Display Assignment": "显示器分配"
},
"Display Control": {
"Display Control": "显示控制"
@@ -2184,7 +2283,7 @@
"Display Name Format": "显示名称格式"
},
"Display Profiles": {
- "Display Profiles": "显示档案"
+ "Display Profiles": "显示器配置"
},
"Display Settings": {
"Display Settings": "显示设置"
@@ -2202,19 +2301,22 @@
"Display application icons in workspace indicators": "在工作区指示器中显示应用程序图标"
},
"Display brightness control": {
- "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.": "显示配置不可用。WLR输出管理协议不受支持。"
+ "Display configuration is not available. WLR output management protocol not supported.": "显示配置不可用。WLR 输出管理协议不受支持。"
},
"Display currently focused application title": {
"Display currently focused application title": "显示当前聚焦应用的标题"
},
"Display hourly weather predictions": {
- "Display hourly weather predictions": "显示每小时天气预报"
+ "Display hourly weather predictions": "显示每小时天气预测"
},
"Display line numbers in editor": {
- "Display line numbers in editor": ""
+ "Display line numbers in editor": "在编辑器中显示行号"
+ },
+ "Display name for this entry": {
+ "Display name for this entry": ""
},
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "只显示包含窗口的工作区"
@@ -2225,14 +2327,17 @@
"Display seconds in the clock": {
"Display seconds in the clock": "在时钟中显示秒数"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "显示电源菜单"
},
"Display volume and brightness percentage values in OSD popups": {
- "Display volume and brightness percentage values in OSD popups": "在 OSD 弹出窗口中显示音量和亮度百分比值"
+ "Display volume and brightness percentage values in OSD popups": "在 OSD 弹窗中显示音量和亮度百分比值"
},
"Displays": {
- "Displays": "显示"
+ "Displays": "显示器"
},
"Displays count when overflow is active": {
"Displays count when overflow is active": "当溢出激活时显示计数"
@@ -2244,7 +2349,7 @@
"Distribution": "发行"
},
"Diverse palette spanning the full spectrum.": {
- "Diverse palette spanning the full spectrum.": "绚丽多彩,覆盖全色系的配色。"
+ "Diverse palette spanning the full spectrum.": "多元配色,覆盖全面"
},
"Do Not Disturb": {
"Do Not Disturb": "勿扰模式"
@@ -2262,10 +2367,7 @@
"Dock Visibility": "程序坞可见性"
},
"Dock margin, transparency, and border": {
- "Dock margin, transparency, and border": "程序坞便捷、透明度和边框"
- },
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "程序坞间隙、透明度与边框"
+ "Dock margin, transparency, and border": "程序坞边距、透明度和边框"
},
"Docs": {
"Docs": "文档"
@@ -2274,10 +2376,10 @@
"Documents": "文档"
},
"Domain (optional)": {
- "Domain (optional)": "域(可选)"
+ "Domain (optional)": "域名(可选)"
},
"Don't Change": {
- "Don't Change": "不要更改"
+ "Don't Change": "保持当前状态"
},
"Don't Save": {
"Don't Save": "不要保存"
@@ -2292,13 +2394,13 @@
"Drag to Reorder": "拖动以重新排序"
},
"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.": "拖动部件以在各区块内重新排序。点击眼睛图标可隐藏/显示部件(保留间距),点击 X 可彻底移除。"
+ "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": "拖动部件以在各区域内重新排序。点击眼睛图标可隐藏/显示部件(保留占位),点击 X 可彻底移除。"
},
"Drag workspace indicators to reorder them": {
"Drag workspace indicators to reorder them": "拖动工作区指示器以重新排序"
},
"Draw a connected picture-frame border around the entire display": {
- "Draw a connected picture-frame border around the entire display": "在整个显示器周围画出连接的画框边框"
+ "Draw a connected picture-frame border around the entire display": "在整个显示器周围画出连接状态栏的画框边框"
},
"Driver": {
"Driver": "驱动程序"
@@ -2307,13 +2409,13 @@
"Drizzle": "细雨"
},
"Drop your override for %1 so the DMS default action re-applies?": {
- "Drop your override for %1 so the DMS default action re-applies?": ""
+ "Drop your override for %1 so the DMS default action re-applies?": "删除 %1 的覆盖设置并重新应用 DMS 默认动作吗?"
},
"Duplicate": {
"Duplicate": "复制"
},
"Duplicate Wallpaper with Blur": {
- "Duplicate Wallpaper with Blur": "带模糊效果的壁纸复本"
+ "Duplicate Wallpaper with Blur": "带模糊效果的壁纸副本"
},
"Duration": {
"Duration": "持续时间"
@@ -2337,10 +2439,10 @@
"Dynamic Theming": "动态主题"
},
"Dynamic colors from wallpaper": {
- "Dynamic colors from wallpaper": "自壁纸选取动态色"
+ "Dynamic colors from wallpaper": "从壁纸选取的动态色"
},
"Dynamic colors parse error: %1": {
- "Dynamic colors parse error: %1": ""
+ "Dynamic colors parse error: %1": "动态颜色解析错误:%1"
},
"Dynamic colors, presets": {
"Dynamic colors, presets": "动态颜色与预设"
@@ -2352,19 +2454,22 @@
"Edge Spacing": "边缘间距"
},
"Edge the launcher slides from": {
- "Edge the launcher slides from": "从此处渐渐滑动启动器"
+ "Edge the launcher slides from": "启动器滑入侧"
},
"Edit App": {
"Edit App": "编辑应用"
},
"Edit Clipboard": {
- "Edit Clipboard": ""
+ "Edit Clipboard": "编辑剪贴板"
+ },
+ "Edit Rule": {
+ "Edit Rule": ""
},
"Edit Window Rule": {
"Edit Window Rule": "编辑窗口规则"
},
"Edit clipboard text": {
- "Edit clipboard text": ""
+ "Edit clipboard text": "编辑剪贴板文本"
},
"Education": {
"Education": "教育"
@@ -2373,16 +2478,16 @@
"Empty": "空"
},
"Empty Trash": {
- "Empty Trash": "回收站是空的"
+ "Empty Trash": "清空回收站"
},
"Empty Trash (%1)": {
- "Empty Trash (%1)": "回收站是空的(%1)"
+ "Empty Trash (%1)": "清空回收站(%1)"
},
"Empty Trash?": {
- "Empty Trash?": "回收站是空的(?)"
+ "Empty Trash?": "清空回收站?"
},
"Enable 10-bit color depth for wider color gamut and HDR support": {
- "Enable 10-bit color depth for wider color gamut and HDR support": "为广色域与HDR支持启用10位色深"
+ "Enable 10-bit color depth for wider color gamut and HDR support": "启用 10 位颜色以支持更广色域和 HDR"
},
"Enable Autoconnect": {
"Enable Autoconnect": "启用自动连接"
@@ -2412,16 +2517,16 @@
"Enable Video Screensaver": "启用视频屏保"
},
"Enable Weather": {
- "Enable Weather": "显示天气"
+ "Enable Weather": "启用天气"
},
"Enable WiFi": {
"Enable WiFi": "启用 Wi-Fi"
},
"Enable a custom override below to set per-bar shadow intensity, opacity, and color.": {
- "Enable a custom override below to set per-bar shadow intensity, opacity, and color.": "在下方启用自定义覆盖,以设置每条状态栏的阴影强度、透明度和颜色。"
+ "Enable a custom override below to set per-bar shadow intensity, opacity, and color.": "启用以下自定义覆盖,设置每个状态栏的阴影强度、透明度和颜色。"
},
"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。"
+ "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "启用合成器可定位的模糊层(命名空间:dms:blurwallpaper),需要手动配置 Niri。"
},
"Enable fingerprint at login": {
"Enable fingerprint at login": "登录时启用指纹识别"
@@ -2430,7 +2535,7 @@
"Enable fingerprint authentication": "启用指纹认证"
},
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
- "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": "启用DMS欢迎界面的指纹或安全密钥。认证变更会自动生效。"
+ "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": "启用 DMS 登录界面的指纹或安全密钥。认证变更会自动生效。"
},
"Enable loginctl lock integration": {
"Enable loginctl lock integration": "启用 loginctl 锁定集成"
@@ -2442,7 +2547,7 @@
"Enable security key authentication": "启用安全密钥认证"
},
"Enabled": {
- "Enabled": "已开启"
+ "Enabled": "已启用"
},
"Enabled, but fingerprint availability could not be confirmed.": {
"Enabled, but fingerprint availability could not be confirmed.": "已启用,但无法确认指纹识别的可用性。"
@@ -2457,25 +2562,25 @@
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "已启用,但尚无指印注册。请注册指纹后执行同步。"
},
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
- "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "已启用,但尚未找到注册的安全密钥。一旦你的密钥注册或U2F配置更新,认证变更会自动生效。"
+ "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": "已启用,但尚未找到注册的安全密钥。一旦你的密钥注册或 U2F 配置更新,认证变更会自动生效。"
},
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
- "Enabled, but no registered security key was found yet. Register a key and run Sync.": "已启用,但未找到任何已注册安全密钥。请注册后执行同步。"
+ "Enabled, but no registered security key was found yet. Register a key and run Sync.": "已启用,但未找到任何已注册安全密钥。请注册后执行“同步”。"
},
"Enabled, but security-key availability could not be confirmed.": {
"Enabled, but security-key availability could not be confirmed.": "已启用,但无法确认安全密钥的可用性。"
},
"Enabled. PAM already provides fingerprint auth.": {
- "Enabled. PAM already provides fingerprint auth.": "已启用。PAM已提供指纹认证。"
+ "Enabled. PAM already provides fingerprint auth.": "已启用。PAM 已提供指纹认证。"
},
"Enabled. PAM already provides security-key auth.": {
- "Enabled. PAM already provides security-key auth.": "已启用。PAM已提供安全密钥认证。"
+ "Enabled. PAM already provides security-key auth.": "已启用。PAM 已提供安全密钥认证。"
},
"Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": {
- "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "已启用。PAM将提供指纹认证,但尚未注册指纹。"
+ "Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "已启用。PAM 将提供指纹认证,但尚未注册指纹。"
},
"Enabling WiFi...": {
- "Enabling WiFi...": "正在启用WiFi..."
+ "Enabling WiFi...": "正在启用 Wi-Fi..."
},
"End": {
"End": "结束"
@@ -2484,22 +2589,22 @@
"Enlarge on Hover": "悬停放大"
},
"Enlargement %": {
- "Enlargement %": "放大%1"
+ "Enlargement %": "放大 %"
},
"Enter 6-digit passkey": {
- "Enter 6-digit passkey": "输入六位数密钥"
+ "Enter 6-digit passkey": "输入六位数通行密钥"
},
"Enter PIN": {
- "Enter PIN": "输入PIN"
+ "Enter PIN": "输入 PIN"
},
"Enter PIN for ": {
- "Enter PIN for ": "输入PIN "
+ "Enter PIN for ": "输入 PIN "
},
"Enter URL or text to share": {
"Enter URL or text to share": "请输入想要共享的网址或文本"
},
"Enter a new name for session \"%1": {
- "Enter a new name for session \"%1\"": "为会话\"%1\"输入新名称"
+ "Enter a new name for session \"%1\"": "为会话“%1” 设置新名称"
},
"Enter a new name for this workspace": {
"Enter a new name for this workspace": "为此工作区键入新名称"
@@ -2514,7 +2619,7 @@
"Enter custom lock screen format (e.g., dddd, MMMM d)": "输入自定义锁屏格式(例如:dddd, MMMM d)"
},
"Enter custom top bar format (e.g., ddd MMM d)": {
- "Enter custom top bar format (e.g., ddd MMM d)": "输入自定义顶栏格式(例如:ddd MMM d)"
+ "Enter custom top bar format (e.g., ddd MMM d)": "输入自定义状态栏格式(例如:ddd MMM d)"
},
"Enter device name...": {
"Enter device name...": "输入设备名称..."
@@ -2523,13 +2628,13 @@
"Enter filename...": "输入文件名..."
},
"Enter launch prefix (e.g., 'uwsm-app')": {
- "Enter launch prefix (e.g., 'uwsm-app')": "输入启动前缀(例如 uwsm-app)"
+ "Enter launch prefix (e.g., 'uwsm-app')": "输入启动前缀(例如:uwsm-app)"
},
"Enter network name and password": {
"Enter network name and password": "输入网络名称与密码"
},
"Enter passkey for ": {
- "Enter passkey for ": "输入密钥 "
+ "Enter passkey for ": "输入通行密钥 "
},
"Enter password for ": {
"Enter password for ": "输入密码"
@@ -2538,11 +2643,14 @@
"Enter this passkey on ": "在该处输入此通行密钥 "
},
"Enter to Paste": {
- "Enter to Paste": "按回车以粘贴"
+ "Enter to Paste": "按下 Enter 粘贴"
},
"Enterprise": {
"Enterprise": "企业"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "项目已固定"
},
@@ -2562,16 +2670,16 @@
"Ethernet": "以太网"
},
"Every 15 minutes": {
- "Every 15 minutes": "每15分钟"
+ "Every 15 minutes": "每 15 分钟"
},
"Every 30 minutes": {
- "Every 30 minutes": "每30分钟"
+ "Every 30 minutes": "每 30 分钟"
},
"Every 4 hours": {
- "Every 4 hours": "每4小时"
+ "Every 4 hours": "每 4 小时"
},
"Every hour": {
- "Every hour": "每小时"
+ "Every hour": "每 1 小时"
},
"Exact": {
"Exact": "精确"
@@ -2580,10 +2688,10 @@
"Exclusive Zone Offset": "独占区域偏移量"
},
"Existing Users": {
- "Existing Users": ""
+ "Existing Users": "现有用户"
},
"Experimental Feature": {
- "Experimental Feature": "实验性质功能"
+ "Experimental Feature": "实验性功能"
},
"Explore": {
"Explore": "浏览"
@@ -2595,7 +2703,7 @@
"Expose the Arcs": "显示弧线"
},
"Expressive": {
- "Expressive": "具有表现力的"
+ "Expressive": "生动"
},
"Extend battery life": {
"Extend battery life": "延长电池寿命"
@@ -2610,58 +2718,52 @@
"Extra Arguments": "额外参数"
},
"Extra Bold": {
- "Extra Bold": ""
+ "Extra Bold": "特粗"
},
"Extra Light": {
- "Extra Light": ""
+ "Extra Light": "特细"
},
"F1/I: Toggle • F10: Help": {
- "F1/I: Toggle • F10: Help": "F1/I: 切换 • F10: 帮助"
+ "F1/I: Toggle • F10: Help": "F1/I:切换 • F10:帮助"
},
"Fade": {
"Fade": "淡入淡出"
},
"Fade to lock screen": {
- "Fade to lock screen": "淡出至锁定屏幕"
+ "Fade to lock screen": "渐变至锁屏"
},
"Fade to monitor off": {
- "Fade to monitor off": "淡出至显示器关闭"
+ "Fade to monitor off": "渐变至熄屏"
},
"Failed to accept pairing": {
"Failed to accept pairing": "接受配对失败"
},
"Failed to activate configuration": {
- "Failed to activate configuration": "无法应用配置"
- },
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "无法激活配置 - 未找到文件"
+ "Failed to activate configuration": "配置激活失败"
},
"Failed to add binds include": {
- "Failed to add binds include": "添加绑定包含失败"
+ "Failed to add binds include": "添加快捷键绑定引用失败"
},
"Failed to add printer to class": {
"Failed to add printer to class": "将打印机添加到类别失败"
},
"Failed to apply GTK colors": {
- "Failed to apply GTK colors": ""
+ "Failed to apply GTK colors": "应用 GTK 配色失败"
},
"Failed to apply Qt colors": {
- "Failed to apply Qt colors": ""
+ "Failed to apply Qt colors": "应用 QT 配色失败"
},
"Failed to apply profile": {
- "Failed to apply profile": "应用档案失败"
+ "Failed to apply profile": "应用配置失败"
},
"Failed to browse device": {
"Failed to browse device": "浏览设备失败"
},
"Failed to cancel all jobs": {
- "Failed to cancel all jobs": "无法取消所有任务"
+ "Failed to cancel all jobs": "取消所有任务失败"
},
"Failed to cancel selected job": {
- "Failed to cancel selected job": "无法取消所选的任务"
- },
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "检测更新失败:\n%1"
+ "Failed to cancel selected job": "取消所选的任务失败"
},
"Failed to check pin limit": {
"Failed to check pin limit": "检查固定限制失败"
@@ -2670,17 +2772,14 @@
"Failed to connect VPN": "连接 VPN 失败"
},
"Failed to connect to %1": {
- "Failed to connect to %1": "连接至%1失败"
+ "Failed to connect to %1": "连接至 %1 失败"
},
"Failed to copy entry": {
- "Failed to copy entry": "无法复制项目"
+ "Failed to copy entry": "复制项目失败"
},
"Failed to create printer": {
"Failed to create printer": "创建打印机失败"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "无法创建配置目录"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "删除 VPN 失败"
},
@@ -2697,25 +2796,25 @@
"Failed to disable night mode": "禁用夜间模式失败"
},
"Failed to disable plugin: %1": {
- "Failed to disable plugin: %1": ""
+ "Failed to disable plugin: %1": "禁用插件失败:%1"
},
"Failed to disconnect VPN": {
"Failed to disconnect VPN": "断开 VPN 失败"
},
"Failed to disconnect VPNs": {
- "Failed to disconnect VPNs": "断开 VPNs 失败"
+ "Failed to disconnect VPNs": "断开 VPN 失败"
},
"Failed to disconnect WiFi": {
- "Failed to disconnect WiFi": "无法断开 Wi-Fi 连接"
+ "Failed to disconnect WiFi": "断开 Wi-Fi 连接失败"
},
"Failed to empty trash": {
"Failed to empty trash": "清空回收站失败"
},
"Failed to enable IP location": {
- "Failed to enable IP location": "启用IP位置失败"
+ "Failed to enable IP location": "启用 IP 定位失败"
},
"Failed to enable WiFi": {
- "Failed to enable WiFi": "无法启用 Wi-Fi"
+ "Failed to enable WiFi": "启用 Wi-Fi 失败"
},
"Failed to enable job acceptance": {
"Failed to enable job acceptance": "启用任务接受失败"
@@ -2724,10 +2823,13 @@
"Failed to enable night mode": "启用夜间模式失败"
},
"Failed to enable plugin: %1": {
- "Failed to enable plugin: %1": ""
+ "Failed to enable plugin: %1": "启用插件失败:%1"
},
"Failed to fetch network QR code: %1": {
- "Failed to fetch network QR code: %1": ""
+ "Failed to fetch network QR code: %1": "获取网络二维码失败:%1"
+ },
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
},
"Failed to hold job": {
"Failed to hold job": "暂停任务失败"
@@ -2736,13 +2838,13 @@
"Failed to import VPN": "导入 VPN 失败"
},
"Failed to launch SMS app": {
- "Failed to launch SMS app": "启动SMS应用失败"
+ "Failed to launch SMS app": "启动短信应用失败"
},
"Failed to load VPN config": {
"Failed to load VPN config": "加载 VPN 配置失败"
},
"Failed to load clipboard configuration.": {
- "Failed to load clipboard configuration.": "无法读取剪切板配置。"
+ "Failed to load clipboard configuration.": "读取剪切板配置失败"
},
"Failed to move job": {
"Failed to move job": "移动任务失败"
@@ -2751,16 +2853,16 @@
"Failed to move to trash": "移动至回收站失败"
},
"Failed to parse plugin_settings.json": {
- "Failed to parse plugin_settings.json": "无法解析plugin_settings.json"
+ "Failed to parse plugin_settings.json": "无法解析 plugin_settings.json"
},
"Failed to parse session.json": {
- "Failed to parse session.json": "无法解析session.json"
+ "Failed to parse session.json": "无法解析 session.json"
},
"Failed to parse settings.json": {
- "Failed to parse settings.json": "无法解析settings.json"
+ "Failed to parse settings.json": "无法解析 settings.json"
},
"Failed to pause printer": {
- "Failed to pause printer": "无法暂停打印机"
+ "Failed to pause printer": "暂停打印机失败"
},
"Failed to pin entry": {
"Failed to pin entry": "固定项目失败"
@@ -2769,16 +2871,16 @@
"Failed to print test page": "打印测试页失败"
},
"Failed to read theme file: %1": {
- "Failed to read theme file: %1": ""
+ "Failed to read theme file: %1": "读取主题文件失败:%1"
},
"Failed to reject pairing": {
"Failed to reject pairing": "拒绝配对失败"
},
"Failed to reload plugin: %1": {
- "Failed to reload plugin: %1": ""
+ "Failed to reload plugin: %1": "重载插件失败:%1"
},
"Failed to remove QR code at %1: %2": {
- "Failed to remove QR code at %1: %2": ""
+ "Failed to remove QR code at %1: %2": "移除 %1 处的二维码失败:%2"
},
"Failed to remove device": {
"Failed to remove device": "删除设备失败"
@@ -2790,34 +2892,31 @@
"Failed to remove printer from class": "从类别中移除打印机失败"
},
"Failed to restart audio system": {
- "Failed to restart audio system": "无法重启音频系统"
+ "Failed to restart audio system": "重启音频系统失败"
},
"Failed to restart job": {
- "Failed to restart job": "重新启动任务失败"
+ "Failed to restart job": "重启任务失败"
},
"Failed to resume printer": {
- "Failed to resume printer": "无法恢复打印机"
+ "Failed to resume printer": "恢复打印机失败"
},
"Failed to ring device": {
"Failed to ring device": "响铃设备失败"
},
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": {
- "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "未能运行 'dms greeter status'。确保 DMS 已安装,且 dms 已在 PATH 中。"
+ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "运行 'dms greeter status' 失败。确保 DMS 已安装,且 dms 已在 PATH 中。"
},
"Failed to save audio config": {
"Failed to save audio config": "音频配置保存失败"
},
"Failed to save clipboard setting": {
- "Failed to save clipboard setting": "无法保存剪切板设置"
+ "Failed to save clipboard setting": "保存剪切板设置失败"
},
"Failed to save keybind": {
"Failed to save keybind": "保存按键绑定失败"
},
"Failed to save profile": {
- "Failed to save profile": "保存档案失败"
- },
- "Failed to save profile file": {
- "Failed to save profile file": "保存配置文件失败"
+ "Failed to save profile": "保存配置失败"
},
"Failed to send clipboard": {
"Failed to send clipboard": "发送剪切板失败"
@@ -2841,19 +2940,19 @@
"Failed to set night mode temperature": "设置夜间模式温度失败"
},
"Failed to set power profile": {
- "Failed to set power profile": "设置电源档案失败"
+ "Failed to set power profile": "设置电源配置失败"
},
"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 set profile image: %1": "设置用户头像失败:%1"
},
"Failed to share": {
"Failed to share": "共享失败"
},
"Failed to start connection to %1": {
- "Failed to start connection to %1": "连接至%1失败"
+ "Failed to start connection to %1": "连接至 %1 失败"
},
"Failed to unpin entry": {
"Failed to unpin entry": "取消固定项目失败"
@@ -2862,10 +2961,10 @@
"Failed to update VPN": "更新 VPN 失败"
},
"Failed to update autoconnect": {
- "Failed to update autoconnect": "无法更新自动连接"
+ "Failed to update autoconnect": "更新自动连接失败"
},
"Failed to update clipboard": {
- "Failed to update clipboard": ""
+ "Failed to update clipboard": "更新剪贴板失败"
},
"Failed to update description": {
"Failed to update description": "更新描述失败"
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "更新共享失败"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "未能写入临时文件进行验证"
},
@@ -2898,7 +3003,7 @@
"Fidelity": "保真"
},
"Field": {
- "Field": "场地"
+ "Field": "字段"
},
"File": {
"File": "文件"
@@ -2910,7 +3015,7 @@
"File Information": "文件信息"
},
"File Manager": {
- "File Manager": ""
+ "File Manager": "文件管理器"
},
"File manager used to open the trash. Pick \"custom\" to enter your own command.": {
"File manager used to open the trash. Pick \"custom\" to enter your own command.": "打开回收站的文件管理器。点击“自定义”以输入自定义命令。"
@@ -2919,10 +3024,10 @@
"File received from": "已从此处接收文件"
},
"File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": {
- "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "文件搜索需要dsearch\n请从此处安装:github.com/AvengeMedia/danksearch"
+ "File search requires dsearch\nInstall from github.com/AvengeMedia/danksearch": "文件搜索需要 dsearch\n请从 github.com/AvengeMedia/danksearch 安装"
},
"File search unavailable": {
- "File search unavailable": ""
+ "File search unavailable": "文件搜索不可用"
},
"Files": {
"Files": "文件"
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "填充"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "查找文本"
},
@@ -2940,7 +3048,7 @@
"Find in note...": "在便签中查找..."
},
"Fine-tune the space reserved for the bar from the screen edge": {
- "Fine-tune the space reserved for the bar from the screen edge": ""
+ "Fine-tune the space reserved for the bar from the screen edge": "微调状态栏与屏幕边缘之间保留的间隙"
},
"Fingerprint availability could not be confirmed.": {
"Fingerprint availability could not be confirmed.": "无法确认指纹可用性。"
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "指纹错误"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "指纹错误:%1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "指纹未识别(%1/%2)。请重试或使用密码。"
},
@@ -2970,7 +3075,7 @@
"First Time Setup": "首次设置"
},
"Fit": {
- "Fit": "适合"
+ "Fit": "适应"
},
"Fix Now": {
"Fix Now": "立即修复"
@@ -2985,17 +3090,20 @@
"Flipped": "翻转"
},
"Flipped 180°": {
- "Flipped 180°": "翻转180°"
+ "Flipped 180°": "翻转 180°"
},
"Flipped 270°": {
- "Flipped 270°": "翻转270°"
+ "Flipped 270°": "翻转 270°"
},
"Flipped 90°": {
- "Flipped 90°": "翻转90°"
+ "Flipped 90°": "翻转 90°"
},
"Float": {
"Float": "浮动"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "流畅"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "聚焦"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "启动时聚焦"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "聚焦边框"
},
@@ -3018,7 +3135,7 @@
"Focused Monitor Only": "仅聚焦的显示器"
},
"Focused Window": {
- "Focused Window": "当前窗口"
+ "Focused Window": "聚焦窗口"
},
"Focused monitor only": {
"Focused monitor only": "仅聚焦的显示器"
@@ -3033,16 +3150,16 @@
"Folders": "文件夹"
},
"Follow DMS background color": {
- "Follow DMS background color": "遵循DMS背景颜色"
+ "Follow DMS background color": "遵循 DMS 背景颜色"
},
"Follow Monitor Focus": {
- "Follow Monitor Focus": "遵守显示器聚焦"
+ "Follow Monitor Focus": "遵循显示器聚点"
},
"Follow focus": {
"Follow focus": "跟随焦点"
},
"Follows the default launcher choice selected above.": {
- "Follows the default launcher choice selected above.": ""
+ "Follows the default launcher choice selected above.": "跟随上方选择的默认启动器。"
},
"Font": {
"Font": "字体"
@@ -3063,37 +3180,40 @@
"Font used on the login screen": "登录界面使用的字体"
},
"For 1 hour": {
- "For 1 hour": "一小时"
+ "For 1 hour": "1 小时"
},
"For 15 minutes": {
- "For 15 minutes": "15分钟"
+ "For 15 minutes": "15 分钟"
},
"For 3 hours": {
- "For 3 hours": "3小时"
+ "For 3 hours": "3 小时"
},
"For 30 minutes": {
- "For 30 minutes": "30分钟"
+ "For 30 minutes": "30 分钟"
},
"For 8 hours": {
- "For 8 hours": "8小时"
+ "For 8 hours": "8 小时"
},
"For editing plain text files": {
- "For editing plain text files": ""
+ "For editing plain text files": "用于编辑纯文本文件"
},
"For reading PDF files": {
- "For reading PDF files": ""
+ "For reading PDF files": "用于阅读 PDF 文件"
},
"Force HDR": {
- "Force HDR": "强制HDR"
+ "Force HDR": "强制 HDR"
},
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "强制结束(SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"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": "强制终端应用使用深色配色方案"
},
"Forecast": {
"Forecast": "预测"
@@ -3105,35 +3225,29 @@
"Forecast Not Available": "暂无预报"
},
"Foreground Layers": {
- "Foreground Layers": "前景图层"
+ "Foreground Layers": "前景层"
},
"Forever": {
"Forever": "永远"
},
"Forget": {
- "Forget": "忽略"
+ "Forget": "忘记"
},
"Forget \"%1\"?": {
- "Forget \"%1\"?": "忘记\"%1\"?"
+ "Forget \"%1\"?": "忘记“%1” 吗?"
},
"Forget Device": {
- "Forget Device": "取消配对"
+ "Forget Device": "忘记设备"
},
"Forget Network": {
- "Forget Network": "取消保存"
+ "Forget Network": "忘记网络"
},
"Forgot network %1": {
- "Forgot network %1": "忘记网络%1"
+ "Forgot network %1": "已忘记网络 %1"
},
"Format Legend": {
"Format Legend": "参考格式"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "找到了%1个可更新的包:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "找到了%1个可更新的包:"
- },
"Frame": {
"Frame": "框架"
},
@@ -3141,13 +3255,13 @@
"Frame Blur": "框架模糊"
},
"Frame Blur follows Background Blur in Theme & Colors": {
- "Frame Blur follows Background Blur in Theme & Colors": "在主题与配色中,框架模糊会遵循背景模糊"
+ "Frame Blur follows Background Blur in Theme & Colors": "在“主题与配色”中,框架模糊会遵循背景模糊"
},
"Frame Border Color": {
"Frame Border Color": "框架边框颜色"
},
"Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": {
- "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": "关闭启动器时释放显存/内存。重新打开时可能会有轻微延迟。"
+ "Free VRAM/memory when the launcher is closed. May cause a slight delay when reopening.": "启动器关闭时释放显存/内存。重新打开时可能会有轻微延迟。"
},
"Freezing Drizzle": {
"Freezing Drizzle": "冰冷细雨"
@@ -3159,7 +3273,7 @@
"Fruit Salad": "水果沙拉"
},
"Full": {
- "Full": ""
+ "Full": "完整"
},
"Full Command:": {
"Full Command:": "完整命令:"
@@ -3168,13 +3282,13 @@
"Full Content": "完整内容"
},
"Full Day & Month": {
- "Full Day & Month": "日期与月份全写"
+ "Full Day & Month": "周 月 日(全称)"
+ },
+ "Full command to execute": {
+ "Full command to execute": ""
},
"Full with Year": {
- "Full with Year": "年份全写"
- },
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
+ "Full with Year": "周 日 月 年"
},
"Fullscreen": {
"Fullscreen": "全屏"
@@ -3195,19 +3309,19 @@
"GPU": "GPU"
},
"GPU Monitoring": {
- "GPU Monitoring": "GPU监视"
+ "GPU Monitoring": "GPU 监视"
},
"GPU Temperature": {
"GPU Temperature": "GPU 温度"
},
"GPU temperature display": {
- "GPU temperature display": "显示显卡温度"
+ "GPU temperature display": "GPU 温度显示"
},
"GTK colors applied successfully": {
- "GTK colors applied successfully": ""
+ "GTK colors applied successfully": "GTK 配色已成功应用"
},
"GTK, Qt, IDEs, more": {
- "GTK, Qt, IDEs, more": "GTK、Qt、IDEs等"
+ "GTK, Qt, IDEs, more": "GTK、QT、IDE 等"
},
"Games": {
"Games": "游戏"
@@ -3218,20 +3332,23 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。"
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
- "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "创建 GTK3/4 或 QT5/QT6 (需要 qt6ct-kde)的基线配置以遵守DMS颜色。仅需一次。
建议在应用adw-gtk3GTK主题之前进行配置。"
+ "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "生成遵循 DMS 颜色的 GTK3/GTK4 或 QT5/QT6(需要 qt6ct-kde)基线配置。仅需执行一次。
建议在应用 GTK 主题前先配置 adw-gtk3。"
},
"Generic": {
"Generic": "通用"
},
"Get Started": {
- "Get Started": "已开始"
+ "Get Started": "开始使用"
},
"GitHub": {
"GitHub": "GitHub"
},
"Global fonts can be configured in Settings → Personalization": {
- "Global fonts can be configured in Settings → Personalization": ""
+ "Global fonts can be configured in Settings → Personalization": "可在“设置 → 个性化”中配置全局字体"
},
"Globally scale all animation durations": {
"Globally scale all animation durations": "全局缩放所有动画持续时间"
@@ -3249,25 +3366,25 @@
"Goth Corners": "哥特风格圆角"
},
"Gradually fade the screen before locking with a configurable grace period": {
- "Gradually fade the screen before locking with a configurable grace period": "在锁定前通过可配置的宽限期逐渐淡出屏幕"
+ "Gradually fade the screen before locking with a configurable grace period": "通过配置的宽限期逐步过渡屏幕到锁屏"
},
"Gradually fade the screen before turning off monitors with a configurable grace period": {
- "Gradually fade the screen before turning off monitors with a configurable grace period": "在关闭显示器前逐渐淡出屏幕,淡出时间可配置"
+ "Gradually fade the screen before turning off monitors with a configurable grace period": "通过配置的宽限期逐步过渡屏幕到熄屏"
},
"Grant": {
- "Grant": ""
+ "Grant": "授予"
},
"Grant admin?": {
- "Grant admin?": ""
+ "Grant admin?": "授予管理员权限吗?"
},
"Grant administrator privileges": {
- "Grant administrator privileges": ""
+ "Grant administrator privileges": "授予管理员权限"
},
"Granted administrator privileges": {
- "Granted administrator privileges": ""
+ "Granted administrator privileges": "已授予管理员权限"
},
"Granted greeter login access": {
- "Granted greeter login access": ""
+ "Granted greeter login access": "已授予登录界面访问权限"
},
"Graph Time Range": {
"Graph Time Range": "图表时间范围"
@@ -3276,34 +3393,34 @@
"Graphics": "图形"
},
"Greeter": {
- "Greeter": "欢迎界面"
+ "Greeter": "登录界面"
},
"Greeter Appearance": {
- "Greeter Appearance": "欢迎界面外观"
+ "Greeter Appearance": "登录界面外观"
},
"Greeter Behavior": {
- "Greeter Behavior": "欢迎界面行为"
+ "Greeter Behavior": "登录界面行为"
},
"Greeter Status": {
- "Greeter Status": "欢迎界面状态"
+ "Greeter Status": "登录界面状态"
},
"Greeter activated. greetd is now enabled.": {
- "Greeter activated. greetd is now enabled.": "欢迎界面处于激活状态。greetd已启用。"
+ "Greeter activated. greetd is now enabled.": "登录界面已激活。greetd 已启用。"
},
"Greeter font": {
- "Greeter font": "欢迎界面字体"
+ "Greeter font": "登录界面字体"
},
"Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": {
- "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": ""
+ "Greeter group members can sync their login-screen theme with dms greeter sync --profile after logging out and back in.": "greeter 组成员注销并重新登录后,可使用 dms greeter sync --profile 同步自己的登录屏幕主题。"
},
"Greeter group:": {
- "Greeter group:": ""
+ "Greeter group:": "greeter 组:"
},
"Greeter only — does not affect main clock": {
- "Greeter only — does not affect main clock": "仅欢迎界面——不影响主时钟"
+ "Greeter only — does not affect main clock": "仅登录界面 - 不影响主时钟"
},
"Greeter only — format for the date on the login screen": {
- "Greeter only — format for the date on the login screen": "仅欢迎界面——登录界面上的日期格式"
+ "Greeter only — format for the date on the login screen": "仅登录界面 - 登录屏幕上的日期格式"
},
"Grid": {
"Grid": "网格"
@@ -3333,7 +3450,7 @@
"Group removed": "分组已移除"
},
"Group repeated application icons in unfocused workspaces": {
- "Group repeated application icons in unfocused workspaces": "在不聚焦的工作区中将重复应用图标分组"
+ "Group repeated application icons in unfocused workspaces": "在非聚焦的工作区中将重复应用图标分组"
},
"Groups": {
"Groups": "分组"
@@ -3345,22 +3462,22 @@
"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模式仍处实验性质。请先确认你的显示器支持HDR再启用。"
+ "HDR mode is experimental. Verify your monitor supports HDR before enabling.": "HDR 模式仍处实验性质。启用前请先确认你的显示器支持 HDR。"
},
"HSV": {
"HSV": "色相、饱和度、明度"
},
"HSV %1 copied": {
- "HSV %1 copied": ""
+ "HSV %1 copied": "已复制 HSV 颜色 %1"
},
"HTML copied to clipboard": {
"HTML copied to clipboard": "HTML 已复制到剪切板"
},
"Handles links and opens HTML files": {
- "Handles links and opens HTML files": ""
+ "Handles links and opens HTML files": "处理链接并打开 HTML 文件"
},
"Handles mailto links": {
- "Handles mailto links": ""
+ "Handles mailto links": "处理 mailto 链接"
},
"Health": {
"Health": "电池健康"
@@ -3378,7 +3495,7 @@
"Height": "高度"
},
"Held": {
- "Held": "已暂停"
+ "Held": "已保留"
},
"Help": {
"Help": "帮助"
@@ -3390,7 +3507,7 @@
"Hibernate": "休眠"
},
"Hibernate failed": {
- "Hibernate failed": ""
+ "Hibernate failed": "休眠失败"
},
"Hidden": {
"Hidden": "已隐藏"
@@ -3422,26 +3539,20 @@
"Hide Indicators": {
"Hide Indicators": "隐藏指示器"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "隐藏更新器部件"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "全屏时隐藏"
- },
"Hide When Typing": {
- "Hide When Typing": "打字时隐藏"
+ "Hide When Typing": "按键时隐藏"
},
"Hide When Windows Open": {
- "Hide When Windows Open": "当窗口打开时隐藏"
+ "Hide When Windows Open": "窗口打开时隐藏"
},
"Hide cursor after inactivity (0 = disabled)": {
- "Hide cursor after inactivity (0 = disabled)": "在未激活超过此时间后隐藏光标(0为禁用)"
+ "Hide cursor after inactivity (0 = disabled)": "非活动光标隐藏超时(0 为禁用)"
},
"Hide cursor when pressing keyboard keys": {
- "Hide cursor when pressing keyboard keys": "当按下键盘时隐藏光标"
+ "Hide cursor when pressing keyboard keys": "使用键盘输入时隐藏光标"
},
"Hide cursor when using touch input": {
- "Hide cursor when using touch input": "当使用触摸板输入时隐藏光标"
+ "Hide cursor when using touch input": "使用触摸板输入时隐藏光标"
},
"Hide device": {
"Hide device": "隐藏设备"
@@ -3453,16 +3564,16 @@
"Hide notification content until expanded; popups show collapsed by default": "隐藏通知内容,直到展开;弹窗默认显示为折叠"
},
"Hide on Touch": {
- "Hide on Touch": "当使用触摸板时隐藏光标"
+ "Hide on Touch": "触摸时隐藏"
},
"Hide the bar when the pointer leaves even if a popout is still open": {
- "Hide the bar when the pointer leaves even if a popout is still open": ""
+ "Hide the bar when the pointer leaves even if a popout is still open": "即使弹窗仍打开,指针离开时也隐藏状态栏"
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "当窗口处于全屏时隐藏程序坞"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
- "High-fidelity palette that preserves source hues.": "高保真配色,保留原始色调。"
+ "High-fidelity palette that preserves source hues.": "高保真配色,保留原始色调"
},
"Highlight Active Workspace App": {
"Highlight Active Workspace App": "高亮活动工作区应用"
@@ -3480,7 +3591,7 @@
"History Settings": "历史设置"
},
"History cleared. %1 pinned entries kept.": {
- "History cleared. %1 pinned entries kept.": "历史记录已清除。仍保留%1条已固定项目。"
+ "History cleared. %1 pinned entries kept.": "历史记录已清除。仍保留 %1 条已固定项目。"
},
"Hold Duration": {
"Hold Duration": "按住持续时间"
@@ -3492,13 +3603,13 @@
"Hold to Confirm Power Actions": "按住以确认电源操作"
},
"Hold to confirm (%1 ms)": {
- "Hold to confirm (%1 ms)": "按住以确认 (%1 ms)"
+ "Hold to confirm (%1 ms)": "按住以确认(%1 ms)"
},
"Hold to confirm (%1s)": {
- "Hold to confirm (%1s)": "按住以确认 (%1s)"
+ "Hold to confirm (%1s)": "按住以确认(%1s)"
},
"Home": {
- "Home": "家"
+ "Home": "主目录"
},
"Horizontal and vertical bar thickness": {
"Horizontal and vertical bar thickness": "水平与垂直状态栏厚度"
@@ -3540,16 +3651,22 @@
"Hyprland Discord Server": " Hyprland Discord 服务器"
},
"Hyprland Layout Overrides": {
- "Hyprland Layout Overrides": "Hyprland布局覆盖"
+ "Hyprland Layout Overrides": "Hyprland 布局覆盖"
},
"Hyprland Options": {
"Hyprland Options": "Hyprland 选项"
},
"Hyprland Website": {
- "Hyprland Website": " Hyprland 网站"
+ "Hyprland Website": "Hyprland 网站"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "我明白以上内容"
@@ -3558,13 +3675,13 @@
"IP": "IP"
},
"IP Address:": {
- "IP Address:": "IP 地址:"
+ "IP Address:": "IP 地址:"
},
"IP address or hostname": {
- "IP address or hostname": "IP地址或主机名称"
+ "IP address or hostname": "IP 地址或主机名"
},
"ISO Date": {
- "ISO Date": "ISO日期"
+ "ISO Date": "ISO 日期格式"
},
"Icon": {
"Icon": "图标"
@@ -3576,31 +3693,34 @@
"Icon Size": "图标大小"
},
"Icon Size %": {
- "Icon Size %": "图标大小%1"
+ "Icon Size %": "图标大小 %"
},
"Icon Theme": {
"Icon Theme": "图标主题"
},
"Identical alerts show as one popup instead of stacking": {
- "Identical alerts show as one popup instead of stacking": ""
+ "Identical alerts show as one popup instead of stacking": "相同提醒显示为一个弹窗,而不是堆叠显示"
},
"Identical alerts stack as separate notification cards": {
- "Identical alerts stack as separate notification cards": ""
+ "Identical alerts stack as separate notification cards": "相同提醒堆叠为单独的通知卡片"
},
"Idle": {
"Idle": "待机"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "待机抑制器"
},
"Idle Settings": {
"Idle Settings": "待机设置"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "不支持待机监控 - 请使用新版 Quickshell"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
- "If the field is hidden, it will appear as soon as a key is pressed.": "如果区域是隐藏的,那么当按下按键后它会尽可能早地出现。"
+ "If the field is hidden, it will appear as soon as a key is pressed.": "若隐藏密码区域,按下按键后密码区域会即刻出现"
},
"Ignore Completely": {
"Ignore Completely": "完全忽略"
@@ -3609,7 +3729,7 @@
"Image": "图像"
},
"Image Viewer": {
- "Image Viewer": ""
+ "Image Viewer": "图像查看器"
},
"Image copied to clipboard": {
"Image copied to clipboard": "已复制图像至剪切板"
@@ -3624,13 +3744,13 @@
"Inactive Monitor Color": "非活动显示器颜色"
},
"Include AUR updates": {
- "Include AUR updates": "包括AUR更新"
+ "Include AUR updates": "包括 AUR 更新"
},
"Include Files in All Tab": {
"Include Files in All Tab": "在全部标签页中包含文件"
},
"Include Flatpak updates": {
- "Include Flatpak updates": "包括flatpak更新"
+ "Include Flatpak updates": "包括 Flatpak 更新"
},
"Include Folders in All Tab": {
"Include Folders in All Tab": "在全部标签页中包含文件夹"
@@ -3648,16 +3768,16 @@
"Incorrect password": "密码错误"
},
"Incorrect password - attempt %1 of %2 (lockout may follow)": {
- "Incorrect password - attempt %1 of %2 (lockout may follow)": "密码错误——尝试 %1 / 2(随后将锁定)"
+ "Incorrect password - attempt %1 of %2 (lockout may follow)": "密码错误 - 尝试 %1 / %2(随后可能锁定)"
},
"Incorrect password - next failures may trigger account lockout": {
- "Incorrect password - next failures may trigger account lockout": "密码错误——下一次失败将触发账号锁定"
+ "Incorrect password - next failures may trigger account lockout": "密码错误 - 下一次失败将触发账号锁定"
},
"Incorrect password - try again": {
- "Incorrect password - try again": "密码错误——请重试"
+ "Incorrect password - try again": "密码错误 - 请重试"
},
"Indicator Style": {
- "Indicator Style": "指示样式"
+ "Indicator Style": "指示器样式"
},
"Individual Batteries": {
"Individual Batteries": "分别显示电池"
@@ -3675,10 +3795,13 @@
"Inherit Global (Default)": "继承全局(默认)"
},
"Inhibitable": {
- "Inhibitable": "可拒绝"
+ "Inhibitable": "可抑制"
+ },
+ "Initialised": {
+ "Initialised": ""
},
"Inner padding applied to each widget": {
- "Inner padding applied to each widget": ""
+ "Inner padding applied to each widget": "应用到每个部件的内边距"
},
"Input Devices": {
"Input Devices": "输入设备"
@@ -3687,13 +3810,13 @@
"Input Volume Slider": "输入音量滑块"
},
"Insert your security key...": {
- "Insert your security key...": "请输入安全密钥……"
+ "Insert your security key...": "请输入安全密钥..."
},
"Install": {
"Install": "安装"
},
"Install Greeter": {
- "Install Greeter": "安装欢迎界面"
+ "Install Greeter": "安装登录界面"
},
"Install Plugin": {
"Install Plugin": "安装插件"
@@ -3702,34 +3825,34 @@
"Install Theme": "安装主题"
},
"Install color themes from the DMS theme registry": {
- "Install color themes from the DMS theme registry": "从DMS主题注册表安装色彩主题"
+ "Install color themes from the DMS theme registry": "从 DMS 主题仓库安装颜色主题"
},
"Install complete. Greeter has been installed.": {
- "Install complete. Greeter has been installed.": "安装完成。欢迎界面已安装。"
+ "Install complete. Greeter has been installed.": "安装完成。登录界面已安装。"
},
"Install dsearch to search files.": {
- "Install dsearch to search files.": ""
+ "Install dsearch to search files.": "安装 dsearch 以搜索文件。"
},
"Install failed: %1": {
"Install failed: %1": "安装失败:%1"
},
"Install matugen package for dynamic theming": {
- "Install matugen package for dynamic theming": "为动态主题安装matugen包"
+ "Install matugen package for dynamic theming": "安装 matugen 包以使用动态主题"
},
"Install plugin '%1' from the DMS registry?": {
- "Install plugin '%1' from the DMS registry?": "要从DMS注册表安装插件%1吗?"
+ "Install plugin '%1' from the DMS registry?": "要从 DMS 插件仓库安装插件 %1 吗?"
},
"Install plugins from the DMS plugin registry": {
- "Install plugins from the DMS plugin registry": "从 DMS 插件库安装插件"
+ "Install plugins from the DMS plugin registry": "从 DMS 插件仓库安装插件"
},
"Install the DMS greeter? A terminal will open for sudo authentication.": {
- "Install the DMS greeter? A terminal will open for sudo authentication.": "要安装DMS欢迎界面吗?降打开终端以进行sudo认证。"
+ "Install the DMS greeter? A terminal will open for sudo authentication.": "要安装 DMS 登录界面吗?将打开终端进行 sudo 认证。"
},
"Install theme '%1' from the DMS registry?": {
- "Install theme '%1' from the DMS registry?": "要从DMS注册表安装主题%1吗?"
+ "Install theme '%1' from the DMS registry?": "要从 DMS 主题仓库安装主题 %1 吗?"
},
"Installation and PAM setup: see the ": {
- "Installation and PAM setup: see the ": "安装与PAM设置:请参考 "
+ "Installation and PAM setup: see the ": "安装与 PAM 设置:请参考 "
},
"Installed": {
"Installed": "已安装"
@@ -3750,7 +3873,7 @@
"Intensity": "强度"
},
"Interface:": {
- "Interface:": "接口:"
+ "Interface:": "接口:"
},
"Interlock Open": {
"Interlock Open": "安全联锁已打开"
@@ -3762,31 +3885,31 @@
"Interval": "轮换间隔"
},
"Invalid JSON format: %1": {
- "Invalid JSON format: %1": ""
+ "Invalid JSON format: %1": "JSON 格式无效:%1"
},
"Invalid configuration": {
"Invalid configuration": "无效配置"
},
"Invalid password for %1": {
- "Invalid password for %1": "%1的密码不可用"
+ "Invalid password for %1": "%1 的密码无效"
},
"Invalid username": {
- "Invalid username": ""
+ "Invalid username": "无效用户名"
},
"Invert on mode change": {
"Invert on mode change": "切换模式时反色"
},
"Iris Bloom": {
- "Iris Bloom": "径向绽放"
+ "Iris Bloom": "虹膜绽放"
},
"Isolate Displays": {
"Isolate Displays": "隔离显示"
},
"Jobs": {
- "Jobs": "任务"
+ "Jobs": "作业"
},
"Jobs: ": {
- "Jobs: ": "任务: "
+ "Jobs: ": "作业:"
},
"Keep Awake": {
"Keep Awake": "保持活动"
@@ -3795,7 +3918,7 @@
"Keep Changes": "保持更改"
},
"Keep typing": {
- "Keep typing": ""
+ "Keep typing": "继续输入"
},
"Keeping Awake": {
"Keeping Awake": "保持活动"
@@ -3840,7 +3963,7 @@
"Ko-fi": "Ko-fi"
},
"LED device": {
- "LED device": "LED设备"
+ "LED device": "LED 设备"
},
"LabWC IRC Channel": {
"LabWC IRC Channel": "LabWC IRC 频道"
@@ -3849,34 +3972,34 @@
"LabWC Website": "LabWC 网站"
},
"Large": {
- "Large": "大"
+ "Large": "较大"
},
"Largest": {
- "Largest": "更大"
+ "Largest": "最大"
},
"Last hour": {
- "Last hour": "上个小时"
+ "Last hour": "最近一小时"
},
"Last launched %1": {
"Last launched %1": "上次启动于 %1"
},
"Last launched %1 day ago": {
- "Last launched %1 day ago": "最后启动于%1天前"
+ "Last launched %1 day ago": "最后启动于 %1 天前"
},
"Last launched %1 days ago": {
- "Last launched %1 days ago": "最后启动于%1天前"
+ "Last launched %1 days ago": "最后启动于 %1 天前"
},
"Last launched %1 hour ago": {
- "Last launched %1 hour ago": "最后启动于%1小时前"
+ "Last launched %1 hour ago": "最后启动于 %1 小时前"
},
"Last launched %1 hours ago": {
- "Last launched %1 hours ago": "最后启动于%1小时前"
+ "Last launched %1 hours ago": "最后启动于 %1 小时前"
},
"Last launched %1 minute ago": {
- "Last launched %1 minute ago": "最后启动于%1分前"
+ "Last launched %1 minute ago": "最后启动于 %1 分钟前"
},
"Last launched %1 minutes ago": {
- "Last launched %1 minutes ago": "最后启动于%1分前"
+ "Last launched %1 minutes ago": "最后启动于 %1 分钟前"
},
"Last launched just now": {
"Last launched just now": "刚刚启动"
@@ -3891,10 +4014,7 @@
"Launch Prefix": "启动前缀"
},
"Launch on dGPU": {
- "Launch on dGPU": "使用独立显卡运行"
- },
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "默认在独显上启动"
+ "Launch on dGPU": "使用独立显卡启动"
},
"Launcher": {
"Launcher": "启动器"
@@ -3908,11 +4028,8 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "启动器出现侧"
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
- "Layer Outline Opacity": "图层轮廓不透明度"
+ "Layer Outline Opacity": "层轮廓不透明度"
},
"Layout": {
"Layout": "布局"
@@ -3921,10 +4038,10 @@
"Layout Overrides": "布局覆盖"
},
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": {
- "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "欢迎界面上的布局和模块位置已从你的壳同步(例如状态栏配置)。运行同步以应用。"
+ "Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "登录界面上的布局和模块位置会从你的 Shell 同步(例如:状态栏配置)。运行“同步”以应用。"
},
"Left": {
- "Left": "左"
+ "Left": "左侧"
},
"Left Center": {
"Left Center": "左侧中部"
@@ -3933,7 +4050,7 @@
"Left Section": "左侧区域"
},
"Light": {
- "Light": ""
+ "Light": "细体"
},
"Light Direction": {
"Light Direction": "光线方向"
@@ -3951,10 +4068,10 @@
"Light Snow Showers": "小雨阵"
},
"Light mode base": {
- "Light mode base": "基于明亮模式"
+ "Light mode base": "浅色模式基于..."
},
"Light mode harmony": {
- "Light mode harmony": "明亮模式和谐"
+ "Light mode harmony": "浅色模式调和"
},
"Line": {
"Line": "线条"
@@ -3966,25 +4083,25 @@
"Linear": "线性"
},
"Lines: %1": {
- "Lines: %1": "行数: %1"
+ "Lines: %1": "行数:%1"
},
"List": {
"List": "列表"
},
"Lively palette with saturated accents.": {
- "Lively palette with saturated accents.": "活力十足的配色,带有高饱和点缀色。"
+ "Lively palette with saturated accents.": "生动配色,有着饱和的强调色"
},
"Load Average": {
"Load Average": "平均负载"
},
"Loading codecs...": {
- "Loading codecs...": "加载编解码器..."
+ "Loading codecs...": "正在加载编解码器..."
},
"Loading keybinds...": {
"Loading keybinds...": "正在加载按键绑定..."
},
"Loading trending...": {
- "Loading trending...": "加载热搜..."
+ "Loading trending...": "正在加载热门内容..."
},
"Loading...": {
"Loading...": "正在加载..."
@@ -4029,10 +4146,10 @@
"Lock before suspend": "挂起前锁屏"
},
"Lock fade grace period": {
- "Lock fade grace period": "锁定淡出时间"
+ "Lock fade grace period": "锁屏渐变时间"
},
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
- "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "锁屏认证变更会自动生效,当需要sudo认证时可能会打开终端。"
+ "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": "锁屏认证变更会自动生效,当需要 sudo 认证时可能会打开终端。"
},
"Locked": {
"Locked": "已锁定"
@@ -4040,11 +4157,8 @@
"Log Out": {
"Log Out": "注销"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
- "Logging in...": "正在登录......"
+ "Logging in...": "正在登录..."
},
"Login": {
"Login": "登录"
@@ -4053,7 +4167,7 @@
"Login Authentication": "登录认证"
},
"Long": {
- "Long": "长"
+ "Long": "较长"
},
"Long Text": {
"Long Text": "长文本"
@@ -4064,8 +4178,11 @@
"Longitude": {
"Longitude": "经度"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
- "Low Priority": "次要通知"
+ "Low Priority": "次要优先级"
},
"MAC": {
"MAC": "MAC"
@@ -4074,43 +4191,40 @@
"MTU": "MTU"
},
"Mail": {
- "Mail": ""
+ "Mail": "邮件"
},
"Make admin": {
- "Make admin": ""
+ "Make admin": "设为管理员"
},
"Make sure KDE Connect or Valent is running on your other devices": {
"Make sure KDE Connect or Valent is running on your other devices": "确保 KDE Connect 或 Valent 正在您的其他设备上运行"
},
"Make the bar background fully transparent": {
- "Make the bar background fully transparent": ""
+ "Make the bar background fully transparent": "使状态栏背景完全透明"
},
"Manage and configure plugins for extending DMS functionality": {
"Manage and configure plugins for extending DMS functionality": "管理和配置插件以扩展 DMS 功能"
},
"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个独立的状态栏配置。每个状态栏都有自己的位置、控件、样式和显示布局。"
+ "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.": "最多可管理 4 个独立的状态栏配置。每个状态栏都有自己的位置、部件、样式和显示器分配。"
},
"Managed by Frame": {
"Managed by Frame": "受框架管理"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
- "Managed by Frame in Connected Mode": "在连接模式受框架管理"
+ "Managed by Frame in Connected Mode": "受连接模式下的框架管理"
},
"Management": {
"Management": "管理"
},
"Manages calendar events": {
- "Manages calendar events": ""
+ "Manages calendar events": "管理日历事件"
},
"Manages files and directories": {
- "Manages files and directories": ""
+ "Manages files and directories": "管理文件和目录"
},
"MangoWC Layout Overrides": {
- "MangoWC Layout Overrides": "MangoWC布局覆盖"
+ "MangoWC Layout Overrides": "MangoWC 布局覆盖"
},
"Manual": {
"Manual": "手动"
@@ -4122,13 +4236,13 @@
"Manual Direction": "手动方向"
},
"Manual Gap Size": {
- "Manual Gap Size": "手动设置间距大小"
+ "Manual Gap Size": "手动设置间隙大小"
},
"Manual Show/Hide": {
"Manual Show/Hide": "手动显示/隐藏"
},
"Manual config": {
- "Manual config": ""
+ "Manual config": "手动配置"
},
"Map window class names to icon names for proper icon display": {
"Map window class names to icon names for proper icon display": "将窗口类名称映射到图标名称以实现正确的图标显示"
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "废墨仓已饱和"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "匹配条件"
},
- "Matches profile: %1": {
- "Matches profile: %1": "匹配配置文件:%1"
- },
"Material": {
"Material": "Material"
},
@@ -4161,22 +4278,22 @@
"Material Colors": "Material 配色"
},
"Material Design inspired color themes": {
- "Material Design inspired color themes": "受Material设计启发的色彩主题"
+ "Material Design inspired color themes": "受 Material 设计启发的色彩主题"
},
"Material colors generated from wallpaper": {
- "Material colors generated from wallpaper": "从壁纸生成的Material色彩"
+ "Material colors generated from wallpaper": "从壁纸生成的 Material 色彩"
},
"Material inspired shadows and elevation on modals, popouts, and dialogs": {
- "Material inspired shadows and elevation on modals, popouts, and dialogs": "模态、弹窗与对话框上出现的阴影(受Material启发的)与提升"
+ "Material inspired shadows and elevation on modals, popouts, and dialogs": "受 Material 启发的模态框、弹窗及对话框的阴影与高程"
},
"Material: Material Design 3 Expressive bezier curves. The DMS default feel.": {
- "Material: Material Design 3 Expressive bezier curves. The DMS default feel.": "Material:Material Design 3是富有设计感的贝塞尔曲线。也是DMS的默认风格。"
+ "Material: Material Design 3 Expressive bezier curves. The DMS default feel.": "Material:Material Design 3 Expressive 的贝塞尔曲线。也是 DMS 的默认风格。"
},
"Matugen Contrast": {
- "Matugen Contrast": "Matugen对比度"
+ "Matugen Contrast": "Matugen 对比度"
},
"Matugen Missing": {
- "Matugen Missing": "未找到matugen"
+ "Matugen Missing": "未找到 Matugen"
},
"Matugen Palette": {
"Matugen Palette": "Matugen 配色方案"
@@ -4185,7 +4302,7 @@
"Matugen Target Monitor": "Matugen 目标显示器"
},
"Matugen Templates": {
- "Matugen Templates": "Matugen模板"
+ "Matugen Templates": "Matugen 模板"
},
"Max Edges": {
"Max Edges": "最大边缘"
@@ -4218,7 +4335,7 @@
"Max to Edges": "最大至边缘"
},
"Maximize": {
- "Maximize": "最小化"
+ "Maximize": "最大化"
},
"Maximize Detection": {
"Maximize Detection": "最大化检测"
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "媒体播放器设置"
},
- "Media Players": {
- "Media Players": "媒体播放器"
- },
"Media Players (": {
"Media Players (": "媒体播放器 ("
},
@@ -4293,7 +4407,7 @@
"Media Volume": "媒体音量"
},
"Medium": {
- "Medium": "中"
+ "Medium": "中等"
},
"Memory": {
"Memory": "内存"
@@ -4305,13 +4419,13 @@
"Memory Usage": "内存占用"
},
"Memory usage indicator": {
- "Memory usage indicator": "内存占用情况"
+ "Memory usage indicator": "内存占用指示器"
},
"Merge indexed file results into the All tab (requires dsearch).": {
- "Merge indexed file results into the All tab (requires dsearch).": "将索引文件结果合并到全部标签页(需要dsearch)。"
+ "Merge indexed file results into the All tab (requires dsearch).": "将索引文件结果合并到全部标签页(需要 dsearch)。"
},
"Merge indexed folder results into the All tab (requires dsearch).": {
- "Merge indexed folder results into the All tab (requires dsearch).": "将索引文件夹结果合并到全部标签页(需要dsearch)。"
+ "Merge indexed folder results into the All tab (requires dsearch).": "将索引文件夹结果合并到全部标签页(需要 dsearch)。"
},
"Message": {
"Message": "消息"
@@ -4343,11 +4457,8 @@
"Min W": {
"Min W": "最小宽度"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
- "Minimal palette built around a single hue.": "围绕单一色调构建的简约配色。"
+ "Minimal palette built around a single hue.": "简约配色,围绕单一色调构建"
},
"Minute": {
"Minute": "分钟"
@@ -4359,13 +4470,13 @@
"Missing Environment Variables": "缺失环境变量"
},
"Modal Background": {
- "Modal Background": "模态背景"
+ "Modal Background": "模态框背景"
},
"Modal Shadows": {
- "Modal Shadows": "模态阴影"
+ "Modal Shadows": "模态框阴影"
},
"Modals": {
- "Modals": "模态"
+ "Modals": "模态框"
},
"Mode": {
"Mode": "模式"
@@ -4377,25 +4488,25 @@
"Model": "型号"
},
"Modified": {
- "Modified": "改装"
+ "Modified": "已修改"
},
"Modular widget bar": {
"Modular widget bar": "模块化部件状态栏"
},
"Monitor": {
- "Monitor": "监视器"
+ "Monitor": "显示器"
},
"Monitor Configuration": {
- "Monitor Configuration": "监视器配置"
+ "Monitor Configuration": "显示器配置"
},
"Monitor fade grace period": {
- "Monitor fade grace period": "显示器淡出时间"
+ "Monitor fade grace period": "熄屏渐变时间"
},
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "监视使用动态主题色的壁纸"
},
"Monitors in \"%1\":": {
- "Monitors in \"%1\":": "在“%1”中的显示器:"
+ "Monitors in \"%1\":": "“%1” 中的显示器:"
},
"Monochrome": {
"Monochrome": "单色"
@@ -4407,25 +4518,25 @@
"Monospace Font": "等宽字体"
},
"Month Date": {
- "Month Date": "月份日期"
+ "Month Date": "月 日期格式"
},
"Morning": {
"Morning": "上午"
},
"Motion Effects": {
- "Motion Effects": "显示器效果"
+ "Motion Effects": "动画效果"
},
"Mount Points": {
"Mount Points": "挂载点"
},
"Mouse clicks pass through the bar to windows behind it": {
- "Mouse clicks pass through the bar to windows behind it": ""
+ "Mouse clicks pass through the bar to windows behind it": "鼠标点击会穿透状态栏传递给其后的窗口"
},
"Mouse pointer appearance": {
"Mouse pointer appearance": "鼠标指针外观"
},
"Mouse pointer size in pixels": {
- "Mouse pointer size in pixels": "鼠标指针的像素尺寸"
+ "Mouse pointer size in pixels": "鼠标指针尺寸(px)"
},
"Move": {
"Move": "移动"
@@ -4443,28 +4554,28 @@
"Multi-Monitor": "多显示器"
},
"Multimedia": {
- "Multimedia": ""
+ "Multimedia": "多媒体"
},
"Multiplexer": {
- "Multiplexer": "多路器"
+ "Multiplexer": "终端复用器"
},
"Multiplexer Type": {
- "Multiplexer Type": "多路器类型"
+ "Multiplexer Type": "终端复用器类型"
},
"Multiplexers": {
- "Multiplexers": "多路器"
+ "Multiplexers": "终端复用器"
},
"Music": {
"Music": "音乐"
},
"Music Player": {
- "Music Player": ""
+ "Music Player": "音乐播放器"
},
"Mute Popups": {
- "Mute Popups": "禁用弹窗"
+ "Mute Popups": "静音弹窗"
},
"Mute popups for %1": {
- "Mute popups for %1": "禁用弹窗%1"
+ "Mute popups for %1": "静音 %1 的通知弹窗"
},
"Muted": {
"Muted": "已静音"
@@ -4473,7 +4584,7 @@
"Muted Apps": "已静音应用"
},
"Muted palette with subdued, calming tones.": {
- "Muted palette with subdued, calming tones.": "柔和配色,带来舒缓的视觉感受。"
+ "Muted palette with subdued, calming tones.": "柔和配色,有着舒缓的视觉感受"
},
"My Online": {
"My Online": "我的在线设备"
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "已命名工作区图标"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "原生:平台渲染器(FreeType)。"
},
@@ -4494,7 +4608,7 @@
"Navigate": "导航"
},
"Navigation": {
- "Navigation": "导航栏"
+ "Navigation": "导航"
},
"Network": {
"Network": "网络"
@@ -4539,13 +4653,13 @@
"New Key": "新键"
},
"New Keybind": {
- "New Keybind": "新按键绑定"
+ "New Keybind": "新建按键绑定"
},
"New Notification": {
"New Notification": "新通知"
},
"New Session": {
- "New Session": "新会话"
+ "New Session": "新建会话"
},
"New Window Rule": {
"New Window Rule": "新窗口规则"
@@ -4554,13 +4668,13 @@
"New York, NY": "纽约,美国纽约州"
},
"New group name...": {
- "New group name...": "新分组名..."
+ "New group name...": "新分组名称..."
},
"Next": {
"Next": "下一个"
},
"Next Transition": {
- "Next Transition": "下一过渡"
+ "Next Transition": "下一次切换"
},
"Night": {
"Night": "夜晚"
@@ -4575,13 +4689,13 @@
"Night mode & gamma": "夜间模式与伽玛"
},
"Night mode failed: DMS gamma control not available": {
- "Night mode failed: DMS gamma control not available": ""
+ "Night mode failed: DMS gamma control not available": "夜间模式失败:DMS 伽马控制不可用"
},
"Niri Integration": {
"Niri Integration": "Niri 集成"
},
"Niri Layout Overrides": {
- "Niri Layout Overrides": "Niri布局覆盖"
+ "Niri Layout Overrides": "Niri 布局覆盖"
},
"Niri compositor actions (focus, move, etc.)": {
"Niri compositor actions (focus, move, etc.)": "Niri 合成器操作(聚焦、移动等)"
@@ -4590,16 +4704,13 @@
"No": "否"
},
"No Active Players": {
- "No Active Players": "没有正在播放的音频"
+ "No Active Players": "没有活动的播放器"
},
"No Anim": {
"No Anim": "无动画"
},
"No Background": {
- "No Background": "无背景底色"
- },
- "No Battery": {
- "No Battery": "无电池"
+ "No Background": "无背景色"
},
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "未找到蓝牙适配器"
@@ -4611,19 +4722,19 @@
"No Border": "无边框"
},
"No DMS shortcuts configured": {
- "No DMS shortcuts configured": "未配置DMS快捷键"
+ "No DMS shortcuts configured": "未配置 DMS 快捷键"
},
"No Dim": {
- "No Dim": "无蒙眬效果"
+ "No Dim": "不变暗"
},
"No Focus": {
- "No Focus": "无聚焦"
+ "No Focus": "无焦点"
},
"No GPU detected": {
- "No GPU detected": "未检测到显卡"
+ "No GPU detected": "未检测到 GPU"
},
"No GPUs detected": {
- "No GPUs detected": "未检测到GPU"
+ "No GPUs detected": "未检测到 GPU"
},
"No History": {
"No History": "无历史记录"
@@ -4656,10 +4767,10 @@
"No action": "无操作"
},
"No active %1 sessions": {
- "No active %1 sessions": "无活动的%1个会话"
+ "No active %1 sessions": "无活动的 %1 会话"
},
"No active session found for %1": {
- "No active session found for %1": ""
+ "No active session found for %1": "未找到 %1 的活动会话"
},
"No adapter": {
"No adapter": "无适配器"
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "无应用自定义。"
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "未找到应用"
},
@@ -4677,7 +4791,10 @@
"No apps have been launched yet.": "尚未启动任何应用。"
},
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
- "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "无静音应用。右键点击通知并选择“禁用弹窗”以添加。"
+ "No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "无已静音的应用。右键点击通知并选择“静音弹窗”以添加。"
+ },
+ "No autostart entries": {
+ "No autostart entries": ""
},
"No battery": {
"No battery": "无电池"
@@ -4710,7 +4827,7 @@
"No disk data available": "无可用磁盘数据"
},
"No display profiles found. Create them in Settings > Displays.": {
- "No display profiles found. Create them in Settings > Displays.": ""
+ "No display profiles found. Create them in Settings > Displays.": "未找到显示器配置文件。请在“设置” → “显示器”中创建。"
},
"No drivers found": {
"No drivers found": "未找到驱动程序"
@@ -4734,7 +4851,7 @@
"No hidden apps.": "无已隐藏应用。"
},
"No human user accounts found.": {
- "No human user accounts found.": ""
+ "No human user accounts found.": "未找到普通用户账户。"
},
"No info items": {
"No info items": "无信息项目"
@@ -4758,7 +4875,7 @@
"No launcher plugins installed.": "未安装启动器插件。"
},
"No match criteria": {
- "No match criteria": "无匹配标准"
+ "No match criteria": "无匹配条件"
},
"No matches": {
"No matches": "未找到匹配项"
@@ -4770,13 +4887,13 @@
"No matching processes": "无匹配进程"
},
"No monitors": {
- "No monitors": "无监视器"
+ "No monitors": "无显示器"
},
"No mount points found": {
"No mount points found": "未找到挂载点"
},
"No other active sessions on this seat": {
- "No other active sessions on this seat": ""
+ "No other active sessions on this seat": "此 seat 上没有其他活动会话"
},
"No output device": {
"No output device": "无输出设备"
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "未找到输出设备"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "未找到包管理器。请在基于Arch的系统上安装paru或yay以检测更新。"
- },
"No peers found": {
"No peers found": "未找到"
},
@@ -4815,7 +4929,7 @@
"No recent clipboard entries found": "未找到近期剪切板项目"
},
"No results": {
- "No results": ""
+ "No results": "无结果"
},
"No results found": {
"No results found": "未找到结果"
@@ -4824,7 +4938,7 @@
"No saved clipboard entries": "无已保存剪切板项目"
},
"No session selected": {
- "No session selected": ""
+ "No session selected": "未选择会话"
},
"No sessions found": {
"No sessions found": "未找到会话"
@@ -4842,13 +4956,13 @@
"No themes found": "未找到主题"
},
"No themes installed. Browse themes to install from the registry.": {
- "No themes installed. Browse themes to install from the registry.": "未安装主题。从注册表浏览并安装。"
+ "No themes installed. Browse themes to install from the registry.": "未安装主题。从主题仓库浏览并安装。"
},
"No trigger": {
"No trigger": "无触发器"
},
"No user specified": {
- "No user specified": ""
+ "No user specified": "未指定用户"
},
"No video found in folder": {
"No video found in folder": "文件夹中未找到视频"
@@ -4877,38 +4991,41 @@
"No window rules configured": {
"No window rules configured": "未配置窗口规则"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "无"
},
"None active": {
- "None active": ""
+ "None active": "无活动项"
},
"Normal": {
"Normal": "正常"
},
"Normal Font": {
- "Normal Font": "普通字体"
+ "Normal Font": "常规字体"
},
"Normal Priority": {
- "Normal Priority": "标准通知"
+ "Normal Priority": "普通优先级"
},
"Not available": {
"Not available": "不可用"
},
"Not available — install fprintd and pam_fprintd, or configure greetd PAM.": {
- "Not available — install fprintd and pam_fprintd, or configure greetd PAM.": "不可用——请安装fprintd与pam_fprintd,或者配置greetd PAM。"
+ "Not available — install fprintd and pam_fprintd, or configure greetd PAM.": "不可用 - 请安装 fprintd 和 pam_fprintd,或配置 greetd PAM。"
},
"Not available — install fprintd and pam_fprintd.": {
- "Not available — install fprintd and pam_fprintd.": "不可用——请安装fprintd与pam_fprintd。"
+ "Not available — install fprintd and pam_fprintd.": "不可用 - 请安装 fprintd 和 pam_fprintd。"
},
"Not available — install or configure pam_u2f, or configure greetd PAM.": {
- "Not available — install or configure pam_u2f, or configure greetd PAM.": "不可用——请安装或配置pam_u2f,或者配置greetd PAM。"
+ "Not available — install or configure pam_u2f, or configure greetd PAM.": "不可用 - 请安装或配置 pam_u2f,或配置 greetd PAM。"
},
"Not available — install or configure pam_u2f.": {
- "Not available — install or configure pam_u2f.": "不可用——请安装或配置pam_u2f。"
+ "Not available — install or configure pam_u2f.": "不可用 - 请安装或配置 pam_u2f。"
},
"Not bound": {
- "Not bound": ""
+ "Not bound": "未绑定"
},
"Not connected": {
"Not connected": "未连接"
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "未检测到"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "未配对"
},
@@ -4944,7 +5064,7 @@
"Notification Center": "通知中心"
},
"Notification Display": {
- "Notification Display": "通知显示"
+ "Notification Display": "显示通知"
},
"Notification Overlay": {
"Notification Overlay": "全屏时显示通知"
@@ -4971,10 +5091,10 @@
"Numbers": "数字"
},
"Numeric (D/M)": {
- "Numeric (D/M)": "数字(D/M)"
+ "Numeric (D/M)": "日/月(数字)"
},
"Numeric (M/D)": {
- "Numeric (M/D)": "数字(M/D)"
+ "Numeric (M/D)": "月/日(数字)"
},
"OK": {
"OK": "OK"
@@ -4983,10 +5103,10 @@
"OS Logo": "系统 Logo"
},
"OSD Position": {
- "OSD Position": "OSD位置"
+ "OSD Position": "OSD 位置"
},
"Occupied Color": {
- "Occupied Color": "占位色"
+ "Occupied Color": "占用颜色"
},
"Off": {
"Off": "关闭"
@@ -4998,7 +5118,7 @@
"Offline": "离线"
},
"Offline Report": {
- "Offline Report": "官方报告"
+ "Offline Report": "离线报告"
},
"Older": {
"Older": "更早"
@@ -5010,10 +5130,10 @@
"On indefinitely": "无限期"
},
"On-Demand": {
- "On-Demand": "按需随机"
+ "On-Demand": "按需"
},
"On-Screen Displays": {
- "On-Screen Displays": "屏幕显示"
+ "On-Screen Displays": "屏上显示"
},
"On-screen Displays": {
"On-screen Displays": "屏上显示"
@@ -5028,7 +5148,7 @@
"Only adjust gamma based on time or location rules.": "根据时间或位置调节伽马值。"
},
"Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": {
- "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "仅影响受DMS管理的PAM。如果greetd已经包含了pam_fprintd,则指纹认证将依旧保持启用。"
+ "Only affects DMS-managed PAM. If greetd already includes pam_fprintd, fingerprint stays enabled.": "仅影响受 DMS 管理的 PAM。如果 greetd 已经包含了 pam_fprintd,则指纹认证将依旧保持启用。"
},
"Only show windows from the current monitor on each dock": {
"Only show windows from the current monitor on each dock": "在每个程序坞上仅显示当前显示器上的窗口"
@@ -5040,10 +5160,10 @@
"Opacity": "不透明度"
},
"Opacity of the bar background": {
- "Opacity of the bar background": ""
+ "Opacity of the bar background": "状态栏背景的不透明度"
},
"Opacity of widget backgrounds": {
- "Opacity of widget backgrounds": ""
+ "Opacity of widget backgrounds": "部件背景的不透明度"
},
"Opaque": {
"Opaque": "不透明"
@@ -5055,13 +5175,13 @@
"Open App": "打开应用"
},
"Open Dir": {
- "Open Dir": "打开路径"
+ "Open Dir": "打开目录"
},
"Open Frame": {
"Open Frame": "打开框架"
},
"Open KDE Connect on your phone": {
- "Open KDE Connect on your phone": "在你的手机上打开KDE Connect"
+ "Open KDE Connect on your phone": "在你的手机上打开 KDE Connect"
},
"Open Notepad File": {
"Open Notepad File": "打开便签"
@@ -5070,13 +5190,13 @@
"Open Trash": "打开回收站"
},
"Open Trash With": {
- "Open Trash With": "以此方式打开回收站"
+ "Open Trash With": "打开回收站方式"
},
"Open a new note": {
"Open a new note": "打开新笔记"
},
"Open a terminal and run a custom command instead of the in-shell upgrade flow.": {
- "Open a terminal and run a custom command instead of the in-shell upgrade flow.": "打开终端,运行自定义命令,而非shell内的升级流程。"
+ "Open a terminal and run a custom command instead of the in-shell upgrade flow.": "打开终端,运行自定义命令,而非 shell 内的升级流程。"
},
"Open folder": {
"Open folder": "打开文件夹"
@@ -5094,10 +5214,10 @@
"Open with...": "打开方式..."
},
"Opening SMS": {
- "Opening SMS": "正在打开SMS"
+ "Opening SMS": "正在打开短信"
},
"Opening SMS app": {
- "Opening SMS app": "正在打开SMS应用"
+ "Opening SMS app": "正在打开短信应用"
},
"Opening file browser": {
"Opening file browser": "正在打开文件浏览器"
@@ -5105,17 +5225,20 @@
"Opening files": {
"Opening files": "正在打开文件"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "正在打开终端: "
},
"Opens a picker of other active sessions on this seat": {
- "Opens a picker of other active sessions on this seat": ""
+ "Opens a picker of other active sessions on this seat": "打开此 seat 上其他活动会话的选择器"
},
"Opens image files": {
- "Opens image files": ""
+ "Opens image files": "打开图像文件"
},
"Opens the connected launcher in Connected Frame Mode.": {
- "Opens the connected launcher in Connected Frame Mode.": ""
+ "Opens the connected launcher in Connected Frame Mode.": "在连接框架模式中打开连接式启动器。"
},
"Optional description": {
"Optional description": "可选描述"
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "可选位置"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "选项"
},
@@ -5139,7 +5265,7 @@
"Outline": "轮廓"
},
"Output": {
- "Output": "输出"
+ "Output": "显示器"
},
"Output Area Almost Full": {
"Output Area Almost Full": "出纸盒即将饱和"
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "出纸盒已满"
},
- "Output Device": {
- "Output Device": "输出设备"
- },
"Output Devices": {
"Output Devices": "输出设备"
},
@@ -5157,7 +5280,7 @@
"Output Tray Missing": "未检测到出纸盒"
},
"Outputs Include Missing": {
- "Outputs Include Missing": "输出包括缺失"
+ "Outputs Include Missing": "输出引用缺失"
},
"Overcast": {
"Overcast": "阴天"
@@ -5175,7 +5298,7 @@
"Override Border Size": "覆盖边框尺寸"
},
"Override Corner Radius": {
- "Override Corner Radius": "覆盖角半径"
+ "Override Corner Radius": "覆盖圆角半径"
},
"Override Gaps": {
"Override Gaps": "覆盖间隙"
@@ -5184,16 +5307,16 @@
"Override global layout settings for this output": "为此输出覆盖全局布局设置"
},
"Override global transparency for Notepad": {
- "Override global transparency for Notepad": ""
+ "Override global transparency for Notepad": "覆盖记事本的全局透明度"
},
"Override terminal with a custom command or script": {
"Override terminal with a custom command or script": "以自定义命令或脚本覆盖终端"
},
"Override the global shadow with per-bar settings": {
- "Override the global shadow with per-bar settings": "以每条状态栏的单独设置覆盖全局阴影"
+ "Override the global shadow with per-bar settings": "以每个状态栏的单独设置覆盖全局阴影"
},
"Override the popup gap size when auto is disabled": {
- "Override the popup gap size when auto is disabled": ""
+ "Override the popup gap size when auto is disabled": "自动模式禁用时覆盖弹窗间隙大小"
},
"Overrides": {
"Overrides": "覆盖"
@@ -5211,34 +5334,34 @@
"Owner: %1": "所有者:%1"
},
"PAM already provides fingerprint auth. Enable this to show it at login.": {
- "PAM already provides fingerprint auth. Enable this to show it at login.": "PAM已提供指纹认证。启用以在登录时显示。"
+ "PAM already provides fingerprint auth. Enable this to show it at login.": "PAM 已提供指纹认证。启用以在登录时显示。"
},
"PAM already provides security-key auth. Enable this to show it at login.": {
- "PAM already provides security-key auth. Enable this to show it at login.": "PAM已提供安全密钥认证。启用以在登录时显示。"
+ "PAM already provides security-key auth. Enable this to show it at login.": "PAM 已提供安全密钥认证。启用以在登录时显示。"
},
"PAM provides fingerprint auth, but availability could not be confirmed.": {
- "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM提供了指纹认证,但无法确认其可用性。"
+ "PAM provides fingerprint auth, but availability could not be confirmed.": "PAM 提供了指纹认证,但无法确认其可用性。"
},
"PAM provides fingerprint auth, but no prints are enrolled yet.": {
- "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM提供了指纹认证,但尚无注册指纹。"
+ "PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM 提供了指纹认证,但尚无注册指纹。"
},
"PAM provides fingerprint auth, but no reader was detected.": {
- "PAM provides fingerprint auth, but no reader was detected.": "PAM提供了指纹认证,但无法检测到读取器。"
+ "PAM provides fingerprint auth, but no reader was detected.": "PAM 提供了指纹认证,但无法检测到读取器。"
},
"PDF Reader": {
- "PDF Reader": ""
+ "PDF Reader": "PDF 阅读器"
},
"PIN": {
"PIN": "PIN 码"
},
"Pad": {
- "Pad": "覆盖"
+ "Pad": "留边"
},
"Pad Hours": {
- "Pad Hours": "摸鱼时间"
+ "Pad Hours": "补齐小时数"
},
"Pad hours (02:00 vs 2:00)": {
- "Pad hours (02:00 vs 2:00)": "休息时间(02:00 vs 2:00)"
+ "Pad hours (02:00 vs 2:00)": "固定时间宽度(02:00 vs 2:00)"
},
"Padding": {
"Padding": "内边距"
@@ -5259,7 +5382,7 @@
"Pairing failed": "配对失败"
},
"Pairing request from": {
- "Pairing request from": "正从此处接收配对请求"
+ "Pairing request from": "配对请求"
},
"Pairing request sent": {
"Pairing request sent": "配对请求已发送"
@@ -5274,28 +5397,28 @@
"Partly Cloudy": "部分多云"
},
"Passkey:": {
- "Passkey:": "密钥:"
+ "Passkey:": "通行密钥:"
},
"Password": {
"Password": "密码"
},
"Password cannot be empty": {
- "Password cannot be empty": ""
+ "Password cannot be empty": "密码不能为空"
},
"Password change failed (exit %1)": {
- "Password change failed (exit %1)": ""
+ "Password change failed (exit %1)": "密码更改失败(退出码 %1)"
},
"Password set": {
- "Password set": ""
+ "Password set": "密码已设置"
},
"Password updated": {
- "Password updated": ""
+ "Password updated": "密码已更新"
},
"Password...": {
- "Password...": "密码……"
+ "Password...": "密码..."
},
"Passwords do not match.": {
- "Passwords do not match.": ""
+ "Passwords do not match.": "两次输入的密码不一致。"
},
"Paste": {
"Paste": "粘贴"
@@ -5310,10 +5433,10 @@
"Pause": "暂停"
},
"Paused": {
- "Paused": "暂停"
+ "Paused": "已暂停"
},
"Pending": {
- "Pending": "待定"
+ "Pending": "等待中"
},
"Pending Charge": {
"Pending Charge": "待充电"
@@ -5328,19 +5451,19 @@
"Per-Monitor Wallpapers": "按显示器设置壁纸"
},
"Per-screen config": {
- "Per-screen config": "按屏幕区分设置"
+ "Per-screen config": "显示器单独配置"
},
"Percentage": {
- "Percentage": "占用率"
+ "Percentage": "百分比"
},
"Performance": {
"Performance": "性能"
},
"Permanently delete %1 item(s)? This cannot be undone.": {
- "Permanently delete %1 item(s)? This cannot be undone.": "永久删除1%?此操作不可撤回。"
+ "Permanently delete %1 item(s)? This cannot be undone.": "永久删除 %1 个项目?此操作不可撤回。"
},
"Permission denied to set profile image.": {
- "Permission denied to set profile image.": "因权限问题,无法设置个人资料图片。"
+ "Permission denied to set profile image.": "没有权限设置用户头像。"
},
"Personalization": {
"Personalization": "个性化"
@@ -5355,13 +5478,13 @@
"Phone number": "电话号码"
},
"Pick a different file manager in Settings → Dock → Trash.": {
- "Pick a different file manager in Settings → Dock → Trash.": "在设置→程序坞→回收站中选择其他文件管理器。"
+ "Pick a different file manager in Settings → Dock → Trash.": "在“设置” → “程序坞” → “回收站”中选择其他文件管理器。"
},
"Pick a different random video each time from the same folder": {
"Pick a different random video each time from the same folder": "每次都从同一文件夹下选择随机的视频"
},
"Pick a terminal in Settings → Launcher (or set $TERMINAL).": {
- "Pick a terminal in Settings → Launcher (or set $TERMINAL).": "在设置→启动器中选择终端(或者设置$TERMINAL)。"
+ "Pick a terminal in Settings → Launcher (or set $TERMINAL).": "在“设置” → “启动器”中选择终端(或者设置$TERMINAL)。"
},
"Pick how long to pause notifications": {
"Pick how long to pause notifications": "选择暂停通知的时间"
@@ -5394,19 +5517,19 @@
"Pixelate": "像素化"
},
"Place a trash bin at the end of the dock": {
- "Place a trash bin at the end of the dock": "在程序坞最后方放置一个回收站"
+ "Place a trash bin at the end of the dock": "在程序坞末尾回收站图标"
},
"Place plugin directories here. Each plugin should have a plugin.json manifest file.": {
"Place plugin directories here. Each plugin should have a plugin.json manifest file.": "此处为插件目录,每个插件应带有一个 plugin.json 描述文件。"
},
"Place plugins in %1": {
- "Place plugins in %1": "将插件放在%1"
+ "Place plugins in %1": "将插件放在 %1"
},
"Place the bar on the Wayland overlay layer": {
- "Place the bar on the Wayland overlay layer": ""
+ "Place the bar on the Wayland overlay layer": "将状态栏置于 Wayland 叠加层"
},
"Place the dock on the Wayland overlay layer": {
- "Place the dock on the Wayland overlay layer": ""
+ "Place the dock on the Wayland overlay layer": "将程序坞置于 Wayland 叠加层"
},
"Play a video when the screen locks.": {
"Play a video when the screen locks.": "锁屏是播放视频。"
@@ -5421,7 +5544,7 @@
"Play sound when power cable is connected": "连接电源线时播放声音"
},
"Play sound when volume is adjusted": {
- "Play sound when volume is adjusted": "当音量调整时播放声音"
+ "Play sound when volume is adjusted": "调节音量时播放声音"
},
"Play sounds for system events": {
"Play sounds for system events": "为系统事件播放声音"
@@ -5433,22 +5556,22 @@
"Playback error: ": "播放错误: "
},
"Plays audio files": {
- "Plays audio files": ""
+ "Plays audio files": "播放音频文件"
},
"Plays video files": {
- "Plays video files": ""
+ "Plays video files": "播放视频文件"
},
"Please wait...": {
"Please wait...": "请稍候..."
},
"Please write a name for your new %1 session": {
- "Please write a name for your new %1 session": "请问您的新会话%1起名"
+ "Please write a name for your new %1 session": "请为新的 %1 会话命名"
},
"Plugged In": {
"Plugged In": "连接电源"
},
"Plugged in": {
- "Plugged in": "插件已置入"
+ "Plugged in": "已接通电源"
},
"Plugin": {
"Plugin": "插件"
@@ -5463,31 +5586,31 @@
"Plugin Visibility": "插件可视化"
},
"Plugin disabled: %1": {
- "Plugin disabled: %1": ""
+ "Plugin disabled: %1": "插件已禁用:%1"
},
"Plugin enabled: %1": {
- "Plugin enabled: %1": ""
+ "Plugin enabled: %1": "插件已启用:%1"
},
"Plugin is disabled - enable in Plugins settings to use": {
- "Plugin is disabled - enable in Plugins settings to use": "插件已禁用 - 请在插件设置中启用以继续"
+ "Plugin is disabled - enable in Plugins settings to use": "插件已禁用 - 在插件设置中启用以使用"
},
"Plugin reloaded: %1": {
- "Plugin reloaded: %1": ""
+ "Plugin reloaded: %1": "插件已重载:%1"
},
"Plugin uninstalled: %1": {
- "Plugin uninstalled: %1": ""
+ "Plugin uninstalled: %1": "插件已卸载:%1"
},
"Plugin updated: %1": {
- "Plugin updated: %1": ""
+ "Plugin updated: %1": "插件已更新:%1"
},
"Plugins": {
"Plugins": "插件"
},
"Pointer": {
- "Pointer": "指示器"
+ "Pointer": "指针"
},
"Polkit integration is disabled. User management requires Polkit to elevate privileges.": {
- "Polkit integration is disabled. User management requires Polkit to elevate privileges.": ""
+ "Polkit integration is disabled. User management requires Polkit to elevate privileges.": "Polkit 集成已禁用。用户管理需要 Polkit 提升权限。"
},
"Popout Shadows": {
"Popout Shadows": "弹窗阴影"
@@ -5496,7 +5619,7 @@
"Popouts": "弹窗"
},
"Popouts and Modals follow global Animation Speed (disable to customize independently)": {
- "Popouts and Modals follow global Animation Speed (disable to customize independently)": "弹窗与模态遵守全局动画速度(禁用以创建自定义独立规则)"
+ "Popouts and Modals follow global Animation Speed (disable to customize independently)": "弹窗与模态框遵循全局动画速度(禁用则单独自定义)"
},
"Popup Only": {
"Popup Only": "仅弹窗"
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "弹窗阴影"
},
- "Popup Transparency": {
- "Popup Transparency": "弹窗透明度"
- },
"Popup behavior, position": {
"Popup behavior, position": "弹窗行为与位置"
},
@@ -5517,7 +5637,7 @@
"Port": "端口"
},
"Portal": {
- "Portal": "传送门"
+ "Portal": "门户"
},
"Position": {
"Position": "位置"
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "自定义电源菜单"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "关机"
},
@@ -5550,7 +5673,7 @@
"Power Options": "电源菜单"
},
"Power Profile": {
- "Power Profile": "电源配置文件"
+ "Power Profile": "电源配置"
},
"Power Profile Degradation": {
"Power Profile Degradation": "电源配置性能下降"
@@ -5559,19 +5682,19 @@
"Power Saver": "省电"
},
"Power off monitors on lock": {
- "Power off monitors on lock": "锁定时关闭显示器"
+ "Power off monitors on lock": "锁定时熄屏"
},
"Power profile management available": {
- "Power profile management available": "电源配置文件管理可用"
+ "Power profile management available": "电源配置管理可用"
},
"Power source": {
"Power source": "电源"
},
"Pre-fill the last successful username on the greeter": {
- "Pre-fill the last successful username on the greeter": "在欢迎界面上预先填写上次成功登录的用户名"
+ "Pre-fill the last successful username on the greeter": "在登录界面预先填写上次成功登录的用户名"
},
"Pre-select the last used session on the greeter": {
- "Pre-select the last used session on the greeter": "在欢迎界面预先选择上次使用的会话"
+ "Pre-select the last used session on the greeter": "在登录界面预先选择上次使用的会话"
},
"Precip": {
"Precip": "降水"
@@ -5583,37 +5706,37 @@
"Precipitation Chance": "降水概率"
},
"Preference": {
- "Preference": "偏好设置"
+ "Preference": "偏好"
},
"Preset Widths (%)": {
"Preset Widths (%)": "预设宽度(%)"
},
"Press 'n' or click 'New Session' to create one": {
- "Press 'n' or click 'New Session' to create one": "按下n或点击“新会话”以创建"
+ "Press 'n' or click 'New Session' to create one": "按 n 或点击“新建会话”以创建"
},
"Press Enter and the audio system will restart to apply the change": {
- "Press Enter and the audio system will restart to apply the change": "按回车键,音频系统会重启以应用更改"
+ "Press Enter and the audio system will restart to apply the change": "按下 Enter,音频系统会重启以应用更改"
},
"Press Enter to paste, Shift+Enter to copy": {
- "Press Enter to paste, Shift+Enter to copy": "按回车以粘贴,按Shift+回车以复制"
+ "Press Enter to paste, Shift+Enter to copy": "按下 Enter 粘贴,按下 Shift+Enter 复制"
},
"Press key...": {
- "Press key...": "按键..."
+ "Press key...": "按下按键..."
},
"Pressure": {
"Pressure": "气压"
},
"Prevent screen timeout": {
- "Prevent screen timeout": "防止屏幕超时"
+ "Prevent screen timeout": "阻止屏幕超时"
},
"Preview": {
"Preview": "预览"
},
"Primary": {
- "Primary": "主题色"
+ "Primary": "主色"
},
"Primary Container": {
- "Primary Container": "首选容器"
+ "Primary Container": "主色容器"
},
"Print Server Management": {
"Print Server Management": "打印服务器管理"
@@ -5646,7 +5769,7 @@
"Printers: ": "打印机: "
},
"Prioritize performance": {
- "Prioritize performance": "优先考虑性能"
+ "Prioritize performance": "性能优先"
},
"Priority": {
"Priority": "优先级"
@@ -5673,46 +5796,49 @@
"Processing": "处理中"
},
"Profile Image Error": {
- "Profile Image Error": "个人资料图片错误"
+ "Profile Image Error": "用户头像错误"
},
"Profile activated: %1": {
- "Profile activated: %1": "已激活档案:%1"
+ "Profile activated: %1": "配置已激活:%1"
},
"Profile deleted": {
"Profile deleted": "配置已删除"
},
"Profile error": {
- "Profile error": "档案错误"
+ "Profile error": "配置错误"
},
"Profile image is too large. Please use a smaller image.": {
- "Profile image is too large. Please use a smaller image.": "个人资料图片过大,请选择更小的图片。"
+ "Profile image is too large. Please use a smaller image.": "用户头像过大,请选择更小的图片。"
},
"Profile name": {
- "Profile name": "档案名称"
+ "Profile name": "配置名称"
},
"Profile not found": {
"Profile not found": "未找到配置"
},
"Profile not found in monitors.json": {
- "Profile not found in monitors.json": "未在 monitors.json 找到档案"
+ "Profile not found in monitors.json": "未在 monitors.json 找到配置"
},
"Profile saved: %1": {
- "Profile saved: %1": "已保存档案:%1"
+ "Profile saved: %1": "已保存配置:%1"
},
"Protocol": {
"Protocol": "协议"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
- "Qt colors applied successfully": ""
+ "Qt colors applied successfully": "QT 配色已成功应用"
},
"Qt: distance-field renderer.": {
- "Qt: distance-field renderer.": "Qt:距离场渲染器。"
+ "Qt: distance-field renderer.": "QT:距离场渲染器。"
},
"QtMultimedia is not available": {
- "QtMultimedia is not available": "QtMultimedia不可用"
+ "QtMultimedia is not available": "QtMultimedia 不可用"
},
"QtMultimedia is not available - video screensaver requires qt multimedia services": {
- "QtMultimedia is not available - video screensaver requires qt multimedia services": "QtMultimedia不可用——视频屏保需要qt multimedia服务"
+ "QtMultimedia is not available - video screensaver requires qt multimedia services": "QtMultimedia 不可用,视频屏保需要 Qt 多媒体服务"
},
"Quality": {
"Quality": "质量"
@@ -5736,7 +5862,7 @@
"Quick system toggles": "快速系统切换"
},
"RGB": {
- "RGB": "红绿蓝"
+ "RGB": "RGB"
},
"Radius": {
"Radius": "半径"
@@ -5757,7 +5883,10 @@
"Rate": "速率"
},
"Re-enter password": {
- "Re-enter password": ""
+ "Re-enter password": "再次输入密码"
+ },
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
},
"Read:": {
"Read:": "读取:"
@@ -5769,7 +5898,7 @@
"Reboot": "重启"
},
"Recent": {
- "Recent": ""
+ "Recent": "最近"
},
"Recent Colors": {
"Recent Colors": "最近拾取的颜色"
@@ -5787,19 +5916,19 @@
"Refresh Weather": "刷新天气"
},
"Refreshing…": {
- "Refreshing…": ""
+ "Refreshing…": "正在刷新..."
},
"Regex": {
"Regex": "正则"
},
"Regular": {
- "Regular": ""
+ "Regular": "标准"
},
"Reject": {
"Reject": "拒绝"
},
"Reject Jobs": {
- "Reject Jobs": "拒绝任务"
+ "Reject Jobs": "拒绝作业"
},
"Release": {
"Release": "松开"
@@ -5814,7 +5943,7 @@
"Remaining / Total": "剩余/总计"
},
"Remember Last Mode": {
- "Remember Last Mode": ""
+ "Remember Last Mode": "记住上次模式"
},
"Remember Last Query": {
"Remember Last Query": "记忆上次查询"
@@ -5829,46 +5958,49 @@
"Remove": "移除"
},
"Remove \"%1\" from the %2 group?": {
- "Remove \"%1\" from the %2 group?": ""
+ "Remove \"%1\" from the %2 group?": "将“%1” 从 %2 组中移除吗?"
},
"Remove Shortcut?": {
- "Remove Shortcut?": ""
+ "Remove Shortcut?": "移除快捷键?"
},
"Remove Widget Padding": {
- "Remove Widget Padding": "移除部件填充"
+ "Remove Widget Padding": "移除部件内边距"
},
"Remove admin": {
- "Remove admin": ""
+ "Remove admin": "移除管理员权限"
},
"Remove admin?": {
- "Remove admin?": ""
+ "Remove admin?": "移除管理员权限吗?"
},
"Remove corner rounding from the bar": {
- "Remove corner rounding from the bar": ""
+ "Remove corner rounding from the bar": "移除状态栏圆角"
},
"Remove gaps and border when windows are maximized": {
- "Remove gaps and border when windows are maximized": "当窗口最大化时移除间距和边框"
+ "Remove gaps and border when windows are maximized": "窗口最大化时移除间隙和边框"
},
"Remove greeter access?": {
- "Remove greeter access?": ""
+ "Remove greeter access?": "移除登录界面访问权限吗?"
},
"Remove greeter login access": {
- "Remove greeter login access": ""
+ "Remove greeter login access": "移除登录界面访问权限"
},
"Remove inner padding from all widgets": {
- "Remove inner padding from all widgets": ""
+ "Remove inner padding from all widgets": "移除所有部件的内边距"
+ },
+ "Remove match": {
+ "Remove match": ""
},
"Remove the shortcut %1?": {
- "Remove the shortcut %1?": ""
+ "Remove the shortcut %1?": "移除快捷键 %1 ?"
},
"Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": {
- "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": ""
+ "Remove the shortcut %1? An unbind entry will be saved to dms/binds-user.lua so it stays removed across DMS updates.": "移除快捷键 %1 ?将向 dms/binds-user.lua 保存一条解绑记录,使其在 DMS 更新后仍保持移除。"
},
"Removed administrator privileges": {
- "Removed administrator privileges": ""
+ "Removed administrator privileges": "已移除管理员权限"
},
"Removed greeter login access": {
- "Removed greeter login access": ""
+ "Removed greeter login access": "已移除登录界面访问权限"
},
"Rename": {
"Rename": "重命名"
@@ -5892,32 +6024,35 @@
"Request Pairing": "请求配对"
},
"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": "要求按住按钮/键以确认关机、重启、休眠、挂起和注销"
+ "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "要求按住按钮/按键以确认关机、重启、休眠、挂起和注销"
},
"Required plugin: ": {
- "Required plugin: ": "需要插件: "
+ "Required plugin: ": "需要插件:"
},
"Requires %1": {
- "Requires %1": "需要%1"
+ "Requires %1": "需要 %1"
},
"Requires 'dgop' tool": {
- "Requires 'dgop' tool": "需要dgop工具"
+ "Requires 'dgop' tool": "需要 dgop 工具"
},
"Requires DMS %1": {
- "Requires DMS %1": "需要DMS %1"
+ "Requires DMS %1": "需要 DMS %1"
},
"Requires DMS server with sysupdate capability": {
- "Requires DMS server with sysupdate capability": "需要具备sysupdate功能的DMS服务器"
+ "Requires DMS server with sysupdate capability": "需要具备 sysupdate 功能的 DMS 服务器"
},
"Requires DWL compositor": {
"Requires DWL compositor": "需要 DWL 合成器"
},
"Requires a newer version of Quickshell": {
- "Requires a newer version of Quickshell": "需要更新版本的Quickshell"
+ "Requires a newer version of Quickshell": "需要更新版本的 Quickshell"
},
"Requires night mode support": {
"Requires night mode support": "需要夜间模式支持"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "重置"
},
@@ -5928,10 +6063,10 @@
"Reset Size": "重置尺寸"
},
"Reset to Default?": {
- "Reset to Default?": ""
+ "Reset to Default?": "重置为默认值吗?"
},
"Reset to default": {
- "Reset to default": ""
+ "Reset to default": "重置为默认值"
},
"Reset to default name": {
"Reset to default name": "重置为默认名称"
@@ -5958,13 +6093,13 @@
"Restore Special Workspace Windows": "恢复特殊工作区窗口"
},
"Restore the last selected mode (tab) when the launcher is opened": {
- "Restore the last selected mode (tab) when the launcher is opened": ""
+ "Restore the last selected mode (tab) when the launcher is opened": "打开启动器时恢复上次选择的模式(标签页)"
},
"Resume": {
"Resume": "恢复"
},
"Reveal the arcs where surfaces meet the frame": {
- "Reveal the arcs where surfaces meet the frame": "显示表面与框架交汇处的弧线"
+ "Reveal the arcs where surfaces meet the frame": "平面与框架交汇处显示倒角"
},
"Reverse Scrolling Direction": {
"Reverse Scrolling Direction": "反转滚动方向"
@@ -5973,7 +6108,7 @@
"Reverse workspace switch direction when scrolling over the bar": "当在状态栏上滚动时,反转工作区切换方向"
},
"Revert": {
- "Revert": "恢复: "
+ "Revert": "还原"
},
"Right": {
"Right": "右侧"
@@ -5994,13 +6129,13 @@
"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": "右键点击状态栏上的部件以轮换"
},
"Ring": {
"Ring": "响铃"
},
"Ringing": {
- "Ringing": "响铃"
+ "Ringing": "正在响铃"
},
"Ripple Effects": {
"Ripple Effects": "波纹效果"
@@ -6026,11 +6161,14 @@
"Rules (%1)": {
"Rules (%1)": "规则(%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
- "Run Again": "启动应用"
+ "Run Again": "再次运行"
},
"Run DMS Templates": {
- "Run DMS Templates": "运行DMS模板"
+ "Run DMS Templates": "运行 DMS 模板"
},
"Run User Templates": {
"Run User Templates": "运行用户模板"
@@ -6042,7 +6180,7 @@
"Run a shell command (e.g., notify-send)": "运行 shell 命令(例如:notify-send)"
},
"Run paru/yay with AUR enabled when 'Update All' is clicked.": {
- "Run paru/yay with AUR enabled when 'Update All' is clicked.": "当点击“全部更新”时,运行paru/yay并启用AUR。"
+ "Run paru/yay with AUR enabled when 'Update All' is clicked.": "点击“全部更新”时运行 paru/yay 并启用 AUR。"
},
"Running Apps": {
"Running Apps": "活动应用程序"
@@ -6051,19 +6189,22 @@
"Running Apps Settings": "活动应用设置"
},
"Running greeter sync…": {
- "Running greeter sync…": "执行欢迎界面同步……"
+ "Running greeter sync…": "正在同步登录界面..."
},
"Running in terminal": {
"Running in terminal": "正在终端中运行"
},
"SDR Brightness": {
- "SDR Brightness": "SDR亮度"
+ "SDR Brightness": "SDR 亮度"
},
"SDR Saturation": {
- "SDR Saturation": "SDR饱和度"
+ "SDR Saturation": "SDR 饱和度"
},
"SMS": {
- "SMS": "SMS"
+ "SMS": "短信"
+ },
+ "Saturation": {
+ "Saturation": ""
},
"Save": {
"Save": "保存"
@@ -6075,13 +6216,13 @@
"Save QR Code": "保存二维码"
},
"Save and close": {
- "Save and close": ""
+ "Save and close": "保存并关闭"
},
"Save and paste": {
- "Save and paste": ""
+ "Save and paste": "保存并粘贴"
},
"Save and switch between display configurations": {
- "Save and switch between display configurations": "保存并切换显示配置"
+ "Save and switch between display configurations": "保存和切换显示器配置"
},
"Save critical priority notifications to history": {
"Save critical priority notifications to history": "将关键优先级通知保存至历史"
@@ -6111,16 +6252,16 @@
"Saved item deleted": "保存项目已删除"
},
"Saving...": {
- "Saving...": "保存中..."
+ "Saving...": "正在保存..."
},
"Scale": {
"Scale": "缩放"
},
"Scale DankBar font sizes independently": {
- "Scale DankBar font sizes independently": "独立调整 DankBar 字体缩放"
+ "Scale DankBar font sizes independently": "独立调整 Dank 状态栏字体缩放"
},
"Scale DankBar icon sizes independently": {
- "Scale DankBar icon sizes independently": "独立缩放DankBar图标大小"
+ "Scale DankBar icon sizes independently": "独立调整 Dank 状态栏图标大小"
},
"Scale all font sizes throughout the shell": {
"Scale all font sizes throughout the shell": "缩放整个 shell 中的所有字体大小"
@@ -6140,20 +6281,17 @@
"Score": {
"Score": "分数"
},
- "Screen Sharing": {
- "Screen Sharing": "屏幕共享"
- },
"Screen sharing": {
- "Screen sharing": "屏幕分享"
+ "Screen sharing": "屏幕共享"
},
"Scroll": {
- "Scroll": "滚动"
+ "Scroll": "Scroll"
},
"Scroll Factor": {
"Scroll Factor": "滚动系数"
},
"Scroll GitHub": {
- "Scroll GitHub": "滚动GitHub"
+ "Scroll GitHub": "Scroll GitHub"
},
"Scroll Wheel": {
"Scroll Wheel": "滚动滚轮"
@@ -6176,56 +6314,59 @@
"Search Options": {
"Search Options": "搜索选项"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
- "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "通过按键组合、描述或动作名称进行搜索。\n\n默认操作是将按键绑定复制到剪贴板。\n右键或右箭头可以固定常用的快捷键——不搜索时它们会出现在顶部。"
+ "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "通过按键组合、描述或动作名称进行搜索。\n\n默认操作是将按键绑定复制到剪贴板。\n按下鼠标右键或键盘右键可以固定常用的快捷键——不搜索时它们会出现在顶部。"
},
"Search devices...": {
- "Search devices...": "查找设备……"
+ "Search devices...": "查找设备..."
},
"Search for a location...": {
"Search for a location...": "搜索位置..."
},
"Search installed plugins...": {
- "Search installed plugins...": "查找已安装插件……"
+ "Search installed plugins...": "查找已安装插件..."
},
"Search keybinds...": {
- "Search keybinds...": "搜索按键绑定..."
+ "Search keybinds...": "搜索快捷键..."
},
"Search keyboard shortcuts from your compositor and applications": {
"Search keyboard shortcuts from your compositor and applications": "从合成器与应用中搜索键盘快捷键"
},
"Search plugins...": {
- "Search plugins...": "搜索插件中..."
+ "Search plugins...": "搜索插件..."
},
"Search processes...": {
- "Search processes...": "正在搜索进程..."
+ "Search processes...": "搜索进程..."
},
"Search sessions...": {
- "Search sessions...": "搜索会话……"
+ "Search sessions...": "搜索会话..."
},
"Search themes...": {
- "Search themes...": "主题搜索中..."
+ "Search themes...": "搜索主题..."
},
"Search widgets...": {
"Search widgets...": "搜索部件..."
},
"Search...": {
- "Search...": "搜索中..."
+ "Search...": "搜索..."
},
"Searching": {
- "Searching": ""
+ "Searching": "正在搜索"
},
"Searching...": {
- "Searching...": "检索中..."
+ "Searching...": "正在搜索..."
},
"Second Factor (AND)": {
"Second Factor (AND)": "次选因素(AND)"
},
"Secondary": {
- "Secondary": "次要"
+ "Secondary": "辅色"
},
"Secured": {
- "Secured": "安全"
+ "Secured": "已加密"
},
"Security": {
"Security": "安全性"
@@ -6255,16 +6396,16 @@
"Select Custom Theme": "选择自定义主题"
},
"Select Dock Launcher Logo": {
- "Select Dock Launcher Logo": "选择程序坞启动器logo"
+ "Select Dock Launcher Logo": "选择程序坞启动器 Logo"
},
"Select File to Send": {
"Select File to Send": "选择要发送的文件"
},
"Select Launcher Logo": {
- "Select Launcher Logo": "选择启动器Logo"
+ "Select Launcher Logo": "选择启动器 Logo"
},
"Select Profile Image": {
- "Select Profile Image": "选择个人信息图像"
+ "Select Profile Image": "选择用户头像"
},
"Select Video or Folder": {
"Select Video or Folder": "请选择视频或文件夹"
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "从调色板中选择颜色,或使用自定义滑块"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "选择要添加至桌面的部件。每个部件均为独立实例,拥有自己的设置。"
},
@@ -6288,7 +6432,7 @@
"Select a window...": "选择窗口..."
},
"Select an active session to switch to. The current session stays running in the background.": {
- "Select an active session to switch to. The current session stays running in the background.": ""
+ "Select an active session to switch to. The current session stays running in the background.": "选择要切换到的活动会话。当前会话会在后台继续运行。"
},
"Select an image file...": {
"Select an image file...": "选择一张图片..."
@@ -6306,13 +6450,13 @@
"Select driver...": "选择驱动程序..."
},
"Select font weight for UI text": {
- "Select font weight for UI text": "选择 UI 文本的字体粗细"
+ "Select font weight for UI text": "选择 UI 文本的字重"
},
"Select greeter background image": {
- "Select greeter background image": "请选择欢迎界面背景图片"
+ "Select greeter background image": "选择登录界面背景图片"
},
"Select monitor to configure wallpaper": {
- "Select monitor to configure wallpaper": "选择要设置壁纸的屏幕"
+ "Select monitor to configure wallpaper": "选择要设置壁纸的显示器"
},
"Select monospace font for process list and technical displays": {
"Select monospace font for process list and technical displays": "使用等宽字体显示进程和技术内容"
@@ -6324,16 +6468,16 @@
"Select system sound theme": "选择系统声音主题"
},
"Select the font family for UI text": {
- "Select the font family for UI text": "选择 UI 文本的字体族"
+ "Select the font family for UI text": "选择 UI 文本的字族"
},
"Select the palette algorithm used for wallpaper-based colors": {
- "Select the palette algorithm used for wallpaper-based colors": "选择从壁纸取色的配色方案"
+ "Select the palette algorithm used for wallpaper-based colors": "选择基于壁纸取色的配色方案算法"
},
"Select user...": {
- "Select user...": ""
+ "Select user...": "选择用户..."
},
"Select which keybind providers to include": {
- "Select which keybind providers to include": "选择快捷键绑定提供源以导入"
+ "Select which keybind providers to include": "选择要引用的快捷键绑定提供者"
},
"Select which transitions to include in randomization": {
"Select which transitions to include in randomization": "选择在随机轮换中使用的过渡效果"
@@ -6354,10 +6498,10 @@
"Send File": "发送文件"
},
"Send SMS": {
- "Send SMS": "发送SMS"
+ "Send SMS": "发送短信"
},
"Sending": {
- "Sending": "发送中"
+ "Sending": "正在发送"
},
"Separate": {
"Separate": "分离"
@@ -6390,7 +6534,7 @@
"Set different wallpapers for light and dark mode": "分别设置浅色/深色模式下的壁纸"
},
"Set initial password": {
- "Set initial password": ""
+ "Set initial password": "设置初始密码"
},
"Set key and action to save": {
"Set key and action to save": "设置要保存的键和操作"
@@ -6399,13 +6543,13 @@
"Set notification rules": "设置通知规则"
},
"Setting": {
- "Setting": ""
+ "Setting": "设置项"
},
"Settings": {
"Settings": "设置"
},
"Settings Search": {
- "Settings Search": ""
+ "Settings Search": "搜索设置"
},
"Settings are read-only. Changes will not persist.": {
"Settings are read-only. Changes will not persist.": "设置处于只读状态。更改将不会保存。"
@@ -6426,16 +6570,16 @@
"Shadow Override": "阴影覆盖"
},
"Shadow blur radius in pixels": {
- "Shadow blur radius in pixels": ""
+ "Shadow blur radius in pixels": "阴影模糊半径,单位为像素"
},
"Shadow elevation on bars and panels": {
- "Shadow elevation on bars and panels": "在状态栏与面板上的阴影提升"
+ "Shadow elevation on bars and panels": "状态栏与面板上的阴影高程"
},
"Shadow elevation on modals and dialogs": {
- "Shadow elevation on modals and dialogs": "在模态与对话框上的阴影提升"
+ "Shadow elevation on modals and dialogs": "模态框与对话框上的阴影高程"
},
"Shadow elevation on popouts, OSDs, and dropdowns": {
- "Shadow elevation on popouts, OSDs, and dropdowns": "在弹窗、OSD与下拉框上的阴影提升"
+ "Shadow elevation on popouts, OSDs, and dropdowns": "弹窗、OSD 与下拉框上的阴影高程"
},
"Shadows": {
"Shadows": "阴影"
@@ -6458,23 +6602,14 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: 清空 • Esc: 关闭"
- },
"Shift+Enter to copy": {
- "Shift+Enter to copy": ""
+ "Shift+Enter to copy": "按下 Shift+Enter 复制"
},
"Shift+Enter to paste": {
- "Shift+Enter to paste": "按Shift+Enter以粘贴"
- },
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+回车:复制 • Shift+Del:全部清除 • Esc:关闭"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter:粘贴 • Shift+Del:清除所有 • Esc:关闭"
+ "Shift+Enter to paste": "按下 Shift+Enter 粘贴"
},
"Short": {
- "Short": "短"
+ "Short": "较短"
},
"Shortcut (%1)": {
"Shortcut (%1)": "快捷方式(%1)"
@@ -6495,19 +6630,19 @@
"Show All Tags": "显示所有标签"
},
"Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": {
- "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": ""
+ "Show All, Apps, Files, and Plugins chips beside the Spotlight Bar input.": "在聚焦搜索栏输入框旁显示“全部”、“应用”、“文件”和“插件”筛选项。"
},
"Show Badge": {
"Show Badge": "显示标记"
},
"Show CPU": {
- "Show CPU": "显示CPU"
+ "Show CPU": "显示 CPU"
},
"Show CPU Graph": {
- "Show CPU Graph": "显示CPU图表"
+ "Show CPU Graph": "显示 CPU 图表"
},
"Show CPU Temp": {
- "Show CPU Temp": "显示CPU温度"
+ "Show CPU Temp": "显示 CPU 温度"
},
"Show Date": {
"Show Date": "显示日期"
@@ -6519,7 +6654,7 @@
"Show Dock": "显示程序坞"
},
"Show Feels Like Temperature": {
- "Show Feels Like Temperature": "显示感官温度"
+ "Show Feels Like Temperature": "显示体感温度"
},
"Show Footer": {
"Show Footer": "显示页脚"
@@ -6528,7 +6663,7 @@
"Show Forecast": "显示天气预测"
},
"Show GPU Temperature": {
- "Show GPU Temperature": "显示GPU温度"
+ "Show GPU Temperature": "显示 GPU 温度"
},
"Show Header": {
"Show Header": "显示表头"
@@ -6540,11 +6675,14 @@
"Show Hour Numbers": "显示小时数"
},
"Show Hourly Forecast": {
- "Show Hourly Forecast": "显示每小时天气预测"
+ "Show Hourly Forecast": "显示每小时天气预报"
},
"Show Humidity": {
"Show Humidity": "显示湿度"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "显示启动器按钮"
},
@@ -6561,7 +6699,7 @@
"Show Log Out": "显示注销"
},
"Show Material Design ripple animations on interactive elements": {
- "Show Material Design ripple animations on interactive elements": "在交互元素上显示Material设计的波纹动画"
+ "Show Material Design ripple animations on interactive elements": "在交互元素上显示 Material 设计的波纹动画"
},
"Show Media Player": {
"Show Media Player": "显示媒体播放器"
@@ -6573,10 +6711,10 @@
"Show Memory Graph": "显示内存图表"
},
"Show Memory in GB": {
- "Show Memory in GB": "以GB为单位显示内存"
+ "Show Memory in GB": "以 GB 为单位显示内存"
},
"Show Mode Chips": {
- "Show Mode Chips": ""
+ "Show Mode Chips": "显示模式筛选项"
},
"Show Network": {
"Show Network": "显示网络"
@@ -6627,10 +6765,10 @@
"Show Suspend": "显示挂起"
},
"Show Swap": {
- "Show Swap": "显示Swap"
+ "Show Swap": "显示 Swap"
},
"Show Switch User": {
- "Show Switch User": ""
+ "Show Switch User": "显示切换用户"
},
"Show System Date": {
"Show System Date": "显示系统日期"
@@ -6669,10 +6807,10 @@
"Show an outline ring around the focused workspace indicator": "在聚焦工作区指示器周围显示一个轮廓环"
},
"Show cava audio visualizer in media widget": {
- "Show cava audio visualizer in media widget": "在多媒体部件中显示cava音频可视化"
+ "Show cava audio visualizer in media widget": "在多媒体部件中显示 cava 音频可视化"
},
"Show darkened overlay behind modal dialogs": {
- "Show darkened overlay behind modal dialogs": "在对话框后显示暗色遮罩"
+ "Show darkened overlay behind modal dialogs": "在模态框后显示暗化遮罩"
},
"Show device": {
"Show device": "显示设备"
@@ -6681,22 +6819,25 @@
"Show dock when floating windows don't overlap its area": "当浮动窗口不覆盖其区域时显示程序坞"
},
"Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": {
- "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": "在通知弹窗上显示下拉阴影。需要在主题与颜色中启用M3提升。"
+ "Show drop shadow on notification popups. Requires M3 Elevation to be enabled in Theme & Colors.": "在通知弹窗上显示下拉阴影。需要在主题与配色中启用 M3 高程。"
},
"Show during Niri overview": {
- "Show during Niri overview": "在Niri概览中显示"
+ "Show during Niri overview": "在 Niri 概览中显示"
},
"Show foreground surfaces on blurred panels for stronger contrast": {
- "Show foreground surfaces on blurred panels for stronger contrast": "在模糊面板上显示前景,以增强对比度"
+ "Show foreground surfaces on blurred panels for stronger contrast": "在模糊面板上显示前景平面,以增强对比度"
},
"Show in GB": {
- "Show in GB": "以GB为单位"
+ "Show in GB": "以 GB 为单位"
},
"Show launcher overlay when typing in Niri overview. Disable to use another launcher.": {
"Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "在 Niri 概览中打字时显示启动器叠加层。禁用该项以使用其他启动器。"
},
"Show mode tabs and keyboard hints at the bottom.": {
- "Show mode tabs and keyboard hints at the bottom.": "在底部显示模式切换与键盘提示。"
+ "Show mode tabs and keyboard hints at the bottom.": "在底部显示分类标签页与键盘提示。"
+ },
+ "Show mount path": {
+ "Show mount path": ""
},
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "仅在当前聚焦的显示器上显示通知弹窗"
@@ -6705,7 +6846,7 @@
"Show notifications only on the currently focused monitor": "仅在当前聚焦的显示器上显示通知"
},
"Show on Last Display": {
- "Show on Last Display": "上一个显示器"
+ "Show on Last Display": "最近使用的显示器"
},
"Show on Overlay": {
"Show on Overlay": "保持前台显示"
@@ -6726,19 +6867,19 @@
"Show on-screen display when brightness changes": "当亮度改变时显示 OSD"
},
"Show on-screen display when caps lock state changes": {
- "Show on-screen display when caps lock state changes": "当大小写状态变化时显示 OSD"
+ "Show on-screen display when caps lock state changes": "当大写锁状态变化时显示 OSD"
},
"Show on-screen display when cycling audio output devices": {
- "Show on-screen display when cycling audio output devices": "当循环切换音频输出设备时显示 OSD"
+ "Show on-screen display when cycling audio output devices": "当切换音频输出设备时显示 OSD"
},
"Show on-screen display when idle inhibitor state changes": {
- "Show on-screen display when idle inhibitor state changes": "当空闲抑制状态改变时显示 OSD"
+ "Show on-screen display when idle inhibitor state changes": "当待机抑制状态改变时显示 OSD"
},
"Show on-screen display when media player status changes": {
- "Show on-screen display when media player status changes": "当媒体播放器状态改变时显示OSD"
+ "Show on-screen display when media player status changes": "当媒体播放器状态改变时显示 OSD"
},
"Show on-screen display when media player volume changes": {
- "Show on-screen display when media player volume changes": "当媒体音量改变时显示OSD"
+ "Show on-screen display when media player volume changes": "当媒体音量改变时显示 OSD"
},
"Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "当麦克风静音状态切换时显示 OSD"
@@ -6749,23 +6890,20 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "当音量变化时显示 OSD"
},
- "Show seconds": {
- "Show seconds": "显示秒"
- },
"Show the bar only when no windows are open": {
- "Show the bar only when no windows are open": ""
+ "Show the bar only when no windows are open": "仅在没有窗口打开时显示状态栏"
},
"Show the bar when niri overview is active": {
- "Show the bar when niri overview is active": ""
+ "Show the bar when niri overview is active": "Niri 概览激活时显示状态栏"
},
"Show weather information in top bar and control center": {
- "Show weather information in top bar and control center": "在顶栏和控制中心显示天气信息"
+ "Show weather information in top bar and control center": "在状态栏和控制中心显示天气信息"
},
"Show week number in the calendar": {
"Show week number in the calendar": "在日历中显示周数"
},
"Show workspace index numbers in the top bar workspace switcher": {
- "Show workspace index numbers in the top bar workspace switcher": "在顶栏工作区切换器中显示工作区索引号"
+ "Show workspace index numbers in the top bar workspace switcher": "在状态栏工作区切换器中显示工作区索引号"
},
"Show workspace name on horizontal bars, and first letter on vertical bars": {
"Show workspace name on horizontal bars, and first letter on vertical bars": "在水平状态栏上显示工作区名称,而在垂直状态栏上显示首字母。"
@@ -6780,7 +6918,7 @@
"Shows current workspace and allows switching": "显示当前工作区并支持快速切换"
},
"Shows when caps lock is active": {
- "Shows when caps lock is active": "大写锁定时显示"
+ "Shows when caps lock is active": "大写锁激活时显示"
},
"Shows when microphone, camera, or screen sharing is active": {
"Shows when microphone, camera, or screen sharing is active": "显示麦克风、摄像头或屏幕共享的使用状态"
@@ -6824,14 +6962,17 @@
"Skip setup": {
"Skip setup": "跳过设置"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
- "Small": "小"
+ "Small": "较小"
},
"Smartcard Authentication": {
"Smartcard Authentication": "智能卡认证"
},
"Smartcard PIN": {
- "Smartcard PIN": "智能卡PIN"
+ "Smartcard PIN": "智能卡 PIN"
},
"Snap": {
"Snap": "快照"
@@ -6846,7 +6987,7 @@
"Sort Alphabetically": "按字母顺序排序"
},
"Sort By": {
- "Sort By": "按顺序排列"
+ "Sort By": "排序方式"
},
"Sorting & Layout": {
"Sorting & Layout": "排序与布局"
@@ -6857,8 +6998,11 @@
"Sounds": {
"Sounds": "声音"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
- "Space between the bar and screen edges": ""
+ "Space between the bar and screen edges": "状态栏与屏幕边缘的间隙"
},
"Space between windows": {
"Space between windows": "窗口间空隙"
@@ -6867,7 +7011,7 @@
"Space between windows (gappih/gappiv/gappoh/gappov)": "窗口间隙(gappih/gappiv/gappoh/gappov)"
},
"Space between windows (gaps_in and gaps_out)": {
- "Space between windows (gaps_in and gaps_out)": "窗口间隙(gaps_in与gaps_out)"
+ "Space between windows (gaps_in and gaps_out)": "窗口间隙(gaps_in 与 gaps_out)"
},
"Spacer": {
"Spacer": "空白占位"
@@ -6885,16 +7029,16 @@
"Spool Area Full": "打印缓冲区已满"
},
"Spotlight": {
- "Spotlight": ""
+ "Spotlight": "聚焦"
},
"Spotlight Bar": {
- "Spotlight Bar": ""
+ "Spotlight Bar": "聚焦搜索栏"
},
"Spotlight Bar Shortcut": {
- "Spotlight Bar Shortcut": ""
+ "Spotlight Bar Shortcut": "聚焦搜索栏快捷键"
},
"Spotlight Search": {
- "Spotlight Search": ""
+ "Spotlight Search": "聚焦搜索"
},
"Square Corners": {
"Square Corners": "直角边框"
@@ -6903,22 +7047,22 @@
"Stacked": "堆叠"
},
"Standard": {
- "Standard": "基础设置"
+ "Standard": "标准"
},
"Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": {
- "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": "标准:经典Material Design 3 —— 面板从下方缓缓升起,比例细腻。DMS默认设置。"
+ "Standard: Classic Material Design 3 — panels rise from below with a subtle scale. The DMS default.": "标准:经典 Material Design 3——面板从下方升起并带有轻微缩放。DMS 默认设置。"
},
"Start": {
"Start": "开始"
},
"Start KDE Connect or Valent": {
- "Start KDE Connect or Valent": "启动KDE Connect 或 Valent"
+ "Start KDE Connect or Valent": "启动 KDE Connect 或 Valent"
},
"Start KDE Connect or Valent to use this plugin": {
"Start KDE Connect or Valent to use this plugin": "启动 KDE Connect 或 Valent 以使用此插件"
},
"Start typing your notes here...": {
- "Start typing your notes here...": "请在这里记录你的笔记..."
+ "Start typing your notes here...": "在这里开始记录笔记..."
},
"State": {
"State": "状态"
@@ -6939,10 +7083,10 @@
"Stretch": "拉伸"
},
"Stretch widget icons to fill the available bar height": {
- "Stretch widget icons to fill the available bar height": ""
+ "Stretch widget icons to fill the available bar height": "拉伸部件图标以填满可用状态栏高度"
},
"Stretch widget text to fill the available bar height": {
- "Stretch widget text to fill the available bar height": ""
+ "Stretch widget text to fill the available bar height": "拉伸部件文本以填满可用状态栏高度"
},
"Strict auto-hide": {
"Strict auto-hide": "严格自动隐藏"
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "条纹"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "概要"
},
@@ -6963,28 +7104,28 @@
"Sunset": "日落"
},
"Suppress Duplicate Notifications": {
- "Suppress Duplicate Notifications": ""
+ "Suppress Duplicate Notifications": "抑制重复通知"
},
"Suppress notification popups while enabled": {
- "Suppress notification popups while enabled": "启用时抑制通知弹出窗口"
+ "Suppress notification popups while enabled": "启用时抑制通知弹窗"
},
"Surface": {
- "Surface": "表面色"
+ "Surface": "平面"
},
"Surface Behavior": {
- "Surface Behavior": "表面行为"
+ "Surface Behavior": "平面行为"
},
"Surface Opacity": {
- "Surface Opacity": "表面透明度"
+ "Surface Opacity": "平面不透明度"
},
"Surface Variant": {
- "Surface Variant": "表面变体"
+ "Surface Variant": "平面色变体"
},
"Surfaces emerge flush from the bar": {
- "Surfaces emerge flush from the bar": "表面与状态栏齐平"
+ "Surfaces emerge flush from the bar": "平面从状态栏涌出"
},
"Surfaces float independently of the frame": {
- "Surfaces float independently of the frame": "表面独立于框架悬浮"
+ "Surfaces float independently of the frame": "平面独立于框架悬浮"
},
"Suspend": {
"Suspend": "挂起"
@@ -6993,7 +7134,7 @@
"Suspend behavior": "挂起行为"
},
"Suspend system after": {
- "Suspend system after": "在此时间后挂起系统"
+ "Suspend system after": "挂起超时"
},
"Suspend then Hibernate": {
"Suspend then Hibernate": "挂起后休眠"
@@ -7005,19 +7146,19 @@
"Switch User": "切换用户"
},
"Switch between display configurations": {
- "Switch between display configurations": ""
+ "Switch between display configurations": "在显示器配置之间切换"
},
"Switch to power profile": {
- "Switch to power profile": "切换至电源配置"
+ "Switch to power profile": "切换电源配置"
},
"Sync": {
"Sync": "同步"
},
"Sync Mode with Portal": {
- "Sync Mode with Portal": "同步系统深色模式"
+ "Sync Mode with Portal": "同步系统颜色模式"
},
"Sync Popouts & Modals": {
- "Sync Popouts & Modals": "同步弹窗与模态"
+ "Sync Popouts & Modals": "同步弹窗与模态框"
},
"Sync Position Across Screens": {
"Sync Position Across Screens": "在显示器间同步位置"
@@ -7035,7 +7176,7 @@
"Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": "同步需要 sudo 身份验证。正在打开终端,以便您可以使用密码或指纹。"
},
"System": {
- "System": "系统工具"
+ "System": "系统"
},
"System App Theming": {
"System App Theming": "系统应用主题设置"
@@ -7053,7 +7194,7 @@
"System Monitor": "系统监视器"
},
"System Monitor Unavailable": {
- "System Monitor Unavailable": "系统监测不可用"
+ "System Monitor Unavailable": "系统监视器不可用"
},
"System Sounds": {
"System Sounds": "系统声音"
@@ -7085,14 +7226,14 @@
"System toast notifications": {
"System toast notifications": "系统弹出式通知"
},
- "System update custom command": {
- "System update custom command": "自定义系统更新命令"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "标签"
},
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
- "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: 导航 • ←→↑↓: 网格导航 • 回车/空格: 选中"
+ "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab:导航 • ←→↑↓:网格导航 • Enter/Space:选中"
},
"Tags: %1": {
"Tags: %1": "标签:%1"
@@ -7112,23 +7253,20 @@
"Terminal additional parameters": {
"Terminal additional parameters": "终端附加参数"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "终端自定义附加参数"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
- "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "终端回滚失败。请安装支持的终端模拟器,或者手动运行dms auth sync。"
+ "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "终端回退失败。请安装受支持的终端模拟器,或手动运行 dms auth sync。"
},
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "终端回退失败。请安装受支持的终端模拟器之一,或手动运行“dms greeter sync”。"
},
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
- "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "终端回滚已打开。请在那里完成认证配置,结束时会自动关闭。"
+ "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": "终端回退已打开。请在那里完成认证配置,结束时会自动关闭。"
},
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "终端回退已打开。同步将在该处完成;完成后将自动关闭。"
},
"Terminal multiplexer backend to use": {
- "Terminal multiplexer backend to use": "要使用的终端多路器后端"
+ "Terminal multiplexer backend to use": "要使用的终端复用器后端"
},
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
"Terminal opened. Complete authentication setup there; it will close automatically when done.": "终端已打开。请在那里完成认证配置,结束时会自动关闭。"
@@ -7137,7 +7275,7 @@
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "终端已打开。请在终端完成同步身份验证;完成后将自动关闭。"
},
"Terminals - Always use Dark Theme": {
- "Terminals - Always use Dark Theme": "终端总使用暗色主题"
+ "Terminals - Always use Dark Theme": "终端总使用深色主题"
},
"Test Connection": {
"Test Connection": "测试连接"
@@ -7149,7 +7287,7 @@
"Test page sent to printer": "测试页已发送到打印机"
},
"Testing...": {
- "Testing...": "测试中……"
+ "Testing...": "测试中..."
},
"Text": {
"Text": "文本"
@@ -7158,19 +7296,19 @@
"Text Color": "文本颜色"
},
"Text Editor": {
- "Text Editor": ""
+ "Text Editor": "文本编辑器"
},
"Text Rendering": {
"Text Rendering": "文本渲染"
},
"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 '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 环境变量或套接字不可用,无法使用自动插件管理。"
},
"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).": {
- "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).": "以下设置将修改您的 GTK 和 Qt 配置。如需保留当前配置,请先备份 (qt5ct.conf|qt6ct.conf 和 ~/.config/gtk-3.0|gtk-4.0)。"
+ "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).": "以下设置将修改您的 GTK 和 QT 配置。如需保留当前配置,请先备份 (qt5ct.conf|qt6ct.conf 和 ~/.config/gtk-3.0|gtk-4.0)。"
},
"The custom command used when attaching to sessions (receives the session name as the first argument)": {
"The custom command used when attaching to sessions (receives the session name as the first argument)": "连接会话时使用的自定义命令(将接收会话名称作为首个参数)"
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "打印任务队列为空"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "主题与配色"
},
@@ -7185,25 +7326,28 @@
"Theme Color": "主题色"
},
"Theme Registry": {
- "Theme Registry": "主题注册表"
+ "Theme Registry": "主题仓库"
},
"Theme color used for the border": {
- "Theme color used for the border": ""
+ "Theme color used for the border": "用于边框的主题色"
},
"Theme color used for the widget outline": {
- "Theme color used for the widget outline": ""
+ "Theme color used for the widget outline": "用于部件轮廓的主题色"
},
"Theme worker failed (%1)": {
- "Theme worker failed (%1)": ""
+ "Theme worker failed (%1)": "主题工作进程失败(%1)"
},
"Themes": {
"Themes": "主题"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "厚度"
},
"Thin": {
- "Thin": ""
+ "Thin": "纤细"
},
"Third-Party Plugin Warning": {
"Third-Party Plugin Warning": "外部插件警示"
@@ -7217,20 +7361,32 @@
"This device": {
"This device": "此设备"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "此操作可能会花费一些时间"
},
"This output is disabled in the current profile": {
- "This output is disabled in the current profile": "在当前配置中此输出已被禁用"
+ "This output is disabled in the current profile": "当前配置中此输出已被禁用"
},
"This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": {
- "This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": "该插件没有“settings_write”权限。\n\n请在plugin.json中添加 \"permissions\": [\"settings_read\", \"settings_write\"]"
+ "This plugin does not have 'settings_write' permission.\n\nAdd \"permissions\": [\"settings_read\", \"settings_write\"] to plugin.json": "该插件没有“settings_write”权限。\n\n请在 plugin.json 中添加 \"permissions\": [\"settings_read\", \"settings_write\"]"
},
"This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": {
"This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "此部件会阻止 GPU 进入省电状态,可能会显著影响笔记本的电池续航。不建议在配备混合显卡的笔记本上使用。"
},
"This will delete all unpinned entries. %1 pinned entries will be kept.": {
- "This will delete all unpinned entries. %1 pinned entries will be kept.": "此操作将删除所有已取消固定的项目。%1个已固定项目将被保留。"
+ "This will delete all unpinned entries. %1 pinned entries will be kept.": "此操作将删除所有未固定的项目。将保留 %1 个已固定项目。"
},
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "此操作会清空剪贴板历史,且无法恢复。"
@@ -7257,7 +7413,7 @@
"Tiled": "已平铺"
},
"Tiled State": {
- "Tiled State": "已平铺状态"
+ "Tiled State": "平铺状态"
},
"Tiling": {
"Tiling": "平铺"
@@ -7274,14 +7430,11 @@
"Time Format": {
"Time Format": "时间格式"
},
- "Time format": {
- "Time format": "时间格式"
- },
"Time remaining: %1": {
"Time remaining: %1": "剩余时间:%1"
},
"Time to wait before hiding after the pointer leaves": {
- "Time to wait before hiding after the pointer leaves": ""
+ "Time to wait before hiding after the pointer leaves": "指针离开后隐藏前的等待时间"
},
"Time until full: %1": {
"Time until full: %1": "充满时间:%1"
@@ -7314,7 +7467,7 @@
"To Full": "充至满电"
},
"To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": {
- "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": ""
+ "To sign in as a different user, log out and pick the account from the greeter. Creating a fresh session in parallel needs a multi-session greeter (greetd-flexiserver / GDM / LightDM).": "如需以其他用户登录,请注销并在登录界面选择账户。并行创建新会话需要支持多会话的登录界面(greetd-flexiserver / GDM / LightDM)。"
},
"To update, run the following command:": {
"To update, run the following command:": "请运行以下命令以更新:"
@@ -7329,10 +7482,10 @@
"Today": "今日"
},
"Toggle bar visibility manually via IPC": {
- "Toggle bar visibility manually via IPC": ""
+ "Toggle bar visibility manually via IPC": "通过 IPC 手动切换状态栏可见性"
},
"Toggle fonts": {
- "Toggle fonts": ""
+ "Toggle fonts": "切换字体"
},
"Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": "显示/隐藏当前状态栏配置"
@@ -7344,7 +7497,7 @@
"Tomorrow": "明日"
},
"Tonal Spot": {
- "Tonal Spot": "音色斑点"
+ "Tonal Spot": "色块"
},
"Toner Empty": {
"Toner Empty": "碳粉已用尽"
@@ -7353,10 +7506,10 @@
"Toner Low": "碳粉不足"
},
"Too many attempts - locked out": {
- "Too many attempts - locked out": "过多尝试次数——已锁定"
+ "Too many attempts - locked out": "尝试次数过多 - 已锁定"
},
"Too many failed attempts - account may be locked": {
- "Too many failed attempts - account may be locked": "失败次数太多——账号将会被锁定"
+ "Too many failed attempts - account may be locked": "失败次数过多 - 账号将会被锁定"
},
"Tools": {
"Tools": "工具"
@@ -7368,10 +7521,10 @@
"Top (Default)": "顶部(默认)"
},
"Top Bar Format": {
- "Top Bar Format": "顶栏格式"
+ "Top Bar Format": "状态栏格式"
},
"Top Center": {
- "Top Center": "顶部中间"
+ "Top Center": "中上"
},
"Top Left": {
"Top Left": "左上"
@@ -7389,10 +7542,10 @@
"Total": "总计"
},
"Total Jobs": {
- "Total Jobs": "总任务数"
+ "Total Jobs": "作业总数"
},
"Touch your security key...": {
- "Touch your security key...": "请触摸你的安全密钥……"
+ "Touch your security key...": "请触摸你的安全密钥..."
},
"Transform": {
"Transform": "变换"
@@ -7404,22 +7557,25 @@
"Transparency": "透明度"
},
"Transparency of the border": {
- "Transparency of the border": ""
+ "Transparency of the border": "边框透明度"
},
"Transparency of the shadow layer": {
- "Transparency of the shadow layer": ""
+ "Transparency of the shadow layer": "阴影层透明度"
},
"Transparency of the widget outline": {
- "Transparency of the widget outline": ""
+ "Transparency of the widget outline": "部件轮廓透明度"
},
"Trash": {
"Trash": "回收站"
},
"Trash command failed (exit %1)": {
- "Trash command failed (exit %1)": "回收站命令失败(返回%1)"
+ "Trash command failed (exit %1)": "回收站命令失败(退出码 %1)"
+ },
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
},
"Trending GIFs": {
- "Trending GIFs": "热门动图"
+ "Trending GIFs": "热门 GIF"
},
"Trending Stickers": {
"Trending Stickers": "热门贴纸"
@@ -7440,7 +7596,7 @@
"Try a different search": "尝试不同的搜索"
},
"Try a different search or switch filters.": {
- "Try a different search or switch filters.": ""
+ "Try a different search or switch filters.": "尝试其他搜索或切换筛选器。"
},
"Turn off": {
"Turn off": "关闭"
@@ -7449,13 +7605,13 @@
"Turn off Do Not Disturb": "关闭勿扰模式"
},
"Turn off all displays immediately when the lock screen activates": {
- "Turn off all displays immediately when the lock screen activates": "当激活锁屏时将立即关闭所有显示器"
+ "Turn off all displays immediately when the lock screen activates": "激活锁屏时将立即关闭所有显示器"
},
"Turn off monitors after": {
- "Turn off monitors after": "在此时间后关闭显示器"
+ "Turn off monitors after": "熄屏超时"
},
"Turn off monitors after lock": {
- "Turn off monitors after lock": "在锁定后关闭显示器"
+ "Turn off monitors after lock": "锁定后熄屏超时"
},
"Turn off now": {
"Turn off now": "立即关闭"
@@ -7467,7 +7623,7 @@
"Type at least 2 characters": "至少键入两个字符"
},
"Type at least 2 characters to search files.": {
- "Type at least 2 characters to search files.": ""
+ "Type at least 2 characters to search files.": "至少输入 2 个字符以搜索文件。"
},
"Type this prefix to search keybinds": {
"Type this prefix to search keybinds": "键入此前缀以搜索快捷键绑定"
@@ -7484,8 +7640,11 @@
"Unavailable": {
"Unavailable": "不可用"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
- "Unfocused Color": "未聚焦颜色"
+ "Unfocused Color": "非聚焦颜色"
},
"Ungrouped": {
"Ungrouped": "已解除分组"
@@ -7494,19 +7653,19 @@
"Uninstall": "卸载"
},
"Uninstall Greeter": {
- "Uninstall Greeter": "卸载 Greeter"
+ "Uninstall Greeter": "卸载登录界面"
},
"Uninstall Plugin": {
"Uninstall Plugin": "卸载插件"
},
"Uninstall complete. Greeter has been removed.": {
- "Uninstall complete. Greeter has been removed.": "卸载完成。Greeter 已被移除。"
+ "Uninstall complete. Greeter has been removed.": "卸载完成。登录界面已移除。"
},
"Uninstall failed: %1": {
"Uninstall failed: %1": "卸载失败:%1"
},
"Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": {
- "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "卸载 DMS Greeter?这将删除配置并恢复您之前的显示管理器。系统将打开一个终端以进行 sudo 身份验证。"
+ "Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "要卸载 DMS 登录界面吗?这将移除配置并恢复之前的显示管理器。将打开终端进行 sudo 认证。"
},
"Uninstalled: %1": {
"Uninstalled: %1": "已卸载:%1"
@@ -7530,10 +7689,10 @@
"Unknown Device": "未知设备"
},
"Unknown GPU": {
- "Unknown GPU": "未知的GPU"
+ "Unknown GPU": "未知的 GPU"
},
"Unknown Monitor": {
- "Unknown Monitor": "未知监视器"
+ "Unknown Monitor": "未知显示器"
},
"Unknown Network": {
"Unknown Network": "未知网络"
@@ -7545,13 +7704,13 @@
"Unknown Track": "未知乐曲"
},
"Unload on Close": {
- "Unload on Close": "关闭时上传"
+ "Unload on Close": "关闭时卸载"
},
"Unmute": {
- "Unmute": "启用"
+ "Unmute": "取消静音"
},
"Unmute popups for %1": {
- "Unmute popups for %1": "启用弹窗%1"
+ "Unmute popups for %1": "取消静音 %1 的通知弹窗"
},
"Unnamed Rule": {
"Unnamed Rule": "未命名规则"
@@ -7578,25 +7737,25 @@
"Unsaved note...": "未保存的便签..."
},
"Unset": {
- "Unset": ""
+ "Unset": "未设置"
},
"Until %1": {
- "Until %1": "直到%1"
+ "Until %1": "直到 %1"
},
"Until 8 AM": {
- "Until 8 AM": "直至早上8点"
+ "Until 8 AM": "直至早上 8 点"
},
"Until I turn it off": {
"Until I turn it off": "直至关闭"
},
"Until tomorrow, 8:00 AM": {
- "Until tomorrow, 8:00 AM": "直至明早8点"
+ "Until tomorrow, 8:00 AM": "直至明早 8 点"
},
"Untitled": {
"Untitled": "无标题"
},
"Untrust": {
- "Untrust": "不信任"
+ "Untrust": "取消信任"
},
"Up to date": {
"Up to date": "已是最新"
@@ -7611,10 +7770,10 @@
"Update Plugin": "更新插件"
},
"Update failed: %1": {
- "Update failed: %1": ""
+ "Update failed: %1": "更新失败:%1"
},
"Upgrading...": {
- "Upgrading...": "正在更新……"
+ "Upgrading...": "正在更新..."
},
"Uptime": {
"Uptime": "运行时间"
@@ -7622,14 +7781,17 @@
"Uptime:": {
"Uptime:": "运行时间:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
- "Urgent Color": "高亮颜色"
+ "Urgent Color": "紧急颜色"
},
"Usage Tips": {
"Usage Tips": "使用提示"
},
"Use 24-hour time format instead of 12-hour AM/PM": {
- "Use 24-hour time format instead of 12-hour AM/PM": "改用24小时制显示时间"
+ "Use 24-hour time format instead of 12-hour AM/PM": "改用 24 小时制显示时间,而不是 12 小时 AM/PM 格式"
},
"Use Custom Command": {
"Use Custom Command": "使用自定义命令"
@@ -7653,10 +7815,7 @@
"Use Monospace Font": "使用等宽字体"
},
"Use Overlay Layer": {
- "Use Overlay Layer": ""
- },
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
+ "Use Overlay Layer": "使用叠加层"
},
"Use System Theme": {
"Use System Theme": "使用系统主题"
@@ -7665,10 +7824,10 @@
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "使用自定义图像作为登录屏幕,或留空以使用您的桌面壁纸。"
},
"Use a custom radius for goth corner cutouts": {
- "Use a custom radius for goth corner cutouts": ""
+ "Use a custom radius for goth corner cutouts": "为哥特式圆角裁切使用自定义半径"
},
"Use a fixed shadow direction for this bar": {
- "Use a fixed shadow direction for this bar": "为此栏使用固定的阴影方向"
+ "Use a fixed shadow direction for this bar": "为此状态栏使用固定的阴影方向"
},
"Use a security key for lock screen authentication.": {
"Use a security key for lock screen authentication.": "使用安全密钥进行锁屏认证。"
@@ -7677,28 +7836,22 @@
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "使用外部壁纸管理器,例如 swww、hyprpaper 或 swaybg。"
},
"Use animated wave progress bars for media playback": {
- "Use animated wave progress bars for media playback": "进行媒体播放时显示动画波形进度条"
+ "Use animated wave progress bars for media playback": "进行媒体播放时显示动态波形进度条"
},
"Use custom border size": {
"Use custom border size": "使用自定义边框尺寸"
},
"Use custom border/focus-ring width": {
- "Use custom border/focus-ring width": "使用自定义边框/焦点环宽度"
- },
- "Use custom command": {
- "Use custom command": "使用自定义命令"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "使用自定义命令来更新系统"
+ "Use custom border/focus-ring width": "使用自定义边框/聚焦环宽度"
},
"Use custom gaps instead of bar spacing": {
- "Use custom gaps instead of bar spacing": "使用自定义间隔替代状态栏空隙"
+ "Use custom gaps instead of bar spacing": "使用自定义间隙替代状态栏空隙"
},
"Use custom window radius instead of theme radius": {
"Use custom window radius instead of theme radius": "使用自定义窗口半径替代主题半径"
},
"Use custom window rounding instead of theme radius": {
- "Use custom window rounding instead of theme radius": "使用自定义窗口圆角代替主题半径"
+ "Use custom window rounding instead of theme radius": "使用自定义窗口圆角半径代替主题圆角半径"
},
"Use desktop wallpaper": {
"Use desktop wallpaper": "使用桌面壁纸"
@@ -7706,11 +7859,14 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "为锁屏使用指纹认证。"
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "使用浅色主题替代深色主题"
},
"Use meters per second instead of km/h for wind speed": {
- "Use meters per second instead of km/h for wind speed": "使用m/s代替km/h来显示风速"
+ "Use meters per second instead of km/h for wind speed": "使用 m/s 代替 km/h 来显示风速"
},
"Use smaller notification cards": {
"Use smaller notification cards": "使用更小的通知卡"
@@ -7718,14 +7874,11 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "使用系统设置中的声音主题"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
- "Use the extended surface for launcher content": "为启动器内容使用拓展表面"
+ "Use the extended surface for launcher content": "为启动器内容使用拓展平面"
},
"Use the overlay layer when opening the launcher": {
- "Use the overlay layer when opening the launcher": ""
+ "Use the overlay layer when opening the launcher": "打开启动器时使用叠加层"
},
"Use the same position and size on all displays": {
"Use the same position and size on all displays": "在所有显示器上使用同样的位置与大小"
@@ -7734,46 +7887,49 @@
"Use trigger prefix to activate": "使用触发前缀以激活"
},
"Used for xdg-terminal-exec": {
- "Used for xdg-terminal-exec": ""
+ "Used for xdg-terminal-exec": "用于 xdg-terminal-exec"
},
"Used when accent color is set to Custom": {
- "Used when accent color is set to Custom": "当强调色为自定义时使用"
+ "Used when accent color is set to Custom": "当强调色为“自定义”时使用"
},
"User": {
"User": "用户"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
- "User already exists": ""
+ "User already exists": "用户已存在"
},
"User created": {
- "User created": ""
+ "User created": "用户已创建"
},
"User created with administrator and greeter login access": {
- "User created with administrator and greeter login access": ""
+ "User created with administrator and greeter login access": "用户已创建,并拥有管理员权限和登录界面访问权限"
},
"User created with administrator privileges": {
- "User created with administrator privileges": ""
+ "User created with administrator privileges": "用户已创建,并拥有管理员权限"
},
"User created with greeter login access": {
- "User created with greeter login access": ""
+ "User created with greeter login access": "用户已创建,并拥有登录界面访问权限"
},
"User deleted": {
- "User deleted": ""
+ "User deleted": "用户已删除"
},
"User not found": {
- "User not found": ""
+ "User not found": "未找到用户"
},
"Username": {
"Username": "用户名"
},
"Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": {
- "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": ""
+ "Username must start with a lowercase letter or underscore and contain only lowercase letters, digits, hyphens, or underscores.": "用户名必须以小写字母或下划线开头,且只能包含小写字母、数字、连字符或下划线。"
},
"Username...": {
- "Username...": "用户名……"
+ "Username...": "用户名..."
},
"Users": {
- "Users": ""
+ "Users": "用户"
},
"Uses sunrise/sunset times based on your location.": {
"Uses sunrise/sunset times based on your location.": "使用基于位置信息的日出/日落时间。"
@@ -7782,10 +7938,10 @@
"Uses sunrise/sunset times to automatically adjust night mode based on your location.": "使用所在位置的日出/日落时间,自动调节夜间模式。"
},
"Uses the spotlight-bar IPC action and always opens the minimal bar.": {
- "Uses the spotlight-bar IPC action and always opens the minimal bar.": ""
+ "Uses the spotlight-bar IPC action and always opens the minimal bar.": "使用 spotlight-bar IPC 动作,并始终打开聚焦搜索框。"
},
"Using global monospace font from Settings → Personalization": {
- "Using global monospace font from Settings → Personalization": ""
+ "Using global monospace font from Settings → Personalization": "正在使用“设置” → “个性化”中的全局等宽字体"
},
"Using shared settings from Gamma Control": {
"Using shared settings from Gamma Control": "使用伽马控制的已共享设置"
@@ -7806,16 +7962,16 @@
"VPN configuration updated": "VPN 配置已更新"
},
"VPN connections": {
- "VPN connections": "VPN连接"
+ "VPN connections": "VPN 连接"
},
"VPN deleted": {
"VPN deleted": "VPN 已删除"
},
"VPN imported: %1": {
- "VPN imported: %1": "已导入VPN:%1"
+ "VPN imported: %1": "已导入 VPN:%1"
},
"VPN not available": {
- "VPN not available": "VPN不可用"
+ "VPN not available": "VPN 不可用"
},
"VPN status and quick connect": {
"VPN status and quick connect": "VPN 状态与快速连接"
@@ -7824,10 +7980,10 @@
"VRR": "VRR"
},
"VRR Fullscreen Only": {
- "VRR Fullscreen Only": "仅VRR全屏"
+ "VRR Fullscreen Only": "仅 VRR 全屏"
},
"VRR On-Demand": {
- "VRR On-Demand": "按需VRR"
+ "VRR On-Demand": "按需 VRR"
},
"Variable Refresh Rate": {
"Variable Refresh Rate": "可变刷新率"
@@ -7850,17 +8006,20 @@
"Vertical Tiling": {
"Vertical Tiling": "垂直平铺"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "鲜艳"
},
"Vibrant palette with playful saturation.": {
- "Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。"
+ "Vibrant palette with playful saturation.": "鲜艳配色,有着俏皮的饱和度"
},
"Video Path": {
"Video Path": "视频路径"
},
"Video Player": {
- "Video Player": ""
+ "Video Player": "视频播放器"
},
"Video Screensaver": {
"Video Screensaver": "动态屏保"
@@ -7872,7 +8031,7 @@
"View Mode": "查看模式"
},
"Visibility": {
- "Visibility": "能见度"
+ "Visibility": "可见性"
},
"Visual Effects": {
"Visual Effects": "视觉效果"
@@ -7881,7 +8040,7 @@
"Visual divider between widgets": "部件分隔线"
},
"Visual effect used when wallpaper changes": {
- "Visual effect used when wallpaper changes": "壁纸切换时的动画效果"
+ "Visual effect used when wallpaper changes": "壁纸切换时的视觉效果"
},
"Volume": {
"Volume": "音量"
@@ -7893,7 +8052,7 @@
"Volume Slider": "音量滑块"
},
"Volume, brightness, and other system OSDs": {
- "Volume, brightness, and other system OSDs": "音量、亮度和其他系统屏幕显示"
+ "Volume, brightness, and other system OSDs": "音量、亮度和其他系统 OSD"
},
"WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2"
@@ -7905,7 +8064,7 @@
"Wallpaper Error": "壁纸错误"
},
"Wallpaper Monitor": {
- "Wallpaper Monitor": "壁纸监视器"
+ "Wallpaper Monitor": "壁纸显示器"
},
"Wallpaper fill mode": {
"Wallpaper fill mode": "壁纸填充模式"
@@ -7938,46 +8097,43 @@
"Weather Widget": "天气部件"
},
"Web Browser": {
- "Web Browser": ""
+ "Web Browser": "网络浏览器"
},
"Welcome": {
"Welcome": "欢迎"
},
"Welcome to DankMaterialShell": {
- "Welcome to DankMaterialShell": "欢迎来到DankMaterialShell"
+ "Welcome to DankMaterialShell": "欢迎使用 DankMaterialShell"
},
"When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": {
"When clicking a dock window in a Hyprland special workspace, bring that special workspace back before focusing the window": "在 Hyprland 特殊工作区点击程序坞窗口时,会拉回该特殊工作区,再聚焦窗口"
},
"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, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "启用时,应用按字母顺序排序;禁用时,应用按使用频率排序"
},
"When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": {
- "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": ""
+ "When enabled, checks updates on startup. When disabled, only the interval above or a manual refresh runs a check.": "启用后,DMS 启动时检查更新。禁用后,仅在以上设置的间隔或手动刷新时检查更新。"
},
"When locked": {
"When locked": "何时锁定"
},
- "When updater widget is used, then hide it if no update found": {
- "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 and Ethernet connection": "Wi-Fi 与以太网连接"
},
"Wi-Fi not available": {
- "Wi-Fi not available": "Wi-Fi不可用"
+ "Wi-Fi not available": "Wi-Fi 不可用"
},
"WiFi": {
- "WiFi": "WiFi"
+ "WiFi": "Wi-Fi"
},
"WiFi Device": {
- "WiFi Device": "WiFi 设备"
+ "WiFi Device": "Wi-Fi 设备"
},
"WiFi QR code for ": {
- "WiFi QR code for ": "WiFi二维码 "
+ "WiFi QR code for ": "Wi-Fi 二维码 "
},
"WiFi disabled": {
"WiFi disabled": "Wi-Fi 已停用"
@@ -7989,7 +8145,7 @@
"WiFi is off": "Wi-Fi 已关闭"
},
"WiFi off": {
- "WiFi off": "WiFi关闭"
+ "WiFi off": "Wi-Fi 关闭"
},
"Wide (BT2020)": {
"Wide (BT2020)": "广色域(BT2020)"
@@ -8028,10 +8184,10 @@
"Width": "宽度"
},
"Width of the border in pixels": {
- "Width of the border in pixels": ""
+ "Width of the border in pixels": "边框宽度(px)"
},
"Width of the widget outline in pixels": {
- "Width of the widget outline in pixels": ""
+ "Width of the widget outline in pixels": "部件轮廓宽度,单位为像素"
},
"Width of window border (borderpx)": {
"Width of window border (borderpx)": "窗口边框宽度(borderpx)"
@@ -8040,7 +8196,7 @@
"Width of window border (general.border_size)": "窗口边框宽度(general.border_size)"
},
"Width of window border and focus ring": {
- "Width of window border and focus ring": "窗口边框宽度与聚焦环"
+ "Width of window border and focus ring": "窗口边框与聚焦环宽度"
},
"Wind": {
"Wind": "风速"
@@ -8049,22 +8205,22 @@
"Wind Speed": "风速"
},
"Wind Speed in m/s": {
- "Wind Speed in m/s": "风速m/s"
+ "Wind Speed in m/s": "风速(m/s)"
},
"Window Corner Radius": {
- "Window Corner Radius": "窗口角半径"
+ "Window Corner Radius": "窗口圆角半径"
},
"Window Gaps": {
"Window Gaps": "窗口间隙"
},
"Window Gaps (px)": {
- "Window Gaps (px)": "窗口间隙(像素)"
+ "Window Gaps (px)": "窗口间隙(px)"
},
"Window Height": {
"Window Height": "窗口高度"
},
"Window Opening": {
- "Window Opening": "正打开窗口"
+ "Window Opening": "窗口打开方式"
},
"Window Rounding": {
"Window Rounding": "窗口圆角"
@@ -8073,7 +8229,7 @@
"Window Rules": "窗口规则"
},
"Window Rules Include Missing": {
- "Window Rules Include Missing": "未找到窗口规则包含文件"
+ "Window Rules Include Missing": "窗口规则引用文件"
},
"Window Rules Not Configured": {
"Window Rules Not Configured": "未配置窗口规则"
@@ -8082,7 +8238,7 @@
"Wipe": "擦除"
},
"Working…": {
- "Working…": ""
+ "Working…": "正在处理..."
},
"Workspace": {
"Workspace": "工作区"
@@ -8114,14 +8270,26 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "工作区与部件"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "写入:"
},
"X Axis": {
- "X Axis": "X轴"
+ "X Axis": "X 轴"
+ },
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
},
"Y Axis": {
- "Y Axis": "Y轴"
+ "Y Axis": "Y 轴"
},
"Yes": {
"Yes": "是"
@@ -8133,7 +8301,7 @@
"You have unsaved changes. Save before closing this tab?": "检测到未保存的更改,是否在关闭此标签页前保存?"
},
"You have unsaved changes. Save before continuing?": {
- "You have unsaved changes. Save before continuing?": "检测到未保存的更改,是否在继续前保存?"
+ "You have unsaved changes. Save before continuing?": "检测到未保存的更改,是否在执行此操作前保存?"
},
"You have unsaved changes. Save before creating a new file?": {
"You have unsaved changes. Save before creating a new file?": "检测到未保存的更改,是否在创建新文件前保存?"
@@ -8142,22 +8310,31 @@
"You have unsaved changes. Save before opening a file?": "检测到未保存的更改,是否在打开文件前保存?"
},
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
- "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "你需要设置:\nQT_QPA_PLATFORMTHEME=gtk3 或\nQT_QPA_PLATFORMTHEME=qt6ct\n作为环境变量,然后重启shell。\n\nqt6ct需要安装qt6ct-kde。"
+ "You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "你需要设置:\nQT_QPA_PLATFORMTHEME=gtk3 或\nQT_QPA_PLATFORMTHEME=qt6ct\n作为环境变量,然后重启 shell。\n\nqt6ct 需要安装 qt6ct-kde。"
+ },
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
},
"You're All Set!": {
"You're All Set!": "已全部设置!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "您的系统已是最新!"
},
"actions": {
- "actions": "动作"
+ "actions": "操作"
},
"admin": {
- "admin": ""
+ "admin": "管理员"
},
"attached": {
- "attached": "已连接"
+ "attached": "已附加"
},
"brandon": {
"brandon": "brandon"
@@ -8178,22 +8355,28 @@
"devices connected": "设备已连接"
},
"dgop not available": {
- "dgop not available": "dgop不可用"
+ "dgop not available": "dgop 不可用"
},
"direct": {
"direct": "直接"
},
"dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": {
- "dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "DMS是一款高度可自定义的现代桌面shell,深受material 3的启发而设计。
DMS基于Quickshell——一个专为创建桌面shell的QT6框架,并通过Go语言——一种静态类型化、编译的编程语言开发。"
+ "dms is a highly customizable, modern desktop shell with a material 3 inspired design.
It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "DMS 是一款高度可自定义的现代桌面 Shell,采用受 Material 3 启发的设计。
DMS 基于 Quickshell(用于构建桌面 Shell 的 QT6 框架)和 Go(静态类型编译型编程语言)开发。"
},
"dms/cursor config exists but is not included. Cursor settings won't apply.": {
- "dms/cursor config exists but is not included. Cursor settings won't apply.": "已找到dms/cursor的配置文件,但并未导入。光标设置将不会生效。"
+ "dms/cursor config exists but is not included. Cursor settings won't apply.": "dms/cursor 配置存在,但未被合成器配置文件引用。光标设置将不会生效。"
},
"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/输出配置存在,但不包含在你的合成器配置里。显示更改不会保留。"
+ "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs 配置存在,但未被合成器配置文件引用。显示器配置变更不会保留。"
+ },
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
},
"e.g. alice": {
- "e.g. alice": ""
+ "e.g. alice": "例如:alice"
},
"e.g., firefox, kitty --title foo": {
"e.g., firefox, kitty --title foo": "例如:firefox, kitty --title foo"
@@ -8201,11 +8384,14 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "例如:focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "例如:通知发送 'Hello' && sleep 1"
},
"e.g., scratch, /^tmp_.*/, build": {
- "e.g., scratch, /^tmp_.*/, build": "例如,scratch, /^tmp_.*/, build"
+ "e.g., scratch, /^tmp_.*/, build": "例如:scratch, /^tmp_.*/, build"
},
"events": {
"events": "事件"
@@ -8214,19 +8400,16 @@
"ext": "外部"
},
"featured": {
- "featured": "已生效"
- },
- "greeter": {
- "greeter": ""
+ "featured": "精选"
},
"last seen %1": {
- "last seen %1": "上次发现%1"
+ "last seen %1": "上次在线:%1"
},
"leave empty for default": {
"leave empty for default": "留空使用默认"
},
"loginctl activate failed (exit %1)": {
- "loginctl activate failed (exit %1)": ""
+ "loginctl activate failed (exit %1)": "loginctl activate 失败(退出码 %1)"
},
"loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 启用锁定集成需连接 DMS socket"
@@ -8238,13 +8421,13 @@
"mangowc GitHub": "mangowc GitHub"
},
"matugen not available or disabled - cannot apply GTK colors": {
- "matugen not available or disabled - cannot apply GTK colors": ""
+ "matugen not available or disabled - cannot apply GTK colors": "Matugen 不可用或已禁用,无法应用 GTK 配色"
},
"matugen not available or disabled - cannot apply Qt colors": {
- "matugen not available or disabled - cannot apply Qt colors": ""
+ "matugen not available or disabled - cannot apply Qt colors": "matugen 不可用或已禁用,无法应用 QT 配色"
},
"matugen not found - install matugen package for dynamic theming": {
- "matugen not found - install matugen package for dynamic theming": "未找到matugen - 请为动态主题安装matugen包"
+ "matugen not found - install matugen package for dynamic theming": "未找到 Matugen - 请为动态主题安装 matugen 包"
},
"minutes": {
"minutes": "分钟"
@@ -8253,25 +8436,25 @@
"ms": "毫秒"
},
"nav": {
- "nav": "向导"
+ "nav": "导航"
},
"niri GitHub": {
- "niri GitHub": "niri GitHub"
+ "niri GitHub": "Niri GitHub"
},
"niri Matrix Chat": {
- "niri Matrix Chat": "niri Matrix 聊天室"
+ "niri Matrix Chat": "Niri Matrix 聊天室"
},
"niri shortcuts config": {
- "niri shortcuts config": "Niri快捷键设置"
+ "niri shortcuts config": "Niri 快捷键设置"
},
"niri/dms Discord": {
"niri/dms Discord": "niri/dms Discord"
},
"niri: config reloaded": {
- "niri: config reloaded": ""
+ "niri: config reloaded": "Niri:配置已重新加载"
},
"niri: failed to load config": {
- "niri: failed to load config": ""
+ "niri: failed to load config": "Niri:加载配置失败"
},
"now": {
"now": "现在"
@@ -8280,22 +8463,22 @@
"official": "官方"
},
"on Hyprland": {
- "on Hyprland": "在Hyprland上"
+ "on Hyprland": "在 Hyprland 上"
},
"on MangoWC": {
- "on MangoWC": "在MangoWC上"
+ "on MangoWC": "在 MangoWC 上"
},
"on Miracle WM": {
- "on Miracle WM": "在Miracle WM上"
+ "on Miracle WM": "在 Miracle WM 上"
},
"on Niri": {
- "on Niri": "在Niri上"
+ "on Niri": "在 Niri 上"
},
"on Scroll": {
- "on Scroll": "在滚动上"
+ "on Scroll": "在 Scroll 上"
},
"on Sway": {
- "on Sway": "在Sway上"
+ "on Sway": "在 Sway 上"
},
"open": {
"open": "打开"
@@ -8304,7 +8487,7 @@
"or run ": "或运行 "
},
"power-profiles-daemon not available": {
- "power-profiles-daemon not available": "power-profiles-daemon不可用"
+ "power-profiles-daemon not available": "power-profiles-daemon 不可用"
},
"procs": {
"procs": "进程"
@@ -8313,16 +8496,16 @@
"r/niri Subreddit": "r/niri 红迪子版块"
},
"relay: %1": {
- "relay: %1": "转发:%`"
+ "relay: %1": "中继:%1"
},
"remote": {
- "remote": ""
+ "remote": "远程"
},
"seconds": {
- "seconds": "秒"
+ "seconds": "秒钟"
},
"session %1": {
- "session %1": ""
+ "session %1": "会话 %1"
},
"source": {
"source": "源"
@@ -8331,7 +8514,7 @@
"this app": "此应用"
},
"until %1": {
- "until %1": "直到%1"
+ "until %1": "直到 %1"
},
"up": {
"up": "上"
@@ -8340,19 +8523,19 @@
"update dms for NM integration.": "更新 DMS 以集成 NM"
},
"useradd failed (exit %1)": {
- "useradd failed (exit %1)": ""
+ "useradd failed (exit %1)": "useradd 失败(退出码 %1)"
},
"userdel failed (exit %1)": {
- "userdel failed (exit %1)": ""
+ "userdel failed (exit %1)": "userdel 失败(退出码 %1)"
},
"usermod failed (exit %1)": {
- "usermod failed (exit %1)": ""
+ "usermod failed (exit %1)": "usermod 失败(退出码 %1)"
},
"v%1 by %2": {
"v%1 by %2": "v%1 by %2"
},
"wtype not available - install wtype for paste support": {
- "wtype not available - install wtype for paste support": "wtype不可用,为支持粘贴,请安装wtype"
+ "wtype not available - install wtype for paste support": "wtype 不可用 - 安装 wtype 已支持粘贴功能"
},
"• Install only from trusted sources": {
"• Install only from trusted sources": "• 仅从可信来源安装"
@@ -8364,13 +8547,13 @@
"• MM - Month (01-12)": "• M - 月(01-12)"
},
"• MMM - Month (Jan)": {
- "• MMM - Month (Jan)": "• MMM - 月份 (1月)"
+ "• MMM - Month (Jan)": "• MMM - 月(1 月)"
},
"• MMMM - Month (January)": {
- "• MMMM - Month (January)": "• MMMM - 月份 (一月)"
+ "• MMMM - Month (January)": "• MMMM - 月(一月)"
},
"• Plugins may contain bugs or security issues": {
- "• Plugins may contain bugs or security issues": "插件可能包含漏洞或安全隐患"
+ "• Plugins may contain bugs or security issues": "• 插件可能包含漏洞或安全隐患"
},
"• Review code before installation when possible": {
"• Review code before installation when possible": "• 请尽可能在安装前审查代码"
@@ -8394,18 +8577,12 @@
"• yyyy - Year (2024)": "• yy - 年(2024)"
},
"↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": {
- "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: 导航 • 空格:展开 • 回车:动作/展开 • E:文本"
+ "↑/↓: Nav • Space: Expand • Enter: Action/Expand • E: Text": "↑/↓: 导航 • Space:展开 • Enter:动作/展开 • E:文本"
},
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: 导航 • 回车/Ctrl+C: 复制 • Del: 删除 • F10: 帮助"
+ "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓:导航 • Enter/Ctrl+C:复制 • Del:删除 • Ctrl+E:编辑 • Ctrl+S:固定/取消固定 • F10:帮助"
},
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: 导航 • 回车:粘贴 • Del:删除 • F10:帮助"
+ "↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": "↑/↓:导航 • Enter:粘贴 • Ctrl+C:复制 • Del:删除 • Ctrl+E:编辑 • Ctrl+S:固定/取消固定 • F10:帮助"
}
}
diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json
index b2b44124..d4852db4 100644
--- a/quickshell/translations/poexports/zh_TW.json
+++ b/quickshell/translations/poexports/zh_TW.json
@@ -1,4 +1,7 @@
{
+ "%1 (+%2 more)": {
+ "%1 (+%2 more)": ""
+ },
"%1 Animation Speed": {
"%1 Animation Speed": "%1 動畫速度"
},
@@ -104,6 +107,9 @@
"%1m ago": {
"%1m ago": "%1 分鐘前"
},
+ "%command%": {
+ "%command%": ""
+ },
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": {
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "「替代」讓密鑰自行解鎖。「第二因素」需要先輸入密碼或指紋,然後再輸入密鑰。"
},
@@ -374,6 +380,9 @@
"Active VPN": {
"Active VPN": "啟用中的 VPN"
},
+ "Active in Column": {
+ "Active in Column": ""
+ },
"Active tile background and icon color": {
"Active tile background and icon color": "啟用磚背景與圖示顏色"
},
@@ -407,6 +416,9 @@
"Add Desktop Widget": {
"Add Desktop Widget": "新增桌面小工具"
},
+ "Add Entry": {
+ "Add Entry": ""
+ },
"Add Printer": {
"Add Printer": "新增印表機"
},
@@ -416,8 +428,11 @@
"Add Widget": {
"Add Widget": "新增部件"
},
- "Add Widget to %1 Section": {
- "Add Widget to %1 Section": "將部件新增至 %1 部分"
+ "Add Widget to %1": {
+ "Add Widget to %1": ""
+ },
+ "Add Window Rule": {
+ "Add Window Rule": ""
},
"Add a border around the dock": {
"Add a border around the dock": "在 Dock 周圍新增邊框"
@@ -431,12 +446,18 @@
"Add by Address": {
"Add by Address": "按位址新增"
},
+ "Add match": {
+ "Add match": ""
+ },
"Add the new user to the %1 group so they can run dms greeter sync --profile.": {
"Add the new user to the %1 group so they can run dms greeter sync --profile.": ""
},
"Add the new user to the %1 group so they can use sudo.": {
"Add the new user to the %1 group so they can use sudo.": ""
},
+ "Add to Autostart": {
+ "Add to Autostart": ""
+ },
"Adjust the bar height via inner padding": {
"Adjust the bar height via inner padding": ""
},
@@ -545,12 +566,24 @@
"Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "匿名身分 (可選)"
},
+ "Any": {
+ "Any": ""
+ },
+ "Any window": {
+ "Any window": ""
+ },
"App Customizations": {
"App Customizations": "應用程式自訂"
},
+ "App ID": {
+ "App ID": ""
+ },
"App ID Substitutions": {
"App ID Substitutions": "應用程式ID替換"
},
+ "App ID regex": {
+ "App ID regex": ""
+ },
"App ID regex (e.g. ^firefox$)": {
"App ID regex (e.g. ^firefox$)": "應用程式 ID 正規表示式 (例如:^firefox$)"
},
@@ -566,12 +599,18 @@
"Appearance": {
"Appearance": "外觀"
},
+ "Application": {
+ "Application": ""
+ },
"Application Dock": {
"Application Dock": "應用程式 Dock"
},
"Applications": {
"Applications": "應用程式"
},
+ "Applications and commands to start automatically when you log in": {
+ "Applications and commands to start automatically when you log in": ""
+ },
"Apply Changes": {
"Apply Changes": "套用變更"
},
@@ -596,6 +635,9 @@
"Applying authentication changes…": {
"Applying authentication changes…": "正在套用身份驗證變更…"
},
+ "Applying auto-login on startup…": {
+ "Applying auto-login on startup…": ""
+ },
"Apps": {
"Apps": "應用程式"
},
@@ -629,6 +671,9 @@
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": "排列顯示器並設定解析度、重新整理頻率和 VRR"
},
+ "At Startup": {
+ "At Startup": ""
+ },
"At least one output must remain enabled": {
"At least one output must remain enabled": "至少一個輸出必須保持啟用"
},
@@ -749,6 +794,18 @@
"Auto-hide Dock": {
"Auto-hide Dock": "自動隱藏 Dock"
},
+ "Auto-login": {
+ "Auto-login": ""
+ },
+ "Auto-login disabled": {
+ "Auto-login disabled": ""
+ },
+ "Auto-login enabled": {
+ "Auto-login enabled": ""
+ },
+ "Auto-login on startup": {
+ "Auto-login on startup": ""
+ },
"Auto-saving...": {
"Auto-saving...": "自動保存..."
},
@@ -803,6 +860,12 @@
"Automation": {
"Automation": "自動化"
},
+ "Autostart Apps": {
+ "Autostart Apps": ""
+ },
+ "Autostart Entries": {
+ "Autostart Entries": ""
+ },
"Available": {
"Available": "可用"
},
@@ -830,6 +893,9 @@
"Back": {
"Back": "返回"
},
+ "Back to user list": {
+ "Back to user list": ""
+ },
"Backend": {
"Backend": "後端"
},
@@ -842,6 +908,9 @@
"Background Blur": {
"Background Blur": "背景模糊"
},
+ "Background Effect": {
+ "Background Effect": ""
+ },
"Background Opacity": {
"Background Opacity": "背景不透明度"
},
@@ -881,9 +950,6 @@
"Bar spacing and size": {
"Bar spacing and size": "長條間距和大小"
},
- "Bar transparency": {
- "Bar transparency": "長條透明度"
- },
"Base color for shadows (opacity is applied automatically)": {
"Base color for shadows (opacity is applied automatically)": "陰影的基礎顏色 (不透明度會自動套用)"
},
@@ -953,6 +1019,9 @@
"Bluetooth not available": {
"Bluetooth not available": "藍牙不可用"
},
+ "Blur": {
+ "Blur": ""
+ },
"Blur Border Color": {
"Blur Border Color": "模糊邊框顏色"
},
@@ -983,6 +1052,9 @@
"Border Color": {
"Border Color": "邊框顏色"
},
+ "Border Off": {
+ "Border Off": ""
+ },
"Border Opacity": {
"Border Opacity": "邊框不透明度"
},
@@ -1001,8 +1073,11 @@
"Border color around blurred surfaces": {
"Border color around blurred surfaces": "模糊表面周圍的邊框顏色"
},
- "Border with BG": {
- "Border with BG": "含背景邊界"
+ "Border w/ Bg": {
+ "Border w/ Bg": ""
+ },
+ "Border with Background": {
+ "Border with Background": ""
},
"Bottom": {
"Bottom": "下方"
@@ -1133,6 +1208,12 @@
"Caps Lock is on": {
"Caps Lock is on": "大寫鎖定已開啟"
},
+ "Cast Target": {
+ "Cast Target": ""
+ },
+ "Category": {
+ "Category": ""
+ },
"Center Section": {
"Center Section": "中間區塊"
},
@@ -1178,9 +1259,6 @@
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": {
"Check sync status on demand. Sync (full) is for the main admin: it copies your theme to the login screen and sets up system greeter config. On multi-user systems, add other accounts in Settings → Users, then have each of them run dms greeter sync --profile after logging out and back in—not full sync. Authentication changes apply automatically.": ""
},
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
- "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": "按需檢查同步狀態。同步會將您的主題、設定和桌布配置複製到登入畫面。身份驗證變更會自動套用。"
- },
"Check your custom command in Settings → Dock → Trash.": {
"Check your custom command in Settings → Dock → Trash.": "請在「設定」→「Dock」→「垃圾桶」中檢查您的自訂指令。"
},
@@ -1217,6 +1295,9 @@
"Choose a color": {
"Choose a color": "選擇顏色"
},
+ "Choose a power profile": {
+ "Choose a power profile": ""
+ },
"Choose colors from palette": {
"Choose colors from palette": "從調色盤選擇顏色"
},
@@ -1247,6 +1328,9 @@
"Choose where on-screen displays appear on screen": {
"Choose where on-screen displays appear on screen": "選擇螢幕顯示出現在螢幕上的位置"
},
+ "Choose whether to launch a desktop app or a command": {
+ "Choose whether to launch a desktop app or a command": ""
+ },
"Choose which displays show this widget": {
"Choose which displays show this widget": "選擇哪些顯示器顯示此小工具"
},
@@ -1262,6 +1346,9 @@
"Circle": {
"Circle": "圓形"
},
+ "Class regex": {
+ "Class regex": ""
+ },
"Class regex (e.g. ^firefox$)": {
"Class regex (e.g. ^firefox$)": "類別正規表示式 (例如:^firefox$)"
},
@@ -1331,12 +1418,12 @@
"Clipboard Manager": {
"Clipboard Manager": "剪貼簿管理"
},
+ "Clipboard Saved": {
+ "Clipboard Saved": ""
+ },
"Clipboard sent": {
"Clipboard sent": "剪貼簿已傳送"
},
- "Clipboard service not available": {
- "Clipboard service not available": "剪貼簿服務無法使用"
- },
"Clipboard works but nothing saved to disk": {
"Clipboard works but nothing saved to disk": "剪貼簿運作正常但未儲存任何內容至磁碟"
},
@@ -1430,6 +1517,9 @@
"Command": {
"Command": "指令"
},
+ "Command Line": {
+ "Command Line": ""
+ },
"Commands": {
"Commands": "指令"
},
@@ -1454,9 +1544,6 @@
"Compositor Settings": {
"Compositor Settings": "合成器設定"
},
- "Compositor not supported": {
- "Compositor not supported": "不支援合成器"
- },
"Config Format": {
"Config Format": "配置格式"
},
@@ -1571,6 +1658,9 @@
"Contrast": {
"Contrast": "對比"
},
+ "Contributor": {
+ "Contributor": ""
+ },
"Control Center": {
"Control Center": "控制台"
},
@@ -1619,6 +1709,9 @@
"Convenience options for the login screen. Sync to apply.": {
"Convenience options for the login screen. Sync to apply.": "登入畫面的便捷選項。同步以套用。"
},
+ "Convert to DMS": {
+ "Convert to DMS": ""
+ },
"Cooldown": {
"Cooldown": "冷卻時間"
},
@@ -1655,9 +1748,6 @@
"Copy PID": {
"Copy PID": "複製 PID"
},
- "Copy Path": {
- "Copy Path": "複製路徑"
- },
"Copy Text": {
"Copy Text": "複製文字"
},
@@ -1673,6 +1763,9 @@
"Corners & Background": {
"Corners & Background": "邊角與背景"
},
+ "Couldn't open a terminal for the auto-login update.": {
+ "Couldn't open a terminal for the auto-login update.": ""
+ },
"Count Only": {
"Count Only": "僅計數"
},
@@ -1715,12 +1808,6 @@
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": {
"Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切換分頁 • Ctrl+S:釘選/取消釘選 • Shift+Del:全部清除 • Esc:關閉"
},
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切換分頁 • Ctrl+S:釘選/取消釘選 • Shift+Enter:複製 • Shift+Del:全部清除 • Esc:關閉"
- },
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Ctrl+Tab: Switch Tab • Ctrl+S: Pin/Unpin • Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Ctrl+Tab:切換分頁 • Ctrl+S:釘選/取消釘選 • Shift+Enter:貼上 • Shift+Del:全部清除 • Esc:關閉"
- },
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": {
"Ctrl+Tab: Switch Tabs • Ctrl+S: Pin/Unpin • Shift+Enter: Copy • Shift+Del: Clear All • F10: Help • Esc: Close": ""
},
@@ -1778,6 +1865,9 @@
"Cursor Theme": {
"Cursor Theme": "游標主題"
},
+ "Curve": {
+ "Curve": ""
+ },
"Curve: curve rasterizer.": {
"Curve: curve rasterizer.": "曲線:曲線光柵化器。"
},
@@ -1868,8 +1958,8 @@
"DMS Settings": {
"DMS Settings": ""
},
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": {
- "DMS Settings now writes Lua. Edits won't apply until you migrate.": ""
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": {
+ "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.": ""
},
"DMS Shortcuts": {
"DMS Shortcuts": "DMS 捷徑"
@@ -1877,6 +1967,9 @@
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": "DMS 歡迎介面需要:greetd, dms-greeter。指紋:fprintd, pam_fprintd。安全金鑰:pam_u2f。將您的使用者加入 greeter 群組。身份驗證變更會自動套用,當需要 sudo 身份驗證時可能會開啟終端機。"
},
+ "DMS needs administrator access. The terminal closes automatically when done.": {
+ "DMS needs administrator access. The terminal closes automatically when done.": ""
+ },
"DMS out of date": {
"DMS out of date": "DMS 已過期"
},
@@ -1931,9 +2024,6 @@
"Date Format": {
"Date Format": "日期格式"
},
- "Date format": {
- "Date format": "日期格式"
- },
"Date format on greeter": {
"Date format on greeter": "歡迎畫面上的日期格式"
},
@@ -2018,6 +2108,9 @@
"Delete Printer": {
"Delete Printer": "刪除印表機"
},
+ "Delete Rule": {
+ "Delete Rule": ""
+ },
"Delete Saved Item?": {
"Delete Saved Item?": "刪除已儲存項目?"
},
@@ -2057,6 +2150,9 @@
"Desktop": {
"Desktop": "桌面"
},
+ "Desktop Application": {
+ "Desktop Application": ""
+ },
"Desktop Clock": {
"Desktop Clock": "桌面時鐘"
},
@@ -2132,6 +2228,9 @@
"Disabling WiFi...": {
"Disabling WiFi...": "正在停用 Wi-Fi..."
},
+ "Disabling auto-login on startup…": {
+ "Disabling auto-login on startup…": ""
+ },
"Disc": {
"Disc": "光碟"
},
@@ -2216,6 +2315,9 @@
"Display line numbers in editor": {
"Display line numbers in editor": ""
},
+ "Display name for this entry": {
+ "Display name for this entry": ""
+ },
"Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "只顯示包含視窗的工作區"
},
@@ -2225,6 +2327,9 @@
"Display seconds in the clock": {
"Display seconds in the clock": "在時鐘中顯示秒數"
},
+ "Display setup failed": {
+ "Display setup failed": ""
+ },
"Display the power system menu": {
"Display the power system menu": "顯示電源系統選單"
},
@@ -2264,9 +2369,6 @@
"Dock margin, transparency, and border": {
"Dock margin, transparency, and border": "Dock 邊距、透明度和邊框"
},
- "Dock spacing, transparency, and border": {
- "Dock spacing, transparency, and border": "停靠欄間距、透明度和邊界"
- },
"Docs": {
"Docs": "文件"
},
@@ -2360,6 +2462,9 @@
"Edit Clipboard": {
"Edit Clipboard": ""
},
+ "Edit Rule": {
+ "Edit Rule": ""
+ },
"Edit Window Rule": {
"Edit Window Rule": "編輯視窗規則"
},
@@ -2543,6 +2648,9 @@
"Enterprise": {
"Enterprise": "企業"
},
+ "Entry Type": {
+ "Entry Type": ""
+ },
"Entry pinned": {
"Entry pinned": "項目已釘選"
},
@@ -2633,9 +2741,6 @@
"Failed to activate configuration": {
"Failed to activate configuration": "無法啟動配置"
},
- "Failed to activate profile - file not found": {
- "Failed to activate profile - file not found": "無法啟用設定檔 - 找不到檔案"
- },
"Failed to add binds include": {
"Failed to add binds include": "新增綁定包含失敗"
},
@@ -2660,9 +2765,6 @@
"Failed to cancel selected job": {
"Failed to cancel selected job": "取消選定工作失敗"
},
- "Failed to check for updates:\n%1": {
- "Failed to check for updates:\n%1": "檢查更新失敗:\n%1"
- },
"Failed to check pin limit": {
"Failed to check pin limit": "無法檢查釘選限制"
},
@@ -2678,9 +2780,6 @@
"Failed to create printer": {
"Failed to create printer": "無法建立印表機"
},
- "Failed to create profiles directory": {
- "Failed to create profiles directory": "無法建立設定檔目錄"
- },
"Failed to delete VPN": {
"Failed to delete VPN": "刪除 VPN 失敗"
},
@@ -2729,6 +2828,9 @@
"Failed to fetch network QR code: %1": {
"Failed to fetch network QR code: %1": ""
},
+ "Failed to generate systemd override": {
+ "Failed to generate systemd override": ""
+ },
"Failed to hold job": {
"Failed to hold job": "無法保留工作"
},
@@ -2816,9 +2918,6 @@
"Failed to save profile": {
"Failed to save profile": "儲存設定檔失敗"
},
- "Failed to save profile file": {
- "Failed to save profile file": "無法儲存設定檔"
- },
"Failed to send clipboard": {
"Failed to send clipboard": "無法傳送剪貼簿"
},
@@ -2876,6 +2975,12 @@
"Failed to update sharing": {
"Failed to update sharing": "無法更新分享設定"
},
+ "Failed to write Hyprland outputs config.": {
+ "Failed to write Hyprland outputs config.": ""
+ },
+ "Failed to write autostart entry": {
+ "Failed to write autostart entry": ""
+ },
"Failed to write temp file for validation": {
"Failed to write temp file for validation": "寫入驗證的暫存檔案失敗"
},
@@ -2933,6 +3038,9 @@
"Fill": {
"Fill": "填滿"
},
+ "Filter": {
+ "Filter": ""
+ },
"Find in Text": {
"Find in Text": "尋找文字"
},
@@ -2948,9 +3056,6 @@
"Fingerprint error": {
"Fingerprint error": "指紋錯誤"
},
- "Fingerprint error: %1": {
- "Fingerprint error: %1": "指紋錯誤:%1"
- },
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
"Fingerprint not recognized (%1/%2). Please try again or use password.": "指紋無法識別 (%1/%2)。請再試一次或使用密碼。"
},
@@ -2996,6 +3101,9 @@
"Float": {
"Float": "浮動"
},
+ "Floating": {
+ "Floating": ""
+ },
"Fluent": {
"Fluent": "流暢"
},
@@ -3005,9 +3113,18 @@
"Focus": {
"Focus": "聚焦"
},
+ "Focus Ring Color": {
+ "Focus Ring Color": ""
+ },
+ "Focus Ring Off": {
+ "Focus Ring Off": ""
+ },
"Focus at Startup": {
"Focus at Startup": "啟動時聚焦"
},
+ "Focused": {
+ "Focused": ""
+ },
"Focused Border": {
"Focused Border": "聚焦邊框"
},
@@ -3089,6 +3206,9 @@
"Force Kill (SIGKILL)": {
"Force Kill (SIGKILL)": "強制終止 (SIGKILL)"
},
+ "Force RGBX": {
+ "Force RGBX": ""
+ },
"Force Wide Color": {
"Force Wide Color": "強制廣色域"
},
@@ -3128,12 +3248,6 @@
"Format Legend": {
"Format Legend": "格式說明"
},
- "Found %1 package to update:": {
- "Found %1 package to update:": "找到 %1 個待更新套件:"
- },
- "Found %1 packages to update:": {
- "Found %1 packages to update:": "找到 %1 個待更新套件:"
- },
"Frame": {
"Frame": "框架"
},
@@ -3170,12 +3284,12 @@
"Full Day & Month": {
"Full Day & Month": "完整月日"
},
+ "Full command to execute": {
+ "Full command to execute": ""
+ },
"Full with Year": {
"Full with Year": "完整含年份"
},
- "Full-featured launcher with mode tabs, grid view, and action panel.": {
- "Full-featured launcher with mode tabs, grid view, and action panel.": ""
- },
"Fullscreen": {
"Fullscreen": "全螢幕"
},
@@ -3218,6 +3332,9 @@
"Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gamma 控制不可用。需要 DMS API v6+。"
},
+ "Generate Override": {
+ "Generate Override": ""
+ },
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": {
"Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.": "產生基準 GTK3/4 或 QT5/QT6(需要 qt6ct-kde)配置以遵循 DMS 顏色。僅需執行一次。
建議在應用 GTK 主題之前配置adw-gtk3。"
},
@@ -3422,12 +3539,6 @@
"Hide Indicators": {
"Hide Indicators": "隱藏指示器"
},
- "Hide Updater Widget": {
- "Hide Updater Widget": "隱藏更新器小工具"
- },
- "Hide When Fullscreen": {
- "Hide When Fullscreen": "全螢幕時隱藏"
- },
"Hide When Typing": {
"Hide When Typing": "打字時隱藏"
},
@@ -3458,8 +3569,8 @@
"Hide the bar when the pointer leaves even if a popout is still open": {
"Hide the bar when the pointer leaves even if a popout is still open": ""
},
- "Hide the dock when a window is fullscreen": {
- "Hide the dock when a window is fullscreen": "當視窗全螢幕時隱藏 Dock"
+ "High": {
+ "High": ""
},
"High-fidelity palette that preserves source hues.": {
"High-fidelity palette that preserves source hues.": "保留來源色調的高保真調色板。"
@@ -3548,8 +3659,14 @@
"Hyprland Website": {
"Hyprland Website": "Hyprland 網站"
},
- "Hyprland config still uses hyprlang": {
- "Hyprland config still uses hyprlang": ""
+ "Hyprland conf mode": {
+ "Hyprland conf mode": ""
+ },
+ "Hyprland conf mode is read-only in Settings": {
+ "Hyprland conf mode is read-only in Settings": ""
+ },
+ "Hyprland config include missing": {
+ "Hyprland config include missing": ""
},
"I Understand": {
"I Understand": "我了解"
@@ -3590,14 +3707,17 @@
"Idle": {
"Idle": "閒置"
},
+ "Idle Inhibit": {
+ "Idle Inhibit": ""
+ },
"Idle Inhibitor": {
"Idle Inhibitor": "空閒抑制器"
},
"Idle Settings": {
"Idle Settings": "閒置設定"
},
- "Idle monitoring not supported - requires newer Quickshell version": {
- "Idle monitoring not supported - requires newer Quickshell version": "不支援閒置監控 - 需要最新的 Quickshell 版本"
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": {
+ "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps": ""
},
"If the field is hidden, it will appear as soon as a key is pressed.": {
"If the field is hidden, it will appear as soon as a key is pressed.": "如果此欄位已隱藏,只要按下按鍵便會顯示。"
@@ -3677,6 +3797,9 @@
"Inhibitable": {
"Inhibitable": "可抑制"
},
+ "Initialised": {
+ "Initialised": ""
+ },
"Inner padding applied to each widget": {
"Inner padding applied to each widget": ""
},
@@ -3893,9 +4016,6 @@
"Launch on dGPU": {
"Launch on dGPU": "在 dGPU 上啟動"
},
- "Launch on dGPU by default": {
- "Launch on dGPU by default": "預設在獨顯上啟動"
- },
"Launcher": {
"Launcher": "啟動器"
},
@@ -3908,9 +4028,6 @@
"Launcher Emerge Side": {
"Launcher Emerge Side": "啟動器彈出側邊"
},
- "Launcher Style": {
- "Launcher Style": ""
- },
"Layer Outline Opacity": {
"Layer Outline Opacity": "圖層輪廓不透明度"
},
@@ -4040,9 +4157,6 @@
"Log Out": {
"Log Out": "登出"
},
- "Log out": {
- "Log out": ""
- },
"Logging in...": {
"Logging in...": "正在登入..."
},
@@ -4064,6 +4178,9 @@
"Longitude": {
"Longitude": "經度"
},
+ "Low": {
+ "Low": ""
+ },
"Low Priority": {
"Low Priority": "低優先級"
},
@@ -4094,9 +4211,6 @@
"Managed by Frame": {
"Managed by Frame": "由框架管理"
},
- "Managed by Frame Mode": {
- "Managed by Frame Mode": ""
- },
"Managed by Frame in Connected Mode": {
"Managed by Frame in Connected Mode": "在連接模式下由框架管理"
},
@@ -4148,12 +4262,15 @@
"Marker Waste Full": {
"Marker Waste Full": "標記廢料已滿"
},
+ "Match (%1)": {
+ "Match (%1)": ""
+ },
+ "Match Conditions": {
+ "Match Conditions": ""
+ },
"Match Criteria": {
"Match Criteria": "符合條件"
},
- "Matches profile: %1": {
- "Matches profile: %1": "符合設定檔:%1"
- },
"Material": {
"Material": "材質"
},
@@ -4283,9 +4400,6 @@
"Media Player Settings": {
"Media Player Settings": "媒體播放設定"
},
- "Media Players": {
- "Media Players": "媒體播放器"
- },
"Media Players (": {
"Media Players (": "媒體播放 ("
},
@@ -4343,9 +4457,6 @@
"Min W": {
"Min W": "最小寬度"
},
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": {
- "Minimal Spotlight-style bar: appears instantly at the top of the screen and expands as you type.": ""
- },
"Minimal palette built around a single hue.": {
"Minimal palette built around a single hue.": "圍繞單一色調構建的最小調色板。"
},
@@ -4487,6 +4598,9 @@
"Named Workspace Icons": {
"Named Workspace Icons": "命名工作區圖示"
},
+ "Native": {
+ "Native": ""
+ },
"Native: platform renderer (FreeType).": {
"Native: platform renderer (FreeType).": "原生:平台渲染器 (FreeType)。"
},
@@ -4598,9 +4712,6 @@
"No Background": {
"No Background": "部件無背景"
},
- "No Battery": {
- "No Battery": "無電池"
- },
"No Bluetooth adapter found": {
"No Bluetooth adapter found": "未找到藍芽適配器"
},
@@ -4670,6 +4781,9 @@
"No app customizations.": {
"No app customizations.": "沒有應用程式自訂設定。"
},
+ "No application selected": {
+ "No application selected": ""
+ },
"No apps found": {
"No apps found": "未找到應用程式"
},
@@ -4679,6 +4793,9 @@
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": {
"No apps muted. Right-click a notification and choose \"Mute popups\" to add one here.": "未靜音任何應用程式。右鍵點擊通知並選擇「靜音彈出視窗」以在此處添加一個。"
},
+ "No autostart entries": {
+ "No autostart entries": ""
+ },
"No battery": {
"No battery": "無電池"
},
@@ -4784,9 +4901,6 @@
"No output devices found": {
"No output devices found": "找不到輸出裝置"
},
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": {
- "No package manager found. Please install 'paru' or 'yay' on Arch-based systems to check for updates.": "未找到套件管理器。請在基於 Arch 的系統上安裝 'paru' 或 'yay' 來檢查更新。"
- },
"No peers found": {
"No peers found": "未找到對等點"
},
@@ -4877,6 +4991,9 @@
"No window rules configured": {
"No window rules configured": "未設定任何視窗規則"
},
+ "Noise": {
+ "Noise": ""
+ },
"None": {
"None": "無"
},
@@ -4916,6 +5033,9 @@
"Not detected": {
"Not detected": "未偵測到"
},
+ "Not listed?": {
+ "Not listed?": ""
+ },
"Not paired": {
"Not paired": "未配對"
},
@@ -5105,6 +5225,9 @@
"Opening files": {
"Opening files": "正在開啟檔案"
},
+ "Opening terminal to update greetd": {
+ "Opening terminal to update greetd": ""
+ },
"Opening terminal: ": {
"Opening terminal: ": "正在開啟終端機:"
},
@@ -5123,6 +5246,9 @@
"Optional location": {
"Optional location": "選填位置"
},
+ "Optional state-based conditions applied to the first match.": {
+ "Optional state-based conditions applied to the first match.": ""
+ },
"Options": {
"Options": "選項"
},
@@ -5147,9 +5273,6 @@
"Output Area Full": {
"Output Area Full": "輸出區域已滿"
},
- "Output Device": {
- "Output Device": "輸出裝置"
- },
"Output Devices": {
"Output Devices": "輸出裝置"
},
@@ -5507,9 +5630,6 @@
"Popup Shadow": {
"Popup Shadow": "彈出視窗陰影"
},
- "Popup Transparency": {
- "Popup Transparency": "彈窗透明度"
- },
"Popup behavior, position": {
"Popup behavior, position": "彈出視窗行為與位置"
},
@@ -5543,6 +5663,9 @@
"Power Menu Customization": {
"Power Menu Customization": "電源選單自訂"
},
+ "Power Mode": {
+ "Power Mode": ""
+ },
"Power Off": {
"Power Off": "關機"
},
@@ -5702,6 +5825,9 @@
"Protocol": {
"Protocol": "協定"
},
+ "Qt": {
+ "Qt": ""
+ },
"Qt colors applied successfully": {
"Qt colors applied successfully": ""
},
@@ -5759,6 +5885,9 @@
"Re-enter password": {
"Re-enter password": ""
},
+ "Read-only legacy config": {
+ "Read-only legacy config": ""
+ },
"Read:": {
"Read:": "讀取:"
},
@@ -5858,6 +5987,9 @@
"Remove inner padding from all widgets": {
"Remove inner padding from all widgets": ""
},
+ "Remove match": {
+ "Remove match": ""
+ },
"Remove the shortcut %1?": {
"Remove the shortcut %1?": ""
},
@@ -5918,6 +6050,9 @@
"Requires night mode support": {
"Requires night mode support": "需要夜間模式支援"
},
+ "Requires remembering the last user and session. Enable those options first.": {
+ "Requires remembering the last user and session. Enable those options first.": ""
+ },
"Reset": {
"Reset": "重設"
},
@@ -6026,6 +6161,9 @@
"Rules (%1)": {
"Rules (%1)": "規則 (%1)"
},
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": {
+ "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.": ""
+ },
"Run Again": {
"Run Again": "重新執行"
},
@@ -6065,6 +6203,9 @@
"SMS": {
"SMS": "簡訊"
},
+ "Saturation": {
+ "Saturation": ""
+ },
"Save": {
"Save": "儲存"
},
@@ -6140,9 +6281,6 @@
"Score": {
"Score": "分數"
},
- "Screen Sharing": {
- "Screen Sharing": "螢幕分享"
- },
"Screen sharing": {
"Screen sharing": "螢幕分享"
},
@@ -6176,6 +6314,9 @@
"Search Options": {
"Search Options": "搜尋選項"
},
+ "Search applications...": {
+ "Search applications...": ""
+ },
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "按組合鍵、描述或動作名稱搜尋。\n\n預設動作將綁定鍵複製到剪貼簿。\n右鍵點擊或按右箭頭以釘選常用綁定鍵 — 搜尋時它們將出現在頂部。"
},
@@ -6278,6 +6419,9 @@
"Select a color from the palette or use custom sliders": {
"Select a color from the palette or use custom sliders": "從調色板中選取一個顏色,或使用滑條調整"
},
+ "Select a desktop application": {
+ "Select a desktop application": ""
+ },
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": {
"Select a widget to add to your desktop. Each widget is a separate instance with its own settings.": "選取一個小工具以新增至您的桌面。每個小工具都是獨立的實例,擁有自己的設定。"
},
@@ -6458,21 +6602,12 @@
"Shell": {
"Shell": "Shell"
},
- "Shift+Del: Clear All • Esc: Close": {
- "Shift+Del: Clear All • Esc: Close": "Shift+Del: 清除所有 • Esc: 關閉"
- },
"Shift+Enter to copy": {
"Shift+Enter to copy": ""
},
"Shift+Enter to paste": {
"Shift+Enter to paste": "Shift+Enter 貼上"
},
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Copy • Shift+Del: Clear All • Esc: Close": "Shift+Enter: 複製 • Shift+Del: 清除全部 • Esc: 關閉"
- },
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
- "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter:貼上 • Shift+Del:全部清除 • Esc:關閉"
- },
"Short": {
"Short": "短"
},
@@ -6545,6 +6680,9 @@
"Show Humidity": {
"Show Humidity": "顯示濕度"
},
+ "Show Icon": {
+ "Show Icon": ""
+ },
"Show Launcher Button": {
"Show Launcher Button": "顯示啟動器按鈕"
},
@@ -6698,6 +6836,9 @@
"Show mode tabs and keyboard hints at the bottom.": {
"Show mode tabs and keyboard hints at the bottom.": "在底部顯示模式分頁與鍵盤提示。"
},
+ "Show mount path": {
+ "Show mount path": ""
+ },
"Show notification popups only on the currently focused monitor": {
"Show notification popups only on the currently focused monitor": "僅在當前焦點顯示器上顯示通知彈出視窗"
},
@@ -6749,9 +6890,6 @@
"Show on-screen display when volume changes": {
"Show on-screen display when volume changes": "音量改變時顯示螢幕顯示"
},
- "Show seconds": {
- "Show seconds": "顯示秒"
- },
"Show the bar only when no windows are open": {
"Show the bar only when no windows are open": ""
},
@@ -6824,6 +6962,9 @@
"Skip setup": {
"Skip setup": "跳過設定"
},
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": {
+ "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.": ""
+ },
"Small": {
"Small": "小"
},
@@ -6857,6 +6998,9 @@
"Sounds": {
"Sounds": "聲音"
},
+ "Source: %1": {
+ "Source: %1": ""
+ },
"Space between the bar and screen edges": {
"Space between the bar and screen edges": ""
},
@@ -6950,9 +7094,6 @@
"Stripes": {
"Stripes": "條紋"
},
- "Style": {
- "Style": ""
- },
"Summary": {
"Summary": "摘要"
},
@@ -7085,8 +7226,8 @@
"System toast notifications": {
"System toast notifications": "系統快顯通知"
},
- "System update custom command": {
- "System update custom command": "自訂系統更新指令"
+ "Systemd Override generated": {
+ "Systemd Override generated": ""
},
"Tab": {
"Tab": "分頁"
@@ -7112,9 +7253,6 @@
"Terminal additional parameters": {
"Terminal additional parameters": "終端機額外參數"
},
- "Terminal custom additional parameters": {
- "Terminal custom additional parameters": "自訂終端附加參數"
- },
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": "終端機備用失敗。請安裝支援的終端機模擬器或手動執行 'dms auth sync'。"
},
@@ -7178,6 +7316,9 @@
"The job queue of this printer is empty": {
"The job queue of this printer is empty": "此印表機的工作佇列為空"
},
+ "The rule applies to any window matching one of these.": {
+ "The rule applies to any window matching one of these.": ""
+ },
"Theme & Colors": {
"Theme & Colors": "主題和顏色"
},
@@ -7199,6 +7340,9 @@
"Themes": {
"Themes": "主題"
},
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": {
+ "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)": ""
+ },
"Thickness": {
"Thickness": "粗細"
},
@@ -7217,6 +7361,18 @@
"This device": {
"This device": "此裝置"
},
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.": ""
+ },
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": {
+ "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.": ""
+ },
"This may take a few seconds": {
"This may take a few seconds": "這可能需要幾秒鐘"
},
@@ -7274,9 +7430,6 @@
"Time Format": {
"Time Format": "時間格式"
},
- "Time format": {
- "Time format": "時間格式"
- },
"Time remaining: %1": {
"Time remaining: %1": "剩餘時間:%1"
},
@@ -7418,6 +7571,9 @@
"Trash command failed (exit %1)": {
"Trash command failed (exit %1)": "垃圾桶指令失敗(返回碼 %1)"
},
+ "Tray Icon Fix": {
+ "Tray Icon Fix": ""
+ },
"Trending GIFs": {
"Trending GIFs": "熱門 GIF"
},
@@ -7484,6 +7640,9 @@
"Unavailable": {
"Unavailable": "不可用"
},
+ "Uncategorized": {
+ "Uncategorized": ""
+ },
"Unfocused Color": {
"Unfocused Color": "未聚焦顏色"
},
@@ -7622,6 +7781,9 @@
"Uptime:": {
"Uptime:": "開機時間:"
},
+ "Urgent": {
+ "Urgent": ""
+ },
"Urgent Color": {
"Urgent Color": "緊急顏色"
},
@@ -7655,9 +7817,6 @@
"Use Overlay Layer": {
"Use Overlay Layer": ""
},
- "Use Spotlight Launcher": {
- "Use Spotlight Launcher": ""
- },
"Use System Theme": {
"Use System Theme": "使用系統主題"
},
@@ -7685,12 +7844,6 @@
"Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "使用自訂邊框/焦點環寬度"
},
- "Use custom command": {
- "Use custom command": "使用自訂指令"
- },
- "Use custom command for update your system": {
- "Use custom command for update your system": "使用自訂指令更新您的系統"
- },
"Use custom gaps instead of bar spacing": {
"Use custom gaps instead of bar spacing": "使用自訂間距而非預設間距"
},
@@ -7706,6 +7859,9 @@
"Use fingerprint authentication for the lock screen.": {
"Use fingerprint authentication for the lock screen.": "使用指紋驗證鎖定螢幕。"
},
+ "Use keys 1-3 or arrows, Enter/Space to select": {
+ "Use keys 1-3 or arrows, Enter/Space to select": ""
+ },
"Use light theme instead of dark theme": {
"Use light theme instead of dark theme": "使用淺色主題而不是深色主題"
},
@@ -7718,9 +7874,6 @@
"Use sound theme from system settings": {
"Use sound theme from system settings": "使用系統設定中的音效主題"
},
- "Use the centered minimal launcher instead of the connected V2 launcher": {
- "Use the centered minimal launcher instead of the connected V2 launcher": ""
- },
"Use the extended surface for launcher content": {
"Use the extended surface for launcher content": "使用延伸表面作為啟動器內容"
},
@@ -7742,6 +7895,9 @@
"User": {
"User": "使用者"
},
+ "User Window Rules (%1)": {
+ "User Window Rules (%1)": ""
+ },
"User already exists": {
"User already exists": ""
},
@@ -7850,6 +8006,9 @@
"Vertical Tiling": {
"Vertical Tiling": "垂直平鋪"
},
+ "Very High": {
+ "Very High": ""
+ },
"Vibrant": {
"Vibrant": "鮮豔"
},
@@ -7958,9 +8117,6 @@
"When locked": {
"When locked": "鎖定時"
},
- "When updater widget is used, then hide it if no update found": {
- "When updater widget is used, then hide it if no update found": "使用更新小工具時,若無更新則隱藏"
- },
"Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi 密碼"
},
@@ -8114,12 +8270,24 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "工作區與小工具"
},
+ "Wrap the app command. %command% is replaced with the actual executable": {
+ "Wrap the app command. %command% is replaced with the actual executable": ""
+ },
"Write:": {
"Write:": "寫入:"
},
"X Axis": {
"X Axis": "X 軸"
},
+ "X-Ray": {
+ "X-Ray": ""
+ },
+ "XWayland": {
+ "XWayland": ""
+ },
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": {
+ "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).": ""
+ },
"Y Axis": {
"Y Axis": "Y 軸"
},
@@ -8144,9 +8312,18 @@
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": {
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "您需要設定以下其中一個環境變數並重新啟動 shell:\nQT_QPA_PLATFORMTHEME=gtk3 或\nQT_QPA_PLATFORMTHEME=qt6ct\n\nqt6ct 需要安裝 qt6ct-kde。"
},
+ "You'll enter your password at the greeter after the next reboot.": {
+ "You'll enter your password at the greeter after the next reboot.": ""
+ },
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": {
+ "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.": ""
+ },
"You're All Set!": {
"You're All Set!": "一切就緒!"
},
+ "Your compositor does not support background blur (ext-background-effect-v1)": {
+ "Your compositor does not support background blur (ext-background-effect-v1)": ""
+ },
"Your system is up to date!": {
"Your system is up to date!": "您的系統是最新版本!"
},
@@ -8192,6 +8369,12 @@
"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 組態存在,但未包含在您的合成器組態中。顯示變更將不會保留。"
},
+ "e.g. /usr/bin/my-script --flag": {
+ "e.g. /usr/bin/my-script --flag": ""
+ },
+ "e.g. My Script": {
+ "e.g. My Script": ""
+ },
"e.g. alice": {
"e.g. alice": ""
},
@@ -8201,6 +8384,9 @@
"e.g., focus-workspace 3, resize-column -10": {
"e.g., focus-workspace 3, resize-column -10": "例如,focus-workspace 3, resize-column -10"
},
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": {
+ "e.g., hl.dsp.focus({ workspace = \"3\" })": ""
+ },
"e.g., notify-send 'Hello' && sleep 1": {
"e.g., notify-send 'Hello' && sleep 1": "例如:notify-send 'Hello' && sleep 1"
},
@@ -8216,9 +8402,6 @@
"featured": {
"featured": "精選"
},
- "greeter": {
- "greeter": ""
- },
"last seen %1": {
"last seen %1": "上次看到 %1"
},
@@ -8399,13 +8582,7 @@
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
},
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter/Ctrl+C: Copy • Del: Delete • F10: Help": "↑/↓: 導航 • Enter/Ctrl+C: 複製 • Del: 刪除 • F10: 幫助"
- },
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": {
"↑/↓: Navigate • Enter: Paste • Ctrl+C: Copy • Del: Delete • Ctrl+E: Edit • Ctrl+S: Pin/Unpin • F10: Help": ""
- },
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": {
- "↑/↓: Navigate • Enter: Paste • Del: Delete • F10: Help": "↑/↓: 導航 • Enter: 貼上 • Del: 刪除 • F10: 幫助"
}
}
diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json
index 22502091..271ff6cd 100644
--- a/quickshell/translations/settings_search_index.json
+++ b/quickshell/translations/settings_search_index.json
@@ -2756,20 +2756,20 @@
"background",
"blur",
"colors",
+ "compositor",
+ "does",
+ "effect",
"frosted",
"glass",
"look",
- "newer",
- "quickshell",
- "requires",
"scheme",
"style",
+ "support",
"theme",
- "transparency",
- "version"
+ "transparency"
],
"icon": "blur_on",
- "description": "Requires a newer version of Quickshell"
+ "description": "Your compositor does not support background blur (ext-background-effect-v1)"
},
{
"section": "barElevationEnabled",
@@ -7749,5 +7749,17 @@
"users"
],
"icon": "manage_accounts"
+ },
+ {
+ "section": "_tab_36",
+ "label": "Autostart Apps",
+ "tabIndex": 36,
+ "category": "Settings",
+ "keywords": [
+ "apps",
+ "autostart",
+ "settings"
+ ],
+ "icon": "line_start"
}
]
diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json
index df9e2bfc..a5c5824a 100644
--- a/quickshell/translations/template.json
+++ b/quickshell/translations/template.json
@@ -1,4 +1,11 @@
[
+ {
+ "term": "%1 (+%2 more)",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "%1 Animation Speed",
"translation": "",
@@ -244,6 +251,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "%command%",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.",
"translation": "",
@@ -454,13 +468,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "24-hour format",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "25 seconds",
"translation": "",
@@ -874,6 +881,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Active in Column",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Active tile background and icon color",
"translation": "",
@@ -951,6 +965,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Add Entry",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Add Printer",
"translation": "",
@@ -973,7 +994,14 @@
"comment": ""
},
{
- "term": "Add Widget to %1 Section",
+ "term": "Add Widget to %1",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Add Window Rule",
"translation": "",
"context": "",
"reference": "",
@@ -1007,6 +1035,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Add match",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Add the new user to the %1 group so they can run dms greeter sync --profile.",
"translation": "",
@@ -1021,6 +1056,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Add to Autostart",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Adjust the bar height via inner padding",
"translation": "",
@@ -1073,7 +1115,7 @@
{
"term": "All",
"translation": "",
- "context": "Tailscale filter: all devices | notification history filter",
+ "context": "Tailscale filter: all devices | notification history filter | plugin browser category filter",
"reference": "",
"comment": ""
},
@@ -1273,6 +1315,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Any",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Any window",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "App Customizations",
"translation": "",
@@ -1280,6 +1336,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "App ID",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "App ID Substitutions",
"translation": "",
@@ -1287,6 +1350,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "App ID regex",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "App ID regex (e.g. ^firefox$)",
"translation": "",
@@ -1322,6 +1392,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Application",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Application Dock",
"translation": "",
@@ -1336,6 +1413,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Applications and commands to start automatically when you log in",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Apply Changes",
"translation": "",
@@ -1392,6 +1476,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Applying auto-login on startup…",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Apps",
"translation": "",
@@ -1469,6 +1560,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "At Startup",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "At least one output must remain enabled",
"translation": "",
@@ -1749,6 +1847,34 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Auto-login",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Auto-login disabled",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Auto-login enabled",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Auto-login on startup",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Auto-saving...",
"translation": "",
@@ -1875,6 +2001,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Autostart Apps",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Autostart Entries",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Available",
"translation": "",
@@ -1938,6 +2078,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Back to user list",
+ "translation": "",
+ "context": "greeter link to return from manual username entry to user picker",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Backend",
"translation": "",
@@ -1966,6 +2113,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Background Effect",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Background Opacity",
"translation": "",
@@ -2057,13 +2211,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Bar transparency",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Base color for shadows (opacity is applied automatically)",
"translation": "",
@@ -2165,7 +2312,7 @@
{
"term": "Black",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -2225,6 +2372,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Blur",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Blur Border Color",
"translation": "",
@@ -2277,7 +2431,7 @@
{
"term": "Bold",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -2295,6 +2449,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Border Off",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Border Opacity",
"translation": "",
@@ -2338,7 +2499,14 @@
"comment": ""
},
{
- "term": "Border with BG",
+ "term": "Border w/ Bg",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Border with Background",
"translation": "",
"context": "",
"reference": "",
@@ -2645,6 +2813,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Cast Target",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Category",
+ "translation": "",
+ "context": "plugin browser sort option",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Center Section",
"translation": "",
@@ -2834,6 +3016,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Choose a power profile",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Choose colors from palette",
"translation": "",
@@ -2904,6 +3093,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Choose whether to launch a desktop app or a command",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Choose which displays show this widget",
"translation": "",
@@ -2939,6 +3135,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Class regex",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Class regex (e.g. ^firefox$)",
"translation": "",
@@ -3100,6 +3303,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Clipboard Saved",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Clipboard sent",
"translation": "",
@@ -3324,6 +3534,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Command Line",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Commands",
"translation": "",
@@ -3646,6 +3863,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Contributor",
+ "translation": "",
+ "context": "plugin browser sort option",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Control Center",
"translation": "",
@@ -3758,6 +3982,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Convert to DMS",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Cooldown",
"translation": "",
@@ -3842,13 +4073,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Copy Path",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Copy Text",
"translation": "",
@@ -3884,6 +4108,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Couldn't open a terminal for the auto-login update.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Count Only",
"translation": "",
@@ -4115,6 +4346,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Curve",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Curve: curve rasterizer.",
"translation": "",
@@ -4326,7 +4564,7 @@
"comment": ""
},
{
- "term": "DMS Settings now writes Lua. Edits won't apply until you migrate.",
+ "term": "DMS Settings writes Lua keybinds. Add the DMS include so edits apply.",
"translation": "",
"context": "",
"reference": "",
@@ -4346,6 +4584,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "DMS needs administrator access. The terminal closes automatically when done.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "DMS out of date",
"translation": "",
@@ -4472,13 +4717,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Date format",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Date format on greeter",
"translation": "",
@@ -4545,7 +4783,7 @@
{
"term": "Default",
"translation": "",
- "context": "notification rule action option | notification rule urgency option | widget style option",
+ "context": "notification rule action option | notification rule urgency option | plugin browser sort option | widget style option",
"reference": "",
"comment": ""
},
@@ -4675,6 +4913,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Delete Rule",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Delete Saved Item?",
"translation": "",
@@ -4720,7 +4965,7 @@
{
"term": "Demi Bold",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -4766,6 +5011,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Desktop Application",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Desktop Clock",
"translation": "",
@@ -4941,6 +5193,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Disabling auto-login on startup…",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Disc",
"translation": "",
@@ -5137,6 +5396,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Display name for this entry",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Display only workspaces that contain windows",
"translation": "",
@@ -5158,6 +5424,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Display setup failed",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Display the power system menu",
"translation": "",
@@ -5466,6 +5739,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Edit Rule",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Edit Window Rule",
"translation": "",
@@ -5893,6 +6173,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Entry Type",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Entry pinned",
"translation": "",
@@ -6050,14 +6337,14 @@
{
"term": "Extra Bold",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
{
"term": "Extra Light",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -6306,6 +6593,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Failed to generate systemd override",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Failed to hold job",
"translation": "",
@@ -6642,6 +6936,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Failed to write Hyprland outputs config.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Failed to write autostart entry",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Failed to write temp file for validation",
"translation": "",
@@ -6775,6 +7083,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Filter",
+ "translation": "",
+ "context": "plugin browser category filter label",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Find in Text",
"translation": "",
@@ -6915,6 +7230,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Floating",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Fluent",
"translation": "",
@@ -6936,6 +7258,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Focus Ring Color",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Focus Ring Off",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Focus at Startup",
"translation": "",
@@ -6943,6 +7279,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Focused",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Focused Border",
"translation": "",
@@ -6971,13 +7314,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Focused monitor only",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Fog",
"translation": "",
@@ -7132,6 +7468,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Force RGBX",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Force Wide Color",
"translation": "",
@@ -7307,6 +7650,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Full command to execute",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Full with Year",
"translation": "",
@@ -7412,6 +7762,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Generate Override",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.
It is recommended to configure adw-gtk3 prior to applying GTK themes.",
"translation": "",
@@ -7958,6 +8315,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "High",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "High-fidelity palette that preserves source hues.",
"translation": "",
@@ -8162,7 +8526,21 @@
"comment": ""
},
{
- "term": "Hyprland config still uses hyprlang",
+ "term": "Hyprland conf mode",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Hyprland conf mode is read-only in Settings",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Hyprland config include missing",
"translation": "",
"context": "",
"reference": "",
@@ -8259,6 +8637,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Idle Inhibit",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Idle Inhibitor",
"translation": "",
@@ -8273,6 +8658,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "If autostart app icons don't appear in the system tray, generate a systemd override to ensure DMS starts before autostart apps",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "If the field is hidden, it will appear as soon as a key is pressed.",
"translation": "",
@@ -8455,6 +8847,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Initialised",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Inner padding applied to each widget",
"translation": "",
@@ -8584,7 +8983,7 @@
{
"term": "Installed",
"translation": "",
- "context": "installed status",
+ "context": "installed status | plugin browser filter chip",
"reference": "",
"comment": ""
},
@@ -9039,7 +9438,7 @@
{
"term": "Light",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -9288,13 +9687,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Log out",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Logging in...",
"translation": "",
@@ -9344,6 +9736,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Low",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Low Priority",
"translation": "",
@@ -9533,6 +9932,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Match (%1)",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Match Conditions",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Match Criteria",
"translation": "",
@@ -9841,13 +10254,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Media Players",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Media Players (",
"translation": "",
@@ -9865,7 +10271,7 @@
{
"term": "Medium",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -10299,7 +10705,7 @@
{
"term": "Name",
"translation": "",
- "context": "",
+ "context": "plugin browser sort option",
"reference": "",
"comment": ""
},
@@ -10310,6 +10716,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Native",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Native: platform renderer (FreeType).",
"translation": "",
@@ -10569,13 +10982,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "No Battery",
- "translation": "",
- "context": "battery status",
- "reference": "",
- "comment": ""
- },
{
"term": "No Bluetooth adapter found",
"translation": "",
@@ -10737,6 +11143,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "No application selected",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "No apps found",
"translation": "",
@@ -10759,12 +11172,19 @@
"comment": ""
},
{
- "term": "No battery",
+ "term": "No autostart entries",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
+ {
+ "term": "No battery",
+ "translation": "",
+ "context": "battery status",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "No brightness devices available",
"translation": "",
@@ -11213,6 +11633,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Noise",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "None",
"translation": "",
@@ -11304,6 +11731,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Not listed?",
+ "translation": "",
+ "context": "greeter link to switch to manual username entry",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Not paired",
"translation": "",
@@ -11528,13 +11962,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "On-Screen Displays",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "On-screen Displays",
"translation": "",
@@ -11745,6 +12172,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Opening terminal to update greetd",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Opening terminal: ",
"translation": "",
@@ -11787,6 +12221,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Optional state-based conditions applied to the first match.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Options",
"translation": "",
@@ -11843,13 +12284,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Output Device",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Output Devices",
"translation": "",
@@ -12543,13 +12977,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Plugged in",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Plugin",
"translation": "",
@@ -12760,6 +13187,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Power Mode",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Power Off",
"translation": "",
@@ -13131,6 +13565,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Qt",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Qt colors applied successfully",
"translation": "",
@@ -13264,6 +13705,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Read-only legacy config",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Read:",
"translation": "",
@@ -13344,7 +13792,7 @@
{
"term": "Regular",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -13495,6 +13943,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Remove match",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Remove the shortcut %1?",
"translation": "",
@@ -13635,6 +14090,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Requires remembering the last user and session. Enable those options first.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Reset",
"translation": "",
@@ -13887,6 +14349,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Rules found in your compositor config. These are read-only here, use Convert to DMS to make an editable copy.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Run Again",
"translation": "",
@@ -13978,6 +14447,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Saturation",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Save",
"translation": "",
@@ -14153,13 +14629,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Screen Sharing",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Screen sharing",
"translation": "",
@@ -14237,6 +14706,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Search applications...",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.",
"translation": "",
@@ -14475,6 +14951,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Select a desktop application",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Select a widget to add to your desktop. Each widget is a separate instance with its own settings.",
"translation": "",
@@ -15077,6 +15560,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Show Icon",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Show Launcher Button",
"translation": "",
@@ -15434,6 +15924,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Show mount path",
+ "translation": "",
+ "context": "toggle in control center disk usage widget to turn mount path display on or off",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Show notification popups only on the currently focused monitor",
"translation": "",
@@ -15553,13 +16050,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Show seconds",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Show the bar only when no windows are open",
"translation": "",
@@ -15728,6 +16218,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Skip the greeter password after boot until you sign out. Lock screen unlock is unchanged. Takes effect on the next reboot after sync.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Small",
"translation": "",
@@ -15805,6 +16302,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Source: %1",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Space between the bar and screen edges",
"translation": "",
@@ -16330,6 +16834,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Systemd Override generated",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Tab",
"translation": "",
@@ -16533,6 +17044,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "The rule applies to any window matching one of these.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Theme & Colors",
"translation": "",
@@ -16582,6 +17100,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "These add entries to the XDG autostart directory (~/.config/autostart/*.desktop)",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Thickness",
"translation": "",
@@ -16592,7 +17117,7 @@
{
"term": "Thin",
"translation": "",
- "context": "",
+ "context": "font weight",
"reference": "",
"comment": ""
},
@@ -16624,6 +17149,34 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing cursor settings.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing display settings.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing shortcuts in Settings.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "This install is still using hyprland.conf. Run dms setup to migrate before editing window rules in Settings.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "This may take a few seconds",
"translation": "",
@@ -16757,13 +17310,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Time format",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Time remaining: %1",
"translation": "",
@@ -17093,6 +17639,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Tray Icon Fix",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Trending GIFs",
"translation": "",
@@ -17247,6 +17800,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Uncategorized",
+ "translation": "",
+ "context": "plugin browser category filter",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Unfocused Color",
"translation": "",
@@ -17569,6 +18129,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Urgent",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Urgent Color",
"translation": "",
@@ -17709,13 +18276,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "Use custom command",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "Use custom gaps instead of bar spacing",
"translation": "",
@@ -17751,6 +18311,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Use keys 1-3 or arrows, Enter/Space to select",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Use light theme instead of dark theme",
"translation": "",
@@ -17828,6 +18395,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "User Window Rules (%1)",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "User already exists",
"translation": "",
@@ -17975,13 +18549,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "VPN connections",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "VPN deleted",
"translation": "",
@@ -18080,6 +18647,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Very High",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Vibrant",
"translation": "",
@@ -18689,6 +19263,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Wrap the app command. %command% is replaced with the actual executable",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Write:",
"translation": "",
@@ -18703,6 +19284,27 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "X-Ray",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "XWayland",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "Xray blurs only the wallpaper (efficient) and is the default when Blur is on. Set Xray to Off for regular full blur of everything beneath the window (more expensive).",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Y Axis",
"translation": "",
@@ -18759,6 +19361,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "You'll enter your password at the greeter after the next reboot.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "You'll skip the greeter password after the next reboot. The lock screen and signing out still require your password.",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "You're All Set!",
"translation": "",
@@ -18766,6 +19382,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "Your compositor does not support background blur (ext-background-effect-v1)",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "Your system is up to date!",
"translation": "",
@@ -18871,6 +19494,20 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "e.g. /usr/bin/my-script --flag",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
+ {
+ "term": "e.g. My Script",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "e.g. alice",
"translation": "",
@@ -18892,6 +19529,13 @@
"reference": "",
"comment": ""
},
+ {
+ "term": "e.g., hl.dsp.focus({ workspace = \"3\" })",
+ "translation": "",
+ "context": "",
+ "reference": "",
+ "comment": ""
+ },
{
"term": "e.g., notify-send 'Hello' && sleep 1",
"translation": "",
@@ -18927,13 +19571,6 @@
"reference": "",
"comment": ""
},
- {
- "term": "greeter",
- "translation": "",
- "context": "",
- "reference": "",
- "comment": ""
- },
{
"term": "last seen %1",
"translation": "",