1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

Localization framework

This commit is contained in:
bbedward
2025-10-06 16:00:50 -04:00
parent 2ccec607a0
commit 5460c20ac3
79 changed files with 5356 additions and 396 deletions

View File

@@ -248,7 +248,7 @@ Item {
}
StyledText {
text: "About"
text: qsTr("About")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -307,7 +307,7 @@ Item {
}
StyledText {
text: "Technical Details"
text: qsTr("Technical Details")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -322,7 +322,7 @@ Item {
rowSpacing: Theme.spacingS
StyledText {
text: "Framework:"
text: qsTr("Framework:")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
@@ -345,20 +345,20 @@ Item {
}
StyledText {
text: "Language:"
text: qsTr("Language:")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "QML (Qt Modeling Language)"
text: qsTr("QML (Qt Modeling Language)")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
}
StyledText {
text: "Compositor:"
text: qsTr("Compositor:")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
@@ -410,7 +410,7 @@ Item {
}
StyledText {
text: "Github:"
text: qsTr("Github:")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
@@ -437,7 +437,7 @@ Item {
}
StyledText {
text: "- Support Us With a Star ⭐"
text: qsTr("- Support Us With a Star ⭐")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
@@ -445,7 +445,7 @@ Item {
}
StyledText {
text: "System Monitoring:"
text: qsTr("System Monitoring:")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
@@ -472,7 +472,7 @@ Item {
}
StyledText {
text: "- Stateless System Monitoring"
text: qsTr("- Stateless System Monitoring")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
@@ -480,7 +480,7 @@ Item {
}
StyledText {
text: "Dank Suite:"
text: qsTr("Dank Suite:")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText

View File

@@ -695,7 +695,7 @@ Item {
}
StyledText {
text: "Position"
text: qsTr("Position")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -765,14 +765,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Auto-hide"
text: qsTr("Auto-hide")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Automatically hide the top bar to expand screen real estate"
text: qsTr("Automatically hide the top bar to expand screen real estate")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -824,7 +824,7 @@ Item {
}
StyledText {
text: "Toggle top bar visibility manually (can be controlled via IPC)"
text: qsTr("Toggle top bar visibility manually (can be controlled via IPC)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -871,7 +871,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Show on Overview"
text: qsTr("Show on Overview")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -930,7 +930,7 @@ Item {
}
StyledText {
text: "Spacing"
text: qsTr("Spacing")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -971,7 +971,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Exclusive Zone Offset"
text: qsTr("Exclusive Zone Offset")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -999,7 +999,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Size"
text: qsTr("Size")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -1025,7 +1025,7 @@ Item {
DankToggle {
width: parent.width
text: "Square Corners"
text: qsTr("Square Corners")
description: "Removes rounded corners from bar container."
checked: SettingsData.dankBarSquareCorners
onToggled: checked => {
@@ -1036,7 +1036,7 @@ Item {
DankToggle {
width: parent.width
text: "No Background"
text: qsTr("No Background")
description: "Remove widget backgrounds for a minimal look with tighter spacing."
checked: SettingsData.dankBarNoBackground
onToggled: checked => {
@@ -1047,7 +1047,7 @@ Item {
DankToggle {
width: parent.width
text: "Goth Corners"
text: qsTr("Goth Corners")
description: "Add curved swooping tips at the bottom of the bar."
checked: SettingsData.dankBarGothCornersEnabled
onToggled: checked => {
@@ -1058,7 +1058,7 @@ Item {
DankToggle {
width: parent.width
text: "Border"
text: qsTr("Border")
description: "Add a 1px border to the bar. Smart edge detection only shows border on exposed sides."
checked: SettingsData.dankBarBorderEnabled
onToggled: checked => {
@@ -1099,7 +1099,7 @@ Item {
StyledText {
id: widgetTitle
text: "Widget Management"
text: qsTr("Widget Management")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1137,7 +1137,7 @@ Item {
}
StyledText {
text: "Reset"
text: qsTr("Reset")
font.pixelSize: Theme.fontSizeSmall
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1281,7 +1281,7 @@ Item {
id: centerSection
anchors.fill: parent
anchors.margins: Theme.spacingL
title: "Center Section"
title: qsTr("Center Section")
titleIcon: "format_align_center"
sectionId: "center"
allWidgets: dankBarTab.baseWidgetDefinitions

View File

@@ -108,14 +108,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Connected Displays"
text: qsTr("Connected Displays")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Configure which displays show shell components"
text: qsTr("Configure which displays show shell components")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -131,7 +131,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Available Screens (" + Quickshell.screens.length + ")"
text: qsTr("Available Screens (") + Quickshell.screens.length + ")"
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
@@ -273,7 +273,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Show on screens:"
text: qsTr("Show on screens:")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -288,7 +288,7 @@ Item {
DankToggle {
width: parent.width
text: "All displays"
text: qsTr("All displays")
description: "Show on all connected displays"
checked: parent.selectedScreens.includes("all")
onToggled: (checked) => {

View File

@@ -50,7 +50,7 @@ Item {
StyledText {
id: positionText
text: "Dock Position"
text: qsTr("Dock Position")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -125,14 +125,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Auto-hide Dock"
text: qsTr("Auto-hide Dock")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Hide the dock when not in use and reveal it when hovering near the dock area"
text: qsTr("Hide the dock when not in use and reveal it when hovering near the dock area")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -176,14 +176,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Show Dock"
text: qsTr("Show Dock")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen"
text: qsTr("Display a dock with pinned and running applications that can be positioned at the top, bottom, left, or right edge of the screen")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -229,7 +229,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Show on Overview"
text: qsTr("Show on Overview")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -294,14 +294,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Group by App"
text: qsTr("Group by App")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Group multiple windows of the same app together with a window count indicator"
text: qsTr("Group multiple windows of the same app together with a window count indicator")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -360,7 +360,7 @@ Item {
}
StyledText {
text: "Spacing"
text: qsTr("Spacing")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -373,7 +373,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Padding"
text: qsTr("Padding")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -401,7 +401,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Height to Edge Gap (Exclusive Zone)"
text: qsTr("Height to Edge Gap (Exclusive Zone)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -464,7 +464,7 @@ Item {
}
StyledText {
text: "Dock Transparency"
text: qsTr("Dock Transparency")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText

View File

@@ -47,7 +47,7 @@ Item {
}
StyledText {
text: "Launch Prefix"
text: qsTr("Launch Prefix")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -127,7 +127,7 @@ Item {
}
StyledText {
text: "Recently Used Apps"
text: qsTr("Recently Used Apps")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -157,7 +157,7 @@ Item {
StyledText {
width: parent.width
text: "Apps are ordered by usage frequency, then last used, then alphabetically."
text: qsTr("Apps are ordered by usage frequency, then last used, then alphabetically.")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap

View File

@@ -96,7 +96,7 @@ Item {
}
StyledText {
text: "Wallpaper"
text: qsTr("Wallpaper")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -434,14 +434,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Per-Mode Wallpapers"
text: qsTr("Per-Mode Wallpapers")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Set different wallpapers for light and dark mode"
text: qsTr("Set different wallpapers for light and dark mode")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: parent.width
@@ -491,14 +491,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Per-Monitor Wallpapers"
text: qsTr("Per-Monitor Wallpapers")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Set different wallpapers for each connected monitor"
text: qsTr("Set different wallpapers for each connected monitor")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: parent.width
@@ -523,7 +523,7 @@ Item {
leftPadding: Theme.iconSize + Theme.spacingM
StyledText {
text: "Monitor Selection:"
text: qsTr("Monitor Selection:")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
@@ -532,7 +532,7 @@ Item {
DankDropdown {
id: monitorDropdown
text: "Monitor"
text: qsTr("Monitor")
description: "Select monitor to configure wallpaper"
currentValue: selectedMonitorName || "No monitors"
options: {
@@ -580,14 +580,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Automatic Cycling"
text: qsTr("Automatic Cycling")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Automatically cycle through wallpapers in the same folder"
text: qsTr("Automatically cycle through wallpapers in the same folder")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: parent.width
@@ -629,7 +629,7 @@ Item {
width: parent.width - parent.leftPadding
StyledText {
text: "Mode:"
text: qsTr("Mode:")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
anchors.verticalCenter: parent.verticalCenter
@@ -696,7 +696,7 @@ Item {
return SessionData.wallpaperCyclingMode === "interval"
}
}
text: "Interval"
text: qsTr("Interval")
description: "How often to change wallpaper"
options: intervalOptions
currentValue: {
@@ -751,7 +751,7 @@ Item {
width: parent.width - parent.leftPadding
StyledText {
text: "Daily at:"
text: qsTr("Daily at:")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
anchors.verticalCenter: parent.verticalCenter
@@ -768,7 +768,7 @@ Item {
return SessionData.wallpaperCyclingTime
}
}
placeholderText: "00:00"
placeholderText: qsTr("00:00")
maximumLength: 5
topPadding: Theme.spacingS
bottomPadding: Theme.spacingS
@@ -826,7 +826,7 @@ Item {
}
StyledText {
text: "24-hour format"
text: qsTr("24-hour format")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
@@ -843,7 +843,7 @@ Item {
}
DankDropdown {
text: "Transition Effect"
text: qsTr("Transition Effect")
description: "Visual effect used when wallpaper changes"
currentValue: {
if (SessionData.wallpaperTransition === "random") return "Random"
@@ -862,14 +862,14 @@ Item {
visible: SessionData.wallpaperTransition === "random"
StyledText {
text: "Include Transitions"
text: qsTr("Include Transitions")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
}
StyledText {
text: "Select which transitions to include in randomization"
text: qsTr("Select which transitions to include in randomization")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -934,14 +934,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Dynamic Theming"
text: qsTr("Dynamic Theming")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Automatically extract colors from wallpaper"
text: qsTr("Automatically extract colors from wallpaper")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -966,7 +966,7 @@ Item {
DankDropdown {
id: personalizationMatugenPaletteDropdown
text: "Matugen Palette"
text: qsTr("Matugen Palette")
description: "Select the palette algorithm used for wallpaper-based colors"
options: Theme.availableMatugenSchemes.map(function (option) { return option.label })
currentValue: Theme.getMatugenScheme(SettingsData.matugenScheme).label
@@ -995,7 +995,7 @@ Item {
}
StyledText {
text: "matugen not detected - dynamic theming unavailable"
text: qsTr("matugen not detected - dynamic theming unavailable")
font.pixelSize: Theme.fontSizeSmall
color: Theme.error
visible: ToastService.wallpaperErrorStatus === "matugen_missing"
@@ -1033,7 +1033,7 @@ Item {
}
StyledText {
text: "Display Settings"
text: qsTr("Display Settings")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1043,7 +1043,7 @@ Item {
DankToggle {
width: parent.width
text: "Light Mode"
text: qsTr("Light Mode")
description: "Use light theme instead of dark theme"
checked: SessionData.isLightMode
onToggleCompleted: checked => {
@@ -1064,7 +1064,7 @@ Item {
id: nightModeToggle
width: parent.width
text: "Night Mode"
text: qsTr("Night Mode")
description: "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates."
checked: DisplayService.nightModeEnabled
onToggled: checked => {
@@ -1081,7 +1081,7 @@ Item {
}
DankDropdown {
text: "Temperature"
text: qsTr("Temperature")
description: "Color temperature for night mode"
currentValue: SessionData.nightModeTemperature + "K"
options: {
@@ -1100,7 +1100,7 @@ Item {
DankToggle {
id: automaticToggle
width: parent.width
text: "Automatic Control"
text: qsTr("Automatic Control")
description: "Only adjust gamma based on time or location rules."
checked: SessionData.nightModeAutoEnabled
onToggled: checked => {
@@ -1183,7 +1183,7 @@ Item {
leftPadding: 45
StyledText {
text: "Hour"
text: qsTr("Hour")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: 50
@@ -1192,7 +1192,7 @@ Item {
}
StyledText {
text: "Minute"
text: qsTr("Minute")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: 50
@@ -1208,7 +1208,7 @@ Item {
StyledText {
id: startLabel
text: "Start"
text: qsTr("Start")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
width: 50
@@ -1256,7 +1256,7 @@ Item {
height: 32
StyledText {
text: "End"
text: qsTr("End")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
width: startLabel.width
@@ -1307,7 +1307,7 @@ Item {
DankToggle {
width: parent.width
text: "Auto-location"
text: qsTr("Auto-location")
description: DisplayService.geoclueAvailable ? "Use automatic location detection (geoclue2)" : "Geoclue service not running - cannot auto-detect location"
checked: SessionData.nightModeLocationProvider === "geoclue2"
enabled: DisplayService.geoclueAvailable
@@ -1323,7 +1323,7 @@ Item {
}
StyledText {
text: "Manual Coordinates"
text: qsTr("Manual Coordinates")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
visible: SessionData.nightModeLocationProvider !== "geoclue2"
@@ -1337,7 +1337,7 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Latitude"
text: qsTr("Latitude")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -1346,7 +1346,7 @@ Item {
width: 120
height: 40
text: SessionData.latitude.toString()
placeholderText: "0.0"
placeholderText: qsTr("0.0")
onTextChanged: {
const lat = parseFloat(text) || 0.0
if (lat >= -90 && lat <= 90) {
@@ -1360,7 +1360,7 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Longitude"
text: qsTr("Longitude")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -1369,7 +1369,7 @@ Item {
width: 120
height: 40
text: SessionData.longitude.toString()
placeholderText: "0.0"
placeholderText: qsTr("0.0")
onTextChanged: {
const lon = parseFloat(text) || 0.0
if (lon >= -180 && lon <= 180) {
@@ -1420,7 +1420,7 @@ Item {
}
StyledText {
text: "Notification Popups"
text: qsTr("Notification Popups")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1429,7 +1429,7 @@ Item {
}
DankDropdown {
text: "Popup Position"
text: qsTr("Popup Position")
description: "Choose where notification popups appear on screen"
currentValue: {
if (SettingsData.notificationPopupPosition === -1) {
@@ -1480,7 +1480,7 @@ Item {
DankToggle {
width: parent.width
text: "Always Show OSD Percentage"
text: qsTr("Always Show OSD Percentage")
description: "Display volume and brightness percentage values by default in OSD popups"
checked: SettingsData.osdAlwaysShowValue
onToggled: checked => {
@@ -1518,7 +1518,7 @@ Item {
}
StyledText {
text: "Font Settings"
text: qsTr("Font Settings")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1527,7 +1527,7 @@ Item {
}
DankDropdown {
text: "Font Family"
text: qsTr("Font Family")
description: "Select system font family"
currentValue: {
if (SettingsData.fontFamily === SettingsData.defaultFontFamily)
@@ -1548,7 +1548,7 @@ Item {
}
DankDropdown {
text: "Font Weight"
text: qsTr("Font Weight")
description: "Select font weight"
currentValue: {
switch (SettingsData.fontWeight) {
@@ -1614,7 +1614,7 @@ Item {
}
DankDropdown {
text: "Monospace Font"
text: qsTr("Monospace Font")
description: "Select monospace font for process list and technical displays"
currentValue: {
if (SettingsData.monoFontFamily === SettingsData.defaultMonoFontFamily)
@@ -1649,14 +1649,14 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Font Scale"
text: qsTr("Font Scale")
font.pixelSize: Theme.fontSizeMedium
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Scale all font sizes"
text: qsTr("Scale all font sizes")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: parent.width
@@ -1748,7 +1748,7 @@ Item {
}
StyledText {
text: "Animations"
text: qsTr("Animations")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1761,14 +1761,14 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Animation Speed"
text: qsTr("Animation Speed")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
}
StyledText {
text: "Control the speed of animations throughout the interface"
text: qsTr("Control the speed of animations throughout the interface")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -1819,7 +1819,7 @@ Item {
}
StyledText {
text: "Lock Screen"
text: qsTr("Lock Screen")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1829,7 +1829,7 @@ Item {
DankToggle {
width: parent.width
text: "Show Power Actions"
text: qsTr("Show Power Actions")
description: "Show power, restart, and logout buttons on the lock screen"
checked: SettingsData.lockScreenShowPowerActions
onToggled: checked => {

View File

@@ -58,14 +58,14 @@ FocusScope {
spacing: Theme.spacingXS
StyledText {
text: "Plugin Management"
text: qsTr("Plugin Management")
font.pixelSize: Theme.fontSizeLarge
color: Theme.surfaceText
font.weight: Font.Medium
}
StyledText {
text: "Manage and configure plugins for extending DMS functionality"
text: qsTr("Manage and configure plugins for extending DMS functionality")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -98,7 +98,7 @@ FocusScope {
}
StyledText {
text: "DMS Plugin Manager Unavailable"
text: qsTr("DMS Plugin Manager Unavailable")
font.pixelSize: Theme.fontSizeSmall
color: Theme.warning
font.weight: Font.Medium
@@ -107,7 +107,7 @@ FocusScope {
}
StyledText {
text: "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET."
text: qsTr("The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.")
font.pixelSize: Theme.fontSizeSmall - 1
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -121,7 +121,7 @@ FocusScope {
spacing: Theme.spacingM
DankButton {
text: "Browse"
text: qsTr("Browse")
iconName: "store"
enabled: DMSService.dmsAvailable
onClicked: {
@@ -130,7 +130,7 @@ FocusScope {
}
DankButton {
text: "Scan"
text: qsTr("Scan")
iconName: "refresh"
onClicked: {
pluginsTab.isRefreshingPlugins = true
@@ -143,7 +143,7 @@ FocusScope {
}
DankButton {
text: "Create Dir"
text: qsTr("Create Dir")
iconName: "create_new_folder"
onClicked: {
PluginService.createPluginDirectory()
@@ -169,7 +169,7 @@ FocusScope {
spacing: Theme.spacingM
StyledText {
text: "Plugin Directory"
text: qsTr("Plugin Directory")
font.pixelSize: Theme.fontSizeLarge
color: Theme.surfaceText
font.weight: Font.Medium
@@ -183,7 +183,7 @@ FocusScope {
}
StyledText {
text: "Place plugin directories here. Each plugin should have a plugin.json manifest file."
text: qsTr("Place plugin directories here. Each plugin should have a plugin.json manifest file.")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -207,7 +207,7 @@ FocusScope {
spacing: Theme.spacingM
StyledText {
text: "Available Plugins"
text: qsTr("Available Plugins")
font.pixelSize: Theme.fontSizeLarge
color: Theme.surfaceText
font.weight: Font.Medium
@@ -782,7 +782,7 @@ FocusScope {
StyledText {
id: headerText
text: "Browse Plugins"
text: qsTr("Browse Plugins")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -831,7 +831,7 @@ FocusScope {
}
StyledText {
text: "Install plugins from the DMS plugin registry"
text: qsTr("Install plugins from the DMS plugin registry")
font.pixelSize: Theme.fontSizeSmall
color: Theme.outline
width: parent.width
@@ -853,7 +853,7 @@ FocusScope {
showClearButton: true
textColor: Theme.surfaceText
font.pixelSize: Theme.fontSizeMedium
placeholderText: "Search plugins..."
placeholderText: qsTr("Search plugins...")
text: pluginBrowserModal.searchQuery
focus: true
ignoreLeftRightKeys: true
@@ -889,7 +889,7 @@ FocusScope {
}
StyledText {
text: "Loading plugins..."
text: qsTr("Loading plugins...")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
anchors.horizontalCenter: parent.horizontalCenter
@@ -969,7 +969,7 @@ FocusScope {
StyledText {
id: firstPartyText
anchors.centerIn: parent
text: "official"
text: qsTr("official")
font.pixelSize: Theme.fontSizeSmall - 2
color: Theme.primary
font.weight: Font.Medium
@@ -989,7 +989,7 @@ FocusScope {
StyledText {
id: thirdPartyText
anchors.centerIn: parent
text: "3rd party"
text: qsTr("3rd party")
font.pixelSize: Theme.fontSizeSmall - 2
color: Theme.warning
font.weight: Font.Medium
@@ -1113,7 +1113,7 @@ FocusScope {
}
StyledText {
text: "No plugins found"
text: qsTr("No plugins found")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
anchors.horizontalCenter: parent.horizontalCenter
@@ -1162,7 +1162,7 @@ FocusScope {
}
StyledText {
text: "Third-Party Plugin Warning"
text: qsTr("Third-Party Plugin Warning")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1183,19 +1183,19 @@ FocusScope {
spacing: Theme.spacingS
StyledText {
text: "• Plugins may contain bugs or security issues"
text: qsTr("• Plugins may contain bugs or security issues")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• Review code before installation when possible"
text: qsTr("• Review code before installation when possible")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• Install only from trusted sources"
text: qsTr("• Install only from trusted sources")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -1211,13 +1211,13 @@ FocusScope {
spacing: Theme.spacingM
DankButton {
text: "Cancel"
text: qsTr("Cancel")
iconName: "close"
onClicked: thirdPartyConfirmModal.close()
}
DankButton {
text: "I Understand"
text: qsTr("I Understand")
iconName: "check"
onClicked: {
SessionData.setShowThirdPartyPlugins(true)

View File

@@ -130,7 +130,7 @@ Item {
}
StyledText {
text: "Theme Color"
text: qsTr("Theme Color")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -651,7 +651,7 @@ Item {
DankDropdown {
id: matugenPaletteDropdown
text: "Matugen Palette"
text: qsTr("Matugen Palette")
description: "Select the palette algorithm used for wallpaper-based colors"
options: Theme.availableMatugenSchemes.map(function (option) { return option.label })
currentValue: Theme.getMatugenScheme(SettingsData.matugenScheme).label
@@ -756,7 +756,7 @@ Item {
}
StyledText {
text: "Widget Styling"
text: qsTr("Widget Styling")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -769,7 +769,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Dank Bar Transparency"
text: qsTr("Dank Bar Transparency")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -803,7 +803,7 @@ Item {
StyledText {
id: transparencyLabel
text: "Dank Bar Widget Transparency"
text: qsTr("Dank Bar Widget Transparency")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -867,7 +867,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Popup Transparency"
text: qsTr("Popup Transparency")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -993,7 +993,7 @@ Item {
DankDropdown {
anchors.verticalCenter: parent.verticalCenter
text: "Icon Theme"
text: qsTr("Icon Theme")
description: "DankShell & System Icons\n(requires restart)"
currentValue: SettingsData.iconTheme
enableFuzzySearch: true
@@ -1046,7 +1046,7 @@ Item {
}
StyledText {
text: "System App Theming"
text: qsTr("System App Theming")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -1078,7 +1078,7 @@ Item {
}
StyledText {
text: "Apply GTK Colors"
text: qsTr("Apply GTK Colors")
font.pixelSize: Theme.fontSizeMedium
color: Theme.primary
font.weight: Font.Medium
@@ -1114,7 +1114,7 @@ Item {
}
StyledText {
text: "Apply Qt Colors"
text: qsTr("Apply Qt Colors")
font.pixelSize: Theme.fontSizeMedium
color: Theme.primary
font.weight: Font.Medium

View File

@@ -54,7 +54,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "24-Hour Format"
text: qsTr("24-Hour Format")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -112,7 +112,7 @@ Item {
}
StyledText {
text: "Date Format"
text: qsTr("Date Format")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -122,7 +122,7 @@ Item {
DankDropdown {
height: 50
text: "Top Bar Format"
text: qsTr("Top Bar Format")
description: "Preview: " + (SettingsData.clockDateFormat ? new Date().toLocaleDateString(Qt.locale(), SettingsData.clockDateFormat) : new Date().toLocaleDateString(Qt.locale(), "ddd d"))
currentValue: {
if (!SettingsData.clockDateFormat || SettingsData.clockDateFormat.length === 0) {
@@ -158,7 +158,7 @@ Item {
return p.format
=== SettingsData.clockDateFormat
})
return match ? match.label : "Custom: " + SettingsData.clockDateFormat
return match ? match.label: qsTr("Custom: ") + SettingsData.clockDateFormat
}
options: ["System Default", "Day Date", "Day Month Date", "Month Date", "Numeric (M/D)", "Numeric (D/M)", "Full with Year", "ISO Date", "Full Day & Month", "Custom..."]
onValueChanged: value => {
@@ -185,7 +185,7 @@ Item {
DankDropdown {
height: 50
text: "Lock Screen Format"
text: qsTr("Lock Screen Format")
description: "Preview: " + (SettingsData.lockDateFormat ? new Date().toLocaleDateString(Qt.locale(), SettingsData.lockDateFormat) : new Date().toLocaleDateString(Qt.locale(), Locale.LongFormat))
currentValue: {
if (!SettingsData.lockDateFormat || SettingsData.lockDateFormat.length === 0) {
@@ -221,7 +221,7 @@ Item {
return p.format
=== SettingsData.lockDateFormat
})
return match ? match.label : "Custom: " + SettingsData.lockDateFormat
return match ? match.label: qsTr("Custom: ") + SettingsData.lockDateFormat
}
options: ["System Default", "Day Date", "Day Month Date", "Month Date", "Numeric (M/D)", "Numeric (D/M)", "Full with Year", "ISO Date", "Full Day & Month", "Custom..."]
onValueChanged: value => {
@@ -251,7 +251,7 @@ Item {
width: parent.width
visible: false
placeholderText: "Enter custom top bar format (e.g., ddd MMM d)"
placeholderText: qsTr("Enter custom top bar format (e.g., ddd MMM d)")
text: SettingsData.clockDateFormat
onTextChanged: {
if (visible && text)
@@ -264,7 +264,7 @@ Item {
width: parent.width
visible: false
placeholderText: "Enter custom lock screen format (e.g., dddd, MMMM d)"
placeholderText: qsTr("Enter custom lock screen format (e.g., dddd, MMMM d)")
text: SettingsData.lockDateFormat
onTextChanged: {
if (visible && text)
@@ -289,7 +289,7 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Format Legend"
text: qsTr("Format Legend")
font.pixelSize: Theme.fontSizeSmall
color: Theme.primary
font.weight: Font.Medium
@@ -304,31 +304,31 @@ Item {
spacing: 2
StyledText {
text: "• d - Day (1-31)"
text: qsTr("• d - Day (1-31)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• dd - Day (01-31)"
text: qsTr("• dd - Day (01-31)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• ddd - Day name (Mon)"
text: qsTr("• ddd - Day name (Mon)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• dddd - Day name (Monday)"
text: qsTr("• dddd - Day name (Monday)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• M - Month (1-12)"
text: qsTr("• M - Month (1-12)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -339,31 +339,31 @@ Item {
spacing: 2
StyledText {
text: "• MM - Month (01-12)"
text: qsTr("• MM - Month (01-12)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• MMM - Month (Jan)"
text: qsTr("• MMM - Month (Jan)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• MMMM - Month (January)"
text: qsTr("• MMMM - Month (January)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• yy - Year (24)"
text: qsTr("• yy - Year (24)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
StyledText {
text: "• yyyy - Year (2024)"
text: qsTr("• yyyy - Year (2024)")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}

View File

@@ -54,14 +54,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Enable Weather"
text: qsTr("Enable Weather")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Show weather information in top bar and control center"
text: qsTr("Show weather information in top bar and control center")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -120,14 +120,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Use Fahrenheit"
text: qsTr("Use Fahrenheit")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Use Fahrenheit instead of Celsius for temperature"
text: qsTr("Use Fahrenheit instead of Celsius for temperature")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -193,14 +193,14 @@ Item {
anchors.verticalCenter: parent.verticalCenter
StyledText {
text: "Auto Location"
text: qsTr("Auto Location")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
}
StyledText {
text: "Automatically determine your location using your IP address"
text: qsTr("Automatically determine your location using your IP address")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
wrapMode: Text.WordWrap
@@ -233,7 +233,7 @@ Item {
}
StyledText {
text: "Custom Location"
text: qsTr("Custom Location")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
@@ -248,7 +248,7 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Latitude"
text: qsTr("Latitude")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -257,7 +257,7 @@ Item {
id: latitudeInput
width: parent.width
height: 48
placeholderText: "40.7128"
placeholderText: qsTr("40.7128")
backgroundColor: Theme.surfaceVariant
normalBorderColor: Theme.primarySelected
focusedBorderColor: Theme.primary
@@ -299,7 +299,7 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Longitude"
text: qsTr("Longitude")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
}
@@ -308,7 +308,7 @@ Item {
id: longitudeInput
width: parent.width
height: 48
placeholderText: "-74.0060"
placeholderText: qsTr("-74.0060")
backgroundColor: Theme.surfaceVariant
normalBorderColor: Theme.primarySelected
focusedBorderColor: Theme.primary
@@ -352,7 +352,7 @@ Item {
spacing: Theme.spacingXS
StyledText {
text: "Location Search"
text: qsTr("Location Search")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
font.weight: Font.Medium
@@ -362,7 +362,7 @@ Item {
id: locationSearchInput
width: parent.width
currentLocation: ""
placeholderText: "New York, NY"
placeholderText: qsTr("New York, NY")
keyNavigationBacktab: longitudeInput
onLocationSelected: (displayName, coordinates) => {
SettingsData.setWeatherLocation(displayName, coordinates)

View File

@@ -188,7 +188,7 @@ DankModal {
}
StyledText {
text: "Add Widget to " + root.targetSection + " Section"
text: qsTr("Add Widget to ") + root.targetSection + " Section"
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -197,7 +197,7 @@ DankModal {
}
StyledText {
text: "Select a widget to add to the " + root.targetSection.toLowerCase(
text: qsTr("Select a widget to add to the ") + root.targetSection.toLowerCase(
) + " section of the top bar. You can add multiple instances of the same widget if needed."
font.pixelSize: Theme.fontSizeSmall
color: Theme.outline

View File

@@ -48,7 +48,7 @@ Item {
}
StyledText {
text: "Launcher Button"
text: qsTr("Launcher Button")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -58,7 +58,7 @@ Item {
DankToggle {
width: parent.width
text: "Use OS Logo"
text: qsTr("Use OS Logo")
description: "Display operating system logo instead of apps icon"
checked: SettingsData.useOSLogo
onToggled: checked => {
@@ -79,7 +79,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Color Override"
text: qsTr("Color Override")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -111,7 +111,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Brightness"
text: qsTr("Brightness")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -140,7 +140,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Contrast"
text: qsTr("Contrast")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -202,7 +202,7 @@ Item {
}
StyledText {
text: "Workspace Settings"
text: qsTr("Workspace Settings")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -212,7 +212,7 @@ Item {
DankToggle {
width: parent.width
text: "Workspace Index Numbers"
text: qsTr("Workspace Index Numbers")
description: "Show workspace index numbers in the top bar workspace switcher"
checked: SettingsData.showWorkspaceIndex
onToggled: checked => {
@@ -223,7 +223,7 @@ Item {
DankToggle {
width: parent.width
text: "Workspace Padding"
text: qsTr("Workspace Padding")
description: "Always show a minimum of 3 workspaces, even if fewer are available"
checked: SettingsData.showWorkspacePadding
onToggled: checked => {
@@ -234,7 +234,7 @@ Item {
DankToggle {
width: parent.width
text: "Show Workspace Apps"
text: qsTr("Show Workspace Apps")
description: "Display application icons in workspace indicators"
checked: SettingsData.showWorkspaceApps
onToggled: checked => {
@@ -256,7 +256,7 @@ Item {
spacing: Theme.spacingS
StyledText {
text: "Max apps to show"
text: qsTr("Max apps to show")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Medium
@@ -287,7 +287,7 @@ Item {
DankToggle {
width: parent.width
text: "Per-Monitor Workspaces"
text: qsTr("Per-Monitor Workspaces")
description: "Show only workspaces belonging to each specific monitor."
checked: SettingsData.workspacesPerMonitor
onToggled: checked => {
@@ -325,7 +325,7 @@ Item {
}
StyledText {
text: "Media Player Settings"
text: qsTr("Media Player Settings")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -335,7 +335,7 @@ Item {
DankToggle {
width: parent.width
text: "Wave Progress Bars"
text: qsTr("Wave Progress Bars")
description: "Use animated wave progress bars for media playback"
checked: SettingsData.waveProgressEnabled
onToggled: checked => {
@@ -373,7 +373,7 @@ Item {
}
StyledText {
text: "Running Apps Settings"
text: qsTr("Running Apps Settings")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -383,7 +383,7 @@ Item {
DankToggle {
width: parent.width
text: "Running Apps Only In Current Workspace"
text: qsTr("Running Apps Only In Current Workspace")
description: "Show only apps running in current workspace"
checked: SettingsData.runningAppsCurrentWorkspace
onToggled: checked => {
@@ -423,7 +423,7 @@ Item {
}
StyledText {
text: "Named Workspace Icons"
text: qsTr("Named Workspace Icons")
font.pixelSize: Theme.fontSizeLarge
font.weight: Font.Medium
color: Theme.surfaceText
@@ -433,7 +433,7 @@ Item {
StyledText {
width: parent.width
text: "Configure icons for named workspaces. Icons take priority over numbers when both are enabled."
text: qsTr("Configure icons for named workspaces. Icons take priority over numbers when both are enabled.")
font.pixelSize: Theme.fontSizeSmall
color: Theme.outline
wrapMode: Text.WordWrap

View File

@@ -480,7 +480,7 @@ Column {
StyledText {
id: tooltipText
anchors.centerIn: parent
text: "Compact Mode"
text: qsTr("Compact Mode")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
}
@@ -667,7 +667,7 @@ Column {
anchors.horizontalCenter: parent.horizontalCenter
StyledText {
text: "Add Widget"
text: qsTr("Add Widget")
font.pixelSize: Theme.fontSizeSmall
font.weight: Font.Medium
color: Theme.primary
@@ -752,7 +752,7 @@ Column {
}
StyledText {
text: "Network Icon"
text: qsTr("Network Icon")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Normal
@@ -805,7 +805,7 @@ Column {
}
StyledText {
text: "Bluetooth Icon"
text: qsTr("Bluetooth Icon")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Normal
@@ -858,7 +858,7 @@ Column {
}
StyledText {
text: "Audio Icon"
text: qsTr("Audio Icon")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
font.weight: Font.Normal