not attempt to show translated globalshortcut description cuz they can't be changed

This commit is contained in:
end-4
2025-07-17 15:28:31 +07:00
parent 8a4f2f2851
commit 158428e63e
14 changed files with 38 additions and 37 deletions
@@ -212,7 +212,7 @@ Scope { // Scope
GlobalShortcut {
name: "cheatsheetToggle"
description: Translation.tr("Toggles cheatsheet on press")
description: "Toggles cheatsheet on press"
onPressed: {
cheatsheetLoader.active = !cheatsheetLoader.active;
@@ -221,7 +221,7 @@ Scope { // Scope
GlobalShortcut {
name: "cheatsheetOpen"
description: Translation.tr("Opens cheatsheet on press")
description: "Opens cheatsheet on press"
onPressed: {
cheatsheetLoader.active = true;
@@ -230,7 +230,7 @@ Scope { // Scope
GlobalShortcut {
name: "cheatsheetClose"
description: Translation.tr("Closes cheatsheet on press")
description: "Closes cheatsheet on press"
onPressed: {
cheatsheetLoader.active = false;