1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

dwl/mangowc: add layout switcher and viewer widget

This commit is contained in:
bbedward
2025-11-13 12:44:56 -05:00
parent cf75c1aad0
commit 5d2f5557e5
17 changed files with 1291 additions and 229 deletions

View File

@@ -269,6 +269,20 @@ Item {
}
}
LazyLoader {
id: layoutPopoutLoader
active: false
DWLLayoutPopout {
id: layoutPopout
Component.onCompleted: {
PopoutService.layoutPopout = layoutPopout
}
}
}
LazyLoader {
id: vpnPopoutLoader

View File

@@ -14,6 +14,7 @@ Item {
required property var processListPopoutLoader
required property var notificationCenterLoader
required property var batteryPopoutLoader
required property var layoutPopoutLoader
required property var vpnPopoutLoader
required property var controlCenterLoader
required property var clipboardHistoryModalPopup
@@ -95,6 +96,9 @@ Item {
}, {
"loader": batteryPopoutLoader,
"prop": "shouldBeVisible"
}, {
"loader": layoutPopoutLoader,
"prop": "shouldBeVisible"
}, {
"loader": vpnPopoutLoader,
"prop": "shouldBeVisible"

View File

@@ -427,6 +427,9 @@ Item {
}, {
"loader": batteryPopoutLoader,
"prop": "shouldBeVisible"
}, {
"loader": layoutPopoutLoader,
"prop": "shouldBeVisible"
}, {
"loader": vpnPopoutLoader,
"prop": "shouldBeVisible"
@@ -839,6 +842,7 @@ Item {
"gpuTemp": gpuTempComponent,
"notificationButton": notificationButtonComponent,
"battery": batteryComponent,
"layout": layoutComponent,
"controlCenterButton": controlCenterButtonComponent,
"idleInhibitor": idleInhibitorComponent,
"spacer": spacerComponent,
@@ -878,6 +882,7 @@ Item {
"gpuTempComponent": gpuTempComponent,
"notificationButtonComponent": notificationButtonComponent,
"batteryComponent": batteryComponent,
"layoutComponent": layoutComponent,
"controlCenterButtonComponent": controlCenterButtonComponent,
"idleInhibitorComponent": idleInhibitorComponent,
"spacerComponent": spacerComponent,
@@ -1342,6 +1347,27 @@ Item {
}
}
Component {
id: layoutComponent
DWLLayout {
layoutPopupVisible: layoutPopoutLoader.item ? layoutPopoutLoader.item.shouldBeVisible : false
widgetThickness: barWindow.widgetThickness
barThickness: barWindow.effectiveBarThickness
axis: barWindow.axis
section: topBarContent.getWidgetSection(parent) || "center"
popoutTarget: {
layoutPopoutLoader.active = true
return layoutPopoutLoader.item
}
parentScreen: barWindow.screen
onToggleLayoutPopup: {
layoutPopoutLoader.active = true
layoutPopoutLoader.item?.toggle()
}
}
}
Component {
id: vpnComponent

View File

@@ -0,0 +1,314 @@
import QtQuick
import QtQuick.Controls
import Quickshell
import Quickshell.Wayland
import Quickshell.Widgets
import qs.Common
import qs.Services
import qs.Widgets
DankPopout {
id: root
layerNamespace: "dms:layout"
property var triggerScreen: null
function setTriggerPosition(x, y, width, section, screen) {
triggerX = x
triggerY = y
triggerWidth = width
triggerSection = section
triggerScreen = screen
updateOutputState()
}
function updateOutputState() {
if (triggerScreen && DwlService.dwlAvailable) {
outputState = DwlService.getOutputState(triggerScreen.name)
} else {
outputState = null
}
}
property var outputState: null
property string currentLayoutSymbol: outputState?.layoutSymbol || ""
readonly property var layoutNames: ({
"CT": I18n.tr("Center Tiling"),
"G": I18n.tr("Grid"),
"K": I18n.tr("Deck"),
"M": I18n.tr("Monocle"),
"RT": I18n.tr("Right Tiling"),
"S": I18n.tr("Scrolling"),
"T": I18n.tr("Tiling"),
"VG": I18n.tr("Vertical Grid"),
"VK": I18n.tr("Vertical Deck"),
"VS": I18n.tr("Vertical Scrolling"),
"VT": I18n.tr("Vertical Tiling")
})
readonly property var layoutIcons: ({
"CT": "view_compact",
"G": "grid_view",
"K": "layers",
"M": "fullscreen",
"RT": "view_sidebar",
"S": "view_carousel",
"T": "view_quilt",
"VG": "grid_on",
"VK": "view_day",
"VS": "scrollable_header",
"VT": "clarify"
})
function getLayoutName(symbol) {
return layoutNames[symbol] || symbol
}
function getLayoutIcon(symbol) {
return layoutIcons[symbol] || "view_quilt"
}
Connections {
target: DwlService
function onStateChanged() {
updateOutputState()
}
}
onShouldBeVisibleChanged: {
if (shouldBeVisible) {
updateOutputState()
}
}
Component.onCompleted: {
updateOutputState()
}
popupWidth: 300
popupHeight: contentLoader.item ? contentLoader.item.implicitHeight : 550
triggerX: Screen.width - 380 - Theme.spacingL
triggerY: Theme.barHeight - 4 + SettingsData.dankBarSpacing
triggerWidth: 70
positioning: ""
screen: triggerScreen
shouldBeVisible: false
visible: shouldBeVisible
content: Component {
Rectangle {
id: layoutContent
implicitHeight: contentColumn.implicitHeight + Theme.spacingL * 2
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
radius: Theme.cornerRadius
border.color: Theme.outlineMedium
border.width: 0
antialiasing: true
smooth: true
focus: true
Component.onCompleted: {
if (root.shouldBeVisible) {
forceActiveFocus()
}
}
Keys.onPressed: event => {
if (event.key === Qt.Key_Escape) {
root.close()
event.accepted = true
}
}
Connections {
target: root
function onShouldBeVisibleChanged() {
if (root.shouldBeVisible) {
Qt.callLater(() => {
layoutContent.forceActiveFocus()
})
}
}
}
Rectangle {
anchors.fill: parent
color: "transparent"
border.color: Theme.outlineStrong
border.width: 0
radius: parent.radius
z: -1
}
Column {
id: contentColumn
width: parent.width - Theme.spacingL * 2
anchors.left: parent.left
anchors.top: parent.top
anchors.margins: Theme.spacingL
spacing: Theme.spacingM
Row {
width: parent.width
height: 40
spacing: Theme.spacingM
DankIcon {
name: "view_quilt"
size: Theme.iconSizeLarge
color: Theme.primary
anchors.verticalCenter: parent.verticalCenter
}
Column {
spacing: Theme.spacingXS
anchors.verticalCenter: parent.verticalCenter
width: parent.width - Theme.iconSizeLarge - 32 - Theme.spacingM * 2
StyledText {
text: I18n.tr("Layout")
font.pixelSize: Theme.fontSizeXLarge
color: Theme.surfaceText
font.weight: Font.Bold
}
StyledText {
text: root.currentLayoutSymbol
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceTextMedium
}
}
Rectangle {
width: 32
height: 32
radius: 16
color: closeLayoutArea.containsMouse ? Theme.errorHover : "transparent"
anchors.top: parent.top
DankIcon {
anchors.centerIn: parent
name: "close"
size: Theme.iconSize - 4
color: closeLayoutArea.containsMouse ? Theme.error : Theme.surfaceText
}
MouseArea {
id: closeLayoutArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onPressed: {
root.close()
}
}
}
}
StyledText {
text: I18n.tr("Available Layouts")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceTextMedium
font.weight: Font.Medium
}
Column {
width: parent.width
spacing: Theme.spacingS
Repeater {
model: DwlService.layouts
delegate: Rectangle {
required property string modelData
required property int index
property bool isActive: modelData === root.currentLayoutSymbol
width: parent.width
height: 40
radius: Theme.cornerRadius
color: layoutArea.containsMouse ? Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency) : "transparent"
Row {
anchors.left: parent.left
anchors.leftMargin: Theme.spacingS
anchors.verticalCenter: parent.verticalCenter
spacing: Theme.spacingS
DankIcon {
name: root.getLayoutIcon(modelData)
size: 20
color: parent.parent.isActive ? Theme.primary : Theme.surfaceText
anchors.verticalCenter: parent.verticalCenter
}
Column {
anchors.verticalCenter: parent.verticalCenter
spacing: 2
StyledText {
text: root.getLayoutName(modelData)
font.pixelSize: Theme.fontSizeSmall
color: parent.parent.parent.isActive ? Theme.primary : Theme.surfaceText
font.weight: parent.parent.parent.isActive ? Font.Medium : Font.Normal
}
StyledText {
text: modelData
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceTextMedium
}
}
}
MouseArea {
id: layoutArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onPressed: {
console.log("DWLLayoutPopout: Pressed layout", modelData, "at index", index)
console.log("DWLLayoutPopout: triggerScreen:", root.triggerScreen, "dwlAvailable:", DwlService.dwlAvailable)
if (!root.triggerScreen) {
console.error("DWLLayoutPopout: triggerScreen is null!")
return
}
if (!DwlService.dwlAvailable) {
console.error("DWLLayoutPopout: DwlService not available!")
return
}
console.log("DWLLayoutPopout: CALLING setLayout with output:", root.triggerScreen.name, "index:", index)
DwlService.setLayout(root.triggerScreen.name, index)
root.close()
}
}
Behavior on color {
ColorAnimation {
duration: Theme.shortDuration
easing.type: Theme.standardEasing
}
}
}
}
}
StyledText {
text: I18n.tr("Right-click bar widget to cycle")
font.pixelSize: Theme.fontSizeSmall
color: Theme.outline
width: parent.width
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
}
}
}
}
}

View File

@@ -200,7 +200,8 @@ Loader {
"vpn": components.vpnComponent,
"notepadButton": components.notepadButtonComponent,
"colorPicker": components.colorPickerComponent,
"systemUpdate": components.systemUpdateComponent
"systemUpdate": components.systemUpdateComponent,
"layout": components.layoutComponent
}
if (componentMap[widgetId]) {
@@ -220,7 +221,8 @@ Loader {
"memUsage": dgopAvailable,
"cpuTemp": dgopAvailable,
"gpuTemp": dgopAvailable,
"network_speed_monitor": dgopAvailable
"network_speed_monitor": dgopAvailable,
"layout": CompositorService.isDwl && DwlService.dwlAvailable
}
return widgetVisibility[widgetId] ?? true

View File

@@ -0,0 +1,116 @@
import QtQuick
import Quickshell
import qs.Common
import qs.Modules.Plugins
import qs.Services
import qs.Widgets
BasePill {
id: layout
property bool layoutPopupVisible: false
property var popoutTarget: null
signal toggleLayoutPopup()
visible: CompositorService.isDwl && DwlService.dwlAvailable
property var outputState: parentScreen ? DwlService.getOutputState(parentScreen.name) : null
property string currentLayoutSymbol: outputState?.layoutSymbol || ""
property int currentLayoutIndex: outputState?.layout || 0
readonly property var layoutIcons: ({
"CT": "view_compact",
"G": "grid_view",
"K": "layers",
"M": "fullscreen",
"RT": "view_sidebar",
"S": "view_carousel",
"T": "view_quilt",
"VG": "grid_on",
"VK": "view_day",
"VS": "scrollable_header",
"VT": "clarify"
})
function getLayoutIcon(symbol) {
return layoutIcons[symbol] || "view_quilt"
}
Connections {
target: DwlService
function onStateChanged() {
outputState = parentScreen ? DwlService.getOutputState(parentScreen.name) : null
}
}
content: Component {
Item {
implicitWidth: layout.isVerticalOrientation ? (layout.widgetThickness - layout.horizontalPadding * 2) : layoutContent.implicitWidth
implicitHeight: layout.isVerticalOrientation ? layoutColumn.implicitHeight : (layout.widgetThickness - layout.horizontalPadding * 2)
Column {
id: layoutColumn
visible: layout.isVerticalOrientation
anchors.centerIn: parent
spacing: 1
DankIcon {
name: layout.getLayoutIcon(layout.currentLayoutSymbol)
size: Theme.barIconSize(layout.barThickness)
color: Theme.surfaceText
anchors.horizontalCenter: parent.horizontalCenter
}
StyledText {
text: layout.currentLayoutSymbol
font.pixelSize: Theme.barTextSize(layout.barThickness)
color: Theme.surfaceText
anchors.horizontalCenter: parent.horizontalCenter
}
}
Row {
id: layoutContent
visible: !layout.isVerticalOrientation
anchors.centerIn: parent
spacing: SettingsData.dankBarNoBackground ? 1 : 2
DankIcon {
name: layout.getLayoutIcon(layout.currentLayoutSymbol)
size: Theme.barIconSize(layout.barThickness, -4)
color: Theme.surfaceText
anchors.verticalCenter: parent.verticalCenter
}
StyledText {
text: layout.currentLayoutSymbol
font.pixelSize: Theme.barTextSize(layout.barThickness)
color: Theme.surfaceText
anchors.verticalCenter: parent.verticalCenter
}
}
}
}
onClicked: {
if (popoutTarget && popoutTarget.setTriggerPosition) {
const globalPos = layout.visualContent.mapToGlobal(0, 0)
const currentScreen = parentScreen || Screen
const pos = SettingsData.getPopupTriggerPosition(globalPos, currentScreen, barThickness, layout.visualWidth)
popoutTarget.setTriggerPosition(pos.x, pos.y, pos.width, section, currentScreen)
}
toggleLayoutPopup()
}
onRightClicked: {
if (!parentScreen || !DwlService.dwlAvailable || DwlService.layouts.length === 0) {
return
}
const currentIndex = layout.currentLayoutIndex
const nextIndex = (currentIndex + 1) % DwlService.layouts.length
DwlService.setLayout(parentScreen.name, nextIndex)
}
}

View File

@@ -21,6 +21,13 @@ Item {
property var baseWidgetDefinitions: {
var coreWidgets = [{
"id": "layout",
"text": I18n.tr("Layout"),
"description": I18n.tr("Display and switch DWL layouts"),
"icon": "view_quilt",
"enabled": CompositorService.isDwl && DwlService.dwlAvailable,
"warning": !CompositorService.isDwl ? I18n.tr("Requires DWL compositor") : (!DwlService.dwlAvailable ? I18n.tr("DWL service not available") : undefined)
}, {
"id": "launcherButton",
"text": I18n.tr("App Launcher"),
"description": I18n.tr("Quick access to application launcher"),

View File

@@ -68,19 +68,19 @@
{
"term": "Access clipboard history",
"context": "Access clipboard history",
"reference": "Modules/Settings/DankBarTab.qml:68",
"reference": "Modules/Settings/DankBarTab.qml:75",
"comment": ""
},
{
"term": "Access to notifications and do not disturb",
"context": "Access to notifications and do not disturb",
"reference": "Modules/Settings/DankBarTab.qml:127",
"reference": "Modules/Settings/DankBarTab.qml:134",
"comment": ""
},
{
"term": "Access to system controls and settings",
"context": "Access to system controls and settings",
"reference": "Modules/Settings/DankBarTab.qml:121",
"reference": "Modules/Settings/DankBarTab.qml:128",
"comment": ""
},
{
@@ -164,7 +164,7 @@
{
"term": "App Launcher",
"context": "App Launcher",
"reference": "Modules/Settings/DankBarTab.qml:25",
"reference": "Modules/Settings/DankBarTab.qml:32",
"comment": ""
},
{
@@ -212,31 +212,31 @@
{
"term": "Are you sure you want to hibernate the system?",
"context": "Are you sure you want to hibernate the system?",
"reference": "Modals/PowerMenuModal.qml:158",
"reference": "Modals/PowerMenuModal.qml:132",
"comment": ""
},
{
"term": "Are you sure you want to log out?",
"context": "Are you sure you want to log out?",
"reference": "Modals/PowerMenuModal.qml:150",
"reference": "Modals/PowerMenuModal.qml:124",
"comment": ""
},
{
"term": "Are you sure you want to power off the system?",
"context": "Are you sure you want to power off the system?",
"reference": "Modals/PowerMenuModal.qml:166",
"reference": "Modals/PowerMenuModal.qml:140",
"comment": ""
},
{
"term": "Are you sure you want to reboot the system?",
"context": "Are you sure you want to reboot the system?",
"reference": "Modals/PowerMenuModal.qml:162",
"reference": "Modals/PowerMenuModal.qml:136",
"comment": ""
},
{
"term": "Are you sure you want to suspend the system?",
"context": "Are you sure you want to suspend the system?",
"reference": "Modals/PowerMenuModal.qml:154",
"reference": "Modals/PowerMenuModal.qml:128",
"comment": ""
},
{
@@ -314,13 +314,13 @@
{
"term": "Auto Popup Gaps",
"context": "Auto Popup Gaps",
"reference": "Modules/Settings/DankBarTab.qml:1218",
"reference": "Modules/Settings/DankBarTab.qml:1225",
"comment": ""
},
{
"term": "Auto-hide",
"context": "Auto-hide",
"reference": "Modules/Settings/DankBarTab.qml:823",
"reference": "Modules/Settings/DankBarTab.qml:830",
"comment": ""
},
{
@@ -362,7 +362,7 @@
{
"term": "Automatically calculate popup distance from bar edge.",
"context": "Automatically calculate popup distance from bar edge.",
"reference": "Modules/Settings/DankBarTab.qml:1219",
"reference": "Modules/Settings/DankBarTab.qml:1226",
"comment": ""
},
{
@@ -392,7 +392,7 @@
{
"term": "Automatically hide the top bar to expand screen real estate",
"context": "Automatically hide the top bar to expand screen real estate",
"reference": "Modules/Settings/DankBarTab.qml:830",
"reference": "Modules/Settings/DankBarTab.qml:837",
"comment": ""
},
{
@@ -413,6 +413,12 @@
"reference": "Modules/ProcessList/SystemTab.qml:478",
"comment": ""
},
{
"term": "Available Layouts",
"context": "Available Layouts",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:213",
"comment": ""
},
{
"term": "Available Plugins",
"context": "Available Plugins",
@@ -428,7 +434,7 @@
{
"term": "Back",
"context": "Back",
"reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:864",
"reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:856",
"comment": ""
},
{
@@ -440,13 +446,13 @@
{
"term": "Battery",
"context": "Battery",
"reference": "Modules/Settings/DankBarTab.qml:132",
"reference": "Modules/Settings/DankBarTab.qml:139",
"comment": ""
},
{
"term": "Battery level and power management",
"context": "Battery level and power management",
"reference": "Modules/Settings/DankBarTab.qml:133",
"reference": "Modules/Settings/DankBarTab.qml:140",
"comment": ""
},
{
@@ -488,37 +494,37 @@
{
"term": "Border",
"context": "Border",
"reference": "Modules/Settings/DankBarTab.qml:1439",
"reference": "Modules/Settings/DankBarTab.qml:1446",
"comment": ""
},
{
"term": "Border Color",
"context": "Border Color",
"reference": "Modules/Settings/DankBarTab.qml:1469",
"reference": "Modules/Settings/DankBarTab.qml:1476",
"comment": ""
},
{
"term": "Border Opacity",
"context": "Border Opacity",
"reference": "Modules/Settings/DankBarTab.qml:1521, Modules/Settings/DankBarTab.qml:1535",
"reference": "Modules/Settings/DankBarTab.qml:1528, Modules/Settings/DankBarTab.qml:1542",
"comment": ""
},
{
"term": "Border Thickness",
"context": "Border Thickness",
"reference": "Modules/Settings/DankBarTab.qml:1592, Modules/Settings/DankBarTab.qml:1606",
"reference": "Modules/Settings/DankBarTab.qml:1599, Modules/Settings/DankBarTab.qml:1613",
"comment": ""
},
{
"term": "Bottom",
"context": "Bottom",
"reference": "Modules/Settings/DankBarTab.qml:763",
"reference": "Modules/Settings/DankBarTab.qml:770",
"comment": ""
},
{
"term": "Bottom Section",
"context": "Bottom Section",
"reference": "Modules/Settings/DankBarTab.qml:2052",
"reference": "Modules/Settings/DankBarTab.qml:2059",
"comment": ""
},
{
@@ -554,25 +560,25 @@
{
"term": "CPU Temperature",
"context": "CPU Temperature",
"reference": "Modules/Settings/DankBarTab.qml:94",
"reference": "Modules/Settings/DankBarTab.qml:101",
"comment": ""
},
{
"term": "CPU Usage",
"context": "CPU Usage",
"reference": "Modules/Settings/DankBarTab.qml:73",
"reference": "Modules/Settings/DankBarTab.qml:80",
"comment": ""
},
{
"term": "CPU temperature display",
"context": "CPU temperature display",
"reference": "Modules/Settings/DankBarTab.qml:95",
"reference": "Modules/Settings/DankBarTab.qml:102",
"comment": ""
},
{
"term": "CPU usage indicator",
"context": "CPU usage indicator",
"reference": "Modules/Settings/DankBarTab.qml:74",
"reference": "Modules/Settings/DankBarTab.qml:81",
"comment": ""
},
{
@@ -602,7 +608,13 @@
{
"term": "Center Section",
"context": "Center Section",
"reference": "Modules/Settings/DankBarTab.qml:1969",
"reference": "Modules/Settings/DankBarTab.qml:1976",
"comment": ""
},
{
"term": "Center Tiling",
"context": "Center Tiling",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:38",
"comment": ""
},
{
@@ -614,7 +626,7 @@
{
"term": "Check for system updates",
"context": "Check for system updates",
"reference": "Modules/Settings/DankBarTab.qml:188",
"reference": "Modules/Settings/DankBarTab.qml:195",
"comment": ""
},
{
@@ -632,7 +644,7 @@
{
"term": "Choose the border accent color",
"context": "Choose the border accent color",
"reference": "Modules/Settings/DankBarTab.qml:1476",
"reference": "Modules/Settings/DankBarTab.qml:1483",
"comment": ""
},
{
@@ -674,13 +686,13 @@
{
"term": "Clipboard Manager",
"context": "Clipboard Manager",
"reference": "Modules/Settings/DankBarTab.qml:67",
"reference": "Modules/Settings/DankBarTab.qml:74",
"comment": ""
},
{
"term": "Clock",
"context": "Clock",
"reference": "Modules/Settings/DankBarTab.qml:49",
"reference": "Modules/Settings/DankBarTab.qml:56",
"comment": ""
},
{
@@ -704,7 +716,7 @@
{
"term": "Color Picker",
"context": "Color Picker",
"reference": "Modules/Settings/DankBarTab.qml:181",
"reference": "Modules/Settings/DankBarTab.qml:188",
"comment": ""
},
{
@@ -854,13 +866,13 @@
{
"term": "Control Center",
"context": "Control Center",
"reference": "Modules/Settings/DankBarTab.qml:120",
"reference": "Modules/Settings/DankBarTab.qml:127",
"comment": ""
},
{
"term": "Control currently playing media",
"context": "Control currently playing media",
"reference": "Modules/Settings/DankBarTab.qml:62",
"reference": "Modules/Settings/DankBarTab.qml:69",
"comment": ""
},
{
@@ -914,7 +926,7 @@
{
"term": "Corner Radius Override",
"context": "Corner Radius Override",
"reference": "Modules/Settings/DankBarTab.qml:1351",
"reference": "Modules/Settings/DankBarTab.qml:1358",
"comment": ""
},
{
@@ -950,13 +962,13 @@
{
"term": "Current time and date display",
"context": "Current time and date display",
"reference": "Modules/Settings/DankBarTab.qml:50",
"reference": "Modules/Settings/DankBarTab.qml:57",
"comment": ""
},
{
"term": "Current weather conditions and temperature",
"context": "Current weather conditions and temperature",
"reference": "Modules/Settings/DankBarTab.qml:56",
"reference": "Modules/Settings/DankBarTab.qml:63",
"comment": ""
},
{
@@ -992,7 +1004,7 @@
{
"term": "Customizable empty space",
"context": "Customizable empty space",
"reference": "Modules/Settings/DankBarTab.qml:151",
"reference": "Modules/Settings/DankBarTab.qml:158",
"comment": ""
},
{
@@ -1025,6 +1037,12 @@
"reference": "Modules/ControlCenter/Components/DragDropGrid.qml:200",
"comment": ""
},
{
"term": "DWL service not available",
"context": "DWL service not available",
"reference": "Modules/Settings/DankBarTab.qml:29",
"comment": ""
},
{
"term": "Daily at:",
"context": "Daily at:",
@@ -1058,7 +1076,7 @@
{
"term": "DankBar Font Scale",
"context": "DankBar Font Scale",
"reference": "Modules/Settings/DankBarTab.qml:1678",
"reference": "Modules/Settings/DankBarTab.qml:1685",
"comment": ""
},
{
@@ -1091,6 +1109,12 @@
"reference": "Modules/Settings/DisplaysTab.qml:176",
"comment": ""
},
{
"term": "Deck",
"context": "Deck",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:40",
"comment": ""
},
{
"term": "Default",
"context": "Default",
@@ -1178,7 +1202,7 @@
{
"term": "Disk Usage",
"context": "Disk Usage",
"reference": "Modules/Settings/DankBarTab.qml:87",
"reference": "Modules/Settings/DankBarTab.qml:94",
"comment": ""
},
{
@@ -1199,6 +1223,12 @@
"reference": "Modules/Notifications/Center/NotificationSettings.qml:237",
"comment": ""
},
{
"term": "Display and switch DWL layouts",
"context": "Display and switch DWL layouts",
"reference": "Modules/Settings/DankBarTab.qml:26",
"comment": ""
},
{
"term": "Display application icons in workspace indicators",
"context": "Display application icons in workspace indicators",
@@ -1208,7 +1238,7 @@
{
"term": "Display currently focused application title",
"context": "Display currently focused application title",
"reference": "Modules/Settings/DankBarTab.qml:38",
"reference": "Modules/Settings/DankBarTab.qml:45",
"comment": ""
},
{
@@ -1232,7 +1262,7 @@
{
"term": "Displays the active keyboard layout and allows switching",
"context": "Displays the active keyboard layout and allows switching",
"reference": "Modules/Settings/DankBarTab.qml:171",
"reference": "Modules/Settings/DankBarTab.qml:178",
"comment": ""
},
{
@@ -1286,7 +1316,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/DankBarTab.qml:1860",
"reference": "Modules/Settings/DankBarTab.qml:1867",
"comment": ""
},
{
@@ -1304,7 +1334,7 @@
{
"term": "Edge Spacing (0 = edge-to-edge)",
"context": "Edge Spacing (0 = edge-to-edge)",
"reference": "Modules/Settings/DankBarTab.qml:1005, Modules/Settings/DankBarTab.qml:1019",
"reference": "Modules/Settings/DankBarTab.qml:1012, Modules/Settings/DankBarTab.qml:1026",
"comment": ""
},
{
@@ -1448,7 +1478,7 @@
{
"term": "Exclusive Zone Offset",
"context": "Exclusive Zone Offset",
"reference": "Modules/Settings/DankBarTab.qml:1077, Modules/Settings/DankBarTab.qml:1091",
"reference": "Modules/Settings/DankBarTab.qml:1084, Modules/Settings/DankBarTab.qml:1098",
"comment": ""
},
{
@@ -1592,7 +1622,7 @@
{
"term": "Focused Window",
"context": "Focused Window",
"reference": "Modules/Settings/DankBarTab.qml:37",
"reference": "Modules/Settings/DankBarTab.qml:44",
"comment": ""
},
{
@@ -1670,13 +1700,13 @@
{
"term": "GPU Temperature",
"context": "GPU Temperature",
"reference": "Modules/Settings/DankBarTab.qml:101",
"reference": "Modules/Settings/DankBarTab.qml:108",
"comment": ""
},
{
"term": "GPU temperature display",
"context": "GPU temperature display",
"reference": "Modules/Settings/DankBarTab.qml:102",
"reference": "Modules/Settings/DankBarTab.qml:109",
"comment": ""
},
{
@@ -1712,13 +1742,13 @@
{
"term": "Goth Corner Radius",
"context": "Goth Corner Radius",
"reference": "Modules/Settings/DankBarTab.qml:1370, Modules/Settings/DankBarTab.qml:1384",
"reference": "Modules/Settings/DankBarTab.qml:1377, Modules/Settings/DankBarTab.qml:1391",
"comment": ""
},
{
"term": "Goth Corners",
"context": "Goth Corners",
"reference": "Modules/Settings/DankBarTab.qml:1340",
"reference": "Modules/Settings/DankBarTab.qml:1347",
"comment": ""
},
{
@@ -1727,6 +1757,12 @@
"reference": "Services/AppSearchService.qml:166, Services/AppSearchService.qml:167",
"comment": ""
},
{
"term": "Grid",
"context": "Grid",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:39",
"comment": ""
},
{
"term": "Group by App",
"context": "Group by App",
@@ -1766,7 +1802,7 @@
{
"term": "Hibernate",
"context": "Hibernate",
"reference": "Modals/PowerMenuModal.qml:117, Modals/PowerMenuModal.qml:157, Modules/Lock/LockPowerMenu.qml:312",
"reference": "Modals/PowerMenuModal.qml:91, Modals/PowerMenuModal.qml:131, Modules/Lock/LockPowerMenu.qml:312",
"comment": ""
},
{
@@ -1832,7 +1868,7 @@
{
"term": "Idle Inhibitor",
"context": "Idle Inhibitor",
"reference": "Modules/Settings/DankBarTab.qml:144",
"reference": "Modules/Settings/DankBarTab.qml:151",
"comment": ""
},
{
@@ -1940,7 +1976,7 @@
{
"term": "Keyboard Layout Name",
"context": "Keyboard Layout Name",
"reference": "Modules/Settings/DankBarTab.qml:170",
"reference": "Modules/Settings/DankBarTab.qml:177",
"comment": ""
},
{
@@ -2015,16 +2051,22 @@
"reference": "Modules/Settings/LauncherTab.qml:65",
"comment": ""
},
{
"term": "Layout",
"context": "Layout",
"reference": "Modules/Settings/DankBarTab.qml:25, Modules/DankBar/Popouts/DWLLayoutPopout.qml:173",
"comment": ""
},
{
"term": "Left",
"context": "Left",
"reference": "Modules/Settings/DankBarTab.qml:763, Modules/DankBar/Popouts/BatteryPopout.qml:542",
"reference": "Modules/Settings/DankBarTab.qml:770, Modules/DankBar/Popouts/BatteryPopout.qml:542",
"comment": ""
},
{
"term": "Left Section",
"context": "Left Section",
"reference": "Modules/Settings/DankBarTab.qml:1886",
"reference": "Modules/Settings/DankBarTab.qml:1893",
"comment": ""
},
{
@@ -2060,7 +2102,7 @@
{
"term": "Lock",
"context": "Lock",
"reference": "Modals/PowerMenuModal.qml:105",
"reference": "Modals/PowerMenuModal.qml:79",
"comment": ""
},
{
@@ -2084,7 +2126,7 @@
{
"term": "Log Out",
"context": "Log Out",
"reference": "Modals/PowerMenuModal.qml:93, Modals/PowerMenuModal.qml:149, Modules/Lock/LockPowerMenu.qml:209, Modules/ControlCenter/PowerMenu.qml:14",
"reference": "Modals/PowerMenuModal.qml:67, Modals/PowerMenuModal.qml:123, Modules/Lock/LockPowerMenu.qml:209, Modules/ControlCenter/PowerMenu.qml:14",
"comment": ""
},
{
@@ -2120,13 +2162,13 @@
{
"term": "Manual Gap Size",
"context": "Manual Gap Size",
"reference": "Modules/Settings/DankBarTab.qml:1248, Modules/Settings/DankBarTab.qml:1262",
"reference": "Modules/Settings/DankBarTab.qml:1255, Modules/Settings/DankBarTab.qml:1269",
"comment": ""
},
{
"term": "Manual Show/Hide",
"context": "Manual Show/Hide",
"reference": "Modules/Settings/DankBarTab.qml:875",
"reference": "Modules/Settings/DankBarTab.qml:882",
"comment": ""
},
{
@@ -2198,7 +2240,7 @@
{
"term": "Media Controls",
"context": "Media Controls",
"reference": "Modules/Settings/DankBarTab.qml:61",
"reference": "Modules/Settings/DankBarTab.qml:68",
"comment": ""
},
{
@@ -2246,13 +2288,13 @@
{
"term": "Memory Usage",
"context": "Memory Usage",
"reference": "Modules/Settings/DankBarTab.qml:80",
"reference": "Modules/Settings/DankBarTab.qml:87",
"comment": ""
},
{
"term": "Memory usage indicator",
"context": "Memory usage indicator",
"reference": "Modules/Settings/DankBarTab.qml:81",
"reference": "Modules/Settings/DankBarTab.qml:88",
"comment": ""
},
{
@@ -2291,6 +2333,12 @@
"reference": "Modules/Settings/PersonalizationTab.qml:1029",
"comment": ""
},
{
"term": "Monocle",
"context": "Monocle",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:41",
"comment": ""
},
{
"term": "Monospace Font",
"context": "Monospace Font",
@@ -2366,13 +2414,13 @@
{
"term": "Network Speed Monitor",
"context": "Network Speed Monitor",
"reference": "Modules/Settings/DankBarTab.qml:163",
"reference": "Modules/Settings/DankBarTab.qml:170",
"comment": ""
},
{
"term": "Network download and upload speed display",
"context": "Network download and upload speed display",
"reference": "Modules/Settings/DankBarTab.qml:164",
"reference": "Modules/Settings/DankBarTab.qml:171",
"comment": ""
},
{
@@ -2414,7 +2462,7 @@
{
"term": "No Background",
"context": "No Background",
"reference": "Modules/Settings/DankBarTab.qml:1325",
"reference": "Modules/Settings/DankBarTab.qml:1332",
"comment": ""
},
{
@@ -2498,7 +2546,7 @@
{
"term": "Notepad",
"context": "Notepad",
"reference": "DMSShell.qml:441, Modules/Settings/DankBarTab.qml:175",
"reference": "DMSShell.qml:455, Modules/Settings/DankBarTab.qml:182",
"comment": ""
},
{
@@ -2522,7 +2570,7 @@
{
"term": "Notification Center",
"context": "Notification Center",
"reference": "Modules/Settings/DankBarTab.qml:126",
"reference": "Modules/Settings/DankBarTab.qml:133",
"comment": ""
},
{
@@ -2732,7 +2780,7 @@
{
"term": "Percentage",
"context": "Percentage",
"reference": "Modules/Settings/DankBarTab.qml:88",
"reference": "Modules/Settings/DankBarTab.qml:95",
"comment": ""
},
{
@@ -2810,7 +2858,7 @@
{
"term": "Plugin is disabled - enable in Plugins settings to use",
"context": "Plugin is disabled - enable in Plugins settings to use",
"reference": "Modules/Settings/DankBarTab.qml:202",
"reference": "Modules/Settings/DankBarTab.qml:209",
"comment": ""
},
{
@@ -2840,7 +2888,7 @@
{
"term": "Position",
"context": "Position",
"reference": "Modules/Settings/DankBarTab.qml:753",
"reference": "Modules/Settings/DankBarTab.qml:760",
"comment": ""
},
{
@@ -2870,7 +2918,7 @@
{
"term": "Power Off",
"context": "Power Off",
"reference": "Modals/PowerMenuModal.qml:99, Modals/PowerMenuModal.qml:165, Modules/Lock/LockPowerMenu.qml:432, Modules/ControlCenter/PowerMenu.qml:17",
"reference": "Modals/PowerMenuModal.qml:73, Modals/PowerMenuModal.qml:139, Modules/Lock/LockPowerMenu.qml:432, Modules/ControlCenter/PowerMenu.qml:17",
"comment": ""
},
{
@@ -2900,7 +2948,7 @@
{
"term": "Prevent screen timeout",
"context": "Prevent screen timeout",
"reference": "Modules/Settings/DankBarTab.qml:145",
"reference": "Modules/Settings/DankBarTab.qml:152",
"comment": ""
},
{
@@ -2930,7 +2978,7 @@
{
"term": "Privacy Indicator",
"context": "Privacy Indicator",
"reference": "Modules/Settings/DankBarTab.qml:114",
"reference": "Modules/Settings/DankBarTab.qml:121",
"comment": ""
},
{
@@ -2960,19 +3008,19 @@
{
"term": "Quick access to application launcher",
"context": "Quick access to application launcher",
"reference": "Modules/Settings/DankBarTab.qml:26",
"reference": "Modules/Settings/DankBarTab.qml:33",
"comment": ""
},
{
"term": "Quick access to color picker",
"context": "Quick access to color picker",
"reference": "Modules/Settings/DankBarTab.qml:182",
"reference": "Modules/Settings/DankBarTab.qml:189",
"comment": ""
},
{
"term": "Quick access to notepad",
"context": "Quick access to notepad",
"reference": "Modules/Settings/DankBarTab.qml:176",
"reference": "Modules/Settings/DankBarTab.qml:183",
"comment": ""
},
{
@@ -3002,7 +3050,7 @@
{
"term": "Reboot",
"context": "Reboot",
"reference": "Modals/PowerMenuModal.qml:87, Modals/PowerMenuModal.qml:161, Modules/Lock/LockPowerMenu.qml:372, Modules/ControlCenter/PowerMenu.qml:16",
"reference": "Modals/PowerMenuModal.qml:61, Modals/PowerMenuModal.qml:135, Modules/Lock/LockPowerMenu.qml:372, Modules/ControlCenter/PowerMenu.qml:16",
"comment": ""
},
{
@@ -3047,10 +3095,16 @@
"reference": "Modals/Settings/PowerSettings.qml:544",
"comment": ""
},
{
"term": "Requires DWL compositor",
"context": "Requires DWL compositor",
"reference": "Modules/Settings/DankBarTab.qml:29",
"comment": ""
},
{
"term": "Reset",
"context": "Reset",
"reference": "Modules/Settings/DankBarTab.qml:1818, Modules/ControlCenter/Components/EditControls.qml:227",
"reference": "Modules/Settings/DankBarTab.qml:1825, Modules/ControlCenter/Components/EditControls.qml:227",
"comment": ""
},
{
@@ -3062,7 +3116,7 @@
{
"term": "Restart DMS",
"context": "Restart DMS",
"reference": "Modals/PowerMenuModal.qml:123",
"reference": "Modals/PowerMenuModal.qml:97",
"comment": ""
},
{
@@ -3092,13 +3146,25 @@
{
"term": "Right",
"context": "Right",
"reference": "Modules/Settings/DankBarTab.qml:763",
"reference": "Modules/Settings/DankBarTab.qml:770",
"comment": ""
},
{
"term": "Right Section",
"context": "Right Section",
"reference": "Modules/Settings/DankBarTab.qml:2052",
"reference": "Modules/Settings/DankBarTab.qml:2059",
"comment": ""
},
{
"term": "Right Tiling",
"context": "Right Tiling",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:42",
"comment": ""
},
{
"term": "Right-click bar widget to cycle",
"context": "Right-click bar widget to cycle",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:304",
"comment": ""
},
{
@@ -3110,7 +3176,7 @@
{
"term": "Running Apps",
"context": "Running Apps",
"reference": "Modules/Settings/DankBarTab.qml:43",
"reference": "Modules/Settings/DankBarTab.qml:50",
"comment": ""
},
{
@@ -3146,7 +3212,7 @@
{
"term": "Scale DankBar font sizes independently",
"context": "Scale DankBar font sizes independently",
"reference": "Modules/Settings/DankBarTab.qml:1685",
"reference": "Modules/Settings/DankBarTab.qml:1692",
"comment": ""
},
{
@@ -3167,6 +3233,12 @@
"reference": "Services/AppSearchService.qml:175",
"comment": ""
},
{
"term": "Scrolling",
"context": "Scrolling",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:43",
"comment": ""
},
{
"term": "Search file contents",
"context": "Search file contents",
@@ -3284,7 +3356,7 @@
{
"term": "Separator",
"context": "Separator",
"reference": "Modules/Settings/DankBarTab.qml:156",
"reference": "Modules/Settings/DankBarTab.qml:163",
"comment": ""
},
{
@@ -3410,7 +3482,7 @@
{
"term": "Show on Overview",
"context": "Show on Overview",
"reference": "Modules/Settings/DockTab.qml:242, Modules/Settings/DankBarTab.qml:929",
"reference": "Modules/Settings/DockTab.qml:242, Modules/Settings/DankBarTab.qml:936",
"comment": ""
},
{
@@ -3470,19 +3542,19 @@
{
"term": "Shows all running applications with focus indication",
"context": "Shows all running applications with focus indication",
"reference": "Modules/Settings/DankBarTab.qml:44",
"reference": "Modules/Settings/DankBarTab.qml:51",
"comment": ""
},
{
"term": "Shows current workspace and allows switching",
"context": "Shows current workspace and allows switching",
"reference": "Modules/Settings/DankBarTab.qml:32",
"reference": "Modules/Settings/DankBarTab.qml:39",
"comment": ""
},
{
"term": "Shows when microphone, camera, or screen sharing is active",
"context": "Shows when microphone, camera, or screen sharing is active",
"reference": "Modules/Settings/DankBarTab.qml:115",
"reference": "Modules/Settings/DankBarTab.qml:122",
"comment": ""
},
{
@@ -3494,7 +3566,7 @@
{
"term": "Size",
"context": "Size",
"reference": "Modules/ProcessList/SystemTab.qml:456, Modules/Settings/DankBarTab.qml:1149, Modules/Settings/DankBarTab.qml:1163",
"reference": "Modules/ProcessList/SystemTab.qml:456, Modules/Settings/DankBarTab.qml:1156, Modules/Settings/DankBarTab.qml:1170",
"comment": ""
},
{
@@ -3518,13 +3590,13 @@
{
"term": "Spacer",
"context": "Spacer",
"reference": "Modules/Settings/DankBarTab.qml:150",
"reference": "Modules/Settings/DankBarTab.qml:157",
"comment": ""
},
{
"term": "Spacing",
"context": "Spacing",
"reference": "Modules/Settings/DockTab.qml:473, Modules/Settings/DankBarTab.qml:988",
"reference": "Modules/Settings/DockTab.qml:473, Modules/Settings/DankBarTab.qml:995",
"comment": ""
},
{
@@ -3536,7 +3608,7 @@
{
"term": "Square Corners",
"context": "Square Corners",
"reference": "Modules/Settings/DankBarTab.qml:1314",
"reference": "Modules/Settings/DankBarTab.qml:1321",
"comment": ""
},
{
@@ -3596,7 +3668,7 @@
{
"term": "Suspend",
"context": "Suspend",
"reference": "Modals/PowerMenuModal.qml:111, Modals/PowerMenuModal.qml:153, Modules/Lock/LockPowerMenu.qml:260, Modules/ControlCenter/PowerMenu.qml:15",
"reference": "Modals/PowerMenuModal.qml:85, Modals/PowerMenuModal.qml:127, Modules/Lock/LockPowerMenu.qml:260, Modules/ControlCenter/PowerMenu.qml:15",
"comment": ""
},
{
@@ -3668,13 +3740,13 @@
{
"term": "System Tray",
"context": "System Tray",
"reference": "Modules/Settings/DisplaysTab.qml:49, Modules/Settings/DankBarTab.qml:108",
"reference": "Modules/Settings/DisplaysTab.qml:49, Modules/Settings/DankBarTab.qml:115",
"comment": ""
},
{
"term": "System Update",
"context": "System Update",
"reference": "Modules/Settings/DankBarTab.qml:187",
"reference": "Modules/Settings/DankBarTab.qml:194",
"comment": ""
},
{
@@ -3698,7 +3770,7 @@
{
"term": "System notification area icons",
"context": "System notification area icons",
"reference": "Modules/Settings/DankBarTab.qml:109",
"reference": "Modules/Settings/DankBarTab.qml:116",
"comment": ""
},
{
@@ -3782,7 +3854,7 @@
{
"term": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.",
"context": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.",
"reference": "Modules/Settings/DankBarTab.qml:104",
"reference": "Modules/Settings/DankBarTab.qml:111",
"comment": ""
},
{
@@ -3791,6 +3863,12 @@
"reference": "Modals/Clipboard/ClipboardContent.qml:33",
"comment": ""
},
{
"term": "Tiling",
"context": "Tiling",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:44",
"comment": ""
},
{
"term": "Time & Weather",
"context": "Time & Weather",
@@ -3830,7 +3908,7 @@
{
"term": "Toggle top bar visibility manually (can be controlled via IPC)",
"context": "Toggle top bar visibility manually (can be controlled via IPC)",
"reference": "Modules/Settings/DankBarTab.qml:882",
"reference": "Modules/Settings/DankBarTab.qml:889",
"comment": ""
},
{
@@ -3854,7 +3932,7 @@
{
"term": "Top",
"context": "Top",
"reference": "Modules/Settings/DankBarTab.qml:763",
"reference": "Modules/Settings/DankBarTab.qml:770",
"comment": ""
},
{
@@ -3866,7 +3944,7 @@
{
"term": "Top Section",
"context": "Top Section",
"reference": "Modules/Settings/DankBarTab.qml:1886",
"reference": "Modules/Settings/DankBarTab.qml:1893",
"comment": ""
},
{
@@ -4034,7 +4112,7 @@
{
"term": "VPN",
"context": "VPN",
"reference": "Modules/Settings/DankBarTab.qml:138",
"reference": "Modules/Settings/DankBarTab.qml:145",
"comment": ""
},
{
@@ -4046,7 +4124,7 @@
{
"term": "VPN status and quick connect",
"context": "VPN status and quick connect",
"reference": "Modules/Settings/DankBarTab.qml:139",
"reference": "Modules/Settings/DankBarTab.qml:146",
"comment": ""
},
{
@@ -4055,6 +4133,30 @@
"reference": "Modals/DisplayConfirmationModal.qml:145",
"comment": ""
},
{
"term": "Vertical Deck",
"context": "Vertical Deck",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:46",
"comment": ""
},
{
"term": "Vertical Grid",
"context": "Vertical Grid",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:45",
"comment": ""
},
{
"term": "Vertical Scrolling",
"context": "Vertical Scrolling",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:47",
"comment": ""
},
{
"term": "Vertical Tiling",
"context": "Vertical Tiling",
"reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:48",
"comment": ""
},
{
"term": "Vibrant palette with playful saturation.",
"context": "Vibrant palette with playful saturation.",
@@ -4070,7 +4172,7 @@
{
"term": "Visual divider between widgets",
"context": "Visual divider between widgets",
"reference": "Modules/Settings/DankBarTab.qml:157",
"reference": "Modules/Settings/DankBarTab.qml:164",
"comment": ""
},
{
@@ -4130,7 +4232,7 @@
{
"term": "Weather Widget",
"context": "Weather Widget",
"reference": "Modules/Settings/DankBarTab.qml:55",
"reference": "Modules/Settings/DankBarTab.qml:62",
"comment": ""
},
{
@@ -4166,7 +4268,7 @@
{
"term": "Widget Management",
"context": "Widget Management",
"reference": "Modules/Settings/DankBarTab.qml:1780",
"reference": "Modules/Settings/DankBarTab.qml:1787",
"comment": ""
},
{
@@ -4214,7 +4316,7 @@
{
"term": "Workspace Switcher",
"context": "Workspace Switcher",
"reference": "Modules/Settings/DankBarTab.qml:31",
"reference": "Modules/Settings/DankBarTab.qml:38",
"comment": ""
},
{

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "Disponibile"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "Plugins Disponibili"
},
@@ -302,6 +305,9 @@
"Center Section": {
"Center Section": "Sezione Centrale"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": ""
},
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET non disponibile"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "Giornalmente alle:"
},
@@ -545,6 +554,9 @@
"Day Temperature": {
"Day Temperature": "Temperatura Giorno"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "Predefinito"
},
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "Visualizza tutte le priorità sulle apps a schermo pieno"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "Mostra icone applicazioni negli indicatori dei workspaces"
},
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "Grafica"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "Raggruppa per App"
},
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "Logo Bottone Avviatore"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "Sinistra"
},
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Monitor con lo sfondo che genera il tema di colori dinamico"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "Font Monospace"
},
@@ -1523,6 +1547,9 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "Richiedi conferma alle azioni di spegnimento, riavvio, sospensione, hibernazione e logout"
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "Resetta"
},
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "Sezione Destra"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "Esegui Templates Utente"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "Scienza"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "Cerca il contenuto dei files"
},
@@ -1898,6 +1934,9 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "La tua cronologia della clipboard verrà cancellata definitivamente"
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "Orario & Meteo"
},
@@ -2030,6 +2069,18 @@
"VRR: ": {
"VRR: ": ""
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Tavolozza vibrate con saturazione giocosa"
},

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "利用可能"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "利用可能なプラグイン"
},
@@ -302,6 +305,9 @@
"Center Section": {
"Center Section": "センターセクション"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": "変更:"
},
@@ -498,7 +504,7 @@
"Customizable empty space": "カスタマイズ可能な空きスペース"
},
"Customize which actions appear in the power menu": {
"Customize which actions appear in the power menu": ""
"Customize which actions appear in the power menu": "電源メニューに表示されるアクションをカスタマイズ"
},
"DEMO MODE - Click anywhere to exit": {
"DEMO MODE - Click anywhere to exit": "デモモード -任意の場所をクリックして 終了"
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKETが利用できません"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "毎日:"
},
@@ -545,11 +554,14 @@
"Day Temperature": {
"Day Temperature": "昼間の温度"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "デフォルト"
},
"Default selected action": {
"Default selected action": ""
"Default selected action": "デフォルトで選択されるアクション"
},
"Defaults": {
"Defaults": "デフォルト"
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "フルスクリーンアプリよりもすべての優先度を表示する"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "ワークスペース インジケーターにアプリのアイコンを表示"
},
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "グラフィック"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "アプリ別にグループ化"
},
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "ランチャーのボタンロゴ"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "左"
},
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "ダイナミックテーマの色を駆動する壁紙をモニター"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "等幅フォント"
},
@@ -1299,7 +1323,7 @@
"Only adjust gamma based on time or location rules.": "ガンマは、時間または場所のルールに基づいてのみ調整します。"
},
"Only visible if hibernate is supported by your system": {
"Only visible if hibernate is supported by your system": ""
"Only visible if hibernate is supported by your system": "システムでサポートされている場合にのみ、休止状態が表示されます"
},
"Opacity": {
"Opacity": "不透明度"
@@ -1431,7 +1455,7 @@
"Power Action Confirmation": "電源アクションの確認"
},
"Power Menu Customization": {
"Power Menu Customization": ""
"Power Menu Customization": "電源メニューのカスタマイズ"
},
"Power Off": {
"Power Off": "電源オフ"
@@ -1523,6 +1547,9 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "電源オフ、再起動、一時停止、休止状態、ログアウトアクションの確認を要求"
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "リセット"
},
@@ -1533,10 +1560,10 @@
"Restart": "再起動"
},
"Restart DMS": {
"Restart DMS": ""
"Restart DMS": "DMSを再起動"
},
"Restart the DankMaterialShell": {
"Restart the DankMaterialShell": ""
"Restart the DankMaterialShell": "DankMaterialShellを再起動"
},
"Resume": {
"Resume": "レジュメ"
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "右セクション"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "ユーザーのテンプレを実行"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "科学"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "ファイルの内容を検索"
},
@@ -1668,31 +1704,31 @@
"Show Dock": "ドックを表示"
},
"Show Hibernate": {
"Show Hibernate": ""
"Show Hibernate": "休止状態を表示"
},
"Show Line Numbers": {
"Show Line Numbers": "行番号を表示"
},
"Show Lock": {
"Show Lock": ""
"Show Lock": "ロックを表示"
},
"Show Log Out": {
"Show Log Out": ""
"Show Log Out": "ログアウトを表示"
},
"Show Power Actions": {
"Show Power Actions": "電源アクションを表示"
},
"Show Power Off": {
"Show Power Off": ""
"Show Power Off": "パワーオフを表示"
},
"Show Reboot": {
"Show Reboot": ""
"Show Reboot": "再起動を表示"
},
"Show Restart DMS": {
"Show Restart DMS": ""
"Show Restart DMS": "DMS再起動を表示"
},
"Show Suspend": {
"Show Suspend": ""
"Show Suspend": "一時停止を表示"
},
"Show Workspace Apps": {
"Show Workspace Apps": "ワークスペースアプリを表示"
@@ -1898,6 +1934,9 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "これはすべてのクリップボード履歴を完全に削除します。"
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "時間および天気"
},
@@ -2030,6 +2069,18 @@
"VRR: ": {
"VRR: ": "VRR: "
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "遊び心のある彩度の鮮やかなパレット。"
},

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "Dostępny"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "Dostępne wtyczki"
},
@@ -302,6 +305,9 @@
"Center Section": {
"Center Section": "Sekcja środkowa"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": ""
},
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET niedostępny"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "Codziennie o:"
},
@@ -545,6 +554,9 @@
"Day Temperature": {
"Day Temperature": "Temperatura w dzień"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "Domyślne"
},
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "Wyświetlaj wszystkie priorytety nad aplikacjami pełnoekranowymi"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego"
},
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "Grafika"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "Grupuj według aplikacji"
},
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "Logo przycisku programu uruchamiającego"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "Lewa"
},
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "Czcionka o stałej szerokości"
},
@@ -1523,6 +1547,9 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "Poproś o potwierdzenie czynności wyłączenia, ponownego uruchomienia, zawieszenia, hibernacji i wylogowania."
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "Resetuj"
},
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "Sekcja prawa"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "Uruchom szablony użytkownika"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "Nauka"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "Przeszukaj zawartość plików"
},
@@ -1898,6 +1934,9 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "To trwale usunie całą historię schowka."
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "Czas i pogoda"
},
@@ -2030,6 +2069,18 @@
"VRR: ": {
"VRR: ": ""
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem."
},

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "Disponível"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "Plugins disponíveis"
},
@@ -302,6 +305,9 @@
"Center Section": {
"Center Section": "Seção Central"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": ""
},
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET não está disponível"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "Diária:"
},
@@ -545,6 +554,9 @@
"Day Temperature": {
"Day Temperature": "Temperatura Diurna"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "Padrão"
},
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "Exibir todas as prioridades em aplicativos de tela cheia"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "Mostrar ícones de aplicativos em indicadores de espaço de trabalho"
},
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "Gráficos"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "Agrupar por App"
},
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "Logo do botão do Lançador"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "Esquerda"
},
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Monitor o qual papel de parede controla cores de tema dinâmicas"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "Fonte Mono espaço"
},
@@ -1523,6 +1547,9 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "Pedir confirmação ao desligar, reiniciar, suspender, hibernar e encerrar sessão"
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "Resetar"
},
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "Seção da Direita"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "Executar Templates do Usuário"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "Ciência"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "Pesquisar conteúdos de arquivos"
},
@@ -1898,6 +1934,9 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "Isso vai apagar permanentemetne todo o histórico da área de transferência."
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "Hora & Clima"
},
@@ -2030,6 +2069,18 @@
"VRR: ": {
"VRR: ": ""
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Paleta vibrante com saturação divertida."
},

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "Kullanılabilir"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "Kullanılabilir Eklentiler"
},
@@ -302,6 +305,9 @@
"Center Section": {
"Center Section": "Orta Bölüm"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": "Değişiklikler:"
},
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET kullanılamıyor"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "Her gün saat:"
},
@@ -545,6 +554,9 @@
"Day Temperature": {
"Day Temperature": "Gündüz Sıcaklığı"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "Varsayılan"
},
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "Tam ekran uygulamaların üzerinde tüm öncelikleri göster"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster"
},
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "Grafik"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "Uygulamaya Göre Gruplandır"
},
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "Başlatıcı Buton Logosu"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "Sol"
},
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "Sabit Aralıklı Yazı Tipi"
},
@@ -1523,6 +1547,9 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "Kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerinde onay iste"
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "Sıfırla"
},
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "Sağ Bölüm"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "Kullanıcı Şablonlarını Çalıştır"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "Bilim"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "Dosya içeriklerini ara"
},
@@ -1898,6 +1934,9 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "Bu, tüm pano geçmişini kalıcı olarak siler."
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "Zaman & Hava Durumu"
},
@@ -2030,6 +2069,18 @@
"VRR: ": {
"VRR: ": "VRR: "
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet"
},

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "可用"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "可用插件"
},
@@ -302,6 +305,9 @@
"Center Section": {
"Center Section": "中间区域"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": "更改:"
},
@@ -498,7 +504,7 @@
"Customizable empty space": "可调节留白"
},
"Customize which actions appear in the power menu": {
"Customize which actions appear in the power menu": ""
"Customize which actions appear in the power menu": "自定义电源菜单选项"
},
"DEMO MODE - Click anywhere to exit": {
"DEMO MODE - Click anywhere to exit": "演示模式 - 点击任意位置退出"
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET 不可用"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "在每日:"
},
@@ -545,11 +554,14 @@
"Day Temperature": {
"Day Temperature": "日间色温"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "默认"
},
"Default selected action": {
"Default selected action": ""
"Default selected action": "默认选项"
},
"Defaults": {
"Defaults": "复位"
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "应用全屏时仍显示所有优先级的通知"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "在工作区指示器中显示应用程序图标"
},
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "图形"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "按应用分组"
},
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "启动器按钮 Logo"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "左"
},
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "监视使用动态主题色的壁纸"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "等宽字体"
},
@@ -1299,7 +1323,7 @@
"Only adjust gamma based on time or location rules.": "根据时间或位置调节伽马值。"
},
"Only visible if hibernate is supported by your system": {
"Only visible if hibernate is supported by your system": ""
"Only visible if hibernate is supported by your system": "仅在休眠受系统支持时可见"
},
"Opacity": {
"Opacity": "不透明度"
@@ -1431,7 +1455,7 @@
"Power Action Confirmation": "电源操作确认"
},
"Power Menu Customization": {
"Power Menu Customization": ""
"Power Menu Customization": "自定义电源菜单"
},
"Power Off": {
"Power Off": "关机"
@@ -1523,6 +1547,9 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "关机、重启、挂起、休眠和注销前请求确认"
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "重置"
},
@@ -1533,10 +1560,10 @@
"Restart": "重启"
},
"Restart DMS": {
"Restart DMS": ""
"Restart DMS": "重启DMS"
},
"Restart the DankMaterialShell": {
"Restart the DankMaterialShell": ""
"Restart the DankMaterialShell": "重启DankMaterialShell"
},
"Resume": {
"Resume": "恢复"
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "右侧区域"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "运行用户模板"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "科学"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "检索文件内容"
},
@@ -1668,31 +1704,31 @@
"Show Dock": "显示程序坞"
},
"Show Hibernate": {
"Show Hibernate": ""
"Show Hibernate": "显示休眠"
},
"Show Line Numbers": {
"Show Line Numbers": "显示行号"
},
"Show Lock": {
"Show Lock": ""
"Show Lock": "显示锁定"
},
"Show Log Out": {
"Show Log Out": ""
"Show Log Out": "显示注销"
},
"Show Power Actions": {
"Show Power Actions": "显示电源操作"
},
"Show Power Off": {
"Show Power Off": ""
"Show Power Off": "显示关机"
},
"Show Reboot": {
"Show Reboot": ""
"Show Reboot": "显示重启"
},
"Show Restart DMS": {
"Show Restart DMS": ""
"Show Restart DMS": "显示重启DMS"
},
"Show Suspend": {
"Show Suspend": ""
"Show Suspend": "显示挂起"
},
"Show Workspace Apps": {
"Show Workspace Apps": "显示工作区内应用"
@@ -1898,6 +1934,9 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "此操作会清空剪贴板历史,且无法恢复。"
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "时间与天气"
},
@@ -2030,6 +2069,18 @@
"VRR: ": {
"VRR: ": "可变刷新率: "
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。"
},

View File

@@ -206,6 +206,9 @@
"Available": {
"Available": "可用"
},
"Available Layouts": {
"Available Layouts": ""
},
"Available Plugins": {
"Available Plugins": "可用的插件"
},
@@ -288,10 +291,10 @@
"CPU usage indicator": "CPU 使用率指示器"
},
"CUPS Insecure Filter Warning": {
"CUPS Insecure Filter Warning": ""
"CUPS Insecure Filter Warning": "CUPS 不安全過濾器警告"
},
"CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": ""
"CUPS Missing Filter Warning": "CUPS 缺少過濾器警告"
},
"Cancel": {
"Cancel": "取消"
@@ -302,8 +305,11 @@
"Center Section": {
"Center Section": "中間區塊"
},
"Center Tiling": {
"Center Tiling": ""
},
"Changes:": {
"Changes:": ""
"Changes:": "變更:"
},
"Check for system updates": {
"Check for system updates": "檢查系統更新"
@@ -402,7 +408,7 @@
"Confirm": "確認"
},
"Confirm Display Changes": {
"Confirm Display Changes": ""
"Confirm Display Changes": "確認顯示變更"
},
"Confirm passkey for ": {
"Confirm passkey for ": "確認密碼 "
@@ -420,7 +426,7 @@
"Connected Displays": "已連接的螢幕"
},
"Connecting to Device": {
"Connecting to Device": ""
"Connecting to Device": "正在連接裝置"
},
"Contrast": {
"Contrast": "對比"
@@ -456,10 +462,10 @@
"Corner Radius (0 = square corners)": "圓角半徑 (0 = 方角)"
},
"Corner Radius Override": {
"Corner Radius Override": ""
"Corner Radius Override": "圓角半徑覆寫"
},
"Cover Open": {
"Cover Open": ""
"Cover Open": "上蓋開啟"
},
"Create Dir": {
"Create Dir": "新建資料夾"
@@ -498,7 +504,7 @@
"Customizable empty space": "可自訂空白空間"
},
"Customize which actions appear in the power menu": {
"Customize which actions appear in the power menu": ""
"Customize which actions appear in the power menu": "自訂電源選單中顯示的動作"
},
"DEMO MODE - Click anywhere to exit": {
"DEMO MODE - Click anywhere to exit": "演示模式 - 點擊任意處關閉"
@@ -512,6 +518,9 @@
"DMS_SOCKET not available": {
"DMS_SOCKET not available": "DMS_SOCKET 不可用"
},
"DWL service not available": {
"DWL service not available": ""
},
"Daily at:": {
"Daily at:": "每日:"
},
@@ -545,11 +554,14 @@
"Day Temperature": {
"Day Temperature": "日間色溫"
},
"Deck": {
"Deck": ""
},
"Default": {
"Default": "預設"
},
"Default selected action": {
"Default selected action": ""
"Default selected action": "預設選定的動作"
},
"Defaults": {
"Defaults": "預設"
@@ -576,7 +588,7 @@
"Disable Autoconnect": "關閉自動連線"
},
"Disabled": {
"Disabled": ""
"Disabled": "已停用"
},
"Disconnect": {
"Disconnect": "斷開連線"
@@ -599,6 +611,9 @@
"Display all priorities over fullscreen apps": {
"Display all priorities over fullscreen apps": "顯示全螢幕應用程式上的所有優先級"
},
"Display and switch DWL layouts": {
"Display and switch DWL layouts": ""
},
"Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "在工作區標籤中顯示應用程式圖標"
},
@@ -606,7 +621,7 @@
"Display currently focused application title": "顯示目前焦點應用程式的標題"
},
"Display settings for ": {
"Display settings for ": ""
"Display settings for ": "顯示設定適用於"
},
"Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "在 OSD 彈出視窗中預設顯示音量和亮度百分比值"
@@ -639,7 +654,7 @@
"Donate on Ko-fi": "在 Ko-fi 上捐款"
},
"Door Open": {
"Door Open": ""
"Door Open": "門開啟"
},
"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 將其完全移除。"
@@ -684,7 +699,7 @@
"Enable loginctl lock integration": "啟用 loginctl 鎖定整合"
},
"Enabled": {
"Enabled": ""
"Enabled": "已啟用"
},
"End": {
"End": "結束"
@@ -720,7 +735,7 @@
"Enter password for ": "輸入密碼 "
},
"Error": {
"Error": ""
"Error": "錯誤"
},
"Exclusive Zone Offset": {
"Exclusive Zone Offset": "獨佔區域偏移"
@@ -735,10 +750,10 @@
"Failed to activate configuration": "無法啟動配置"
},
"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 cancel selected job": "取消選定工作失敗"
},
"Failed to connect VPN": {
"Failed to connect VPN": "VPN 連線失敗"
@@ -759,13 +774,13 @@
"Failed to enable WiFi": "無法啟用 WiFi"
},
"Failed to pause printer": {
"Failed to pause printer": ""
"Failed to pause printer": "無法暫停印表機"
},
"Failed to remove device": {
"Failed to remove device": "無法移除裝置"
},
"Failed to resume printer": {
"Failed to resume printer": ""
"Failed to resume printer": "印表機恢復失敗"
},
"Failed to set profile image": {
"Failed to set profile image": "無法設定個人資料圖片"
@@ -855,7 +870,7 @@
"Good": "好"
},
"Goth Corner Radius": {
"Goth Corner Radius": ""
"Goth Corner Radius": "圓角半徑"
},
"Goth Corners": {
"Goth Corners": "圓角介面融合"
@@ -863,6 +878,9 @@
"Graphics": {
"Graphics": "圖形"
},
"Grid": {
"Grid": ""
},
"Group by App": {
"Group by App": "App 分組"
},
@@ -870,7 +888,7 @@
"Group multiple windows of the same app together with a window count indicator": "將同一應用程式的多個視窗匯集在一起,並附帶視窗數量指示器"
},
"HSV": {
"HSV": ""
"HSV": "HSV"
},
"Health": {
"Health": "健康狀態"
@@ -879,7 +897,7 @@
"Height to Edge Gap (Exclusive Zone)": "邊緣間隙高度 (獨佔區域)"
},
"Hex": {
"Hex": ""
"Hex": "Hex"
},
"Hibernate": {
"Hibernate": "休眠"
@@ -912,7 +930,7 @@
"Icon Theme": "圖示主題"
},
"Idle": {
"Idle": ""
"Idle": "閒置"
},
"Idle Inhibitor": {
"Idle Inhibitor": "空閒抑制器"
@@ -939,7 +957,7 @@
"Individual Batteries": "獨立電池"
},
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
"Inhibit idle timeout when audio or video is playing": "當音訊或視訊播放時禁止閒置逾時"
},
"Input Devices": {
"Input Devices": "輸入設備"
@@ -948,7 +966,7 @@
"Install plugins from the DMS plugin registry": "從 DMS 插件註冊表安裝插件"
},
"Interlock Open": {
"Interlock Open": ""
"Interlock Open": "聯鎖開啟"
},
"Internet": {
"Internet": "網際網路"
@@ -960,13 +978,13 @@
"Invert on mode change": "模式改變時反轉"
},
"Jobs": {
"Jobs": ""
"Jobs": "工作"
},
"Jobs: ": {
"Jobs: ": ""
"Jobs: ": "工作: "
},
"Keep Changes": {
"Keep Changes": ""
"Keep Changes": "保留變更"
},
"Keyboard Layout Name": {
"Keyboard Layout Name": "鍵盤布局名稱"
@@ -1007,6 +1025,9 @@
"Launcher Button Logo": {
"Launcher Button Logo": "啟動器按鈕 Logo"
},
"Layout": {
"Layout": ""
},
"Left": {
"Left": "左"
},
@@ -1029,7 +1050,7 @@
"Location Search": "位置搜尋"
},
"Lock": {
"Lock": ""
"Lock": "鎖定"
},
"Lock Screen": {
"Lock Screen": "鎖定螢幕"
@@ -1065,19 +1086,19 @@
"Manual Show/Hide": "手動顯示/隱藏"
},
"Margin": {
"Margin": ""
"Margin": "邊距"
},
"Marker Supply Empty": {
"Marker Supply Empty": ""
"Marker Supply Empty": "標記耗材用盡"
},
"Marker Supply Low": {
"Marker Supply Low": ""
"Marker Supply Low": "麥克筆存量低"
},
"Marker Waste Almost Full": {
"Marker Waste Almost Full": ""
"Marker Waste Almost Full": "標記廢料即將滿載"
},
"Marker Waste Full": {
"Marker Waste Full": ""
"Marker Waste Full": "標記廢料已滿"
},
"Material Colors": {
"Material Colors": "手動調整顏色"
@@ -1101,16 +1122,16 @@
"Media Controls": "媒體控制台"
},
"Media Empty": {
"Media Empty": ""
"Media Empty": "媒體空白"
},
"Media Jam": {
"Media Jam": ""
"Media Jam": "卡紙"
},
"Media Low": {
"Media Low": ""
"Media Low": "媒體不足"
},
"Media Needed": {
"Media Needed": ""
"Media Needed": "需要媒體"
},
"Media Player Settings": {
"Media Player Settings": "媒體播放設定"
@@ -1137,7 +1158,7 @@
"Mode:": "模式:"
},
"Mode: ": {
"Mode: ": ""
"Mode: ": "模式:"
},
"Monitor Selection:": {
"Monitor Selection:": "螢幕選擇:"
@@ -1145,6 +1166,9 @@
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "系統介面顏色依據哪一個螢幕上的桌布來決定"
},
"Monocle": {
"Monocle": ""
},
"Monospace Font": {
"Monospace Font": "等寬字體"
},
@@ -1152,7 +1176,7 @@
"Mount": "掛載"
},
"Moving to Paused": {
"Moving to Paused": ""
"Moving to Paused": "正在移至暫停"
},
"Muted palette with subdued, calming tones.": {
"Muted palette with subdued, calming tones.": "柔和的調色板,柔和、平靜的色調。"
@@ -1239,10 +1263,10 @@
"No plugins found.": "找不到插件。"
},
"No printer found": {
"No printer found": ""
"No printer found": "未找到印表機"
},
"None": {
"None": ""
"None": ""
},
"Normal Priority": {
"Normal Priority": "普通優先級"
@@ -1290,7 +1314,7 @@
"Office": "辦公"
},
"Offline Report": {
"Offline Report": ""
"Offline Report": "離線報告"
},
"On-Screen Displays": {
"On-Screen Displays": "螢幕顯示"
@@ -1299,7 +1323,7 @@
"Only adjust gamma based on time or location rules.": "僅根據時間或位置規則調整 gamma。"
},
"Only visible if hibernate is supported by your system": {
"Only visible if hibernate is supported by your system": ""
"Only visible if hibernate is supported by your system": "僅當您的系統支援休眠時可見"
},
"Opacity": {
"Opacity": "不透明度"
@@ -1314,16 +1338,16 @@
"Open search bar to find text": "打開搜尋欄尋找文本"
},
"Other": {
"Other": ""
"Other": "其他"
},
"Output Area Almost Full": {
"Output Area Almost Full": ""
"Output Area Almost Full": "輸出區域即將滿載"
},
"Output Area Full": {
"Output Area Full": ""
"Output Area Full": "輸出區域已滿"
},
"Output Tray Missing": {
"Output Tray Missing": ""
"Output Tray Missing": "輸出托盤遺失"
},
"Overview": {
"Overview": "概覽"
@@ -1350,10 +1374,10 @@
"Password": "密碼"
},
"Pause": {
"Pause": ""
"Pause": "暫停"
},
"Paused": {
"Paused": ""
"Paused": "暫停"
},
"Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "以主題區分桌布"
@@ -1422,7 +1446,7 @@
"Position": "位置"
},
"Position: ": {
"Position: ": ""
"Position: ": "位置:"
},
"Power & Security": {
"Power & Security": "電源與安全"
@@ -1431,7 +1455,7 @@
"Power Action Confirmation": "電源操作確認"
},
"Power Menu Customization": {
"Power Menu Customization": ""
"Power Menu Customization": "電源選單自訂"
},
"Power Off": {
"Power Off": "關機"
@@ -1446,7 +1470,7 @@
"Pressure": "氣壓"
},
"Prevent idle for media": {
"Prevent idle for media": ""
"Prevent idle for media": "防止媒體閒置"
},
"Prevent screen timeout": {
"Prevent screen timeout": "防止螢幕超時"
@@ -1455,13 +1479,13 @@
"Primary": "主要"
},
"Print Server not available": {
"Print Server not available": ""
"Print Server not available": "列印伺服器無法使用"
},
"Printers": {
"Printers": ""
"Printers": "印表機"
},
"Printers: ": {
"Printers: ": ""
"Printers: ": "印表機:"
},
"Privacy Indicator": {
"Privacy Indicator": "隱私指示器"
@@ -1470,7 +1494,7 @@
"Process": "程序"
},
"Processing": {
"Processing": ""
"Processing": "正在處理"
},
"Profile Image Error": {
"Profile Image Error": "個人圖片錯誤"
@@ -1491,13 +1515,13 @@
"Quick note-taking slideout panel": "快速筆記滑出面板"
},
"RGB": {
"RGB": ""
"RGB": "RGB"
},
"Rain Chance": {
"Rain Chance": "降雨機率"
},
"Reason": {
"Reason": ""
"Reason": "原因"
},
"Reboot": {
"Reboot": "重新啟動"
@@ -1518,11 +1542,14 @@
"Remove": "刪除"
},
"Report": {
"Report": ""
"Report": "報告"
},
"Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "請求確認關機、重新啟動、暫停、休眠和登出操作"
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "重設"
},
@@ -1530,22 +1557,22 @@
"Resources": "資源"
},
"Restart": {
"Restart": ""
"Restart": "重新啟動"
},
"Restart DMS": {
"Restart DMS": ""
"Restart DMS": "重新啟動 DMS"
},
"Restart the DankMaterialShell": {
"Restart the DankMaterialShell": ""
"Restart the DankMaterialShell": "重新啟動 DankMaterialShell"
},
"Resume": {
"Resume": ""
"Resume": "恢復"
},
"Revert": {
"Revert": ""
"Revert": "還原"
},
"Reverting in:": {
"Reverting in:": ""
"Reverting in:": "還原中:"
},
"Right": {
"Right": "右方"
@@ -1553,6 +1580,12 @@
"Right Section": {
"Right Section": "右方區塊"
},
"Right Tiling": {
"Right Tiling": ""
},
"Right-click bar widget to cycle": {
"Right-click bar widget to cycle": ""
},
"Run User Templates": {
"Run User Templates": "執行使用者模板"
},
@@ -1586,6 +1619,9 @@
"Science": {
"Science": "科學"
},
"Scrolling": {
"Scrolling": ""
},
"Search file contents": {
"Search file contents": "搜尋檔案內容"
},
@@ -1668,31 +1704,31 @@
"Show Dock": "顯示 Dock"
},
"Show Hibernate": {
"Show Hibernate": ""
"Show Hibernate": "顯示休眠"
},
"Show Line Numbers": {
"Show Line Numbers": "顯示行數"
},
"Show Lock": {
"Show Lock": ""
"Show Lock": "顯示鎖定"
},
"Show Log Out": {
"Show Log Out": ""
"Show Log Out": "顯示登出"
},
"Show Power Actions": {
"Show Power Actions": "顯示電源選項"
},
"Show Power Off": {
"Show Power Off": ""
"Show Power Off": "顯示關機"
},
"Show Reboot": {
"Show Reboot": ""
"Show Reboot": "顯示重新啟動"
},
"Show Restart DMS": {
"Show Restart DMS": ""
"Show Restart DMS": "顯示重新啟動 DMS"
},
"Show Suspend": {
"Show Suspend": ""
"Show Suspend": "顯示暫停"
},
"Show Workspace Apps": {
"Show Workspace Apps": "顯示工作區應用程式"
@@ -1746,7 +1782,7 @@
"Shows when microphone, camera, or screen sharing is active": "顯示麥克風、攝影機或螢幕共用處於活動狀態"
},
"Shutdown": {
"Shutdown": ""
"Shutdown": "關機"
},
"Size": {
"Size": "大小"
@@ -1767,7 +1803,7 @@
"Spacing": "間距"
},
"Spool Area Full": {
"Spool Area Full": ""
"Spool Area Full": "緩衝區域已滿"
},
"Square Corners": {
"Square Corners": "方角"
@@ -1782,13 +1818,13 @@
"Status": "狀態"
},
"Stopped": {
"Stopped": ""
"Stopped": "已停止"
},
"Stopped Partly": {
"Stopped Partly": ""
"Stopped Partly": "部分停止"
},
"Stopping": {
"Stopping": ""
"Stopping": "正在停止"
},
"Storage & Disks": {
"Storage & Disks": "存儲與硬碟"
@@ -1878,7 +1914,7 @@
"The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).": "以下設定將修改您的 GTK 和 Qt 設定。如果您希望保留目前配置,請備份 (qt5ct.conf|qt6ct.conf 和 ~/.config/gtk-3.0|gtk-4.0)。"
},
"The job queue of this printer is empty": {
"The job queue of this printer is empty": ""
"The job queue of this printer is empty": "此印表機的工作佇列為空"
},
"Theme & Colors": {
"Theme & Colors": "主題和顏色"
@@ -1898,11 +1934,14 @@
"This will permanently delete all clipboard history.": {
"This will permanently delete all clipboard history.": "這將永久刪除所有剪貼簿歷史記錄。"
},
"Tiling": {
"Tiling": ""
},
"Time & Weather": {
"Time & Weather": "時間與天氣"
},
"Timed Out": {
"Timed Out": ""
"Timed Out": "逾時"
},
"To Full": {
"To Full": "全部"
@@ -1923,10 +1962,10 @@
"Tomorrow": "明天"
},
"Toner Empty": {
"Toner Empty": ""
"Toner Empty": "碳粉空"
},
"Toner Low": {
"Toner Low": ""
"Toner Low": "碳粉不足"
},
"Top": {
"Top": "上方"
@@ -2028,7 +2067,19 @@
"VPN status and quick connect": "VPN 狀態和快速連線"
},
"VRR: ": {
"VRR: ": ""
"VRR: ": "VRR"
},
"Vertical Deck": {
"Vertical Deck": ""
},
"Vertical Grid": {
"Vertical Grid": ""
},
"Vertical Scrolling": {
"Vertical Scrolling": ""
},
"Vertical Tiling": {
"Vertical Tiling": ""
},
"Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。"
@@ -2058,7 +2109,7 @@
"Wallpapers": "桌布"
},
"Warning": {
"Warning": ""
"Warning": "警告"
},
"Wave Progress Bars": {
"Wave Progress Bars": "波浪進度條"

View File

@@ -482,6 +482,13 @@
"reference": "",
"comment": ""
},
{
"term": "Available Layouts",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Available Plugins",
"translation": "",
@@ -706,6 +713,13 @@
"reference": "",
"comment": ""
},
{
"term": "Center Tiling",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Changes:",
"translation": "",
@@ -1196,6 +1210,13 @@
"reference": "",
"comment": ""
},
{
"term": "DWL service not available",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Daily at:",
"translation": "",
@@ -1273,6 +1294,13 @@
"reference": "",
"comment": ""
},
{
"term": "Deck",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Default",
"translation": "",
@@ -1399,6 +1427,13 @@
"reference": "",
"comment": ""
},
{
"term": "Display and switch DWL layouts",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Display application icons in workspace indicators",
"translation": "",
@@ -2015,6 +2050,13 @@
"reference": "",
"comment": ""
},
{
"term": "Grid",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Group by App",
"translation": "",
@@ -2351,6 +2393,13 @@
"reference": "",
"comment": ""
},
{
"term": "Layout",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Left",
"translation": "",
@@ -2673,6 +2722,13 @@
"reference": "",
"comment": ""
},
{
"term": "Monocle",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Monospace Font",
"translation": "",
@@ -3555,6 +3611,13 @@
"reference": "",
"comment": ""
},
{
"term": "Requires DWL compositor",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Reset",
"translation": "",
@@ -3618,6 +3681,20 @@
"reference": "",
"comment": ""
},
{
"term": "Right Tiling",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Right-click bar widget to cycle",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Run User Templates",
"translation": "",
@@ -3695,6 +3772,13 @@
"reference": "",
"comment": ""
},
{
"term": "Scrolling",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Search file contents",
"translation": "",
@@ -4423,6 +4507,13 @@
"reference": "",
"comment": ""
},
{
"term": "Tiling",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Time & Weather",
"translation": "",
@@ -4731,6 +4822,34 @@
"reference": "",
"comment": ""
},
{
"term": "Vertical Deck",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Vertical Grid",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Vertical Scrolling",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Vertical Tiling",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Vibrant palette with playful saturation.",
"translation": "",