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
@@ -156,7 +156,7 @@ Scope { // Scope
GlobalShortcut {
name: "cheatsheetToggle"
description: "Toggles cheatsheet on press"
description: qsTr("Toggles cheatsheet on press")
onPressed: {
cheatsheetLoader.active = !cheatsheetLoader.active;
@@ -165,7 +165,7 @@ Scope { // Scope
GlobalShortcut {
name: "cheatsheetOpen"
description: "Opens cheatsheet on press"
description: qsTr("Opens cheatsheet on press")
onPressed: {
cheatsheetLoader.active = true;
@@ -174,7 +174,7 @@ Scope { // Scope
GlobalShortcut {
name: "cheatsheetClose"
description: "Closes cheatsheet on press"
description: qsTr("Closes cheatsheet on press")
onPressed: {
cheatsheetLoader.active = false;