mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
@@ -16,7 +16,7 @@ Card {
|
||||
Column {
|
||||
anchors.centerIn: parent
|
||||
spacing: Theme.spacingS
|
||||
visible: !WeatherService.weather.available || WeatherService.weather.temp === 0
|
||||
visible: !WeatherService.weather.available
|
||||
|
||||
DankIcon {
|
||||
name: "cloud_off"
|
||||
@@ -46,7 +46,7 @@ Card {
|
||||
anchors.leftMargin: Theme.spacingL
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
spacing: Theme.spacingL
|
||||
visible: WeatherService.weather.available && WeatherService.weather.temp !== 0
|
||||
visible: WeatherService.weather.available
|
||||
|
||||
DankIcon {
|
||||
name: WeatherService.getWeatherIcon(WeatherService.weather.wCode)
|
||||
@@ -61,11 +61,9 @@ Card {
|
||||
|
||||
StyledText {
|
||||
text: {
|
||||
const temp = SettingsData.useFahrenheit ? WeatherService.weather.tempF : WeatherService.weather.temp;
|
||||
if (temp === undefined || temp === null || temp === 0) {
|
||||
return "--°" + (SettingsData.useFahrenheit ? "F" : "C");
|
||||
}
|
||||
return temp + "°" + (SettingsData.useFahrenheit ? "F" : "C");
|
||||
const temp = SettingsData.useFahrenheit ? WeatherService.weather.tempF : WeatherService.weather.temp
|
||||
if (temp === undefined || temp === null) return "--°" + (SettingsData.useFahrenheit ? "F" : "C")
|
||||
return temp + "°" + (SettingsData.useFahrenheit ? "F" : "C")
|
||||
}
|
||||
font.pixelSize: Theme.fontSizeXLarge + 4
|
||||
color: Theme.surfaceText
|
||||
|
||||
@@ -14,7 +14,7 @@ Item {
|
||||
Column {
|
||||
anchors.centerIn: parent
|
||||
spacing: Theme.spacingL
|
||||
visible: !WeatherService.weather.available || WeatherService.weather.temp === 0
|
||||
visible: !WeatherService.weather.available
|
||||
|
||||
DankIcon {
|
||||
name: "cloud_off"
|
||||
@@ -34,7 +34,7 @@ Item {
|
||||
Column {
|
||||
anchors.fill: parent
|
||||
spacing: Theme.spacingM
|
||||
visible: WeatherService.weather.available && WeatherService.weather.temp !== 0
|
||||
visible: WeatherService.weather.available
|
||||
|
||||
Item {
|
||||
width: parent.width
|
||||
@@ -358,7 +358,16 @@ Item {
|
||||
}
|
||||
|
||||
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
|
||||
color: Theme.surfaceText
|
||||
font.weight: Font.Medium
|
||||
@@ -405,7 +414,15 @@ Item {
|
||||
}
|
||||
|
||||
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
|
||||
color: Theme.surfaceText
|
||||
font.weight: Font.Medium
|
||||
|
||||
@@ -535,14 +535,14 @@ Item {
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
||||
StyledText {
|
||||
text: I18n.tr("Use Fahrenheit")
|
||||
text: I18n.tr("Use Imperial Units")
|
||||
font.pixelSize: Theme.fontSizeLarge
|
||||
font.weight: Font.Medium
|
||||
color: Theme.surfaceText
|
||||
}
|
||||
|
||||
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
|
||||
color: Theme.surfaceVariantText
|
||||
wrapMode: Text.WordWrap
|
||||
@@ -841,7 +841,7 @@ Item {
|
||||
Column {
|
||||
width: parent.width
|
||||
spacing: Theme.spacingL
|
||||
visible: !WeatherService.weather.available || WeatherService.weather.temp === 0
|
||||
visible: !WeatherService.weather.available
|
||||
|
||||
DankIcon {
|
||||
name: "cloud_off"
|
||||
@@ -861,7 +861,7 @@ Item {
|
||||
Column {
|
||||
width: parent.width
|
||||
spacing: Theme.spacingM
|
||||
visible: WeatherService.weather.available && WeatherService.weather.temp !== 0
|
||||
visible: WeatherService.weather.available
|
||||
|
||||
Item {
|
||||
width: parent.width
|
||||
@@ -1185,7 +1185,16 @@ Item {
|
||||
}
|
||||
|
||||
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
|
||||
color: Theme.surfaceText
|
||||
font.weight: Font.Medium
|
||||
@@ -1232,7 +1241,15 @@ Item {
|
||||
}
|
||||
|
||||
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
|
||||
color: Theme.surfaceText
|
||||
font.weight: Font.Medium
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
{
|
||||
"term": "7-Day Forecast",
|
||||
"context": "7-Day Forecast",
|
||||
"reference": "Modules/DankDash/WeatherTab.qml:525",
|
||||
"reference": "Modules/DankDash/WeatherTab.qml:542",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -68,19 +68,19 @@
|
||||
{
|
||||
"term": "Access clipboard history",
|
||||
"context": "Access clipboard history",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:75",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:78",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@
|
||||
{
|
||||
"term": "App Launcher",
|
||||
"context": "App Launcher",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:32",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:35",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -176,19 +176,19 @@
|
||||
{
|
||||
"term": "Applications",
|
||||
"context": "Applications",
|
||||
"reference": "Modules/AppDrawer/AppDrawerPopout.qml:190",
|
||||
"reference": "Modules/AppDrawer/AppDrawerPopout.qml:190, Modules/Settings/ThemeColorsTab.qml:1204",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Apply GTK Colors",
|
||||
"context": "Apply GTK Colors",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1379",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1380",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Apply Qt Colors",
|
||||
"context": "Apply Qt Colors",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1415",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1416",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -314,13 +314,13 @@
|
||||
{
|
||||
"term": "Auto Popup Gaps",
|
||||
"context": "Auto Popup Gaps",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1225",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1228",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Auto-hide",
|
||||
"context": "Auto-hide",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:830",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:833",
|
||||
"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:1226",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1229",
|
||||
"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:837",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:840",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -434,7 +434,7 @@
|
||||
{
|
||||
"term": "Back",
|
||||
"context": "Back",
|
||||
"reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:856",
|
||||
"reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1012",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -446,13 +446,13 @@
|
||||
{
|
||||
"term": "Battery",
|
||||
"context": "Battery",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:139",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:142",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Battery level and power management",
|
||||
"context": "Battery level and power management",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:140",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:143",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -494,37 +494,37 @@
|
||||
{
|
||||
"term": "Border",
|
||||
"context": "Border",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1446",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1449",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Border Color",
|
||||
"context": "Border Color",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1476",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1479",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "Bottom",
|
||||
"context": "Bottom",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:770",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:773",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Bottom Section",
|
||||
"context": "Bottom Section",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:2059",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:2062",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -560,25 +560,25 @@
|
||||
{
|
||||
"term": "CPU Temperature",
|
||||
"context": "CPU Temperature",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:101",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:104",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "CPU Usage",
|
||||
"context": "CPU Usage",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:80",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:83",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "CPU temperature display",
|
||||
"context": "CPU temperature display",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:102",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:105",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "CPU usage indicator",
|
||||
"context": "CPU usage indicator",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:81",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:84",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -608,7 +608,7 @@
|
||||
{
|
||||
"term": "Center Section",
|
||||
"context": "Center Section",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1976",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1979",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -626,7 +626,7 @@
|
||||
{
|
||||
"term": "Check for system updates",
|
||||
"context": "Check for system updates",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:195",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:198",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -644,7 +644,7 @@
|
||||
{
|
||||
"term": "Choose the border accent color",
|
||||
"context": "Choose the border accent color",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1483",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1486",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -686,13 +686,13 @@
|
||||
{
|
||||
"term": "Clipboard Manager",
|
||||
"context": "Clipboard Manager",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:74",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:77",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Clock",
|
||||
"context": "Clock",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:56",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:59",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -716,7 +716,7 @@
|
||||
{
|
||||
"term": "Color Picker",
|
||||
"context": "Color Picker",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:188",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:191",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -866,13 +866,13 @@
|
||||
{
|
||||
"term": "Control Center",
|
||||
"context": "Control Center",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:127",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:130",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Control currently playing media",
|
||||
"context": "Control currently playing media",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:69",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:72",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -926,7 +926,7 @@
|
||||
{
|
||||
"term": "Corner Radius Override",
|
||||
"context": "Corner Radius Override",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1358",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1361",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -962,13 +962,13 @@
|
||||
{
|
||||
"term": "Current time and date display",
|
||||
"context": "Current time and date display",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:57",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:60",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Current weather conditions and temperature",
|
||||
"context": "Current weather conditions and temperature",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:63",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:66",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1004,7 +1004,7 @@
|
||||
{
|
||||
"term": "Customizable empty space",
|
||||
"context": "Customizable empty space",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:158",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:161",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1040,7 +1040,7 @@
|
||||
{
|
||||
"term": "DWL service not available",
|
||||
"context": "DWL service not available",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:29",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:32",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1076,7 +1076,7 @@
|
||||
{
|
||||
"term": "DankBar Font Scale",
|
||||
"context": "DankBar Font Scale",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1685",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1688",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1202,7 +1202,7 @@
|
||||
{
|
||||
"term": "Disk Usage",
|
||||
"context": "Disk Usage",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:94",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:97",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1226,7 +1226,7 @@
|
||||
{
|
||||
"term": "Display and switch DWL layouts",
|
||||
"context": "Display and switch DWL layouts",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:26",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:29",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1238,7 +1238,7 @@
|
||||
{
|
||||
"term": "Display currently focused application title",
|
||||
"context": "Display currently focused application title",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:45",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:48",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1262,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:178",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:181",
|
||||
"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.",
|
||||
"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": ""
|
||||
},
|
||||
{
|
||||
@@ -1334,7 +1334,7 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -1478,7 +1478,7 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -1622,7 +1622,7 @@
|
||||
{
|
||||
"term": "Focused Window",
|
||||
"context": "Focused Window",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:44",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:47",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1661,6 +1661,12 @@
|
||||
"reference": "Modules/ProcessList/ProcessContextMenu.qml:207",
|
||||
"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",
|
||||
"context": "Forget Device",
|
||||
@@ -1700,13 +1706,13 @@
|
||||
{
|
||||
"term": "GPU Temperature",
|
||||
"context": "GPU Temperature",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:108",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:111",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "GPU temperature display",
|
||||
"context": "GPU temperature display",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:109",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:112",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1736,19 +1742,19 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "Goth Corners",
|
||||
"context": "Goth Corners",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1347",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1350",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1856,7 +1862,7 @@
|
||||
{
|
||||
"term": "Icon Theme",
|
||||
"context": "Icon Theme",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1297",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1298",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1868,7 +1874,7 @@
|
||||
{
|
||||
"term": "Idle Inhibitor",
|
||||
"context": "Idle Inhibitor",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:151",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:154",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -1976,7 +1982,7 @@
|
||||
{
|
||||
"term": "Keyboard Layout Name",
|
||||
"context": "Keyboard Layout Name",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:177",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:180",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2054,19 +2060,19 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "Left Section",
|
||||
"context": "Left Section",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1893",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1896",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2162,13 +2168,13 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "Manual Show/Hide",
|
||||
"context": "Manual Show/Hide",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:882",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:885",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2240,7 +2246,7 @@
|
||||
{
|
||||
"term": "Media Controls",
|
||||
"context": "Media Controls",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:68",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:71",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2288,13 +2294,13 @@
|
||||
{
|
||||
"term": "Memory Usage",
|
||||
"context": "Memory Usage",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:87",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:90",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Memory usage indicator",
|
||||
"context": "Memory usage indicator",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:88",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:91",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2414,13 +2420,13 @@
|
||||
{
|
||||
"term": "Network Speed Monitor",
|
||||
"context": "Network Speed Monitor",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:170",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:173",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -2462,7 +2468,7 @@
|
||||
{
|
||||
"term": "No Background",
|
||||
"context": "No Background",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1332",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1335",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2546,7 +2552,7 @@
|
||||
{
|
||||
"term": "Notepad",
|
||||
"context": "Notepad",
|
||||
"reference": "DMSShell.qml:455, Modules/Settings/DankBarTab.qml:182",
|
||||
"reference": "DMSShell.qml:455, Modules/Settings/DankBarTab.qml:185",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2570,7 +2576,7 @@
|
||||
{
|
||||
"term": "Notification Center",
|
||||
"context": "Notification Center",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:133",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:136",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2780,7 +2786,7 @@
|
||||
{
|
||||
"term": "Percentage",
|
||||
"context": "Percentage",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:95",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:98",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2858,7 +2864,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:209",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:212",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2888,7 +2894,7 @@
|
||||
{
|
||||
"term": "Position",
|
||||
"context": "Position",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:760",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:763",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2936,7 +2942,7 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -2948,7 +2954,7 @@
|
||||
{
|
||||
"term": "Prevent screen timeout",
|
||||
"context": "Prevent screen timeout",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:152",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:155",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -2978,7 +2984,7 @@
|
||||
{
|
||||
"term": "Privacy Indicator",
|
||||
"context": "Privacy Indicator",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:121",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:124",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3008,19 +3014,19 @@
|
||||
{
|
||||
"term": "Quick access to application launcher",
|
||||
"context": "Quick access to application launcher",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:33",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:36",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Quick access to color picker",
|
||||
"context": "Quick access to color picker",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:189",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:192",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Quick access to notepad",
|
||||
"context": "Quick access to notepad",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:183",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:186",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3038,7 +3044,7 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -3098,13 +3104,13 @@
|
||||
{
|
||||
"term": "Requires DWL compositor",
|
||||
"context": "Requires DWL compositor",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:29",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:32",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -3146,13 +3152,13 @@
|
||||
{
|
||||
"term": "Right",
|
||||
"context": "Right",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:770",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:773",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Right Section",
|
||||
"context": "Right Section",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:2059",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:2062",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3176,7 +3182,7 @@
|
||||
{
|
||||
"term": "Running Apps",
|
||||
"context": "Running Apps",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:50",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:53",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3212,7 +3218,7 @@
|
||||
{
|
||||
"term": "Scale DankBar font sizes independently",
|
||||
"context": "Scale DankBar font sizes independently",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1692",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1695",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3356,7 +3362,7 @@
|
||||
{
|
||||
"term": "Separator",
|
||||
"context": "Separator",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:163",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:166",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3482,7 +3488,7 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -3542,19 +3548,19 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"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:122",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:125",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3566,7 +3572,7 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -3590,13 +3596,13 @@
|
||||
{
|
||||
"term": "Spacer",
|
||||
"context": "Spacer",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:157",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:160",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
@@ -3608,7 +3614,7 @@
|
||||
{
|
||||
"term": "Square Corners",
|
||||
"context": "Square Corners",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1321",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1324",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3698,13 +3704,13 @@
|
||||
{
|
||||
"term": "Sync Mode with Portal",
|
||||
"context": "Sync Mode with Portal",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1205",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1214",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Sync dark mode with settings portals for system-wide theme hints",
|
||||
"context": "Sync dark mode with settings portals for system-wide theme hints",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1212",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1215",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3716,7 +3722,7 @@
|
||||
{
|
||||
"term": "System App Theming",
|
||||
"context": "System App Theming",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1347",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1348",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3740,13 +3746,13 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "System Update",
|
||||
"context": "System Update",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:194",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:197",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3770,7 +3776,7 @@
|
||||
{
|
||||
"term": "System notification area icons",
|
||||
"context": "System notification area icons",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:116",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:119",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3803,6 +3809,12 @@
|
||||
"reference": "Modules/Settings/WidgetTweaksTab.qml:314",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminals - Always use Dark Theme",
|
||||
"context": "Terminals - Always use Dark Theme",
|
||||
"reference": "Modules/Settings/ThemeColorsTab.qml:1224",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "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).",
|
||||
"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": ""
|
||||
},
|
||||
{
|
||||
@@ -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.",
|
||||
"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": ""
|
||||
},
|
||||
{
|
||||
@@ -3908,7 +3920,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:889",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:892",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3932,7 +3944,7 @@
|
||||
{
|
||||
"term": "Top",
|
||||
"context": "Top",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:770",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:773",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -3944,7 +3956,7 @@
|
||||
{
|
||||
"term": "Top Section",
|
||||
"context": "Top Section",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1893",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1896",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4020,23 +4032,23 @@
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use Fahrenheit",
|
||||
"context": "Use Fahrenheit",
|
||||
"term": "Use IP Location",
|
||||
"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",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use Fahrenheit instead of Celsius for temperature",
|
||||
"context": "Use Fahrenheit instead of Celsius for temperature",
|
||||
"term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)",
|
||||
"context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)",
|
||||
"reference": "Modules/Settings/TimeWeatherTab.qml:545",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use IP Location",
|
||||
"context": "Use IP Location",
|
||||
"reference": "Modules/Settings/DisplaysTab.qml:403",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use Monospace Font",
|
||||
"context": "Use Monospace Font",
|
||||
@@ -4112,7 +4124,7 @@
|
||||
{
|
||||
"term": "VPN",
|
||||
"context": "VPN",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:145",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:148",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4124,7 +4136,7 @@
|
||||
{
|
||||
"term": "VPN status and quick connect",
|
||||
"context": "VPN status and quick connect",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:146",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:149",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4166,13 +4178,13 @@
|
||||
{
|
||||
"term": "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": ""
|
||||
},
|
||||
{
|
||||
"term": "Visual divider between widgets",
|
||||
"context": "Visual divider between widgets",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:164",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:167",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4232,7 +4244,7 @@
|
||||
{
|
||||
"term": "Weather Widget",
|
||||
"context": "Weather Widget",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:62",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:65",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4268,7 +4280,7 @@
|
||||
{
|
||||
"term": "Widget Management",
|
||||
"context": "Widget Management",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1787",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:1790",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
@@ -4316,7 +4328,7 @@
|
||||
{
|
||||
"term": "Workspace Switcher",
|
||||
"context": "Workspace Switcher",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:38",
|
||||
"reference": "Modules/Settings/DankBarTab.qml:41",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
|
||||
@@ -830,6 +830,9 @@
|
||||
"Force Kill Process": {
|
||||
"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": "Dimentica Dispositivo"
|
||||
},
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "Testo"
|
||||
},
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "Usa Font Monospace"
|
||||
},
|
||||
|
||||
@@ -830,6 +830,9 @@
|
||||
"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": "デバイスを忘れる"
|
||||
},
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "端末のカスタム追加パラメーター"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "テキスト"
|
||||
},
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "等幅フォントを使用"
|
||||
},
|
||||
|
||||
@@ -207,7 +207,7 @@
|
||||
"Available": "Dostępny"
|
||||
},
|
||||
"Available Layouts": {
|
||||
"Available Layouts": ""
|
||||
"Available Layouts": "Dostępne układy"
|
||||
},
|
||||
"Available Plugins": {
|
||||
"Available Plugins": "Dostępne wtyczki"
|
||||
@@ -306,10 +306,10 @@
|
||||
"Center Section": "Sekcja środkowa"
|
||||
},
|
||||
"Center Tiling": {
|
||||
"Center Tiling": ""
|
||||
"Center Tiling": "Płytki środkowe"
|
||||
},
|
||||
"Changes:": {
|
||||
"Changes:": ""
|
||||
"Changes:": "Zmiany:"
|
||||
},
|
||||
"Check for system updates": {
|
||||
"Check for system updates": "Sprawdź aktualizacje systemu"
|
||||
@@ -408,7 +408,7 @@
|
||||
"Confirm": "Potwierdź"
|
||||
},
|
||||
"Confirm Display Changes": {
|
||||
"Confirm Display Changes": ""
|
||||
"Confirm Display Changes": "Potwierdź zmiany wyświetlania"
|
||||
},
|
||||
"Confirm passkey for ": {
|
||||
"Confirm passkey for ": "Potwierdź klucz dostępu dla "
|
||||
@@ -504,7 +504,7 @@
|
||||
"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": "Dostosuj, które akcje będą wyświetlane w menu zasilania"
|
||||
},
|
||||
"DEMO MODE - Click anywhere to exit": {
|
||||
"DEMO MODE - Click anywhere to exit": "TRYB DEMO - Kliknij gdziekolwiek aby wyjść"
|
||||
@@ -519,7 +519,7 @@
|
||||
"DMS_SOCKET not available": "DMS_SOCKET niedostępny"
|
||||
},
|
||||
"DWL service not available": {
|
||||
"DWL service not available": ""
|
||||
"DWL service not available": "Usługa DWL niedostępna"
|
||||
},
|
||||
"Daily at:": {
|
||||
"Daily at:": "Codziennie o:"
|
||||
@@ -555,13 +555,13 @@
|
||||
"Day Temperature": "Temperatura w dzień"
|
||||
},
|
||||
"Deck": {
|
||||
"Deck": ""
|
||||
"Deck": "Pokład"
|
||||
},
|
||||
"Default": {
|
||||
"Default": "Domyślne"
|
||||
},
|
||||
"Default selected action": {
|
||||
"Default selected action": ""
|
||||
"Default selected action": "Domyślnie wybrana akcja"
|
||||
},
|
||||
"Defaults": {
|
||||
"Defaults": "Domyślne"
|
||||
@@ -588,7 +588,7 @@
|
||||
"Disable Autoconnect": "Wyłącz automatyczne łączenie"
|
||||
},
|
||||
"Disabled": {
|
||||
"Disabled": ""
|
||||
"Disabled": "Wyłączony"
|
||||
},
|
||||
"Disconnect": {
|
||||
"Disconnect": "Rozłącz"
|
||||
@@ -612,7 +612,7 @@
|
||||
"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": "Wyświetlanie i przełączanie układów DWL"
|
||||
},
|
||||
"Display application icons in workspace indicators": {
|
||||
"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 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": "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"
|
||||
},
|
||||
"Enabled": {
|
||||
"Enabled": ""
|
||||
"Enabled": "Włączony"
|
||||
},
|
||||
"End": {
|
||||
"End": "Koniec"
|
||||
@@ -830,6 +830,9 @@
|
||||
"Force Kill Process": {
|
||||
"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": "Zapomnij urządzenie"
|
||||
},
|
||||
@@ -879,7 +882,7 @@
|
||||
"Graphics": "Grafika"
|
||||
},
|
||||
"Grid": {
|
||||
"Grid": ""
|
||||
"Grid": "Siatka"
|
||||
},
|
||||
"Group by App": {
|
||||
"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"
|
||||
},
|
||||
"HSV": {
|
||||
"HSV": ""
|
||||
"HSV": "HSV"
|
||||
},
|
||||
"Health": {
|
||||
"Health": "Zdrowie"
|
||||
@@ -897,7 +900,7 @@
|
||||
"Height to Edge Gap (Exclusive Zone)": "Odstęp od krawędzi (strefa wyłączności)"
|
||||
},
|
||||
"Hex": {
|
||||
"Hex": ""
|
||||
"Hex": "Klątwa"
|
||||
},
|
||||
"Hibernate": {
|
||||
"Hibernate": "Hibernacja"
|
||||
@@ -957,7 +960,7 @@
|
||||
"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": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu"
|
||||
},
|
||||
"Input Devices": {
|
||||
"Input Devices": "Urządzenia wejściowe"
|
||||
@@ -984,7 +987,7 @@
|
||||
"Jobs: ": "Zadania: "
|
||||
},
|
||||
"Keep Changes": {
|
||||
"Keep Changes": ""
|
||||
"Keep Changes": "Zachowaj zmiany"
|
||||
},
|
||||
"Keyboard Layout Name": {
|
||||
"Keyboard Layout Name": "Nazwa układu klawiatury"
|
||||
@@ -1026,7 +1029,7 @@
|
||||
"Launcher Button Logo": "Logo przycisku programu uruchamiającego"
|
||||
},
|
||||
"Layout": {
|
||||
"Layout": ""
|
||||
"Layout": "Układ"
|
||||
},
|
||||
"Left": {
|
||||
"Left": "Lewa"
|
||||
@@ -1050,7 +1053,7 @@
|
||||
"Location Search": "Wyszukiwanie lokalizacji"
|
||||
},
|
||||
"Lock": {
|
||||
"Lock": ""
|
||||
"Lock": "Zamek"
|
||||
},
|
||||
"Lock Screen": {
|
||||
"Lock Screen": "Ekran blokady"
|
||||
@@ -1086,7 +1089,7 @@
|
||||
"Manual Show/Hide": "Ręczne pokazywanie/ukrywanie"
|
||||
},
|
||||
"Margin": {
|
||||
"Margin": ""
|
||||
"Margin": "Margines"
|
||||
},
|
||||
"Marker Supply Empty": {
|
||||
"Marker Supply Empty": "Brak materiału eksploatacyjnego"
|
||||
@@ -1158,7 +1161,7 @@
|
||||
"Mode:": "Tryb:"
|
||||
},
|
||||
"Mode: ": {
|
||||
"Mode: ": ""
|
||||
"Mode: ": "Tryb: "
|
||||
},
|
||||
"Monitor Selection:": {
|
||||
"Monitor Selection:": "Wybór monitora:"
|
||||
@@ -1167,7 +1170,7 @@
|
||||
"Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu"
|
||||
},
|
||||
"Monocle": {
|
||||
"Monocle": ""
|
||||
"Monocle": "Monokl"
|
||||
},
|
||||
"Monospace Font": {
|
||||
"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 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": "Przezroczystość"
|
||||
@@ -1446,7 +1449,7 @@
|
||||
"Position": "Pozycja"
|
||||
},
|
||||
"Position: ": {
|
||||
"Position: ": ""
|
||||
"Position: ": "Stanowisko: "
|
||||
},
|
||||
"Power & Security": {
|
||||
"Power & Security": "Zasilanie i bezpieczeństwo"
|
||||
@@ -1455,7 +1458,7 @@
|
||||
"Power Action Confirmation": "Potwierdzenie działania zasilania"
|
||||
},
|
||||
"Power Menu Customization": {
|
||||
"Power Menu Customization": ""
|
||||
"Power Menu Customization": "Dostosowywanie menu zasilania"
|
||||
},
|
||||
"Power Off": {
|
||||
"Power Off": "Wyłącz komputer"
|
||||
@@ -1470,7 +1473,7 @@
|
||||
"Pressure": "Ciśnienie"
|
||||
},
|
||||
"Prevent idle for media": {
|
||||
"Prevent idle for media": ""
|
||||
"Prevent idle for media": "Zapobiegaj bezczynności nośników"
|
||||
},
|
||||
"Prevent screen timeout": {
|
||||
"Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu"
|
||||
@@ -1515,7 +1518,7 @@
|
||||
"Quick note-taking slideout panel": "Wysuwany panel szybkiego sporządzania notatek"
|
||||
},
|
||||
"RGB": {
|
||||
"RGB": ""
|
||||
"RGB": "RGB"
|
||||
},
|
||||
"Rain Chance": {
|
||||
"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."
|
||||
},
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": ""
|
||||
"Requires DWL compositor": "Wymaga kompozytora DWL"
|
||||
},
|
||||
"Reset": {
|
||||
"Reset": "Resetuj"
|
||||
@@ -1557,22 +1560,22 @@
|
||||
"Resources": "Źródła"
|
||||
},
|
||||
"Restart": {
|
||||
"Restart": ""
|
||||
"Restart": "Uruchom ponownie"
|
||||
},
|
||||
"Restart DMS": {
|
||||
"Restart DMS": ""
|
||||
"Restart DMS": "Uruchom ponownie DMS"
|
||||
},
|
||||
"Restart the DankMaterialShell": {
|
||||
"Restart the DankMaterialShell": ""
|
||||
"Restart the DankMaterialShell": "Uruchom ponownie DankMaterialShell"
|
||||
},
|
||||
"Resume": {
|
||||
"Resume": "Wznów"
|
||||
},
|
||||
"Revert": {
|
||||
"Revert": ""
|
||||
"Revert": "Odwracać"
|
||||
},
|
||||
"Reverting in:": {
|
||||
"Reverting in:": ""
|
||||
"Reverting in:": "Przywracanie w:"
|
||||
},
|
||||
"Right": {
|
||||
"Right": "Prawo"
|
||||
@@ -1581,10 +1584,10 @@
|
||||
"Right Section": "Sekcja prawa"
|
||||
},
|
||||
"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": "Kliknij prawym przyciskiem myszy pasek widżetu, aby przejść do następnego"
|
||||
},
|
||||
"Run User Templates": {
|
||||
"Run User Templates": "Uruchom szablony użytkownika"
|
||||
@@ -1620,7 +1623,7 @@
|
||||
"Science": "Nauka"
|
||||
},
|
||||
"Scrolling": {
|
||||
"Scrolling": ""
|
||||
"Scrolling": "Przewijanie"
|
||||
},
|
||||
"Search file contents": {
|
||||
"Search file contents": "Przeszukaj zawartość plików"
|
||||
@@ -1704,31 +1707,31 @@
|
||||
"Show Dock": "Pokaż dok"
|
||||
},
|
||||
"Show Hibernate": {
|
||||
"Show Hibernate": ""
|
||||
"Show Hibernate": "Pokaż hibernację"
|
||||
},
|
||||
"Show Line Numbers": {
|
||||
"Show Line Numbers": "Pokaż numery wierszy"
|
||||
},
|
||||
"Show Lock": {
|
||||
"Show Lock": ""
|
||||
"Show Lock": "Pokaż blokadę"
|
||||
},
|
||||
"Show Log Out": {
|
||||
"Show Log Out": ""
|
||||
"Show Log Out": "Pokaż wylogowanie"
|
||||
},
|
||||
"Show Power Actions": {
|
||||
"Show Power Actions": "Pokaż akcje zasilania"
|
||||
},
|
||||
"Show Power Off": {
|
||||
"Show Power Off": ""
|
||||
"Show Power Off": "Pokaż wyłączone zasilanie"
|
||||
},
|
||||
"Show Reboot": {
|
||||
"Show Reboot": ""
|
||||
"Show Reboot": "Pokaż ponowne uruchomienie"
|
||||
},
|
||||
"Show Restart DMS": {
|
||||
"Show Restart DMS": ""
|
||||
"Show Restart DMS": "Pokaż ponowne uruchomienie DMS"
|
||||
},
|
||||
"Show Suspend": {
|
||||
"Show Suspend": ""
|
||||
"Show Suspend": "Pokaż zawieszenie"
|
||||
},
|
||||
"Show Workspace Apps": {
|
||||
"Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego"
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "Tekst"
|
||||
},
|
||||
@@ -1935,7 +1941,7 @@
|
||||
"This will permanently delete all clipboard history.": "To trwale usunie całą historię schowka."
|
||||
},
|
||||
"Tiling": {
|
||||
"Tiling": ""
|
||||
"Tiling": "Dekarstwo"
|
||||
},
|
||||
"Time & Weather": {
|
||||
"Time & Weather": "Czas i pogoda"
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "Użyj czcionki o stałej szerokości"
|
||||
},
|
||||
@@ -2067,19 +2079,19 @@
|
||||
"VPN status and quick connect": "Status VPN i szybkie połączenie"
|
||||
},
|
||||
"VRR: ": {
|
||||
"VRR: ": ""
|
||||
"VRR: ": "VRR: "
|
||||
},
|
||||
"Vertical Deck": {
|
||||
"Vertical Deck": ""
|
||||
"Vertical Deck": "Pionowy pokład"
|
||||
},
|
||||
"Vertical Grid": {
|
||||
"Vertical Grid": ""
|
||||
"Vertical Grid": "Siatka pionowa"
|
||||
},
|
||||
"Vertical Scrolling": {
|
||||
"Vertical Scrolling": ""
|
||||
"Vertical Scrolling": "Przewijanie pionowe"
|
||||
},
|
||||
"Vertical Tiling": {
|
||||
"Vertical Tiling": ""
|
||||
"Vertical Tiling": "Płytki pionowe"
|
||||
},
|
||||
"Vibrant palette with playful saturation.": {
|
||||
"Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem."
|
||||
|
||||
@@ -830,6 +830,9 @@
|
||||
"Force Kill Process": {
|
||||
"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": "Esquecer Dispositivo"
|
||||
},
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Parâmetros adicionais para o terminal"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "Texto"
|
||||
},
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "Usar Fonte Monoespaçada"
|
||||
},
|
||||
|
||||
@@ -207,7 +207,7 @@
|
||||
"Available": "Kullanılabilir"
|
||||
},
|
||||
"Available Layouts": {
|
||||
"Available Layouts": ""
|
||||
"Available Layouts": "Mevcut Düzenler"
|
||||
},
|
||||
"Available Plugins": {
|
||||
"Available Plugins": "Kullanılabilir Eklentiler"
|
||||
@@ -306,7 +306,7 @@
|
||||
"Center Section": "Orta Bölüm"
|
||||
},
|
||||
"Center Tiling": {
|
||||
"Center Tiling": ""
|
||||
"Center Tiling": "Merkez Döşeme"
|
||||
},
|
||||
"Changes:": {
|
||||
"Changes:": "Değişiklikler:"
|
||||
@@ -504,7 +504,7 @@
|
||||
"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": "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 MODU - Çıkmak için herhangi bir yere tıklayın"
|
||||
@@ -519,7 +519,7 @@
|
||||
"DMS_SOCKET not available": "DMS_SOCKET kullanılamıyor"
|
||||
},
|
||||
"DWL service not available": {
|
||||
"DWL service not available": ""
|
||||
"DWL service not available": "DWL hizmeti kullanılamıyor"
|
||||
},
|
||||
"Daily at:": {
|
||||
"Daily at:": "Her gün saat:"
|
||||
@@ -555,13 +555,13 @@
|
||||
"Day Temperature": "Gündüz Sıcaklığı"
|
||||
},
|
||||
"Deck": {
|
||||
"Deck": ""
|
||||
"Deck": "Deck"
|
||||
},
|
||||
"Default": {
|
||||
"Default": "Varsayılan"
|
||||
},
|
||||
"Default selected action": {
|
||||
"Default selected action": ""
|
||||
"Default selected action": "Ön tanımlı seçili eylem"
|
||||
},
|
||||
"Defaults": {
|
||||
"Defaults": "Varsayılanlar"
|
||||
@@ -612,7 +612,7 @@
|
||||
"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": "DWL düzenlerini görüntüle ve değiştir"
|
||||
},
|
||||
"Display application icons in workspace indicators": {
|
||||
"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": "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": "Aygıtı Unut"
|
||||
},
|
||||
@@ -879,7 +882,7 @@
|
||||
"Graphics": "Grafik"
|
||||
},
|
||||
"Grid": {
|
||||
"Grid": ""
|
||||
"Grid": "Izgara"
|
||||
},
|
||||
"Group by App": {
|
||||
"Group by App": "Uygulamaya Göre Gruplandır"
|
||||
@@ -1026,7 +1029,7 @@
|
||||
"Launcher Button Logo": "Başlatıcı Buton Logosu"
|
||||
},
|
||||
"Layout": {
|
||||
"Layout": ""
|
||||
"Layout": "Düzen"
|
||||
},
|
||||
"Left": {
|
||||
"Left": "Sol"
|
||||
@@ -1167,7 +1170,7 @@
|
||||
"Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör"
|
||||
},
|
||||
"Monocle": {
|
||||
"Monocle": ""
|
||||
"Monocle": "Monocle"
|
||||
},
|
||||
"Monospace Font": {
|
||||
"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 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": "Opaklık"
|
||||
@@ -1455,7 +1458,7 @@
|
||||
"Power Action Confirmation": "Güç Eylemi Onayı"
|
||||
},
|
||||
"Power Menu Customization": {
|
||||
"Power Menu Customization": ""
|
||||
"Power Menu Customization": "Güç Menüsü Özelleştirme"
|
||||
},
|
||||
"Power Off": {
|
||||
"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"
|
||||
},
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": ""
|
||||
"Requires DWL compositor": "DWL kompozitör gerektirir"
|
||||
},
|
||||
"Reset": {
|
||||
"Reset": "Sıfırla"
|
||||
@@ -1560,10 +1563,10 @@
|
||||
"Restart": "Yeniden Başlat"
|
||||
},
|
||||
"Restart DMS": {
|
||||
"Restart DMS": ""
|
||||
"Restart DMS": "DMS'yi Yeniden Başlat"
|
||||
},
|
||||
"Restart the DankMaterialShell": {
|
||||
"Restart the DankMaterialShell": ""
|
||||
"Restart the DankMaterialShell": "DankMaterialShell'i yeniden başlatın"
|
||||
},
|
||||
"Resume": {
|
||||
"Resume": "Sürdür"
|
||||
@@ -1581,10 +1584,10 @@
|
||||
"Right Section": "Sağ Bölüm"
|
||||
},
|
||||
"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": "Çubuk widget'ını sağ tıklayarak döngüye değiştir"
|
||||
},
|
||||
"Run User Templates": {
|
||||
"Run User Templates": "Kullanıcı Şablonlarını Çalıştır"
|
||||
@@ -1620,7 +1623,7 @@
|
||||
"Science": "Bilim"
|
||||
},
|
||||
"Scrolling": {
|
||||
"Scrolling": ""
|
||||
"Scrolling": "Kaydırma"
|
||||
},
|
||||
"Search file contents": {
|
||||
"Search file contents": "Dosya içeriklerini ara"
|
||||
@@ -1704,31 +1707,31 @@
|
||||
"Show Dock": "Dock'u Göster"
|
||||
},
|
||||
"Show Hibernate": {
|
||||
"Show Hibernate": ""
|
||||
"Show Hibernate": "Hazırda Bekleti Göster"
|
||||
},
|
||||
"Show Line Numbers": {
|
||||
"Show Line Numbers": "Satır Numaralarını Göster"
|
||||
},
|
||||
"Show Lock": {
|
||||
"Show Lock": ""
|
||||
"Show Lock": "Kilitleyi Göster"
|
||||
},
|
||||
"Show Log Out": {
|
||||
"Show Log Out": ""
|
||||
"Show Log Out": "Çıkışı Göster"
|
||||
},
|
||||
"Show Power Actions": {
|
||||
"Show Power Actions": "Güç Eylemlerini Göster"
|
||||
},
|
||||
"Show Power Off": {
|
||||
"Show Power Off": ""
|
||||
"Show Power Off": "Kapatı Göster"
|
||||
},
|
||||
"Show Reboot": {
|
||||
"Show Reboot": ""
|
||||
"Show Reboot": "Yeniden Başlatı Göster"
|
||||
},
|
||||
"Show Restart DMS": {
|
||||
"Show Restart DMS": ""
|
||||
"Show Restart DMS": "DMS'yi Yeniden Başlatı Göster"
|
||||
},
|
||||
"Show Suspend": {
|
||||
"Show Suspend": ""
|
||||
"Show Suspend": "Askıya Alı Göster"
|
||||
},
|
||||
"Show Workspace Apps": {
|
||||
"Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster"
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Terminal özel ek parametreleri"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "Metin"
|
||||
},
|
||||
@@ -1935,7 +1941,7 @@
|
||||
"This will permanently delete all clipboard history.": "Bu, tüm pano geçmişini kalıcı olarak siler."
|
||||
},
|
||||
"Tiling": {
|
||||
"Tiling": ""
|
||||
"Tiling": "Döşeme"
|
||||
},
|
||||
"Time & Weather": {
|
||||
"Time & Weather": "Zaman & Hava Durumu"
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "Sabit Aralıklı Yazı Tipi Kullan"
|
||||
},
|
||||
@@ -2070,16 +2082,16 @@
|
||||
"VRR: ": "VRR: "
|
||||
},
|
||||
"Vertical Deck": {
|
||||
"Vertical Deck": ""
|
||||
"Vertical Deck": "Dikey Deck"
|
||||
},
|
||||
"Vertical Grid": {
|
||||
"Vertical Grid": ""
|
||||
"Vertical Grid": "Dikey Izgara"
|
||||
},
|
||||
"Vertical Scrolling": {
|
||||
"Vertical Scrolling": ""
|
||||
"Vertical Scrolling": "Dikey Kaydırma"
|
||||
},
|
||||
"Vertical Tiling": {
|
||||
"Vertical Tiling": ""
|
||||
"Vertical Tiling": "Dikey Döşeme"
|
||||
},
|
||||
"Vibrant palette with playful saturation.": {
|
||||
"Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet"
|
||||
|
||||
@@ -830,6 +830,9 @@
|
||||
"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": "取消配对"
|
||||
},
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "终端自定义附加参数"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "文本"
|
||||
},
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "使用等宽字体"
|
||||
},
|
||||
|
||||
@@ -830,6 +830,9 @@
|
||||
"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": "忘記設備"
|
||||
},
|
||||
@@ -1904,6 +1907,9 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "自訂終端附加參數"
|
||||
},
|
||||
"Terminals - Always use Dark Theme": {
|
||||
"Terminals - Always use Dark Theme": ""
|
||||
},
|
||||
"Text": {
|
||||
"Text": "文字"
|
||||
},
|
||||
@@ -2021,6 +2027,12 @@
|
||||
"Use IP Location": {
|
||||
"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": "使用等寬字體"
|
||||
},
|
||||
|
||||
@@ -1938,6 +1938,13 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Force terminal applications to always use dark color schemes",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Forget Device",
|
||||
"translation": "",
|
||||
@@ -4437,6 +4444,13 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminals - Always use Dark Theme",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Text",
|
||||
"translation": "",
|
||||
@@ -4689,20 +4703,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use Fahrenheit",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use Fahrenheit instead of Celsius for temperature",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Use IP Location",
|
||||
"translation": "",
|
||||
@@ -4710,6 +4710,20 @@
|
||||
"reference": "",
|
||||
"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",
|
||||
"translation": "",
|
||||
|
||||
Reference in New Issue
Block a user