mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 21:42:51 -05:00
dankbar: option to show when bar is hidden and no windows
This commit is contained in:
@@ -397,6 +397,7 @@ Singleton {
|
||||
"fontScale": 1.0,
|
||||
"autoHide": false,
|
||||
"autoHideDelay": 250,
|
||||
"showOnWindowsOpen": false,
|
||||
"openOnOverview": false,
|
||||
"visible": true,
|
||||
"popupGapsAuto": true,
|
||||
|
||||
@@ -294,6 +294,7 @@ var SPEC = {
|
||||
fontScale: 1.0,
|
||||
autoHide: false,
|
||||
autoHideDelay: 250,
|
||||
showOnWindowsOpen: false,
|
||||
openOnOverview: false,
|
||||
visible: true,
|
||||
popupGapsAuto: true,
|
||||
|
||||
@@ -162,6 +162,81 @@ PanelWindow {
|
||||
return false;
|
||||
}
|
||||
|
||||
readonly property bool shouldHideForWindows: {
|
||||
if (!(barConfig?.showOnWindowsOpen ?? false))
|
||||
return false;
|
||||
if (!(barConfig?.autoHide ?? false))
|
||||
return false;
|
||||
if (!CompositorService.isNiri && !CompositorService.isHyprland)
|
||||
return false;
|
||||
|
||||
if (CompositorService.isNiri) {
|
||||
NiriService.windows;
|
||||
|
||||
let currentWorkspaceId = null;
|
||||
for (let i = 0; i < NiriService.allWorkspaces.length; i++) {
|
||||
const ws = NiriService.allWorkspaces[i];
|
||||
if (ws.output === screenName && ws.is_active) {
|
||||
currentWorkspaceId = ws.id;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (currentWorkspaceId === null)
|
||||
return false;
|
||||
|
||||
let hasTiled = false;
|
||||
let hasFloatingTouchingBar = false;
|
||||
const pos = barConfig?.position ?? 0;
|
||||
const barThickness = barWindow.effectiveBarThickness + (barConfig?.spacing ?? 4);
|
||||
|
||||
for (let i = 0; i < NiriService.windows.length; i++) {
|
||||
const win = NiriService.windows[i];
|
||||
if (win.workspace_id !== currentWorkspaceId)
|
||||
continue;
|
||||
|
||||
if (!win.is_floating) {
|
||||
hasTiled = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
const tilePos = win.layout?.tile_pos_in_workspace_view;
|
||||
const winSize = win.layout?.window_size || win.layout?.tile_size;
|
||||
if (!tilePos || !winSize)
|
||||
continue;
|
||||
|
||||
switch (pos) {
|
||||
case SettingsData.Position.Top:
|
||||
if (tilePos[1] < barThickness)
|
||||
hasFloatingTouchingBar = true;
|
||||
break;
|
||||
case SettingsData.Position.Bottom:
|
||||
const screenHeight = barWindow.screen?.height ?? 0;
|
||||
if (tilePos[1] + winSize[1] > screenHeight - barThickness)
|
||||
hasFloatingTouchingBar = true;
|
||||
break;
|
||||
case SettingsData.Position.Left:
|
||||
if (tilePos[0] < barThickness)
|
||||
hasFloatingTouchingBar = true;
|
||||
break;
|
||||
case SettingsData.Position.Right:
|
||||
const screenWidth = barWindow.screen?.width ?? 0;
|
||||
if (tilePos[0] + winSize[0] > screenWidth - barThickness)
|
||||
hasFloatingTouchingBar = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (hasTiled)
|
||||
return true;
|
||||
|
||||
return hasFloatingTouchingBar;
|
||||
}
|
||||
|
||||
const filtered = CompositorService.filterCurrentWorkspace(CompositorService.sortedToplevels, screenName);
|
||||
return filtered.length > 0;
|
||||
}
|
||||
|
||||
property real effectiveSpacing: hasMaximizedToplevel ? 0 : (barConfig?.spacing ?? 4)
|
||||
|
||||
Behavior on effectiveSpacing {
|
||||
@@ -460,9 +535,17 @@ PanelWindow {
|
||||
}
|
||||
|
||||
property bool reveal: {
|
||||
if (CompositorService.isNiri && NiriService.inOverview) {
|
||||
return (barConfig?.openOnOverview ?? false) || topBarMouseArea.containsMouse || hasActivePopout || revealSticky;
|
||||
const showOnWindowsSetting = barConfig?.showOnWindowsOpen ?? false;
|
||||
|
||||
if (showOnWindowsSetting && autoHide && (CompositorService.isNiri || CompositorService.isHyprland)) {
|
||||
if (barWindow.shouldHideForWindows)
|
||||
return topBarMouseArea.containsMouse || hasActivePopout || revealSticky;
|
||||
return true;
|
||||
}
|
||||
|
||||
if (CompositorService.isNiri && NiriService.inOverview)
|
||||
return (barConfig?.openOnOverview ?? false) || topBarMouseArea.containsMouse || hasActivePopout || revealSticky;
|
||||
|
||||
return (barConfig?.visible ?? true) && (!autoHide || topBarMouseArea.containsMouse || hasActivePopout || revealSticky);
|
||||
}
|
||||
|
||||
|
||||
@@ -233,6 +233,7 @@ Item {
|
||||
fontScale: defaultBar.fontScale ?? 1.0,
|
||||
autoHide: defaultBar.autoHide ?? false,
|
||||
autoHideDelay: defaultBar.autoHideDelay ?? 250,
|
||||
showOnWindowsOpen: defaultBar.showOnWindowsOpen ?? false,
|
||||
openOnOverview: defaultBar.openOnOverview ?? false,
|
||||
visible: defaultBar.visible ?? true,
|
||||
popupGapsAuto: defaultBar.popupGapsAuto ?? true,
|
||||
@@ -702,6 +703,19 @@ Item {
|
||||
restoreMode: Binding.RestoreBinding
|
||||
}
|
||||
}
|
||||
|
||||
SettingsToggleRow {
|
||||
width: parent.width - parent.leftPadding
|
||||
visible: CompositorService.isNiri || CompositorService.isHyprland
|
||||
text: I18n.tr("Hide When Windows Open")
|
||||
checked: selectedBarConfig?.showOnWindowsOpen ?? false
|
||||
onToggled: toggled => {
|
||||
SettingsData.updateBarConfig(selectedBarId, {
|
||||
showOnWindowsOpen: toggled
|
||||
});
|
||||
notifyHorizontalBarChange();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
||||
@@ -3,6 +3,7 @@ import QtQuick
|
||||
Item {
|
||||
id: root
|
||||
|
||||
readonly property real edgeSize: 8
|
||||
required property var targetWindow
|
||||
property bool supported: typeof targetWindow.startSystemMove === "function"
|
||||
|
||||
@@ -28,7 +29,7 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
height: 6
|
||||
height: root.edgeSize
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
@@ -40,7 +41,7 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
width: 6
|
||||
width: root.edgeSize
|
||||
anchors.left: parent.left
|
||||
anchors.top: parent.top
|
||||
anchors.bottom: parent.bottom
|
||||
@@ -52,7 +53,7 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
width: 6
|
||||
width: root.edgeSize
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
anchors.bottom: parent.bottom
|
||||
@@ -64,8 +65,8 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
width: 6
|
||||
height: 6
|
||||
width: root.edgeSize
|
||||
height: root.edgeSize
|
||||
anchors.left: parent.left
|
||||
anchors.top: parent.top
|
||||
cursorShape: Qt.SizeFDiagCursor
|
||||
@@ -74,8 +75,8 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
width: 6
|
||||
height: 6
|
||||
width: root.edgeSize
|
||||
height: root.edgeSize
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
cursorShape: Qt.SizeBDiagCursor
|
||||
@@ -84,7 +85,7 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
height: 6
|
||||
height: root.edgeSize
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
@@ -96,8 +97,8 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
width: 6
|
||||
height: 6
|
||||
width: root.edgeSize
|
||||
height: root.edgeSize
|
||||
anchors.left: parent.left
|
||||
anchors.bottom: parent.bottom
|
||||
cursorShape: Qt.SizeBDiagCursor
|
||||
@@ -106,8 +107,8 @@ Item {
|
||||
|
||||
MouseArea {
|
||||
visible: root.supported
|
||||
width: 6
|
||||
height: 6
|
||||
width: root.edgeSize
|
||||
height: root.edgeSize
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
cursorShape: Qt.SizeFDiagCursor
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
{
|
||||
"term": "%1 display(s)",
|
||||
"context": "%1 display(s)",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:397",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:398",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -50,7 +50,7 @@
|
||||
{
|
||||
"term": "%1 widgets",
|
||||
"context": "%1 widgets",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:414",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:415",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -332,7 +332,7 @@
|
||||
{
|
||||
"term": "Add Bar",
|
||||
"context": "Add Bar",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:320",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:321",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -416,7 +416,7 @@
|
||||
{
|
||||
"term": "All displays",
|
||||
"context": "All displays",
|
||||
"reference": "Modules/Plugins/PluginSettings.qml:237, Modules/Settings/DisplayWidgetsTab.qml:385, Modules/Settings/DankBarTab.qml:396, Modules/Settings/DankBarTab.qml:514, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43",
|
||||
"reference": "Modules/Plugins/PluginSettings.qml:237, Modules/Settings/DisplayWidgetsTab.qml:385, Modules/Settings/DankBarTab.qml:397, Modules/Settings/DankBarTab.qml:515, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -506,7 +506,7 @@
|
||||
{
|
||||
"term": "Applications",
|
||||
"context": "Applications",
|
||||
"reference": "Modules/AppDrawer/AppDrawerPopout.qml:245, Modules/Settings/ThemeColorsTab.qml:897",
|
||||
"reference": "Modules/AppDrawer/AppDrawerPopout.qml:245, Modules/Settings/ThemeColorsTab.qml:882",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -518,13 +518,13 @@
|
||||
{
|
||||
"term": "Apply GTK Colors",
|
||||
"context": "Apply GTK Colors",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1217",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1202",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Apply Qt Colors",
|
||||
"context": "Apply Qt Colors",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1251",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1236",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -686,7 +686,7 @@
|
||||
{
|
||||
"term": "Auto Popup Gaps",
|
||||
"context": "Auto Popup Gaps",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:914",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:928",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -704,7 +704,7 @@
|
||||
{
|
||||
"term": "Auto-hide",
|
||||
"context": "Auto-hide",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:659",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:660",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -854,13 +854,13 @@
|
||||
{
|
||||
"term": "Bar Configurations",
|
||||
"context": "Bar Configurations",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:305",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:306",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Bar Transparency",
|
||||
"context": "Bar Transparency",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1217",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1231",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -962,7 +962,7 @@
|
||||
{
|
||||
"term": "Border",
|
||||
"context": "Border",
|
||||
"reference": "Modules/Settings/DockTab.qml:192, Modules/Settings/DockTab.qml:195, Modules/Settings/DankBarTab.qml:1036",
|
||||
"reference": "Modules/Settings/DockTab.qml:192, Modules/Settings/DockTab.qml:195, Modules/Settings/DankBarTab.qml:1050",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -986,7 +986,7 @@
|
||||
{
|
||||
"term": "Bottom",
|
||||
"context": "Bottom",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:373, Modules/Settings/DankBarTab.qml:605",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:374, Modules/Settings/DankBarTab.qml:606",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1418,7 +1418,7 @@
|
||||
{
|
||||
"term": "Color",
|
||||
"context": "Color",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1044, Modules/Settings/DankBarTab.qml:1132, Modules/Settings/Widgets/SettingsColorPicker.qml:29",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1058, Modules/Settings/DankBarTab.qml:1146, Modules/Settings/Widgets/SettingsColorPicker.qml:29",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1490,7 +1490,7 @@
|
||||
{
|
||||
"term": "Column",
|
||||
"context": "Column",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:769, Modules/Settings/DankBarTab.qml:806",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:783, Modules/Settings/DankBarTab.qml:820",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1670,7 +1670,7 @@
|
||||
{
|
||||
"term": "Control workspaces and columns by scrolling on the bar",
|
||||
"context": "Control workspaces and columns by scrolling on the bar",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:760",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:774",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1718,13 +1718,13 @@
|
||||
{
|
||||
"term": "Corner Radius Override",
|
||||
"context": "Corner Radius Override",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:997",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1011",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Corners & Background",
|
||||
"context": "Corners & Background",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:962",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:976",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1988,7 +1988,7 @@
|
||||
{
|
||||
"term": "DankShell & System Icons (requires restart)",
|
||||
"context": "DankShell & System Icons (requires restart)",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1173",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1158",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1997,12 +1997,6 @@
|
||||
"reference": "Modules/Settings/WallpaperTab.qml:561, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:601",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Darken Modal Background",
|
||||
"context": "Darken Modal Background",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:887",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Date Format",
|
||||
"context": "Date Format",
|
||||
@@ -2204,7 +2198,7 @@
|
||||
{
|
||||
"term": "Disabled",
|
||||
"context": "Disabled",
|
||||
"reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:62, Modules/Settings/NetworkTab.qml:741, Modules/Settings/DankBarTab.qml:428, Modules/Settings/DisplayConfig/DisplayConfigState.qml:819, Modules/Settings/DisplayConfig/DisplayConfigState.qml:825, Modules/Settings/DisplayConfig/DisplayConfigState.qml:827",
|
||||
"reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:62, Modules/Settings/NetworkTab.qml:741, Modules/Settings/DankBarTab.qml:429, Modules/Settings/DisplayConfig/DisplayConfigState.qml:819, Modules/Settings/DisplayConfig/DisplayConfigState.qml:825, Modules/Settings/DisplayConfig/DisplayConfigState.qml:827",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2258,7 +2252,7 @@
|
||||
{
|
||||
"term": "Display Assignment",
|
||||
"context": "Display Assignment",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:492",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:493",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2480,7 +2474,7 @@
|
||||
{
|
||||
"term": "Edge Spacing",
|
||||
"context": "Edge Spacing",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:848",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:862",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2510,7 +2504,7 @@
|
||||
{
|
||||
"term": "Enable Bar",
|
||||
"context": "Enable Bar",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:477",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:478",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2678,7 +2672,7 @@
|
||||
{
|
||||
"term": "Exclusive Zone Offset",
|
||||
"context": "Exclusive Zone Offset",
|
||||
"reference": "Modules/Settings/DockTab.qml:155, Modules/Settings/DankBarTab.qml:868",
|
||||
"reference": "Modules/Settings/DockTab.qml:155, Modules/Settings/DankBarTab.qml:882",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3128,7 +3122,7 @@
|
||||
{
|
||||
"term": "Font Scale",
|
||||
"context": "Font Scale",
|
||||
"reference": "Modules/Settings/TypographyMotionTab.qml:194, Modules/Settings/DankBarTab.qml:1261",
|
||||
"reference": "Modules/Settings/TypographyMotionTab.qml:194, Modules/Settings/DankBarTab.qml:1275",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3164,7 +3158,7 @@
|
||||
{
|
||||
"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:915",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:900",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3272,13 +3266,13 @@
|
||||
{
|
||||
"term": "Goth Corner Radius",
|
||||
"context": "Goth Corner Radius",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1014",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1028",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Goth Corners",
|
||||
"context": "Goth Corners",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:989",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1003",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3386,13 +3380,13 @@
|
||||
{
|
||||
"term": "Hibernate",
|
||||
"context": "Hibernate",
|
||||
"reference": "Modals/PowerMenuModal.qml:212, Modules/Lock/LockPowerMenu.qml:116",
|
||||
"reference": "Modals/PowerMenuModal.qml:210, Modules/Lock/LockPowerMenu.qml:116",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Hide Delay",
|
||||
"context": "Hide Delay",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:685",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:686",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3401,6 +3395,12 @@
|
||||
"reference": "Modules/Settings/SystemUpdaterTab.qml:27",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Hide When Windows Open",
|
||||
"context": "Hide When Windows Open",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:710",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
||||
"context": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
||||
@@ -3428,7 +3428,7 @@
|
||||
{
|
||||
"term": "Hold longer to confirm",
|
||||
"context": "Hold longer to confirm",
|
||||
"reference": "Modals/PowerMenuModal.qml:794, Modules/Lock/LockPowerMenu.qml:787",
|
||||
"reference": "Modals/PowerMenuModal.qml:792, Modules/Lock/LockPowerMenu.qml:787",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3440,13 +3440,13 @@
|
||||
{
|
||||
"term": "Hold to confirm (%1 ms)",
|
||||
"context": "Hold to confirm (%1 ms)",
|
||||
"reference": "Modals/PowerMenuModal.qml:797, Modals/PowerMenuModal.qml:801, Modules/Lock/LockPowerMenu.qml:790, Modules/Lock/LockPowerMenu.qml:794",
|
||||
"reference": "Modals/PowerMenuModal.qml:795, Modals/PowerMenuModal.qml:799, Modules/Lock/LockPowerMenu.qml:790, Modules/Lock/LockPowerMenu.qml:794",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Hold to confirm (%1s)",
|
||||
"context": "Hold to confirm (%1s)",
|
||||
"reference": "Modals/PowerMenuModal.qml:798, Modals/PowerMenuModal.qml:802, Modules/Lock/LockPowerMenu.qml:791, Modules/Lock/LockPowerMenu.qml:795",
|
||||
"reference": "Modals/PowerMenuModal.qml:796, Modals/PowerMenuModal.qml:800, Modules/Lock/LockPowerMenu.qml:791, Modules/Lock/LockPowerMenu.qml:795",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3512,7 +3512,7 @@
|
||||
{
|
||||
"term": "Icon Theme",
|
||||
"context": "Icon Theme",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1172",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1157",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3896,7 +3896,7 @@
|
||||
{
|
||||
"term": "Left",
|
||||
"context": "Left",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:375, Modules/Settings/DankBarTab.qml:605, Modules/DankBar/Popouts/BatteryPopout.qml:527",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:376, Modules/Settings/DankBarTab.qml:606, Modules/DankBar/Popouts/BatteryPopout.qml:527",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3974,7 +3974,7 @@
|
||||
{
|
||||
"term": "Lock",
|
||||
"context": "Lock",
|
||||
"reference": "Modals/PowerMenuModal.qml:200",
|
||||
"reference": "Modals/PowerMenuModal.qml:198",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4016,7 +4016,7 @@
|
||||
{
|
||||
"term": "Log Out",
|
||||
"context": "Log Out",
|
||||
"reference": "Modals/PowerMenuModal.qml:188, Modules/Lock/LockPowerMenu.qml:98",
|
||||
"reference": "Modals/PowerMenuModal.qml:186, Modules/Lock/LockPowerMenu.qml:98",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4064,7 +4064,7 @@
|
||||
{
|
||||
"term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.",
|
||||
"context": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:312",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:313",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4082,13 +4082,13 @@
|
||||
{
|
||||
"term": "Manual Gap Size",
|
||||
"context": "Manual Gap Size",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:940",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:954",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Manual Show/Hide",
|
||||
"context": "Manual Show/Hide",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:715",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:729",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4160,7 +4160,7 @@
|
||||
{
|
||||
"term": "Matugen Templates",
|
||||
"context": "Matugen Templates",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:924",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:909",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4172,7 +4172,7 @@
|
||||
{
|
||||
"term": "Maximize Detection",
|
||||
"context": "Maximize Detection",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:748",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:762",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4562,7 +4562,7 @@
|
||||
{
|
||||
"term": "No Background",
|
||||
"context": "No Background",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:974",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:988",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4754,7 +4754,7 @@
|
||||
{
|
||||
"term": "None",
|
||||
"context": "None",
|
||||
"reference": "Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:222, Modules/Settings/DankBarTab.qml:769, Modules/Settings/DankBarTab.qml:769, Modules/Settings/DankBarTab.qml:806",
|
||||
"reference": "Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:222, Modules/Settings/DankBarTab.qml:783, Modules/Settings/DankBarTab.qml:783, Modules/Settings/DankBarTab.qml:820",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4922,7 +4922,7 @@
|
||||
{
|
||||
"term": "Opacity",
|
||||
"context": "Opacity",
|
||||
"reference": "Modals/DankColorPickerModal.qml:468, Modules/Settings/DankBarTab.qml:1081, Modules/Settings/DankBarTab.qml:1169",
|
||||
"reference": "Modals/DankColorPickerModal.qml:468, Modules/Settings/DankBarTab.qml:1095, Modules/Settings/DankBarTab.qml:1183",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5270,7 +5270,7 @@
|
||||
{
|
||||
"term": "Position",
|
||||
"context": "Position",
|
||||
"reference": "Modules/Settings/DockTab.qml:28, Modules/Settings/DankBarTab.qml:595, Modules/Settings/DisplayConfig/DisplayConfigState.qml:811",
|
||||
"reference": "Modules/Settings/DockTab.qml:28, Modules/Settings/DankBarTab.qml:596, Modules/Settings/DisplayConfig/DisplayConfigState.qml:811",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5312,7 +5312,7 @@
|
||||
{
|
||||
"term": "Power Off",
|
||||
"context": "Power Off",
|
||||
"reference": "Modals/PowerMenuModal.qml:194, Modules/Lock/LockPowerMenu.qml:104",
|
||||
"reference": "Modals/PowerMenuModal.qml:192, Modules/Lock/LockPowerMenu.qml:104",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5540,7 +5540,7 @@
|
||||
{
|
||||
"term": "Reboot",
|
||||
"context": "Reboot",
|
||||
"reference": "Modals/PowerMenuModal.qml:182, Modules/Lock/LockPowerMenu.qml:92",
|
||||
"reference": "Modals/PowerMenuModal.qml:180, Modules/Lock/LockPowerMenu.qml:92",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5594,7 +5594,7 @@
|
||||
{
|
||||
"term": "Remove gaps and border when windows are maximized",
|
||||
"context": "Remove gaps and border when windows are maximized",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:749",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:763",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5666,7 +5666,7 @@
|
||||
{
|
||||
"term": "Restart DMS",
|
||||
"context": "Restart DMS",
|
||||
"reference": "Modals/PowerMenuModal.qml:218",
|
||||
"reference": "Modals/PowerMenuModal.qml:216",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5690,7 +5690,7 @@
|
||||
{
|
||||
"term": "Right",
|
||||
"context": "Right",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:377, Modules/Settings/DankBarTab.qml:605",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:378, Modules/Settings/DankBarTab.qml:606",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5732,13 +5732,13 @@
|
||||
{
|
||||
"term": "Run DMS Templates",
|
||||
"context": "Run DMS Templates",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:942",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:927",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Run User Templates",
|
||||
"context": "Run User Templates",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:932",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:917",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5822,7 +5822,7 @@
|
||||
{
|
||||
"term": "Scale DankBar font sizes independently",
|
||||
"context": "Scale DankBar font sizes independently",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1262",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1276",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5864,7 +5864,7 @@
|
||||
{
|
||||
"term": "Scroll Wheel",
|
||||
"context": "Scroll Wheel",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:759",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:773",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -5972,7 +5972,7 @@
|
||||
{
|
||||
"term": "Select Custom Theme",
|
||||
"context": "custom theme file browser title",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1292",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1277",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6371,12 +6371,6 @@
|
||||
"reference": "Modules/Settings/MediaPlayerTab.qml:42",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Show darkened overlay behind modal dialogs",
|
||||
"context": "Show darkened overlay behind modal dialogs",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:888",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.",
|
||||
"context": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.",
|
||||
@@ -6386,13 +6380,13 @@
|
||||
{
|
||||
"term": "Show on Last Display",
|
||||
"context": "Show on Last Display",
|
||||
"reference": "Modules/Settings/DisplayWidgetsTab.qml:406, Modules/Settings/DankBarTab.qml:526",
|
||||
"reference": "Modules/Settings/DisplayWidgetsTab.qml:406, Modules/Settings/DankBarTab.qml:527",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Show on Overview",
|
||||
"context": "Show on Overview",
|
||||
"reference": "Modules/Settings/DockTab.qml:86, Modules/Settings/DankBarTab.qml:735",
|
||||
"reference": "Modules/Settings/DockTab.qml:86, Modules/Settings/DankBarTab.qml:749",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6530,7 +6524,7 @@
|
||||
{
|
||||
"term": "Size",
|
||||
"context": "Size",
|
||||
"reference": "Modules/ProcessList/SystemTab.qml:442, Modules/Settings/DankBarTab.qml:888",
|
||||
"reference": "Modules/ProcessList/SystemTab.qml:442, Modules/Settings/DankBarTab.qml:902",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6596,7 +6590,7 @@
|
||||
{
|
||||
"term": "Spacing",
|
||||
"context": "Spacing",
|
||||
"reference": "Modules/Settings/DockTab.qml:143, Modules/Settings/DankBarTab.qml:843",
|
||||
"reference": "Modules/Settings/DockTab.qml:143, Modules/Settings/DankBarTab.qml:857",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6620,7 +6614,7 @@
|
||||
{
|
||||
"term": "Square Corners",
|
||||
"context": "Square Corners",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:966",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:980",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6704,7 +6698,7 @@
|
||||
{
|
||||
"term": "Suspend",
|
||||
"context": "Suspend",
|
||||
"reference": "Modals/PowerMenuModal.qml:206, Modules/Lock/LockPowerMenu.qml:110",
|
||||
"reference": "Modals/PowerMenuModal.qml:204, Modules/Lock/LockPowerMenu.qml:110",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6740,13 +6734,13 @@
|
||||
{
|
||||
"term": "Sync Mode with Portal",
|
||||
"context": "Sync Mode with Portal",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:904",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:889",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"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:905",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:890",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6758,7 +6752,7 @@
|
||||
{
|
||||
"term": "System App Theming",
|
||||
"context": "System App Theming",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1191",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1176",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6854,7 +6848,7 @@
|
||||
{
|
||||
"term": "Terminals - Always use Dark Theme",
|
||||
"context": "Terminals - Always use Dark Theme",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:914",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:899",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6890,7 +6884,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:1156",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1141",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -6914,7 +6908,7 @@
|
||||
{
|
||||
"term": "Thickness",
|
||||
"context": "Thickness",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1102, Modules/Settings/DankBarTab.qml:1190",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1116, Modules/Settings/DankBarTab.qml:1204",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7040,7 +7034,7 @@
|
||||
{
|
||||
"term": "Toggle visibility of this bar configuration",
|
||||
"context": "Toggle visibility of this bar configuration",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:481",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:482",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7070,7 +7064,7 @@
|
||||
{
|
||||
"term": "Top",
|
||||
"context": "Top",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:371, Modules/Settings/DankBarTab.qml:379, Modules/Settings/DankBarTab.qml:605",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:372, Modules/Settings/DankBarTab.qml:380, Modules/Settings/DankBarTab.qml:606",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7124,7 +7118,7 @@
|
||||
{
|
||||
"term": "Transparency",
|
||||
"context": "Transparency",
|
||||
"reference": "Modules/Settings/DockTab.qml:176, Modules/Settings/DankBarTab.qml:1212, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:87, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342",
|
||||
"reference": "Modules/Settings/DockTab.qml:176, Modules/Settings/DankBarTab.qml:1226, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:87, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7496,7 +7490,7 @@
|
||||
{
|
||||
"term": "Visibility",
|
||||
"context": "Visibility",
|
||||
"reference": "Modules/Settings/TimeWeatherTab.qml:1030, Modules/Settings/DankBarTab.qml:655, Modules/DankBar/Widgets/WeatherForecastCard.qml:80",
|
||||
"reference": "Modules/Settings/TimeWeatherTab.qml:1030, Modules/Settings/DankBarTab.qml:656, Modules/DankBar/Widgets/WeatherForecastCard.qml:80",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7688,7 +7682,7 @@
|
||||
{
|
||||
"term": "Widget Outline",
|
||||
"context": "Widget Outline",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1124",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1138",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7706,7 +7700,7 @@
|
||||
{
|
||||
"term": "Widget Transparency",
|
||||
"context": "Widget Transparency",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1238",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1252",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7748,7 +7742,7 @@
|
||||
{
|
||||
"term": "Workspace",
|
||||
"context": "Workspace",
|
||||
"reference": "Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:769, Modules/Settings/DankBarTab.qml:769, Modules/Settings/DankBarTab.qml:806",
|
||||
"reference": "Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:783, Modules/Settings/DankBarTab.qml:783, Modules/Settings/DankBarTab.qml:820",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -7790,13 +7784,13 @@
|
||||
{
|
||||
"term": "X Axis",
|
||||
"context": "X Axis",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:804",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:818",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Y Axis",
|
||||
"context": "Y Axis",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:768",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:782",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": ""
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "Ocultar el dock cuando no esté en uso y mostrarlo cuando se pasé el ratón cerca del área de este"
|
||||
},
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": "עיכוב הסתרה"
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "הסתר/י את הDock כשאינו בשימוש והצג/י אותו מחדש בעת ריחוף ליד אזור העגינה"
|
||||
},
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
"Add Bar": "Sáv hozzáadása"
|
||||
},
|
||||
"Add Desktop Widget": {
|
||||
"Add Desktop Widget": ""
|
||||
"Add Desktop Widget": "Asztali widget hozzáadása"
|
||||
},
|
||||
"Add Printer": {
|
||||
"Add Printer": "Nyomtató hozzáadása"
|
||||
@@ -1038,7 +1038,7 @@
|
||||
"Desktop Clock": "Asztali óra"
|
||||
},
|
||||
"Desktop Widget": {
|
||||
"Desktop Widget": ""
|
||||
"Desktop Widget": "Asztali widget"
|
||||
},
|
||||
"Desktop Widgets": {
|
||||
"Desktop Widgets": "Asztali widgetek"
|
||||
@@ -1050,7 +1050,7 @@
|
||||
"Analog, digital, or stacked clock display": ""
|
||||
},
|
||||
"Desktop clock widget name": {
|
||||
"Desktop Clock": ""
|
||||
"Desktop Clock": "Asztali óra"
|
||||
},
|
||||
"Development": {
|
||||
"Development": "Fejlesztés"
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": "Elrejtési késleltetés"
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "Dokk elrejtése, amikor az nincs használatban és megjelenítés, amikor az egér a dokkterület közelében van"
|
||||
},
|
||||
@@ -2307,7 +2310,7 @@
|
||||
"No variants created. Click Add to create a new monitor widget.": "Nincsenek létrehozott variánsok. Kattints a Hozzáadás gombra új monitor widget létrehozásához."
|
||||
},
|
||||
"No widgets available": {
|
||||
"No widgets available": ""
|
||||
"No widgets available": "Nincsenek elérhető widgetek"
|
||||
},
|
||||
"No widgets match your search": {
|
||||
"No widgets match your search": ""
|
||||
@@ -3742,7 +3745,7 @@
|
||||
"Widget Variants": "Widget variánsok"
|
||||
},
|
||||
"Widget added": {
|
||||
"Widget added": ""
|
||||
"Widget added": "Widget hozzáadva"
|
||||
},
|
||||
"Widget grid keyboard hints": {
|
||||
"G: grid • Z/X: size": "G: rács • Z/X: méret"
|
||||
@@ -3752,7 +3755,7 @@
|
||||
"Grid: ON": "Rács: BE"
|
||||
},
|
||||
"Widget removed": {
|
||||
"Widget removed": ""
|
||||
"Widget removed": "Widget eltávolítva"
|
||||
},
|
||||
"Wind": {
|
||||
"Wind": "Szél"
|
||||
@@ -3809,16 +3812,16 @@
|
||||
"apps": "alkalmazások"
|
||||
},
|
||||
"author attribution": {
|
||||
"by %1": ""
|
||||
"by %1": "ettől: %1"
|
||||
},
|
||||
"browse themes button | theme browser header | theme browser window title": {
|
||||
"Browse Themes": ""
|
||||
"Browse Themes": "Témák böngészése"
|
||||
},
|
||||
"catppuccin theme description": {
|
||||
"Soothing pastel theme based on Catppuccin": ""
|
||||
},
|
||||
"current theme label": {
|
||||
"Current Theme: %1": ""
|
||||
"Current Theme: %1": "Jelenlegi téma: %1"
|
||||
},
|
||||
"custom theme description": {
|
||||
"Custom theme loaded from JSON file": ""
|
||||
@@ -3848,13 +3851,13 @@
|
||||
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "A dms/outputs konfiguráció létezik, de nincs benne a kompozitorod konfigurációjában. A kijelző változások nem maradnak meg."
|
||||
},
|
||||
"dynamic colors description": {
|
||||
"Dynamic colors from wallpaper": ""
|
||||
"Dynamic colors from wallpaper": "Dinamikus színek a háttérképből"
|
||||
},
|
||||
"dynamic theme description": {
|
||||
"Material colors generated from wallpaper": ""
|
||||
},
|
||||
"dynamic theme name": {
|
||||
"Dynamic": ""
|
||||
"Dynamic": "Dinamikus"
|
||||
},
|
||||
"e.g., firefox, kitty --title foo": {
|
||||
"e.g., firefox, kitty --title foo": "pl.: firefox, kitty --title foo"
|
||||
@@ -3866,10 +3869,10 @@
|
||||
"e.g., notify-send 'Hello' && sleep 1": "pl. notify-send 'Hello' && sleep 1"
|
||||
},
|
||||
"empty plugin list": {
|
||||
"No plugins found": ""
|
||||
"No plugins found": "Nem található bővítmény"
|
||||
},
|
||||
"empty theme list": {
|
||||
"No themes found": ""
|
||||
"No themes found": "Nem található téma"
|
||||
},
|
||||
"events": {
|
||||
"events": "események"
|
||||
@@ -3881,37 +3884,37 @@
|
||||
"Material Design inspired color themes": ""
|
||||
},
|
||||
"install action button": {
|
||||
"Install": ""
|
||||
"Install": "Telepítés"
|
||||
},
|
||||
"installation error": {
|
||||
"Install failed: %1": ""
|
||||
"Install failed: %1": "Telepítés sikertelen: %1"
|
||||
},
|
||||
"installation progress": {
|
||||
"Installing: %1": ""
|
||||
"Installing: %1": "Telepítés: %1"
|
||||
},
|
||||
"installation success": {
|
||||
"Installed: %1": ""
|
||||
"Installed: %1": "Telepített: %1"
|
||||
},
|
||||
"installed status": {
|
||||
"Installed": ""
|
||||
"Installed": "Telepítve"
|
||||
},
|
||||
"leave empty for default": {
|
||||
"leave empty for default": "hagyd üresen az alapértelmezéshez"
|
||||
},
|
||||
"loading indicator": {
|
||||
"Loading...": ""
|
||||
"Loading...": "Betöltés..."
|
||||
},
|
||||
"loginctl not available - lock integration requires DMS socket connection": {
|
||||
"loginctl not available - lock integration requires DMS socket connection": "loginctl nem elérhető – a zár integrációhoz DMS socket kapcsolat szükséges"
|
||||
},
|
||||
"matugen error": {
|
||||
"matugen not found - install matugen package for dynamic theming": ""
|
||||
"matugen not found - install matugen package for dynamic theming": "matugen nem található - telepítsd a matugen csomagot a dinamikus témázásért"
|
||||
},
|
||||
"matugen installation hint": {
|
||||
"Install matugen package for dynamic theming": ""
|
||||
},
|
||||
"matugen not found status": {
|
||||
"Matugen Missing": ""
|
||||
"Matugen Missing": "A Matugen hiányzik"
|
||||
},
|
||||
"minutes": {
|
||||
"minutes": "percek"
|
||||
@@ -3926,7 +3929,7 @@
|
||||
"No themes installed. Browse themes to install from the registry.": ""
|
||||
},
|
||||
"no wallpaper status": {
|
||||
"No wallpaper selected": ""
|
||||
"No wallpaper selected": "Nincs háttérkép kiválasztva"
|
||||
},
|
||||
"official": {
|
||||
"official": "hivatalos"
|
||||
@@ -3935,16 +3938,16 @@
|
||||
"Install plugins from the DMS plugin registry": ""
|
||||
},
|
||||
"plugin browser header | plugin browser window title": {
|
||||
"Browse Plugins": ""
|
||||
"Browse Plugins": "Bővítmények böngészése"
|
||||
},
|
||||
"plugin installation confirmation": {
|
||||
"Install plugin '%1' from the DMS registry?": ""
|
||||
},
|
||||
"plugin installation dialog title": {
|
||||
"Install Plugin": ""
|
||||
"Install Plugin": "Bővítmény telepítése"
|
||||
},
|
||||
"plugin search placeholder": {
|
||||
"Search plugins...": ""
|
||||
"Search plugins...": "Bővítmények keresése..."
|
||||
},
|
||||
"profile image file browser title": {
|
||||
"Select Profile Image": "Profilkép kiválasztása"
|
||||
@@ -3962,7 +3965,7 @@
|
||||
"Widgets": "Widgetek"
|
||||
},
|
||||
"source code link": {
|
||||
"source": ""
|
||||
"source": "forrás"
|
||||
},
|
||||
"sysmon window title": {
|
||||
"System Monitor": "Rendszerfigyelő"
|
||||
@@ -3974,25 +3977,25 @@
|
||||
"Install theme '%1' from the DMS registry?": ""
|
||||
},
|
||||
"theme installation dialog title": {
|
||||
"Install Theme": ""
|
||||
"Install Theme": "Téma telepítése"
|
||||
},
|
||||
"theme search placeholder": {
|
||||
"Search themes...": ""
|
||||
"Search themes...": "Témák keresése..."
|
||||
},
|
||||
"uninstall action button": {
|
||||
"Uninstall": ""
|
||||
"Uninstall": "Eltávolítás"
|
||||
},
|
||||
"uninstallation error": {
|
||||
"Uninstall failed: %1": ""
|
||||
"Uninstall failed: %1": "Eltávolítás sikertelen: %1"
|
||||
},
|
||||
"uninstallation progress": {
|
||||
"Uninstalling: %1": ""
|
||||
"Uninstalling: %1": "Eltávolítás: %1"
|
||||
},
|
||||
"uninstallation success": {
|
||||
"Uninstalled: %1": ""
|
||||
"Uninstalled: %1": "Eltávolítva: %1"
|
||||
},
|
||||
"unknown author": {
|
||||
"Unknown": ""
|
||||
"Unknown": "Ismeretlen"
|
||||
},
|
||||
"update dms for NM integration.": {
|
||||
"update dms for NM integration.": "dms frissítése a NM integrációhoz."
|
||||
@@ -4001,13 +4004,13 @@
|
||||
"Select Wallpaper Directory": "Háttérkép könyvtár kiválasztása"
|
||||
},
|
||||
"wallpaper error": {
|
||||
"Wallpaper processing failed - check wallpaper path": ""
|
||||
"Wallpaper processing failed - check wallpaper path": "A háttérkép feldolgozás sikertelen - ellenőrizd a háttérkép útvonalát"
|
||||
},
|
||||
"wallpaper error status": {
|
||||
"Wallpaper Error": ""
|
||||
"Wallpaper Error": "Háttérkép hiba"
|
||||
},
|
||||
"wallpaper processing error": {
|
||||
"Wallpaper processing failed": ""
|
||||
"Wallpaper processing failed": "A háttérkép feldolgozás sikertelen"
|
||||
},
|
||||
"wallpaper settings disable description": {
|
||||
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "Használj külső háttérképkezelőt, mint például a swww, hyprpaper vagy swaybg."
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
"Add Bar": "Aggiungi Barra"
|
||||
},
|
||||
"Add Desktop Widget": {
|
||||
"Add Desktop Widget": ""
|
||||
"Add Desktop Widget": "Aggiungi Widget Desktop"
|
||||
},
|
||||
"Add Printer": {
|
||||
"Add Printer": "Aggiungi Stampante"
|
||||
@@ -186,7 +186,7 @@
|
||||
"Add a custom prefix to all application launches. This can be used for things like 'uwsm-app', 'systemd-run', or other command wrappers.": "Aggiungi un prefisso personalizzato all'avvio di tutte le applicazioni. Può essere utilizzato per strumenti come 'uwsm-app', 'systemd-run' o altri wrapper di comandi."
|
||||
},
|
||||
"Add and configure widgets that appear on your desktop": {
|
||||
"Add and configure widgets that appear on your desktop": ""
|
||||
"Add and configure widgets that appear on your desktop": "Aggiungi e configura widget che compaiono sul tuo desktop"
|
||||
},
|
||||
"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."
|
||||
@@ -1038,7 +1038,7 @@
|
||||
"Desktop Clock": "Orologio Desktop"
|
||||
},
|
||||
"Desktop Widget": {
|
||||
"Desktop Widget": ""
|
||||
"Desktop Widget": "Widget Desktop"
|
||||
},
|
||||
"Desktop Widgets": {
|
||||
"Desktop Widgets": "Widget del Desktop"
|
||||
@@ -1047,10 +1047,10 @@
|
||||
"Desktop background images": "Immagini sfondo desktop"
|
||||
},
|
||||
"Desktop clock widget description": {
|
||||
"Analog, digital, or stacked clock display": ""
|
||||
"Analog, digital, or stacked clock display": "Visualizzazione dell’orologio analogica, digitale o impilata"
|
||||
},
|
||||
"Desktop clock widget name": {
|
||||
"Desktop Clock": ""
|
||||
"Desktop Clock": "Orologio Desktop"
|
||||
},
|
||||
"Development": {
|
||||
"Development": "Sviluppo"
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": "Ritardo Nascondi"
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando non è in uso e mostrala quando il cursore passa vicino all’area della dock"
|
||||
},
|
||||
@@ -1821,7 +1824,7 @@
|
||||
"Invert on mode change": "Invertire al cambio di modalità"
|
||||
},
|
||||
"Isolate Displays": {
|
||||
"Isolate Displays": ""
|
||||
"Isolate Displays": "Isola Schermi"
|
||||
},
|
||||
"Jobs": {
|
||||
"Jobs": "Lavori"
|
||||
@@ -2307,10 +2310,10 @@
|
||||
"No variants created. Click Add to create a new monitor widget.": "Nessuna variante creata. Fai clic su Aggiungi per creare un nuovo widget monitor."
|
||||
},
|
||||
"No widgets available": {
|
||||
"No widgets available": ""
|
||||
"No widgets available": "Nessun widget disponibile"
|
||||
},
|
||||
"No widgets match your search": {
|
||||
"No widgets match your search": ""
|
||||
"No widgets match your search": "Nessun widget corrisponde alla tua ricerca"
|
||||
},
|
||||
"None": {
|
||||
"None": "Nessuna"
|
||||
@@ -2391,7 +2394,7 @@
|
||||
"Only adjust gamma based on time or location rules.": "Regolare gamma solo in base alle regole di tempo o di posizione."
|
||||
},
|
||||
"Only show windows from the current monitor on each dock": {
|
||||
"Only show windows from the current monitor on each dock": ""
|
||||
"Only show windows from the current monitor on each dock": "Mostra solo le finestre del monitor corrente su ogni dock"
|
||||
},
|
||||
"Only visible if hibernate is supported by your system": {
|
||||
"Only visible if hibernate is supported by your system": "Visibile solo se ibernazione è supportata dal tuo sistema"
|
||||
@@ -2925,7 +2928,7 @@
|
||||
"Select a color from the palette or use custom sliders": "Seleziona un colore dalla tavolozza o usa lo slider di personalizzazione"
|
||||
},
|
||||
"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.": ""
|
||||
"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."
|
||||
},
|
||||
"Select a widget to add. You can add multiple instances of the same widget if needed.": {
|
||||
"Select a widget to add. You can add multiple instances of the same widget if needed.": "Seleziona un widget da aggiungere. Se necessario, puoi aggiungere più istanze dello stesso widget."
|
||||
@@ -3297,10 +3300,10 @@
|
||||
"System Updates": "Aggiornamenti Sistema"
|
||||
},
|
||||
"System monitor widget description": {
|
||||
"CPU, memory, network, and disk monitoring": ""
|
||||
"CPU, memory, network, and disk monitoring": "Monitoraggio CPU, memoria, rete e disco"
|
||||
},
|
||||
"System monitor widget name | sysmon window title": {
|
||||
"System Monitor": ""
|
||||
"System Monitor": "Monitor di Sistema"
|
||||
},
|
||||
"System notification area icons": {
|
||||
"System notification area icons": "Icone area notifiche di sistema"
|
||||
@@ -3742,7 +3745,7 @@
|
||||
"Widget Variants": "Varianti del Widget"
|
||||
},
|
||||
"Widget added": {
|
||||
"Widget added": ""
|
||||
"Widget added": "Widget aggiunto"
|
||||
},
|
||||
"Widget grid keyboard hints": {
|
||||
"G: grid • Z/X: size": "G: griglia • Z/X: dimensione"
|
||||
@@ -3752,7 +3755,7 @@
|
||||
"Grid: ON": "Griglia: attivata"
|
||||
},
|
||||
"Widget removed": {
|
||||
"Widget removed": ""
|
||||
"Widget removed": "Widget rimosso"
|
||||
},
|
||||
"Wind": {
|
||||
"Wind": "Vento"
|
||||
@@ -3809,25 +3812,25 @@
|
||||
"apps": "App"
|
||||
},
|
||||
"author attribution": {
|
||||
"by %1": ""
|
||||
"by %1": "di %1"
|
||||
},
|
||||
"browse themes button | theme browser header | theme browser window title": {
|
||||
"Browse Themes": ""
|
||||
"Browse Themes": "Sfoglia Temi"
|
||||
},
|
||||
"catppuccin theme description": {
|
||||
"Soothing pastel theme based on Catppuccin": ""
|
||||
"Soothing pastel theme based on Catppuccin": "Tema pastello rilassante basato su Catppuccin"
|
||||
},
|
||||
"current theme label": {
|
||||
"Current Theme: %1": ""
|
||||
"Current Theme: %1": "Tema corrente: %1"
|
||||
},
|
||||
"custom theme description": {
|
||||
"Custom theme loaded from JSON file": ""
|
||||
"Custom theme loaded from JSON file": "Tema personalizzato caricato da file JSON"
|
||||
},
|
||||
"custom theme file browser title": {
|
||||
"Select Custom Theme": "Seleziona Tema Personalizzato"
|
||||
},
|
||||
"custom theme file hint": {
|
||||
"Click to select a custom theme JSON file": ""
|
||||
"Click to select a custom theme JSON file": "Clicca per selezionare un file tema JSON personalizzato"
|
||||
},
|
||||
"dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title": {
|
||||
"Select Wallpaper": "Seleziona Sfondo"
|
||||
@@ -3848,13 +3851,13 @@
|
||||
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configurazione dms/outputs esiste ma non è inclusa nella configurazione del compositor. Le modifiche al display non saranno persistenti."
|
||||
},
|
||||
"dynamic colors description": {
|
||||
"Dynamic colors from wallpaper": ""
|
||||
"Dynamic colors from wallpaper": "Colori dinamici dallo sfondo"
|
||||
},
|
||||
"dynamic theme description": {
|
||||
"Material colors generated from wallpaper": ""
|
||||
"Material colors generated from wallpaper": "Colori material generati dallo sfondo"
|
||||
},
|
||||
"dynamic theme name": {
|
||||
"Dynamic": ""
|
||||
"Dynamic": "Dinamico"
|
||||
},
|
||||
"e.g., firefox, kitty --title foo": {
|
||||
"e.g., firefox, kitty --title foo": "ad es., firefox, kitty --title foo"
|
||||
@@ -3866,10 +3869,10 @@
|
||||
"e.g., notify-send 'Hello' && sleep 1": "es. notify-send 'Ciao' && sleep 1"
|
||||
},
|
||||
"empty plugin list": {
|
||||
"No plugins found": ""
|
||||
"No plugins found": "Nessun plugin trovato"
|
||||
},
|
||||
"empty theme list": {
|
||||
"No themes found": ""
|
||||
"No themes found": "Nessun tema trovato"
|
||||
},
|
||||
"events": {
|
||||
"events": "eventi"
|
||||
@@ -3878,40 +3881,40 @@
|
||||
"files": "file"
|
||||
},
|
||||
"generic theme description": {
|
||||
"Material Design inspired color themes": ""
|
||||
"Material Design inspired color themes": "Temi colore ispirati al Material Design"
|
||||
},
|
||||
"install action button": {
|
||||
"Install": ""
|
||||
"Install": "Installa"
|
||||
},
|
||||
"installation error": {
|
||||
"Install failed: %1": ""
|
||||
"Install failed: %1": "Installazione fallita: %1"
|
||||
},
|
||||
"installation progress": {
|
||||
"Installing: %1": ""
|
||||
"Installing: %1": "Installando: %1"
|
||||
},
|
||||
"installation success": {
|
||||
"Installed: %1": ""
|
||||
"Installed: %1": "Installato: %1"
|
||||
},
|
||||
"installed status": {
|
||||
"Installed": ""
|
||||
"Installed": "Installato"
|
||||
},
|
||||
"leave empty for default": {
|
||||
"leave empty for default": "lascia vuoto per il valore predefinito"
|
||||
},
|
||||
"loading indicator": {
|
||||
"Loading...": ""
|
||||
"Loading...": "Caricamento..."
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"matugen error": {
|
||||
"matugen not found - install matugen package for dynamic theming": ""
|
||||
"matugen not found - install matugen package for dynamic theming": "matugen non trovato - installa il pacchetto matugen per la tematica dinamica"
|
||||
},
|
||||
"matugen installation hint": {
|
||||
"Install matugen package for dynamic theming": ""
|
||||
"Install matugen package for dynamic theming": "Installa il pacchetto matugen per il theming automatico"
|
||||
},
|
||||
"matugen not found status": {
|
||||
"Matugen Missing": ""
|
||||
"Matugen Missing": "Matugen Mancante"
|
||||
},
|
||||
"minutes": {
|
||||
"minutes": "minuti"
|
||||
@@ -3920,37 +3923,37 @@
|
||||
"ms": "ms"
|
||||
},
|
||||
"no custom theme file status": {
|
||||
"No custom theme file": ""
|
||||
"No custom theme file": "Nessun file tema personalizzato"
|
||||
},
|
||||
"no registry themes installed hint": {
|
||||
"No themes installed. Browse themes to install from the registry.": ""
|
||||
"No themes installed. Browse themes to install from the registry.": "Nessun tema installato. Sfoglia i temi dal registro per installarli."
|
||||
},
|
||||
"no wallpaper status": {
|
||||
"No wallpaper selected": ""
|
||||
"No wallpaper selected": "Nessuno sfondo selezionato"
|
||||
},
|
||||
"official": {
|
||||
"official": "ufficiale"
|
||||
},
|
||||
"plugin browser description": {
|
||||
"Install plugins from the DMS plugin registry": ""
|
||||
"Install plugins from the DMS plugin registry": "Installa plugin dal registro plugin DMS"
|
||||
},
|
||||
"plugin browser header | plugin browser window title": {
|
||||
"Browse Plugins": ""
|
||||
"Browse Plugins": "Sfoglia Plugin"
|
||||
},
|
||||
"plugin installation confirmation": {
|
||||
"Install plugin '%1' from the DMS registry?": ""
|
||||
"Install plugin '%1' from the DMS registry?": "Installare il plugin '%1' dal registro DMS?"
|
||||
},
|
||||
"plugin installation dialog title": {
|
||||
"Install Plugin": ""
|
||||
"Install Plugin": "Installa Plugin"
|
||||
},
|
||||
"plugin search placeholder": {
|
||||
"Search plugins...": ""
|
||||
"Search plugins...": "Cerca plugin..."
|
||||
},
|
||||
"profile image file browser title": {
|
||||
"Select Profile Image": "Seleziona Immagine Profilo"
|
||||
},
|
||||
"registry theme description": {
|
||||
"Color theme from DMS registry": ""
|
||||
"Color theme from DMS registry": "Tema colore dal registro DMS"
|
||||
},
|
||||
"seconds": {
|
||||
"seconds": "secondi"
|
||||
@@ -3962,37 +3965,37 @@
|
||||
"Widgets": "Widget"
|
||||
},
|
||||
"source code link": {
|
||||
"source": ""
|
||||
"source": "sorgente"
|
||||
},
|
||||
"sysmon window title": {
|
||||
"System Monitor": "Monitor Sistema"
|
||||
},
|
||||
"theme browser description": {
|
||||
"Install color themes from the DMS theme registry": ""
|
||||
"Install color themes from the DMS theme registry": "Installa temi colore dal registro temi DMS"
|
||||
},
|
||||
"theme installation confirmation": {
|
||||
"Install theme '%1' from the DMS registry?": ""
|
||||
"Install theme '%1' from the DMS registry?": "Installare il tema '%1' dal registro DMS?"
|
||||
},
|
||||
"theme installation dialog title": {
|
||||
"Install Theme": ""
|
||||
"Install Theme": "Installa Tema"
|
||||
},
|
||||
"theme search placeholder": {
|
||||
"Search themes...": ""
|
||||
"Search themes...": "Cerca temi..."
|
||||
},
|
||||
"uninstall action button": {
|
||||
"Uninstall": ""
|
||||
"Uninstall": "Disinstalla"
|
||||
},
|
||||
"uninstallation error": {
|
||||
"Uninstall failed: %1": ""
|
||||
"Uninstall failed: %1": "Disinstallazione fallita: %1"
|
||||
},
|
||||
"uninstallation progress": {
|
||||
"Uninstalling: %1": ""
|
||||
"Uninstalling: %1": "Disinstallazione in corso: %1"
|
||||
},
|
||||
"uninstallation success": {
|
||||
"Uninstalled: %1": ""
|
||||
"Uninstalled: %1": "Disinstallato: %1"
|
||||
},
|
||||
"unknown author": {
|
||||
"Unknown": ""
|
||||
"Unknown": "Autore Sconosciuto"
|
||||
},
|
||||
"update dms for NM integration.": {
|
||||
"update dms for NM integration.": "aggiorna dms per integrazione NM"
|
||||
@@ -4001,13 +4004,13 @@
|
||||
"Select Wallpaper Directory": "Seleziona Cartella Sfondo"
|
||||
},
|
||||
"wallpaper error": {
|
||||
"Wallpaper processing failed - check wallpaper path": ""
|
||||
"Wallpaper processing failed - check wallpaper path": "Elaborazione sfondo fallita - verifica il percorso del file"
|
||||
},
|
||||
"wallpaper error status": {
|
||||
"Wallpaper Error": ""
|
||||
"Wallpaper Error": "Errore Sfondo"
|
||||
},
|
||||
"wallpaper processing error": {
|
||||
"Wallpaper processing failed": ""
|
||||
"Wallpaper processing failed": "Elaborazione dello sfondo fallita"
|
||||
},
|
||||
"wallpaper settings disable description": {
|
||||
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "Usa un gestore di sfondi esterno come swww, hyprpaper o swaybg."
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": ""
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "使用していないときはドックを非表示にし、ドックエリアの近くにホバーすると表示されます"
|
||||
},
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": "Ukryj opóźnienie"
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "Ukryj dok, gdy nie jest używany, i odkryj go po najechaniu kursorem w jego pobliże"
|
||||
},
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": ""
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "Esconder a dock quando não usada e mostrar ao passar o mouse próximo da área"
|
||||
},
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": "Gizleme Gecikmesi"
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "Kullanılmadığında dock'u gizle ve dock alanının yakınına geldiğinizde göster"
|
||||
},
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": "隐藏延迟"
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示"
|
||||
},
|
||||
|
||||
@@ -1685,6 +1685,9 @@
|
||||
"Hide Delay": {
|
||||
"Hide Delay": ""
|
||||
},
|
||||
"Hide When Windows Open": {
|
||||
"Hide When Windows Open": ""
|
||||
},
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": {
|
||||
"Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock,並在 Dock 區域附近懸停時顯示 Dock"
|
||||
},
|
||||
|
||||
@@ -2330,13 +2330,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Darken Modal Background",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Date Format",
|
||||
"translation": "",
|
||||
@@ -3968,6 +3961,13 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Hide When Windows Open",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Hide the dock when not in use and reveal it when hovering near the dock area",
|
||||
"translation": "",
|
||||
@@ -7433,13 +7433,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Show darkened overlay behind modal dialogs",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.",
|
||||
"translation": "",
|
||||
|
||||
Reference in New Issue
Block a user