mfking chore: add qsTr() to strings for translations

This commit is contained in:
end-4
2025-05-20 00:35:09 +02:00
parent 26a5dbd91c
commit a32edd387e
26 changed files with 78 additions and 72 deletions
+2 -2
View File
@@ -134,13 +134,13 @@ Singleton {
GlobalShortcut {
name: "brightnessIncrease"
description: "Increase brightness"
description: qsTr("Increase brightness")
onPressed: root.increaseBrightness()
}
GlobalShortcut {
name: "brightnessDecrease"
description: "Decrease brightness"
description: qsTr("Decrease brightness")
onPressed: root.decreaseBrightness()
}
}