1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 07:52:50 -05:00

weather: imperial switch not just fahrenheit

fixes #699
This commit is contained in:
bbedward
2025-11-13 17:41:03 -05:00
parent a914e3557f
commit 508dc9db1e
12 changed files with 373 additions and 231 deletions

View File

@@ -16,7 +16,7 @@ Card {
Column { Column {
anchors.centerIn: parent anchors.centerIn: parent
spacing: Theme.spacingS spacing: Theme.spacingS
visible: !WeatherService.weather.available || WeatherService.weather.temp === 0 visible: !WeatherService.weather.available
DankIcon { DankIcon {
name: "cloud_off" name: "cloud_off"
@@ -46,7 +46,7 @@ Card {
anchors.leftMargin: Theme.spacingL anchors.leftMargin: Theme.spacingL
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
spacing: Theme.spacingL spacing: Theme.spacingL
visible: WeatherService.weather.available && WeatherService.weather.temp !== 0 visible: WeatherService.weather.available
DankIcon { DankIcon {
name: WeatherService.getWeatherIcon(WeatherService.weather.wCode) name: WeatherService.getWeatherIcon(WeatherService.weather.wCode)
@@ -61,11 +61,9 @@ Card {
StyledText { StyledText {
text: { text: {
const temp = SettingsData.useFahrenheit ? WeatherService.weather.tempF : WeatherService.weather.temp; const temp = SettingsData.useFahrenheit ? WeatherService.weather.tempF : WeatherService.weather.temp
if (temp === undefined || temp === null || temp === 0) { if (temp === undefined || temp === null) return "--°" + (SettingsData.useFahrenheit ? "F" : "C")
return "--°" + (SettingsData.useFahrenheit ? "F" : "C"); return temp + "°" + (SettingsData.useFahrenheit ? "F" : "C")
}
return temp + "°" + (SettingsData.useFahrenheit ? "F" : "C");
} }
font.pixelSize: Theme.fontSizeXLarge + 4 font.pixelSize: Theme.fontSizeXLarge + 4
color: Theme.surfaceText color: Theme.surfaceText

View File

@@ -14,7 +14,7 @@ Item {
Column { Column {
anchors.centerIn: parent anchors.centerIn: parent
spacing: Theme.spacingL spacing: Theme.spacingL
visible: !WeatherService.weather.available || WeatherService.weather.temp === 0 visible: !WeatherService.weather.available
DankIcon { DankIcon {
name: "cloud_off" name: "cloud_off"
@@ -34,7 +34,7 @@ Item {
Column { Column {
anchors.fill: parent anchors.fill: parent
spacing: Theme.spacingM spacing: Theme.spacingM
visible: WeatherService.weather.available && WeatherService.weather.temp !== 0 visible: WeatherService.weather.available
Item { Item {
width: parent.width width: parent.width
@@ -358,7 +358,16 @@ Item {
} }
StyledText { StyledText {
text: WeatherService.weather.wind || "--" text: {
if (!WeatherService.weather.wind) return "--"
const windKmh = parseFloat(WeatherService.weather.wind)
if (isNaN(windKmh)) return WeatherService.weather.wind
if (SettingsData.useFahrenheit) {
const windMph = Math.round(windKmh * 0.621371)
return windMph + " mph"
}
return WeatherService.weather.wind
}
font.pixelSize: Theme.fontSizeSmall + 1 font.pixelSize: Theme.fontSizeSmall + 1
color: Theme.surfaceText color: Theme.surfaceText
font.weight: Font.Medium font.weight: Font.Medium
@@ -405,7 +414,15 @@ Item {
} }
StyledText { StyledText {
text: WeatherService.weather.pressure ? WeatherService.weather.pressure + " hPa" : "--" text: {
if (!WeatherService.weather.pressure) return "--"
const pressureHpa = WeatherService.weather.pressure
if (SettingsData.useFahrenheit) {
const pressureInHg = (pressureHpa * 0.02953).toFixed(2)
return pressureInHg + " inHg"
}
return pressureHpa + " hPa"
}
font.pixelSize: Theme.fontSizeSmall + 1 font.pixelSize: Theme.fontSizeSmall + 1
color: Theme.surfaceText color: Theme.surfaceText
font.weight: Font.Medium font.weight: Font.Medium

View File

@@ -535,14 +535,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
StyledText { StyledText {
text: I18n.tr("Use Fahrenheit") text: I18n.tr("Use Imperial Units")
font.pixelSize: Theme.fontSizeLarge font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium font.weight: Font.Medium
color: Theme.surfaceText color: Theme.surfaceText
} }
StyledText { StyledText {
text: I18n.tr("Use Fahrenheit instead of Celsius for temperature") text: I18n.tr("Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)")
font.pixelSize: Theme.fontSizeSmall font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
@@ -841,7 +841,7 @@ Item {
Column { Column {
width: parent.width width: parent.width
spacing: Theme.spacingL spacing: Theme.spacingL
visible: !WeatherService.weather.available || WeatherService.weather.temp === 0 visible: !WeatherService.weather.available
DankIcon { DankIcon {
name: "cloud_off" name: "cloud_off"
@@ -861,7 +861,7 @@ Item {
Column { Column {
width: parent.width width: parent.width
spacing: Theme.spacingM spacing: Theme.spacingM
visible: WeatherService.weather.available && WeatherService.weather.temp !== 0 visible: WeatherService.weather.available
Item { Item {
width: parent.width width: parent.width
@@ -1185,7 +1185,16 @@ Item {
} }
StyledText { StyledText {
text: WeatherService.weather.wind || "--" text: {
if (!WeatherService.weather.wind) return "--"
const windKmh = parseFloat(WeatherService.weather.wind)
if (isNaN(windKmh)) return WeatherService.weather.wind
if (SettingsData.useFahrenheit) {
const windMph = Math.round(windKmh * 0.621371)
return windMph + " mph"
}
return WeatherService.weather.wind
}
font.pixelSize: Theme.fontSizeSmall + 1 font.pixelSize: Theme.fontSizeSmall + 1
color: Theme.surfaceText color: Theme.surfaceText
font.weight: Font.Medium font.weight: Font.Medium
@@ -1232,7 +1241,15 @@ Item {
} }
StyledText { StyledText {
text: WeatherService.weather.pressure ? WeatherService.weather.pressure + " hPa" : "--" text: {
if (!WeatherService.weather.pressure) return "--"
const pressureHpa = WeatherService.weather.pressure
if (SettingsData.useFahrenheit) {
const pressureInHg = (pressureHpa * 0.02953).toFixed(2)
return pressureInHg + " inHg"
}
return pressureHpa + " hPa"
}
font.pixelSize: Theme.fontSizeSmall + 1 font.pixelSize: Theme.fontSizeSmall + 1
color: Theme.surfaceText color: Theme.surfaceText
font.weight: Font.Medium font.weight: Font.Medium

View File

@@ -50,7 +50,7 @@
{ {
"term": "7-Day Forecast", "term": "7-Day Forecast",
"context": "7-Day Forecast", "context": "7-Day Forecast",
"reference": "Modules/DankDash/WeatherTab.qml:525", "reference": "Modules/DankDash/WeatherTab.qml:542",
"comment": "" "comment": ""
}, },
{ {
@@ -68,19 +68,19 @@
{ {
"term": "Access clipboard history", "term": "Access clipboard history",
"context": "Access clipboard history", "context": "Access clipboard history",
"reference": "Modules/Settings/DankBarTab.qml:75", "reference": "Modules/Settings/DankBarTab.qml:78",
"comment": "" "comment": ""
}, },
{ {
"term": "Access to notifications and do not disturb", "term": "Access to notifications and do not disturb",
"context": "Access to notifications and do not disturb", "context": "Access to notifications and do not disturb",
"reference": "Modules/Settings/DankBarTab.qml:134", "reference": "Modules/Settings/DankBarTab.qml:137",
"comment": "" "comment": ""
}, },
{ {
"term": "Access to system controls and settings", "term": "Access to system controls and settings",
"context": "Access to system controls and settings", "context": "Access to system controls and settings",
"reference": "Modules/Settings/DankBarTab.qml:128", "reference": "Modules/Settings/DankBarTab.qml:131",
"comment": "" "comment": ""
}, },
{ {
@@ -164,7 +164,7 @@
{ {
"term": "App Launcher", "term": "App Launcher",
"context": "App Launcher", "context": "App Launcher",
"reference": "Modules/Settings/DankBarTab.qml:32", "reference": "Modules/Settings/DankBarTab.qml:35",
"comment": "" "comment": ""
}, },
{ {
@@ -176,19 +176,19 @@
{ {
"term": "Applications", "term": "Applications",
"context": "Applications", "context": "Applications",
"reference": "Modules/AppDrawer/AppDrawerPopout.qml:190", "reference": "Modules/AppDrawer/AppDrawerPopout.qml:190, Modules/Settings/ThemeColorsTab.qml:1204",
"comment": "" "comment": ""
}, },
{ {
"term": "Apply GTK Colors", "term": "Apply GTK Colors",
"context": "Apply GTK Colors", "context": "Apply GTK Colors",
"reference": "Modules/Settings/ThemeColorsTab.qml:1379", "reference": "Modules/Settings/ThemeColorsTab.qml:1380",
"comment": "" "comment": ""
}, },
{ {
"term": "Apply Qt Colors", "term": "Apply Qt Colors",
"context": "Apply Qt Colors", "context": "Apply Qt Colors",
"reference": "Modules/Settings/ThemeColorsTab.qml:1415", "reference": "Modules/Settings/ThemeColorsTab.qml:1416",
"comment": "" "comment": ""
}, },
{ {
@@ -314,13 +314,13 @@
{ {
"term": "Auto Popup Gaps", "term": "Auto Popup Gaps",
"context": "Auto Popup Gaps", "context": "Auto Popup Gaps",
"reference": "Modules/Settings/DankBarTab.qml:1225", "reference": "Modules/Settings/DankBarTab.qml:1228",
"comment": "" "comment": ""
}, },
{ {
"term": "Auto-hide", "term": "Auto-hide",
"context": "Auto-hide", "context": "Auto-hide",
"reference": "Modules/Settings/DankBarTab.qml:830", "reference": "Modules/Settings/DankBarTab.qml:833",
"comment": "" "comment": ""
}, },
{ {
@@ -362,7 +362,7 @@
{ {
"term": "Automatically calculate popup distance from bar edge.", "term": "Automatically calculate popup distance from bar edge.",
"context": "Automatically calculate popup distance from bar edge.", "context": "Automatically calculate popup distance from bar edge.",
"reference": "Modules/Settings/DankBarTab.qml:1226", "reference": "Modules/Settings/DankBarTab.qml:1229",
"comment": "" "comment": ""
}, },
{ {
@@ -392,7 +392,7 @@
{ {
"term": "Automatically hide the top bar to expand screen real estate", "term": "Automatically hide the top bar to expand screen real estate",
"context": "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:837", "reference": "Modules/Settings/DankBarTab.qml:840",
"comment": "" "comment": ""
}, },
{ {
@@ -434,7 +434,7 @@
{ {
"term": "Back", "term": "Back",
"context": "Back", "context": "Back",
"reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:856", "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1012",
"comment": "" "comment": ""
}, },
{ {
@@ -446,13 +446,13 @@
{ {
"term": "Battery", "term": "Battery",
"context": "Battery", "context": "Battery",
"reference": "Modules/Settings/DankBarTab.qml:139", "reference": "Modules/Settings/DankBarTab.qml:142",
"comment": "" "comment": ""
}, },
{ {
"term": "Battery level and power management", "term": "Battery level and power management",
"context": "Battery level and power management", "context": "Battery level and power management",
"reference": "Modules/Settings/DankBarTab.qml:140", "reference": "Modules/Settings/DankBarTab.qml:143",
"comment": "" "comment": ""
}, },
{ {
@@ -494,37 +494,37 @@
{ {
"term": "Border", "term": "Border",
"context": "Border", "context": "Border",
"reference": "Modules/Settings/DankBarTab.qml:1446", "reference": "Modules/Settings/DankBarTab.qml:1449",
"comment": "" "comment": ""
}, },
{ {
"term": "Border Color", "term": "Border Color",
"context": "Border Color", "context": "Border Color",
"reference": "Modules/Settings/DankBarTab.qml:1476", "reference": "Modules/Settings/DankBarTab.qml:1479",
"comment": "" "comment": ""
}, },
{ {
"term": "Border Opacity", "term": "Border Opacity",
"context": "Border Opacity", "context": "Border Opacity",
"reference": "Modules/Settings/DankBarTab.qml:1528, Modules/Settings/DankBarTab.qml:1542", "reference": "Modules/Settings/DankBarTab.qml:1531, Modules/Settings/DankBarTab.qml:1545",
"comment": "" "comment": ""
}, },
{ {
"term": "Border Thickness", "term": "Border Thickness",
"context": "Border Thickness", "context": "Border Thickness",
"reference": "Modules/Settings/DankBarTab.qml:1599, Modules/Settings/DankBarTab.qml:1613", "reference": "Modules/Settings/DankBarTab.qml:1602, Modules/Settings/DankBarTab.qml:1616",
"comment": "" "comment": ""
}, },
{ {
"term": "Bottom", "term": "Bottom",
"context": "Bottom", "context": "Bottom",
"reference": "Modules/Settings/DankBarTab.qml:770", "reference": "Modules/Settings/DankBarTab.qml:773",
"comment": "" "comment": ""
}, },
{ {
"term": "Bottom Section", "term": "Bottom Section",
"context": "Bottom Section", "context": "Bottom Section",
"reference": "Modules/Settings/DankBarTab.qml:2059", "reference": "Modules/Settings/DankBarTab.qml:2062",
"comment": "" "comment": ""
}, },
{ {
@@ -560,25 +560,25 @@
{ {
"term": "CPU Temperature", "term": "CPU Temperature",
"context": "CPU Temperature", "context": "CPU Temperature",
"reference": "Modules/Settings/DankBarTab.qml:101", "reference": "Modules/Settings/DankBarTab.qml:104",
"comment": "" "comment": ""
}, },
{ {
"term": "CPU Usage", "term": "CPU Usage",
"context": "CPU Usage", "context": "CPU Usage",
"reference": "Modules/Settings/DankBarTab.qml:80", "reference": "Modules/Settings/DankBarTab.qml:83",
"comment": "" "comment": ""
}, },
{ {
"term": "CPU temperature display", "term": "CPU temperature display",
"context": "CPU temperature display", "context": "CPU temperature display",
"reference": "Modules/Settings/DankBarTab.qml:102", "reference": "Modules/Settings/DankBarTab.qml:105",
"comment": "" "comment": ""
}, },
{ {
"term": "CPU usage indicator", "term": "CPU usage indicator",
"context": "CPU usage indicator", "context": "CPU usage indicator",
"reference": "Modules/Settings/DankBarTab.qml:81", "reference": "Modules/Settings/DankBarTab.qml:84",
"comment": "" "comment": ""
}, },
{ {
@@ -608,7 +608,7 @@
{ {
"term": "Center Section", "term": "Center Section",
"context": "Center Section", "context": "Center Section",
"reference": "Modules/Settings/DankBarTab.qml:1976", "reference": "Modules/Settings/DankBarTab.qml:1979",
"comment": "" "comment": ""
}, },
{ {
@@ -626,7 +626,7 @@
{ {
"term": "Check for system updates", "term": "Check for system updates",
"context": "Check for system updates", "context": "Check for system updates",
"reference": "Modules/Settings/DankBarTab.qml:195", "reference": "Modules/Settings/DankBarTab.qml:198",
"comment": "" "comment": ""
}, },
{ {
@@ -644,7 +644,7 @@
{ {
"term": "Choose the border accent color", "term": "Choose the border accent color",
"context": "Choose the border accent color", "context": "Choose the border accent color",
"reference": "Modules/Settings/DankBarTab.qml:1483", "reference": "Modules/Settings/DankBarTab.qml:1486",
"comment": "" "comment": ""
}, },
{ {
@@ -686,13 +686,13 @@
{ {
"term": "Clipboard Manager", "term": "Clipboard Manager",
"context": "Clipboard Manager", "context": "Clipboard Manager",
"reference": "Modules/Settings/DankBarTab.qml:74", "reference": "Modules/Settings/DankBarTab.qml:77",
"comment": "" "comment": ""
}, },
{ {
"term": "Clock", "term": "Clock",
"context": "Clock", "context": "Clock",
"reference": "Modules/Settings/DankBarTab.qml:56", "reference": "Modules/Settings/DankBarTab.qml:59",
"comment": "" "comment": ""
}, },
{ {
@@ -716,7 +716,7 @@
{ {
"term": "Color Picker", "term": "Color Picker",
"context": "Color Picker", "context": "Color Picker",
"reference": "Modules/Settings/DankBarTab.qml:188", "reference": "Modules/Settings/DankBarTab.qml:191",
"comment": "" "comment": ""
}, },
{ {
@@ -866,13 +866,13 @@
{ {
"term": "Control Center", "term": "Control Center",
"context": "Control Center", "context": "Control Center",
"reference": "Modules/Settings/DankBarTab.qml:127", "reference": "Modules/Settings/DankBarTab.qml:130",
"comment": "" "comment": ""
}, },
{ {
"term": "Control currently playing media", "term": "Control currently playing media",
"context": "Control currently playing media", "context": "Control currently playing media",
"reference": "Modules/Settings/DankBarTab.qml:69", "reference": "Modules/Settings/DankBarTab.qml:72",
"comment": "" "comment": ""
}, },
{ {
@@ -926,7 +926,7 @@
{ {
"term": "Corner Radius Override", "term": "Corner Radius Override",
"context": "Corner Radius Override", "context": "Corner Radius Override",
"reference": "Modules/Settings/DankBarTab.qml:1358", "reference": "Modules/Settings/DankBarTab.qml:1361",
"comment": "" "comment": ""
}, },
{ {
@@ -962,13 +962,13 @@
{ {
"term": "Current time and date display", "term": "Current time and date display",
"context": "Current time and date display", "context": "Current time and date display",
"reference": "Modules/Settings/DankBarTab.qml:57", "reference": "Modules/Settings/DankBarTab.qml:60",
"comment": "" "comment": ""
}, },
{ {
"term": "Current weather conditions and temperature", "term": "Current weather conditions and temperature",
"context": "Current weather conditions and temperature", "context": "Current weather conditions and temperature",
"reference": "Modules/Settings/DankBarTab.qml:63", "reference": "Modules/Settings/DankBarTab.qml:66",
"comment": "" "comment": ""
}, },
{ {
@@ -1004,7 +1004,7 @@
{ {
"term": "Customizable empty space", "term": "Customizable empty space",
"context": "Customizable empty space", "context": "Customizable empty space",
"reference": "Modules/Settings/DankBarTab.qml:158", "reference": "Modules/Settings/DankBarTab.qml:161",
"comment": "" "comment": ""
}, },
{ {
@@ -1040,7 +1040,7 @@
{ {
"term": "DWL service not available", "term": "DWL service not available",
"context": "DWL service not available", "context": "DWL service not available",
"reference": "Modules/Settings/DankBarTab.qml:29", "reference": "Modules/Settings/DankBarTab.qml:32",
"comment": "" "comment": ""
}, },
{ {
@@ -1076,7 +1076,7 @@
{ {
"term": "DankBar Font Scale", "term": "DankBar Font Scale",
"context": "DankBar Font Scale", "context": "DankBar Font Scale",
"reference": "Modules/Settings/DankBarTab.qml:1685", "reference": "Modules/Settings/DankBarTab.qml:1688",
"comment": "" "comment": ""
}, },
{ {
@@ -1202,7 +1202,7 @@
{ {
"term": "Disk Usage", "term": "Disk Usage",
"context": "Disk Usage", "context": "Disk Usage",
"reference": "Modules/Settings/DankBarTab.qml:94", "reference": "Modules/Settings/DankBarTab.qml:97",
"comment": "" "comment": ""
}, },
{ {
@@ -1226,7 +1226,7 @@
{ {
"term": "Display and switch DWL layouts", "term": "Display and switch DWL layouts",
"context": "Display and switch DWL layouts", "context": "Display and switch DWL layouts",
"reference": "Modules/Settings/DankBarTab.qml:26", "reference": "Modules/Settings/DankBarTab.qml:29",
"comment": "" "comment": ""
}, },
{ {
@@ -1238,7 +1238,7 @@
{ {
"term": "Display currently focused application title", "term": "Display currently focused application title",
"context": "Display currently focused application title", "context": "Display currently focused application title",
"reference": "Modules/Settings/DankBarTab.qml:45", "reference": "Modules/Settings/DankBarTab.qml:48",
"comment": "" "comment": ""
}, },
{ {
@@ -1262,7 +1262,7 @@
{ {
"term": "Displays the active keyboard layout and allows switching", "term": "Displays the active keyboard layout and allows switching",
"context": "Displays the active keyboard layout and allows switching", "context": "Displays the active keyboard layout and allows switching",
"reference": "Modules/Settings/DankBarTab.qml:178", "reference": "Modules/Settings/DankBarTab.qml:181",
"comment": "" "comment": ""
}, },
{ {
@@ -1316,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.", "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.", "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:1867", "reference": "Modules/Settings/DankBarTab.qml:1870",
"comment": "" "comment": ""
}, },
{ {
@@ -1334,7 +1334,7 @@
{ {
"term": "Edge Spacing (0 = edge-to-edge)", "term": "Edge Spacing (0 = edge-to-edge)",
"context": "Edge Spacing (0 = edge-to-edge)", "context": "Edge Spacing (0 = edge-to-edge)",
"reference": "Modules/Settings/DankBarTab.qml:1012, Modules/Settings/DankBarTab.qml:1026", "reference": "Modules/Settings/DankBarTab.qml:1015, Modules/Settings/DankBarTab.qml:1029",
"comment": "" "comment": ""
}, },
{ {
@@ -1478,7 +1478,7 @@
{ {
"term": "Exclusive Zone Offset", "term": "Exclusive Zone Offset",
"context": "Exclusive Zone Offset", "context": "Exclusive Zone Offset",
"reference": "Modules/Settings/DankBarTab.qml:1084, Modules/Settings/DankBarTab.qml:1098", "reference": "Modules/Settings/DankBarTab.qml:1087, Modules/Settings/DankBarTab.qml:1101",
"comment": "" "comment": ""
}, },
{ {
@@ -1622,7 +1622,7 @@
{ {
"term": "Focused Window", "term": "Focused Window",
"context": "Focused Window", "context": "Focused Window",
"reference": "Modules/Settings/DankBarTab.qml:44", "reference": "Modules/Settings/DankBarTab.qml:47",
"comment": "" "comment": ""
}, },
{ {
@@ -1661,6 +1661,12 @@
"reference": "Modules/ProcessList/ProcessContextMenu.qml:207", "reference": "Modules/ProcessList/ProcessContextMenu.qml:207",
"comment": "" "comment": ""
}, },
{
"term": "Force terminal applications to always use dark color schemes",
"context": "Force terminal applications to always use dark color schemes",
"reference": "Modules/Settings/ThemeColorsTab.qml:1225",
"comment": ""
},
{ {
"term": "Forget Device", "term": "Forget Device",
"context": "Forget Device", "context": "Forget Device",
@@ -1700,13 +1706,13 @@
{ {
"term": "GPU Temperature", "term": "GPU Temperature",
"context": "GPU Temperature", "context": "GPU Temperature",
"reference": "Modules/Settings/DankBarTab.qml:108", "reference": "Modules/Settings/DankBarTab.qml:111",
"comment": "" "comment": ""
}, },
{ {
"term": "GPU temperature display", "term": "GPU temperature display",
"context": "GPU temperature display", "context": "GPU temperature display",
"reference": "Modules/Settings/DankBarTab.qml:109", "reference": "Modules/Settings/DankBarTab.qml:112",
"comment": "" "comment": ""
}, },
{ {
@@ -1736,19 +1742,19 @@
{ {
"term": "Good", "term": "Good",
"context": "Good", "context": "Good",
"reference": "Modules/DankDash/WeatherTab.qml:502, Modules/Settings/TimeWeatherTab.qml:1329", "reference": "Modules/DankDash/WeatherTab.qml:519, Modules/Settings/TimeWeatherTab.qml:1346",
"comment": "" "comment": ""
}, },
{ {
"term": "Goth Corner Radius", "term": "Goth Corner Radius",
"context": "Goth Corner Radius", "context": "Goth Corner Radius",
"reference": "Modules/Settings/DankBarTab.qml:1377, Modules/Settings/DankBarTab.qml:1391", "reference": "Modules/Settings/DankBarTab.qml:1380, Modules/Settings/DankBarTab.qml:1394",
"comment": "" "comment": ""
}, },
{ {
"term": "Goth Corners", "term": "Goth Corners",
"context": "Goth Corners", "context": "Goth Corners",
"reference": "Modules/Settings/DankBarTab.qml:1347", "reference": "Modules/Settings/DankBarTab.qml:1350",
"comment": "" "comment": ""
}, },
{ {
@@ -1856,7 +1862,7 @@
{ {
"term": "Icon Theme", "term": "Icon Theme",
"context": "Icon Theme", "context": "Icon Theme",
"reference": "Modules/Settings/ThemeColorsTab.qml:1297", "reference": "Modules/Settings/ThemeColorsTab.qml:1298",
"comment": "" "comment": ""
}, },
{ {
@@ -1868,7 +1874,7 @@
{ {
"term": "Idle Inhibitor", "term": "Idle Inhibitor",
"context": "Idle Inhibitor", "context": "Idle Inhibitor",
"reference": "Modules/Settings/DankBarTab.qml:151", "reference": "Modules/Settings/DankBarTab.qml:154",
"comment": "" "comment": ""
}, },
{ {
@@ -1976,7 +1982,7 @@
{ {
"term": "Keyboard Layout Name", "term": "Keyboard Layout Name",
"context": "Keyboard Layout Name", "context": "Keyboard Layout Name",
"reference": "Modules/Settings/DankBarTab.qml:177", "reference": "Modules/Settings/DankBarTab.qml:180",
"comment": "" "comment": ""
}, },
{ {
@@ -2054,19 +2060,19 @@
{ {
"term": "Layout", "term": "Layout",
"context": "Layout", "context": "Layout",
"reference": "Modules/Settings/DankBarTab.qml:25, Modules/DankBar/Popouts/DWLLayoutPopout.qml:173", "reference": "Modules/Settings/DankBarTab.qml:28, Modules/DankBar/Popouts/DWLLayoutPopout.qml:173",
"comment": "" "comment": ""
}, },
{ {
"term": "Left", "term": "Left",
"context": "Left", "context": "Left",
"reference": "Modules/Settings/DankBarTab.qml:770, Modules/DankBar/Popouts/BatteryPopout.qml:542", "reference": "Modules/Settings/DankBarTab.qml:773, Modules/DankBar/Popouts/BatteryPopout.qml:542",
"comment": "" "comment": ""
}, },
{ {
"term": "Left Section", "term": "Left Section",
"context": "Left Section", "context": "Left Section",
"reference": "Modules/Settings/DankBarTab.qml:1893", "reference": "Modules/Settings/DankBarTab.qml:1896",
"comment": "" "comment": ""
}, },
{ {
@@ -2162,13 +2168,13 @@
{ {
"term": "Manual Gap Size", "term": "Manual Gap Size",
"context": "Manual Gap Size", "context": "Manual Gap Size",
"reference": "Modules/Settings/DankBarTab.qml:1255, Modules/Settings/DankBarTab.qml:1269", "reference": "Modules/Settings/DankBarTab.qml:1258, Modules/Settings/DankBarTab.qml:1272",
"comment": "" "comment": ""
}, },
{ {
"term": "Manual Show/Hide", "term": "Manual Show/Hide",
"context": "Manual Show/Hide", "context": "Manual Show/Hide",
"reference": "Modules/Settings/DankBarTab.qml:882", "reference": "Modules/Settings/DankBarTab.qml:885",
"comment": "" "comment": ""
}, },
{ {
@@ -2240,7 +2246,7 @@
{ {
"term": "Media Controls", "term": "Media Controls",
"context": "Media Controls", "context": "Media Controls",
"reference": "Modules/Settings/DankBarTab.qml:68", "reference": "Modules/Settings/DankBarTab.qml:71",
"comment": "" "comment": ""
}, },
{ {
@@ -2288,13 +2294,13 @@
{ {
"term": "Memory Usage", "term": "Memory Usage",
"context": "Memory Usage", "context": "Memory Usage",
"reference": "Modules/Settings/DankBarTab.qml:87", "reference": "Modules/Settings/DankBarTab.qml:90",
"comment": "" "comment": ""
}, },
{ {
"term": "Memory usage indicator", "term": "Memory usage indicator",
"context": "Memory usage indicator", "context": "Memory usage indicator",
"reference": "Modules/Settings/DankBarTab.qml:88", "reference": "Modules/Settings/DankBarTab.qml:91",
"comment": "" "comment": ""
}, },
{ {
@@ -2414,13 +2420,13 @@
{ {
"term": "Network Speed Monitor", "term": "Network Speed Monitor",
"context": "Network Speed Monitor", "context": "Network Speed Monitor",
"reference": "Modules/Settings/DankBarTab.qml:170", "reference": "Modules/Settings/DankBarTab.qml:173",
"comment": "" "comment": ""
}, },
{ {
"term": "Network download and upload speed display", "term": "Network download and upload speed display",
"context": "Network download and upload speed display", "context": "Network download and upload speed display",
"reference": "Modules/Settings/DankBarTab.qml:171", "reference": "Modules/Settings/DankBarTab.qml:174",
"comment": "" "comment": ""
}, },
{ {
@@ -2462,7 +2468,7 @@
{ {
"term": "No Background", "term": "No Background",
"context": "No Background", "context": "No Background",
"reference": "Modules/Settings/DankBarTab.qml:1332", "reference": "Modules/Settings/DankBarTab.qml:1335",
"comment": "" "comment": ""
}, },
{ {
@@ -2546,7 +2552,7 @@
{ {
"term": "Notepad", "term": "Notepad",
"context": "Notepad", "context": "Notepad",
"reference": "DMSShell.qml:455, Modules/Settings/DankBarTab.qml:182", "reference": "DMSShell.qml:455, Modules/Settings/DankBarTab.qml:185",
"comment": "" "comment": ""
}, },
{ {
@@ -2570,7 +2576,7 @@
{ {
"term": "Notification Center", "term": "Notification Center",
"context": "Notification Center", "context": "Notification Center",
"reference": "Modules/Settings/DankBarTab.qml:133", "reference": "Modules/Settings/DankBarTab.qml:136",
"comment": "" "comment": ""
}, },
{ {
@@ -2780,7 +2786,7 @@
{ {
"term": "Percentage", "term": "Percentage",
"context": "Percentage", "context": "Percentage",
"reference": "Modules/Settings/DankBarTab.qml:95", "reference": "Modules/Settings/DankBarTab.qml:98",
"comment": "" "comment": ""
}, },
{ {
@@ -2858,7 +2864,7 @@
{ {
"term": "Plugin is disabled - enable in Plugins settings to use", "term": "Plugin is disabled - enable in Plugins settings to use",
"context": "Plugin is disabled - enable in Plugins settings to use", "context": "Plugin is disabled - enable in Plugins settings to use",
"reference": "Modules/Settings/DankBarTab.qml:209", "reference": "Modules/Settings/DankBarTab.qml:212",
"comment": "" "comment": ""
}, },
{ {
@@ -2888,7 +2894,7 @@
{ {
"term": "Position", "term": "Position",
"context": "Position", "context": "Position",
"reference": "Modules/Settings/DankBarTab.qml:760", "reference": "Modules/Settings/DankBarTab.qml:763",
"comment": "" "comment": ""
}, },
{ {
@@ -2936,7 +2942,7 @@
{ {
"term": "Pressure", "term": "Pressure",
"context": "Pressure", "context": "Pressure",
"reference": "Modules/DankDash/WeatherTab.qml:401, Modules/Settings/TimeWeatherTab.qml:1228", "reference": "Modules/DankDash/WeatherTab.qml:410, Modules/Settings/TimeWeatherTab.qml:1237",
"comment": "" "comment": ""
}, },
{ {
@@ -2948,7 +2954,7 @@
{ {
"term": "Prevent screen timeout", "term": "Prevent screen timeout",
"context": "Prevent screen timeout", "context": "Prevent screen timeout",
"reference": "Modules/Settings/DankBarTab.qml:152", "reference": "Modules/Settings/DankBarTab.qml:155",
"comment": "" "comment": ""
}, },
{ {
@@ -2978,7 +2984,7 @@
{ {
"term": "Privacy Indicator", "term": "Privacy Indicator",
"context": "Privacy Indicator", "context": "Privacy Indicator",
"reference": "Modules/Settings/DankBarTab.qml:121", "reference": "Modules/Settings/DankBarTab.qml:124",
"comment": "" "comment": ""
}, },
{ {
@@ -3008,19 +3014,19 @@
{ {
"term": "Quick access to application launcher", "term": "Quick access to application launcher",
"context": "Quick access to application launcher", "context": "Quick access to application launcher",
"reference": "Modules/Settings/DankBarTab.qml:33", "reference": "Modules/Settings/DankBarTab.qml:36",
"comment": "" "comment": ""
}, },
{ {
"term": "Quick access to color picker", "term": "Quick access to color picker",
"context": "Quick access to color picker", "context": "Quick access to color picker",
"reference": "Modules/Settings/DankBarTab.qml:189", "reference": "Modules/Settings/DankBarTab.qml:192",
"comment": "" "comment": ""
}, },
{ {
"term": "Quick access to notepad", "term": "Quick access to notepad",
"context": "Quick access to notepad", "context": "Quick access to notepad",
"reference": "Modules/Settings/DankBarTab.qml:183", "reference": "Modules/Settings/DankBarTab.qml:186",
"comment": "" "comment": ""
}, },
{ {
@@ -3038,7 +3044,7 @@
{ {
"term": "Rain Chance", "term": "Rain Chance",
"context": "Rain Chance", "context": "Rain Chance",
"reference": "Modules/DankDash/WeatherTab.qml:448, Modules/Settings/TimeWeatherTab.qml:1275", "reference": "Modules/DankDash/WeatherTab.qml:465, Modules/Settings/TimeWeatherTab.qml:1292",
"comment": "" "comment": ""
}, },
{ {
@@ -3098,13 +3104,13 @@
{ {
"term": "Requires DWL compositor", "term": "Requires DWL compositor",
"context": "Requires DWL compositor", "context": "Requires DWL compositor",
"reference": "Modules/Settings/DankBarTab.qml:29", "reference": "Modules/Settings/DankBarTab.qml:32",
"comment": "" "comment": ""
}, },
{ {
"term": "Reset", "term": "Reset",
"context": "Reset", "context": "Reset",
"reference": "Modules/Settings/DankBarTab.qml:1825, Modules/ControlCenter/Components/EditControls.qml:227", "reference": "Modules/Settings/DankBarTab.qml:1828, Modules/ControlCenter/Components/EditControls.qml:227",
"comment": "" "comment": ""
}, },
{ {
@@ -3146,13 +3152,13 @@
{ {
"term": "Right", "term": "Right",
"context": "Right", "context": "Right",
"reference": "Modules/Settings/DankBarTab.qml:770", "reference": "Modules/Settings/DankBarTab.qml:773",
"comment": "" "comment": ""
}, },
{ {
"term": "Right Section", "term": "Right Section",
"context": "Right Section", "context": "Right Section",
"reference": "Modules/Settings/DankBarTab.qml:2059", "reference": "Modules/Settings/DankBarTab.qml:2062",
"comment": "" "comment": ""
}, },
{ {
@@ -3176,7 +3182,7 @@
{ {
"term": "Running Apps", "term": "Running Apps",
"context": "Running Apps", "context": "Running Apps",
"reference": "Modules/Settings/DankBarTab.qml:50", "reference": "Modules/Settings/DankBarTab.qml:53",
"comment": "" "comment": ""
}, },
{ {
@@ -3212,7 +3218,7 @@
{ {
"term": "Scale DankBar font sizes independently", "term": "Scale DankBar font sizes independently",
"context": "Scale DankBar font sizes independently", "context": "Scale DankBar font sizes independently",
"reference": "Modules/Settings/DankBarTab.qml:1692", "reference": "Modules/Settings/DankBarTab.qml:1695",
"comment": "" "comment": ""
}, },
{ {
@@ -3356,7 +3362,7 @@
{ {
"term": "Separator", "term": "Separator",
"context": "Separator", "context": "Separator",
"reference": "Modules/Settings/DankBarTab.qml:163", "reference": "Modules/Settings/DankBarTab.qml:166",
"comment": "" "comment": ""
}, },
{ {
@@ -3482,7 +3488,7 @@
{ {
"term": "Show on Overview", "term": "Show on Overview",
"context": "Show on Overview", "context": "Show on Overview",
"reference": "Modules/Settings/DockTab.qml:242, Modules/Settings/DankBarTab.qml:936", "reference": "Modules/Settings/DockTab.qml:242, Modules/Settings/DankBarTab.qml:939",
"comment": "" "comment": ""
}, },
{ {
@@ -3542,19 +3548,19 @@
{ {
"term": "Shows all running applications with focus indication", "term": "Shows all running applications with focus indication",
"context": "Shows all running applications with focus indication", "context": "Shows all running applications with focus indication",
"reference": "Modules/Settings/DankBarTab.qml:51", "reference": "Modules/Settings/DankBarTab.qml:54",
"comment": "" "comment": ""
}, },
{ {
"term": "Shows current workspace and allows switching", "term": "Shows current workspace and allows switching",
"context": "Shows current workspace and allows switching", "context": "Shows current workspace and allows switching",
"reference": "Modules/Settings/DankBarTab.qml:39", "reference": "Modules/Settings/DankBarTab.qml:42",
"comment": "" "comment": ""
}, },
{ {
"term": "Shows when microphone, camera, or screen sharing is active", "term": "Shows when microphone, camera, or screen sharing is active",
"context": "Shows when microphone, camera, or screen sharing is active", "context": "Shows when microphone, camera, or screen sharing is active",
"reference": "Modules/Settings/DankBarTab.qml:122", "reference": "Modules/Settings/DankBarTab.qml:125",
"comment": "" "comment": ""
}, },
{ {
@@ -3566,7 +3572,7 @@
{ {
"term": "Size", "term": "Size",
"context": "Size", "context": "Size",
"reference": "Modules/ProcessList/SystemTab.qml:456, Modules/Settings/DankBarTab.qml:1156, Modules/Settings/DankBarTab.qml:1170", "reference": "Modules/ProcessList/SystemTab.qml:456, Modules/Settings/DankBarTab.qml:1159, Modules/Settings/DankBarTab.qml:1173",
"comment": "" "comment": ""
}, },
{ {
@@ -3590,13 +3596,13 @@
{ {
"term": "Spacer", "term": "Spacer",
"context": "Spacer", "context": "Spacer",
"reference": "Modules/Settings/DankBarTab.qml:157", "reference": "Modules/Settings/DankBarTab.qml:160",
"comment": "" "comment": ""
}, },
{ {
"term": "Spacing", "term": "Spacing",
"context": "Spacing", "context": "Spacing",
"reference": "Modules/Settings/DockTab.qml:473, Modules/Settings/DankBarTab.qml:995", "reference": "Modules/Settings/DockTab.qml:473, Modules/Settings/DankBarTab.qml:998",
"comment": "" "comment": ""
}, },
{ {
@@ -3608,7 +3614,7 @@
{ {
"term": "Square Corners", "term": "Square Corners",
"context": "Square Corners", "context": "Square Corners",
"reference": "Modules/Settings/DankBarTab.qml:1321", "reference": "Modules/Settings/DankBarTab.qml:1324",
"comment": "" "comment": ""
}, },
{ {
@@ -3698,13 +3704,13 @@
{ {
"term": "Sync Mode with Portal", "term": "Sync Mode with Portal",
"context": "Sync Mode with Portal", "context": "Sync Mode with Portal",
"reference": "Modules/Settings/ThemeColorsTab.qml:1205", "reference": "Modules/Settings/ThemeColorsTab.qml:1214",
"comment": "" "comment": ""
}, },
{ {
"term": "Sync dark mode with settings portals for system-wide theme hints", "term": "Sync dark mode with settings portals for system-wide theme hints",
"context": "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:1212", "reference": "Modules/Settings/ThemeColorsTab.qml:1215",
"comment": "" "comment": ""
}, },
{ {
@@ -3716,7 +3722,7 @@
{ {
"term": "System App Theming", "term": "System App Theming",
"context": "System App Theming", "context": "System App Theming",
"reference": "Modules/Settings/ThemeColorsTab.qml:1347", "reference": "Modules/Settings/ThemeColorsTab.qml:1348",
"comment": "" "comment": ""
}, },
{ {
@@ -3740,13 +3746,13 @@
{ {
"term": "System Tray", "term": "System Tray",
"context": "System Tray", "context": "System Tray",
"reference": "Modules/Settings/DisplaysTab.qml:49, Modules/Settings/DankBarTab.qml:115", "reference": "Modules/Settings/DisplaysTab.qml:49, Modules/Settings/DankBarTab.qml:118",
"comment": "" "comment": ""
}, },
{ {
"term": "System Update", "term": "System Update",
"context": "System Update", "context": "System Update",
"reference": "Modules/Settings/DankBarTab.qml:194", "reference": "Modules/Settings/DankBarTab.qml:197",
"comment": "" "comment": ""
}, },
{ {
@@ -3770,7 +3776,7 @@
{ {
"term": "System notification area icons", "term": "System notification area icons",
"context": "System notification area icons", "context": "System notification area icons",
"reference": "Modules/Settings/DankBarTab.qml:116", "reference": "Modules/Settings/DankBarTab.qml:119",
"comment": "" "comment": ""
}, },
{ {
@@ -3803,6 +3809,12 @@
"reference": "Modules/Settings/WidgetTweaksTab.qml:314", "reference": "Modules/Settings/WidgetTweaksTab.qml:314",
"comment": "" "comment": ""
}, },
{
"term": "Terminals - Always use Dark Theme",
"context": "Terminals - Always use Dark Theme",
"reference": "Modules/Settings/ThemeColorsTab.qml:1224",
"comment": ""
},
{ {
"term": "Text", "term": "Text",
"context": "Text", "context": "Text",
@@ -3818,7 +3830,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).", "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).", "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:1258", "reference": "Modules/Settings/ThemeColorsTab.qml:1259",
"comment": "" "comment": ""
}, },
{ {
@@ -3854,7 +3866,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.", "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.", "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:111", "reference": "Modules/Settings/DankBarTab.qml:114",
"comment": "" "comment": ""
}, },
{ {
@@ -3908,7 +3920,7 @@
{ {
"term": "Toggle top bar visibility manually (can be controlled via IPC)", "term": "Toggle top bar visibility manually (can be controlled via IPC)",
"context": "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:889", "reference": "Modules/Settings/DankBarTab.qml:892",
"comment": "" "comment": ""
}, },
{ {
@@ -3932,7 +3944,7 @@
{ {
"term": "Top", "term": "Top",
"context": "Top", "context": "Top",
"reference": "Modules/Settings/DankBarTab.qml:770", "reference": "Modules/Settings/DankBarTab.qml:773",
"comment": "" "comment": ""
}, },
{ {
@@ -3944,7 +3956,7 @@
{ {
"term": "Top Section", "term": "Top Section",
"context": "Top Section", "context": "Top Section",
"reference": "Modules/Settings/DankBarTab.qml:1893", "reference": "Modules/Settings/DankBarTab.qml:1896",
"comment": "" "comment": ""
}, },
{ {
@@ -4020,23 +4032,23 @@
"comment": "" "comment": ""
}, },
{ {
"term": "Use Fahrenheit", "term": "Use IP Location",
"context": "Use Fahrenheit", "context": "Use IP Location",
"reference": "Modules/Settings/DisplaysTab.qml:403",
"comment": ""
},
{
"term": "Use Imperial Units",
"context": "Use Imperial Units",
"reference": "Modules/Settings/TimeWeatherTab.qml:538", "reference": "Modules/Settings/TimeWeatherTab.qml:538",
"comment": "" "comment": ""
}, },
{ {
"term": "Use Fahrenheit instead of Celsius for temperature", "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)",
"context": "Use Fahrenheit instead of Celsius for temperature", "context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)",
"reference": "Modules/Settings/TimeWeatherTab.qml:545", "reference": "Modules/Settings/TimeWeatherTab.qml:545",
"comment": "" "comment": ""
}, },
{
"term": "Use IP Location",
"context": "Use IP Location",
"reference": "Modules/Settings/DisplaysTab.qml:403",
"comment": ""
},
{ {
"term": "Use Monospace Font", "term": "Use Monospace Font",
"context": "Use Monospace Font", "context": "Use Monospace Font",
@@ -4112,7 +4124,7 @@
{ {
"term": "VPN", "term": "VPN",
"context": "VPN", "context": "VPN",
"reference": "Modules/Settings/DankBarTab.qml:145", "reference": "Modules/Settings/DankBarTab.qml:148",
"comment": "" "comment": ""
}, },
{ {
@@ -4124,7 +4136,7 @@
{ {
"term": "VPN status and quick connect", "term": "VPN status and quick connect",
"context": "VPN status and quick connect", "context": "VPN status and quick connect",
"reference": "Modules/Settings/DankBarTab.qml:146", "reference": "Modules/Settings/DankBarTab.qml:149",
"comment": "" "comment": ""
}, },
{ {
@@ -4166,13 +4178,13 @@
{ {
"term": "Visibility", "term": "Visibility",
"context": "Visibility", "context": "Visibility",
"reference": "Modules/DankDash/WeatherTab.qml:495, Modules/Settings/TimeWeatherTab.qml:1322", "reference": "Modules/DankDash/WeatherTab.qml:512, Modules/Settings/TimeWeatherTab.qml:1339",
"comment": "" "comment": ""
}, },
{ {
"term": "Visual divider between widgets", "term": "Visual divider between widgets",
"context": "Visual divider between widgets", "context": "Visual divider between widgets",
"reference": "Modules/Settings/DankBarTab.qml:164", "reference": "Modules/Settings/DankBarTab.qml:167",
"comment": "" "comment": ""
}, },
{ {
@@ -4232,7 +4244,7 @@
{ {
"term": "Weather Widget", "term": "Weather Widget",
"context": "Weather Widget", "context": "Weather Widget",
"reference": "Modules/Settings/DankBarTab.qml:62", "reference": "Modules/Settings/DankBarTab.qml:65",
"comment": "" "comment": ""
}, },
{ {
@@ -4268,7 +4280,7 @@
{ {
"term": "Widget Management", "term": "Widget Management",
"context": "Widget Management", "context": "Widget Management",
"reference": "Modules/Settings/DankBarTab.qml:1787", "reference": "Modules/Settings/DankBarTab.qml:1790",
"comment": "" "comment": ""
}, },
{ {
@@ -4316,7 +4328,7 @@
{ {
"term": "Workspace Switcher", "term": "Workspace Switcher",
"context": "Workspace Switcher", "context": "Workspace Switcher",
"reference": "Modules/Settings/DankBarTab.qml:38", "reference": "Modules/Settings/DankBarTab.qml:41",
"comment": "" "comment": ""
}, },
{ {

View File

@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "Forza Chiusura Processo" "Force Kill Process": "Forza Chiusura Processo"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "Dimentica Dispositivo" "Forget Device": "Dimentica Dispositivo"
}, },
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale" "Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "Testo" "Text": "Testo"
}, },
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "Usa Posizione IP" "Use IP Location": "Usa Posizione IP"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "Usa Font Monospace" "Use Monospace Font": "Usa Font Monospace"
}, },

View File

@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "プロセスを強制終了" "Force Kill Process": "プロセスを強制終了"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "デバイスを忘れる" "Forget Device": "デバイスを忘れる"
}, },
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "端末のカスタム追加パラメーター" "Terminal custom additional parameters": "端末のカスタム追加パラメーター"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "テキスト" "Text": "テキスト"
}, },
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "IP ロケーションの使用" "Use IP Location": "IP ロケーションの使用"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "等幅フォントを使用" "Use Monospace Font": "等幅フォントを使用"
}, },

View File

@@ -207,7 +207,7 @@
"Available": "Dostępny" "Available": "Dostępny"
}, },
"Available Layouts": { "Available Layouts": {
"Available Layouts": "" "Available Layouts": "Dostępne układy"
}, },
"Available Plugins": { "Available Plugins": {
"Available Plugins": "Dostępne wtyczki" "Available Plugins": "Dostępne wtyczki"
@@ -306,10 +306,10 @@
"Center Section": "Sekcja środkowa" "Center Section": "Sekcja środkowa"
}, },
"Center Tiling": { "Center Tiling": {
"Center Tiling": "" "Center Tiling": "Płytki środkowe"
}, },
"Changes:": { "Changes:": {
"Changes:": "" "Changes:": "Zmiany:"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Sprawdź aktualizacje systemu" "Check for system updates": "Sprawdź aktualizacje systemu"
@@ -408,7 +408,7 @@
"Confirm": "Potwierdź" "Confirm": "Potwierdź"
}, },
"Confirm Display Changes": { "Confirm Display Changes": {
"Confirm Display Changes": "" "Confirm Display Changes": "Potwierdź zmiany wyświetlania"
}, },
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "Potwierdź klucz dostępu dla " "Confirm passkey for ": "Potwierdź klucz dostępu dla "
@@ -504,7 +504,7 @@
"Customizable empty space": "Dostosowywalna pusta przestrzeń" "Customizable empty space": "Dostosowywalna pusta przestrzeń"
}, },
"Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": {
"Customize which actions appear in the power menu": "" "Customize which actions appear in the power menu": "Dostosuj, które akcje będą wyświetlane w menu zasilania"
}, },
"DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": {
"DEMO MODE - Click anywhere to exit": "TRYB DEMO - Kliknij gdziekolwiek aby wyjść" "DEMO MODE - Click anywhere to exit": "TRYB DEMO - Kliknij gdziekolwiek aby wyjść"
@@ -519,7 +519,7 @@
"DMS_SOCKET not available": "DMS_SOCKET niedostępny" "DMS_SOCKET not available": "DMS_SOCKET niedostępny"
}, },
"DWL service not available": { "DWL service not available": {
"DWL service not available": "" "DWL service not available": "Usługa DWL niedostępna"
}, },
"Daily at:": { "Daily at:": {
"Daily at:": "Codziennie o:" "Daily at:": "Codziennie o:"
@@ -555,13 +555,13 @@
"Day Temperature": "Temperatura w dzień" "Day Temperature": "Temperatura w dzień"
}, },
"Deck": { "Deck": {
"Deck": "" "Deck": "Pokład"
}, },
"Default": { "Default": {
"Default": "Domyślne" "Default": "Domyślne"
}, },
"Default selected action": { "Default selected action": {
"Default selected action": "" "Default selected action": "Domyślnie wybrana akcja"
}, },
"Defaults": { "Defaults": {
"Defaults": "Domyślne" "Defaults": "Domyślne"
@@ -588,7 +588,7 @@
"Disable Autoconnect": "Wyłącz automatyczne łączenie" "Disable Autoconnect": "Wyłącz automatyczne łączenie"
}, },
"Disabled": { "Disabled": {
"Disabled": "" "Disabled": "Wyłączony"
}, },
"Disconnect": { "Disconnect": {
"Disconnect": "Rozłącz" "Disconnect": "Rozłącz"
@@ -612,7 +612,7 @@
"Display all priorities over fullscreen apps": "Wyświetlaj wszystkie priorytety nad aplikacjami pełnoekranowymi" "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 and switch DWL layouts": "" "Display and switch DWL layouts": "Wyświetlanie i przełączanie układów DWL"
}, },
"Display application icons in workspace indicators": { "Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego" "Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego"
@@ -621,7 +621,7 @@
"Display currently focused application title": "Wyświetlaj tytuł aktywnej aplikacji" "Display currently focused application title": "Wyświetlaj tytuł aktywnej aplikacji"
}, },
"Display settings for ": { "Display settings for ": {
"Display settings for ": "" "Display settings for ": "Ustawienia wyświetlania dla "
}, },
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "Domyślnie wyświetlaj wartości procentowe głośności i jasności w wyskakujących okienkach OSD" "Display volume and brightness percentage values by default in OSD popups": "Domyślnie wyświetlaj wartości procentowe głośności i jasności w wyskakujących okienkach OSD"
@@ -699,7 +699,7 @@
"Enable loginctl lock integration": "Włącz integrację blokady loginctl" "Enable loginctl lock integration": "Włącz integrację blokady loginctl"
}, },
"Enabled": { "Enabled": {
"Enabled": "" "Enabled": "Włączony"
}, },
"End": { "End": {
"End": "Koniec" "End": "Koniec"
@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "Wymuś zamknięcie procesu" "Force Kill Process": "Wymuś zamknięcie procesu"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "Zapomnij urządzenie" "Forget Device": "Zapomnij urządzenie"
}, },
@@ -879,7 +882,7 @@
"Graphics": "Grafika" "Graphics": "Grafika"
}, },
"Grid": { "Grid": {
"Grid": "" "Grid": "Siatka"
}, },
"Group by App": { "Group by App": {
"Group by App": "Grupuj według aplikacji" "Group by App": "Grupuj według aplikacji"
@@ -888,7 +891,7 @@
"Group multiple windows of the same app together with a window count indicator": "Grupuj wiele okien tej samej aplikacji ze wskaźnikiem liczby okien" "Group multiple windows of the same app together with a window count indicator": "Grupuj wiele okien tej samej aplikacji ze wskaźnikiem liczby okien"
}, },
"HSV": { "HSV": {
"HSV": "" "HSV": "HSV"
}, },
"Health": { "Health": {
"Health": "Zdrowie" "Health": "Zdrowie"
@@ -897,7 +900,7 @@
"Height to Edge Gap (Exclusive Zone)": "Odstęp od krawędzi (strefa wyłączności)" "Height to Edge Gap (Exclusive Zone)": "Odstęp od krawędzi (strefa wyłączności)"
}, },
"Hex": { "Hex": {
"Hex": "" "Hex": "Klątwa"
}, },
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernacja" "Hibernate": "Hibernacja"
@@ -957,7 +960,7 @@
"Individual Batteries": "Pojedyncze akumulatory" "Individual Batteries": "Pojedyncze akumulatory"
}, },
"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": "" "Inhibit idle timeout when audio or video is playing": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu"
}, },
"Input Devices": { "Input Devices": {
"Input Devices": "Urządzenia wejściowe" "Input Devices": "Urządzenia wejściowe"
@@ -984,7 +987,7 @@
"Jobs: ": "Zadania: " "Jobs: ": "Zadania: "
}, },
"Keep Changes": { "Keep Changes": {
"Keep Changes": "" "Keep Changes": "Zachowaj zmiany"
}, },
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nazwa układu klawiatury" "Keyboard Layout Name": "Nazwa układu klawiatury"
@@ -1026,7 +1029,7 @@
"Launcher Button Logo": "Logo przycisku programu uruchamiającego" "Launcher Button Logo": "Logo przycisku programu uruchamiającego"
}, },
"Layout": { "Layout": {
"Layout": "" "Layout": "Układ"
}, },
"Left": { "Left": {
"Left": "Lewa" "Left": "Lewa"
@@ -1050,7 +1053,7 @@
"Location Search": "Wyszukiwanie lokalizacji" "Location Search": "Wyszukiwanie lokalizacji"
}, },
"Lock": { "Lock": {
"Lock": "" "Lock": "Zamek"
}, },
"Lock Screen": { "Lock Screen": {
"Lock Screen": "Ekran blokady" "Lock Screen": "Ekran blokady"
@@ -1086,7 +1089,7 @@
"Manual Show/Hide": "Ręczne pokazywanie/ukrywanie" "Manual Show/Hide": "Ręczne pokazywanie/ukrywanie"
}, },
"Margin": { "Margin": {
"Margin": "" "Margin": "Margines"
}, },
"Marker Supply Empty": { "Marker Supply Empty": {
"Marker Supply Empty": "Brak materiału eksploatacyjnego" "Marker Supply Empty": "Brak materiału eksploatacyjnego"
@@ -1158,7 +1161,7 @@
"Mode:": "Tryb:" "Mode:": "Tryb:"
}, },
"Mode: ": { "Mode: ": {
"Mode: ": "" "Mode: ": "Tryb: "
}, },
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "Wybór monitora:" "Monitor Selection:": "Wybór monitora:"
@@ -1167,7 +1170,7 @@
"Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu" "Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu"
}, },
"Monocle": { "Monocle": {
"Monocle": "" "Monocle": "Monokl"
}, },
"Monospace Font": { "Monospace Font": {
"Monospace Font": "Czcionka o stałej szerokości" "Monospace Font": "Czcionka o stałej szerokości"
@@ -1323,7 +1326,7 @@
"Only adjust gamma based on time or location rules.": "Dostosuj gamma tylko na podstawie reguł czasu lub lokalizacji." "Only adjust gamma based on time or location rules.": "Dostosuj gamma tylko na podstawie reguł czasu lub lokalizacji."
}, },
"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": "" "Only visible if hibernate is supported by your system": "Widoczne tylko wtedy, gdy system obsługuje hibernację"
}, },
"Opacity": { "Opacity": {
"Opacity": "Przezroczystość" "Opacity": "Przezroczystość"
@@ -1446,7 +1449,7 @@
"Position": "Pozycja" "Position": "Pozycja"
}, },
"Position: ": { "Position: ": {
"Position: ": "" "Position: ": "Stanowisko: "
}, },
"Power & Security": { "Power & Security": {
"Power & Security": "Zasilanie i bezpieczeństwo" "Power & Security": "Zasilanie i bezpieczeństwo"
@@ -1455,7 +1458,7 @@
"Power Action Confirmation": "Potwierdzenie działania zasilania" "Power Action Confirmation": "Potwierdzenie działania zasilania"
}, },
"Power Menu Customization": { "Power Menu Customization": {
"Power Menu Customization": "" "Power Menu Customization": "Dostosowywanie menu zasilania"
}, },
"Power Off": { "Power Off": {
"Power Off": "Wyłącz komputer" "Power Off": "Wyłącz komputer"
@@ -1470,7 +1473,7 @@
"Pressure": "Ciśnienie" "Pressure": "Ciśnienie"
}, },
"Prevent idle for media": { "Prevent idle for media": {
"Prevent idle for media": "" "Prevent idle for media": "Zapobiegaj bezczynności nośników"
}, },
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu" "Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu"
@@ -1515,7 +1518,7 @@
"Quick note-taking slideout panel": "Wysuwany panel szybkiego sporządzania notatek" "Quick note-taking slideout panel": "Wysuwany panel szybkiego sporządzania notatek"
}, },
"RGB": { "RGB": {
"RGB": "" "RGB": "RGB"
}, },
"Rain Chance": { "Rain Chance": {
"Rain Chance": "Szansa na deszcz" "Rain Chance": "Szansa na deszcz"
@@ -1548,7 +1551,7 @@
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "Poproś o potwierdzenie czynności wyłączenia, ponownego uruchomienia, zawieszenia, hibernacji i wylogowania." "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": {
"Requires DWL compositor": "" "Requires DWL compositor": "Wymaga kompozytora DWL"
}, },
"Reset": { "Reset": {
"Reset": "Resetuj" "Reset": "Resetuj"
@@ -1557,22 +1560,22 @@
"Resources": "Źródła" "Resources": "Źródła"
}, },
"Restart": { "Restart": {
"Restart": "" "Restart": "Uruchom ponownie"
}, },
"Restart DMS": { "Restart DMS": {
"Restart DMS": "" "Restart DMS": "Uruchom ponownie DMS"
}, },
"Restart the DankMaterialShell": { "Restart the DankMaterialShell": {
"Restart the DankMaterialShell": "" "Restart the DankMaterialShell": "Uruchom ponownie DankMaterialShell"
}, },
"Resume": { "Resume": {
"Resume": "Wznów" "Resume": "Wznów"
}, },
"Revert": { "Revert": {
"Revert": "" "Revert": "Odwracać"
}, },
"Reverting in:": { "Reverting in:": {
"Reverting in:": "" "Reverting in:": "Przywracanie w:"
}, },
"Right": { "Right": {
"Right": "Prawo" "Right": "Prawo"
@@ -1581,10 +1584,10 @@
"Right Section": "Sekcja prawa" "Right Section": "Sekcja prawa"
}, },
"Right Tiling": { "Right Tiling": {
"Right Tiling": "" "Right Tiling": "Prawe kafelkowanie"
}, },
"Right-click bar widget to cycle": { "Right-click bar widget to cycle": {
"Right-click bar widget to cycle": "" "Right-click bar widget to cycle": "Kliknij prawym przyciskiem myszy pasek widżetu, aby przejść do następnego"
}, },
"Run User Templates": { "Run User Templates": {
"Run User Templates": "Uruchom szablony użytkownika" "Run User Templates": "Uruchom szablony użytkownika"
@@ -1620,7 +1623,7 @@
"Science": "Nauka" "Science": "Nauka"
}, },
"Scrolling": { "Scrolling": {
"Scrolling": "" "Scrolling": "Przewijanie"
}, },
"Search file contents": { "Search file contents": {
"Search file contents": "Przeszukaj zawartość plików" "Search file contents": "Przeszukaj zawartość plików"
@@ -1704,31 +1707,31 @@
"Show Dock": "Pokaż dok" "Show Dock": "Pokaż dok"
}, },
"Show Hibernate": { "Show Hibernate": {
"Show Hibernate": "" "Show Hibernate": "Pokaż hibernację"
}, },
"Show Line Numbers": { "Show Line Numbers": {
"Show Line Numbers": "Pokaż numery wierszy" "Show Line Numbers": "Pokaż numery wierszy"
}, },
"Show Lock": { "Show Lock": {
"Show Lock": "" "Show Lock": "Pokaż blokadę"
}, },
"Show Log Out": { "Show Log Out": {
"Show Log Out": "" "Show Log Out": "Pokaż wylogowanie"
}, },
"Show Power Actions": { "Show Power Actions": {
"Show Power Actions": "Pokaż akcje zasilania" "Show Power Actions": "Pokaż akcje zasilania"
}, },
"Show Power Off": { "Show Power Off": {
"Show Power Off": "" "Show Power Off": "Pokaż wyłączone zasilanie"
}, },
"Show Reboot": { "Show Reboot": {
"Show Reboot": "" "Show Reboot": "Pokaż ponowne uruchomienie"
}, },
"Show Restart DMS": { "Show Restart DMS": {
"Show Restart DMS": "" "Show Restart DMS": "Pokaż ponowne uruchomienie DMS"
}, },
"Show Suspend": { "Show Suspend": {
"Show Suspend": "" "Show Suspend": "Pokaż zawieszenie"
}, },
"Show Workspace Apps": { "Show Workspace Apps": {
"Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego" "Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego"
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala" "Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "Tekst" "Text": "Tekst"
}, },
@@ -1935,7 +1941,7 @@
"This will permanently delete all clipboard history.": "To trwale usunie całą historię schowka." "This will permanently delete all clipboard history.": "To trwale usunie całą historię schowka."
}, },
"Tiling": { "Tiling": {
"Tiling": "" "Tiling": "Dekarstwo"
}, },
"Time & Weather": { "Time & Weather": {
"Time & Weather": "Czas i pogoda" "Time & Weather": "Czas i pogoda"
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "Użyj lokalizacji IP" "Use IP Location": "Użyj lokalizacji IP"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "Użyj czcionki o stałej szerokości" "Use Monospace Font": "Użyj czcionki o stałej szerokości"
}, },
@@ -2067,19 +2079,19 @@
"VPN status and quick connect": "Status VPN i szybkie połączenie" "VPN status and quick connect": "Status VPN i szybkie połączenie"
}, },
"VRR: ": { "VRR: ": {
"VRR: ": "" "VRR: ": "VRR: "
}, },
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "" "Vertical Deck": "Pionowy pokład"
}, },
"Vertical Grid": { "Vertical Grid": {
"Vertical Grid": "" "Vertical Grid": "Siatka pionowa"
}, },
"Vertical Scrolling": { "Vertical Scrolling": {
"Vertical Scrolling": "" "Vertical Scrolling": "Przewijanie pionowe"
}, },
"Vertical Tiling": { "Vertical Tiling": {
"Vertical Tiling": "" "Vertical Tiling": "Płytki pionowe"
}, },
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem." "Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem."

View File

@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "Forçar Fechamento do Processo" "Force Kill Process": "Forçar Fechamento do Processo"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "Esquecer Dispositivo" "Forget Device": "Esquecer Dispositivo"
}, },
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Parâmetros adicionais para o terminal" "Terminal custom additional parameters": "Parâmetros adicionais para o terminal"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "Texto" "Text": "Texto"
}, },
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "Usar Localização do Endereço IP" "Use IP Location": "Usar Localização do Endereço IP"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "Usar Fonte Monoespaçada" "Use Monospace Font": "Usar Fonte Monoespaçada"
}, },

View File

@@ -207,7 +207,7 @@
"Available": "Kullanılabilir" "Available": "Kullanılabilir"
}, },
"Available Layouts": { "Available Layouts": {
"Available Layouts": "" "Available Layouts": "Mevcut Düzenler"
}, },
"Available Plugins": { "Available Plugins": {
"Available Plugins": "Kullanılabilir Eklentiler" "Available Plugins": "Kullanılabilir Eklentiler"
@@ -306,7 +306,7 @@
"Center Section": "Orta Bölüm" "Center Section": "Orta Bölüm"
}, },
"Center Tiling": { "Center Tiling": {
"Center Tiling": "" "Center Tiling": "Merkez Döşeme"
}, },
"Changes:": { "Changes:": {
"Changes:": "Değişiklikler:" "Changes:": "Değişiklikler:"
@@ -504,7 +504,7 @@
"Customizable empty space": "Özelleştirilebilir boş alan" "Customizable empty space": "Özelleştirilebilir boş alan"
}, },
"Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": {
"Customize which actions appear in the power menu": "" "Customize which actions appear in the power menu": "Güç menüsünde hangi eylemlerin görüneceğini özelleştirin"
}, },
"DEMO MODE - Click anywhere to exit": { "DEMO MODE - Click anywhere to exit": {
"DEMO MODE - Click anywhere to exit": "DEMO MODU - Çıkmak için herhangi bir yere tıklayın" "DEMO MODE - Click anywhere to exit": "DEMO MODU - Çıkmak için herhangi bir yere tıklayın"
@@ -519,7 +519,7 @@
"DMS_SOCKET not available": "DMS_SOCKET kullanılamıyor" "DMS_SOCKET not available": "DMS_SOCKET kullanılamıyor"
}, },
"DWL service not available": { "DWL service not available": {
"DWL service not available": "" "DWL service not available": "DWL hizmeti kullanılamıyor"
}, },
"Daily at:": { "Daily at:": {
"Daily at:": "Her gün saat:" "Daily at:": "Her gün saat:"
@@ -555,13 +555,13 @@
"Day Temperature": "Gündüz Sıcaklığı" "Day Temperature": "Gündüz Sıcaklığı"
}, },
"Deck": { "Deck": {
"Deck": "" "Deck": "Deck"
}, },
"Default": { "Default": {
"Default": "Varsayılan" "Default": "Varsayılan"
}, },
"Default selected action": { "Default selected action": {
"Default selected action": "" "Default selected action": "Ön tanımlı seçili eylem"
}, },
"Defaults": { "Defaults": {
"Defaults": "Varsayılanlar" "Defaults": "Varsayılanlar"
@@ -612,7 +612,7 @@
"Display all priorities over fullscreen apps": "Tam ekran uygulamaların üzerinde tüm öncelikleri göster" "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 and switch DWL layouts": "" "Display and switch DWL layouts": "DWL düzenlerini görüntüle ve değiştir"
}, },
"Display application icons in workspace indicators": { "Display application icons in workspace indicators": {
"Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster" "Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster"
@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "Süreci Zorla Kapat" "Force Kill Process": "Süreci Zorla Kapat"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "Aygıtı Unut" "Forget Device": "Aygıtı Unut"
}, },
@@ -879,7 +882,7 @@
"Graphics": "Grafik" "Graphics": "Grafik"
}, },
"Grid": { "Grid": {
"Grid": "" "Grid": "Izgara"
}, },
"Group by App": { "Group by App": {
"Group by App": "Uygulamaya Göre Gruplandır" "Group by App": "Uygulamaya Göre Gruplandır"
@@ -1026,7 +1029,7 @@
"Launcher Button Logo": "Başlatıcı Buton Logosu" "Launcher Button Logo": "Başlatıcı Buton Logosu"
}, },
"Layout": { "Layout": {
"Layout": "" "Layout": "Düzen"
}, },
"Left": { "Left": {
"Left": "Sol" "Left": "Sol"
@@ -1167,7 +1170,7 @@
"Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör" "Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör"
}, },
"Monocle": { "Monocle": {
"Monocle": "" "Monocle": "Monocle"
}, },
"Monospace Font": { "Monospace Font": {
"Monospace Font": "Sabit Aralıklı Yazı Tipi" "Monospace Font": "Sabit Aralıklı Yazı Tipi"
@@ -1323,7 +1326,7 @@
"Only adjust gamma based on time or location rules.": "Gamayı yalnızca zaman veya konum kurallarına göre ayarlayın." "Only adjust gamma based on time or location rules.": "Gamayı yalnızca zaman veya konum kurallarına göre ayarlayın."
}, },
"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": "" "Only visible if hibernate is supported by your system": "Sisteminizde hazırda bekletme özelliği destekleniyorsa görünür"
}, },
"Opacity": { "Opacity": {
"Opacity": "Opaklık" "Opacity": "Opaklık"
@@ -1455,7 +1458,7 @@
"Power Action Confirmation": "Güç Eylemi Onayı" "Power Action Confirmation": "Güç Eylemi Onayı"
}, },
"Power Menu Customization": { "Power Menu Customization": {
"Power Menu Customization": "" "Power Menu Customization": "Güç Menüsü Özelleştirme"
}, },
"Power Off": { "Power Off": {
"Power Off": "Kapat" "Power Off": "Kapat"
@@ -1548,7 +1551,7 @@
"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" "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": {
"Requires DWL compositor": "" "Requires DWL compositor": "DWL kompozitör gerektirir"
}, },
"Reset": { "Reset": {
"Reset": "Sıfırla" "Reset": "Sıfırla"
@@ -1560,10 +1563,10 @@
"Restart": "Yeniden Başlat" "Restart": "Yeniden Başlat"
}, },
"Restart DMS": { "Restart DMS": {
"Restart DMS": "" "Restart DMS": "DMS'yi Yeniden Başlat"
}, },
"Restart the DankMaterialShell": { "Restart the DankMaterialShell": {
"Restart the DankMaterialShell": "" "Restart the DankMaterialShell": "DankMaterialShell'i yeniden başlatın"
}, },
"Resume": { "Resume": {
"Resume": "Sürdür" "Resume": "Sürdür"
@@ -1581,10 +1584,10 @@
"Right Section": "Sağ Bölüm" "Right Section": "Sağ Bölüm"
}, },
"Right Tiling": { "Right Tiling": {
"Right Tiling": "" "Right Tiling": "Sağ Döşeme"
}, },
"Right-click bar widget to cycle": { "Right-click bar widget to cycle": {
"Right-click bar widget to cycle": "" "Right-click bar widget to cycle": "Çubuk widget'ını sağ tıklayarak döngüye değiştir"
}, },
"Run User Templates": { "Run User Templates": {
"Run User Templates": "Kullanıcı Şablonlarını Çalıştır" "Run User Templates": "Kullanıcı Şablonlarını Çalıştır"
@@ -1620,7 +1623,7 @@
"Science": "Bilim" "Science": "Bilim"
}, },
"Scrolling": { "Scrolling": {
"Scrolling": "" "Scrolling": "Kaydırma"
}, },
"Search file contents": { "Search file contents": {
"Search file contents": "Dosya içeriklerini ara" "Search file contents": "Dosya içeriklerini ara"
@@ -1704,31 +1707,31 @@
"Show Dock": "Dock'u Göster" "Show Dock": "Dock'u Göster"
}, },
"Show Hibernate": { "Show Hibernate": {
"Show Hibernate": "" "Show Hibernate": "Hazırda Bekleti Göster"
}, },
"Show Line Numbers": { "Show Line Numbers": {
"Show Line Numbers": "Satır Numaralarını Göster" "Show Line Numbers": "Satır Numaralarını Göster"
}, },
"Show Lock": { "Show Lock": {
"Show Lock": "" "Show Lock": "Kilitleyi Göster"
}, },
"Show Log Out": { "Show Log Out": {
"Show Log Out": "" "Show Log Out": "Çıkışı Göster"
}, },
"Show Power Actions": { "Show Power Actions": {
"Show Power Actions": "Güç Eylemlerini Göster" "Show Power Actions": "Güç Eylemlerini Göster"
}, },
"Show Power Off": { "Show Power Off": {
"Show Power Off": "" "Show Power Off": "Kapatı Göster"
}, },
"Show Reboot": { "Show Reboot": {
"Show Reboot": "" "Show Reboot": "Yeniden Başlatı Göster"
}, },
"Show Restart DMS": { "Show Restart DMS": {
"Show Restart DMS": "" "Show Restart DMS": "DMS'yi Yeniden Başlatı Göster"
}, },
"Show Suspend": { "Show Suspend": {
"Show Suspend": "" "Show Suspend": "Askıya Alı Göster"
}, },
"Show Workspace Apps": { "Show Workspace Apps": {
"Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster" "Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster"
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Terminal özel ek parametreleri" "Terminal custom additional parameters": "Terminal özel ek parametreleri"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "Metin" "Text": "Metin"
}, },
@@ -1935,7 +1941,7 @@
"This will permanently delete all clipboard history.": "Bu, tüm pano geçmişini kalıcı olarak siler." "This will permanently delete all clipboard history.": "Bu, tüm pano geçmişini kalıcı olarak siler."
}, },
"Tiling": { "Tiling": {
"Tiling": "" "Tiling": "Döşeme"
}, },
"Time & Weather": { "Time & Weather": {
"Time & Weather": "Zaman & Hava Durumu" "Time & Weather": "Zaman & Hava Durumu"
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "IP Konumunu Kullan" "Use IP Location": "IP Konumunu Kullan"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "Sabit Aralıklı Yazı Tipi Kullan" "Use Monospace Font": "Sabit Aralıklı Yazı Tipi Kullan"
}, },
@@ -2070,16 +2082,16 @@
"VRR: ": "VRR: " "VRR: ": "VRR: "
}, },
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "" "Vertical Deck": "Dikey Deck"
}, },
"Vertical Grid": { "Vertical Grid": {
"Vertical Grid": "" "Vertical Grid": "Dikey Izgara"
}, },
"Vertical Scrolling": { "Vertical Scrolling": {
"Vertical Scrolling": "" "Vertical Scrolling": "Dikey Kaydırma"
}, },
"Vertical Tiling": { "Vertical Tiling": {
"Vertical Tiling": "" "Vertical Tiling": "Dikey Döşeme"
}, },
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet" "Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet"

View File

@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "强制结束进程" "Force Kill Process": "强制结束进程"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "取消配对" "Forget Device": "取消配对"
}, },
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "终端自定义附加参数" "Terminal custom additional parameters": "终端自定义附加参数"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "文本" "Text": "文本"
}, },
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "使用 IP 定位" "Use IP Location": "使用 IP 定位"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "使用等宽字体" "Use Monospace Font": "使用等宽字体"
}, },

View File

@@ -830,6 +830,9 @@
"Force Kill Process": { "Force Kill Process": {
"Force Kill Process": "強制結束程序" "Force Kill Process": "強制結束程序"
}, },
"Force terminal applications to always use dark color schemes": {
"Force terminal applications to always use dark color schemes": ""
},
"Forget Device": { "Forget Device": {
"Forget Device": "忘記設備" "Forget Device": "忘記設備"
}, },
@@ -1904,6 +1907,9 @@
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "自訂終端附加參數" "Terminal custom additional parameters": "自訂終端附加參數"
}, },
"Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": ""
},
"Text": { "Text": {
"Text": "文字" "Text": "文字"
}, },
@@ -2021,6 +2027,12 @@
"Use IP Location": { "Use IP Location": {
"Use IP Location": "使用 IP 位置" "Use IP Location": "使用 IP 位置"
}, },
"Use Imperial Units": {
"Use Imperial Units": ""
},
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": {
"Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": ""
},
"Use Monospace Font": { "Use Monospace Font": {
"Use Monospace Font": "使用等寬字體" "Use Monospace Font": "使用等寬字體"
}, },

View File

@@ -1938,6 +1938,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Force terminal applications to always use dark color schemes",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Forget Device", "term": "Forget Device",
"translation": "", "translation": "",
@@ -4437,6 +4444,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Terminals - Always use Dark Theme",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Text", "term": "Text",
"translation": "", "translation": "",
@@ -4689,20 +4703,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Use Fahrenheit",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Use Fahrenheit instead of Celsius for temperature",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Use IP Location", "term": "Use IP Location",
"translation": "", "translation": "",
@@ -4710,6 +4710,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Use Imperial Units",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Use Monospace Font", "term": "Use Monospace Font",
"translation": "", "translation": "",