Cleanup: more strings

This commit is contained in:
LemmyCook
2025-09-19 17:10:07 -04:00
parent 761aa62995
commit 8a78ee090a
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -156,7 +156,7 @@ NPanel {
"source": locationTab
}, {
"id": SettingsPanel.Tab.ColorScheme,
"label": "Color Scheme",
"label": "Color scheme",
"icon": "settings-color-scheme",
"source": colorSchemeTab
}, {
@@ -166,7 +166,7 @@ NPanel {
"source": wallpaperTab
}, {
"id": SettingsPanel.Tab.ScreenRecorder,
"label": "Screen Recorder",
"label": "Screen recorder",
"icon": "settings-screen-recorder",
"source": screenRecorderTab
}, {
@@ -490,7 +490,7 @@ ColumnLayout {
defaultExpanded: false
NCheckbox {
label: "User Templates"
label: "User templates"
description: "Enable user-defined Matugen config from ~/.config/matugen/config.toml"
checked: Settings.data.matugen.enableUserTemplates
onToggled: checked => {
+2 -2
View File
@@ -163,13 +163,13 @@ Singleton {
if (activeInhibitors.includes("manual")) {
removeInhibitor("manual")
Settings.data.ui.idleInhibitorEnabled = false
ToastService.showNotice("Keep Awake", "Disabled")
ToastService.showNotice("Keep awake", "Disabled")
Logger.log("IdleInhibitor", "Manual inhibition disabled and saved to settings")
return false
} else {
addInhibitor("manual", "Manually activated by user")
Settings.data.ui.idleInhibitorEnabled = true
ToastService.showNotice("Keep Awake", "Enabled")
ToastService.showNotice("Keep awake", "Enabled")
Logger.log("IdleInhibitor", "Manual inhibition enabled and saved to settings")
return true
}
+1 -1
View File
@@ -63,7 +63,7 @@ Singleton {
apply()
// Toast: night light toggled
const enabled = !!Settings.data.nightLight.enabled
ToastService.showNotice("Night Light", enabled ? "Enabled" : "Disabled")
ToastService.showNotice("Night light", enabled ? "Enabled" : "Disabled")
}
function onForcedChanged() {
apply()