Skip to content

Commit

Permalink
Global commands: translator comment change (word choice). re nvaccess…
Browse files Browse the repository at this point in the history
…#5906

Reviewed by Jamie Teh (NV Access):
* Because it is no longer a simple toggle, translator comment should reflect this.
* Say 'reported' instead of 'announced' for clarify.
  • Loading branch information
josephsl committed Sep 15, 2016
1 parent 4235a39 commit b5fb170
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/globalCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,20 +462,20 @@ def script_toggleReportLineIndentation(self,gesture):
lineIndentationSpeech = config.conf["documentFormatting"]["reportLineIndentation"]
lineIndentationTones = config.conf["documentFormatting"]["reportLineIndentationWithTones"]
if not lineIndentationSpeech and not lineIndentationTones:
# Translators: The message announced when cycling through line indentation settings.
# Translators: A message reported when cycling through line indentation settings.
ui.message(_("Report line indentation with speech"))
lineIndentationSpeech = True
elif lineIndentationSpeech and not lineIndentationTones:
# Translators: The message announced when cycling through line indentation settings.
# Translators: A message reported when cycling through line indentation settings.
ui.message(_("Report line indentation with tones"))
lineIndentationSpeech = False
lineIndentationTones = True
elif not lineIndentationSpeech and lineIndentationTones:
# Translators: The message announced when cycling through line indentation settings.
# Translators: A message reported when cycling through line indentation settings.
ui.message(_("Report line indentation with speech and tones"))
lineIndentationSpeech = True
else:
# Translators: The message announced when cycling through line indentation settings.
# Translators: A message reported when cycling through line indentation settings.
ui.message(_("Report line indentation off"))
lineIndentationSpeech = False
lineIndentationTones = False
Expand Down

0 comments on commit b5fb170

Please sign in to comment.