Skip to content

Commit

Permalink
Fixed other syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriani90 committed Dec 5, 2024
1 parent 6c711fd commit 30dd8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/globalCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def script_cycleAudioDuckingMode(self, gesture):
def script_toggleInputHelp(self, gesture):
inputCore.manager.isInputHelpActive = not inputCore.manager.isInputHelpActive
# Translators: This will be presented when the input help is toggled.
stateOn = _("input help on")
stateOn = _("input help on. Press {gestureKeys} again to turn it off.").format(gestureKeys=gesture.displayName)
# Translators: This will be presented when the input help is toggled.
stateOff = _("input help off")
state = stateOn if inputCore.manager.isInputHelpActive else stateOff
Expand Down

0 comments on commit 30dd8db

Please sign in to comment.